.coach-img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}
.coach-header {
    display: flex;
    align-items: center;
    gap: 20px;
}
.health-coach-item {
    background: var(--third);
    padding: 25px;
    border-radius: 20px;
    height: 100%;
}
.prevention-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
}
section#nutrition * {
    color: var(--primary);
}
section#nutrition img {
    width: 100%;
    border-radius: 20px;
}
.common-challenges {
    height: 100%;
    background: var(--secondary);
    padding: 20px;
    border-radius: 20px;
    color: #fff;
}
.common-challenges *{
    color: #fff;
}
.row-content-img {
    position: relative;
}
.img-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.img-right {
    position: absolute;
    right: 0;
    height: 100%;
    top: 0;
    width: 48%;
}
.img-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 16px;
}
.img-left img {
    border-radius: 0 !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.img-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 48%;
    height: 100%;
}
.testimonial-container h4, .testimonial-item > span{
    color: var(--secondary);
}
.testimonial-item > p {
    color: var(--primary);
}
.testimonial-item > span {
    width: 100%;
    display: flex;
    justify-content: center;
    font-weight: 500;
}
.testimonial-container .owl-dots {
    display: flex;
}
.owl-dots button.active {
    width: 50px;
    display: flex !important;
}
.owl-dots button.active >span {
    width: 100% !important;
    background: var(--secondary) !important;
    transition: 0.7s ease !important;
}
.testimonial-container {
    position: relative;
}
.testimonial-container > img{
    position: absolute;
    width: 100%;
    max-width: 50px;
}
.testimonial-container > img:first-child {
    left: 0;
    top: 0;
}
.testimonial-container > img:nth-child(2) {
    right: 0;
    bottom: 0;
    transform: rotate(180deg) translateX(calc(-100% + -20px));
}
.coaches-cat {
    gap: 15px;
    margin-bottom: 30px;
}
span.coach-cat {
    font-weight: 600;
    cursor: pointer;
    position: relative;
    padding-bottom: 5px;
}
span.coach-cat.active {
    color: var(--secondary);
}
span.coach-cat.active:before,
span.coach-cat:before {
    position: absolute;
    content: "";
    background: var(--secondary);
    height: 3px;
    width: 100%;
    bottom: 0;
    border-radius: 10px;
    transition: 0.3s ease;
}
span.coach-cat:before{
    width: 0;
}
span.coach-cat:hover:before{
    width: 100%;
}
span.coach-cat:hover{
    color: var(--secondary);
}
.overlay-container {
    position: relative;
}
.ajax-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #0008;
    border-radius: 20px;
    display: none;
}
img.noimg-coach {
    object-fit: contain;
}
@media only screen and (max-width: 767.5px){
    .img-right, .img-left {
        position: relative;
        width: 100%;
    }
    .img-right img, .img-left img{
        border-radius: 20px;
    }
}