img {
    max-width: 100%;
    height: auto;
}

span {font: inherit;}

h2.title {
    font-size: 53px;
    line-height: 1.3;
    font-weight: normal;
}
h2.title b {font-weight: 500;}

sup {
    vertical-align: super;
    position: static !important;
}

.sub {
    color: #6F707F;
    font-size: 22px;
    line-height: 1.4;
    font-weight: normal;
    margin-top: 25px;
}

.central-container {
    max-width: 1440px;
    width: 100%;
    padding: 0 15px;
}

.wrapper {overflow: hidden;}

@media (max-width: 1600px) {
    h2.title {font-size: 46px;}
    .sub {font-size: 17px;}

    .central-container {max-width: 1300px;}
}

@media (max-width: 991px) {
    h2.title {font-size: 40px;}
    .sub {
        font-size: 15px;
        margin-bottom: 20px;
    }
}

@media (max-width: 550px) {
    h2.title {font-size: 8.5vw;}
}

.main-label {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 42px;
    padding: 0 20px;
    background: rgba(255,255,255,.3);
    backdrop-filter: blur(3px);
    font-size: 13px;
    font-weight: 600;
    color: #000;
    border-radius: 30px;
    white-space: nowrap;
    gap: 10px;
    box-shadow: inset 0.5px 0.5px rgba(255,255,255,.3), inset -0.5px -0.5px rgba(255,255,255,.3);
    animation: float 4s ease-in-out infinite;
}
.main-label img {width: 17px;}
.main-label.first  { animation: float-first  calc(4.0s * 3) ease-in-out infinite 0.0s; }
.main-label.second { animation: float-second calc(4.7s * 3) ease-in-out infinite 0.6s; }
.main-label.third  { animation: float-third  calc(3.5s * 3) ease-in-out infinite 1.2s; }

@keyframes float-first {
    0%   { transform: translateY(0px)   translateX(0px)  rotate(0deg);   }
    25%  { transform: translateY(-8px)  translateX(4px)  rotate(-0.5deg);}
    50%  { transform: translateY(-4px)  translateX(-3px) rotate(0.3deg); }
    75%  { transform: translateY(-10px) translateX(5px)  rotate(0.5deg); }
    100% { transform: translateY(0px)   translateX(0px)  rotate(0deg);   }
}

@keyframes float-second {
    0%   { transform: translateY(0px)   translateX(0px)  rotate(0deg);   }
    25%  { transform: translateY(-6px)  translateX(-5px) rotate(0.4deg); }
    50%  { transform: translateY(-10px) translateX(3px)  rotate(-0.3deg);}
    75%  { transform: translateY(-4px)  translateX(-4px) rotate(0.5deg); }
    100% { transform: translateY(0px)   translateX(0px)  rotate(0deg);   }
}

@keyframes float-third {
    0%   { transform: translateY(0px)   translateX(0px)  rotate(0deg);    }
    25%  { transform: translateY(-9px)  translateX(-3px) rotate(-0.4deg); }
    50%  { transform: translateY(-5px)  translateX(5px)  rotate(0.5deg);  }
    75%  { transform: translateY(-11px) translateX(-4px) rotate(-0.3deg); }
    100% { transform: translateY(0px)   translateX(0px)  rotate(0deg);    }
}

.main-badge {
    background: #f5f5f6;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0 20px;
    min-height: 35px;
    color: #abacb8;
    margin-bottom: 20px;
}

@media (max-width: 1600px) {
    .main-badge {zoom: 0.9;}
}

@media (max-width: 550px) {
    .main-badge {
        min-height: 35px;
        zoom: 1;
        font-size: 12px;
    }
}

.violet-button-container {
    width: fit-content;
    border-radius: 100px;
    background: linear-gradient(to left, #C99ECB 0%, #9B789D 100%);
    display: inline-block;
}

.white-button-container {
    width: fit-content;
    border-radius: 100px;
    background: #fff;
    display: inline-block;
}

@media (max-width: 1600px) {
    .button {zoom: 0.9;}
}

@media (max-width: 550px) {
    .button {zoom: 1;}
}

@media (max-width: 375px) {
    .button {zoom: 0.8;}
}

/* ------------------ HEADER ------------------ */
@media (max-width: 550px) {
    .header-section .button-wrapper {opacity: 0;}
}

/* ------------------ INTRO ------------------ */
.intro {
    color: #6F707F;
    padding-bottom: 25px;
}
.intro .central-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.intro-content {
    max-width: 620px;
    padding: 85px 0 0;
}

.intro-content .rating {
    display: flex;
    align-items: center;
    gap: 10px;
}
.intro-content .rating > div {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.intro-content .rating span {
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
}

.intro-content .title {
    font-size: 62px;
    font-weight: normal;
    color: #000229;
    margin: 15px 0 20px;
}
.intro-content .title span {
    color: #9D7A9F;
    font-weight: 500;
}
.intro-content .title span[text-rotation] {
    transition: opacity .5s ease;
}

.intro-content .sub {
    font-size: 22px;
    font-weight: 500;
    color: #6F707F;
    margin-bottom: 15px;
}

.intro-content .description {
    font-size: 20px;
    font-weight: 300;
    border-left: 3px solid #6F707F;
    padding-left: 15px;
}

.intro-content .group {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 35px;
}

.intro-content .button-wrapper {border: 1px solid rgba(111,112,127,.45);}

.intro-hero {
    padding-top: 45px;
    display: flex;
    justify-content: end;
}
.intro-hero .image {
    max-width: 590px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}
.intro-hero .image img {object-fit: cover;}
.intro-hero .image > span {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    position: absolute;
    bottom: 10px;
    right: 20px;
}
.intro-hero .main-label {position: absolute;}
.intro-hero .main-label:nth-child(2) {
    left: calc(50% - 155px);
    bottom: 220px;
}
.intro-hero .main-label:nth-child(3) {
    right: 10px;
    bottom: 145px;
}
.intro-hero .main-label:nth-child(4) {
    left: 10px;
    bottom: 75px;
}

.intro .slick-ticker {
    margin-bottom: 0;
    margin-top: 25px;
}
.intro .slick-ticker .slick-list {margin-bottom: 0;}
.intro .list-item {color: #808080;}
.intro .list-item:before {background: url(../img/intro/ic-check.svg) no-repeat 100% / 100%;}

@media (max-width: 1600px) {
    .intro-content, .intro-hero {zoom: 0.9;}
}

@media (max-width: 1200px) {
    .intro-content, .intro-hero {
        zoom: 0.78;
    }
}

@media (max-width: 991px) {
    .intro .central-container {grid-template-columns: 1fr;}
    .intro-content, .intro-hero {zoom: 1;}
    .intro-content {
        max-width: 620px;
        margin: 0 auto;
        padding-top: 50px;
    }
    .intro-hero {
        justify-content: center;
        padding-top: 0;
    }
    .intro-hero .image {max-width: 610px;}
}

@media (max-width: 767px) {
    .intro-content .title {font-size: 50px;}
    .intro .slick-ticker {
        animation: none !important;
        transition: none !important;
    }
}

@media (max-width: 550px) {
    .intro {padding-bottom: 30px;}
    .intro-content {padding-top: 30px;}
    .intro-content .group {
        flex-direction: column;
        margin-top: 25px;
    }
    .intro-content .title {
        font-size: 10vw;
        line-height: 1.2;
        margin: 20px 0 0;
    }
    .intro-content .rating span {font-size: 15px;}
    .intro-content .rating > div {gap: 4px;}
    .intro-content .sub {
        font-size: 5vw;
        margin-bottom: 20px;
        margin-top: 15px;
    }
    .intro-content .description {
        font-size: 3.8vw;
        border-left: none;
        padding-left: 0;
    }

    .intro-content .violet-button-container,
    .intro-content .button-wrapper {width: 100%;}
    .intro-content .violet-button-container .button,
    .intro-content .button-wrapper .button {width: 100%;}
    .intro-content .button span {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    .intro-content .button svg {
        display: inline-block !important;
        width: 8px;
        height: 14px;
        position: relative;
        top: 1px;
    }
    .intro-content .group p {
        display: block !important;
        text-align: center;
        color: #000229;
        margin-top: -5px;
        font-size: 15px;
    }

    .intro-hero .main-label {
        zoom: 0.7;
        background: rgba(255, 255, 255, .5);
    }
    .intro-hero .main-label:nth-child(4) {bottom: 40px;}
    .intro-hero .main-label:nth-child(2) {
        left: calc(50% - 140px);
        bottom: 125px;
    }
    .intro-hero .main-label:nth-child(3) {bottom: 75px;}
    .intro-hero .image {border-radius: 17px;}
    .intro-hero .image > span {
        font-size: 11px;
        bottom: 15px;
        right: 15px;
    }

    .intro .slick-ticker {margin-top: 30px;}
}

@media (max-width: 360px) {
    .intro-content .rating {gap: 5px;}
    .intro-content .rating span {font-size: 13px;}
    .intro-content .rating > div {zoom: 0.8;}
}

/* ------------------ SYMPTOMS ------------------ */
.symptoms {padding: 85px 0 70px 0;}
.symptoms h2.title {margin-bottom: 45px;}
.symptoms .cards + h2.title {font-size: 40px;}

.symptoms .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-bottom: 30px;
}

.symptoms .condition-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    padding: 0.8rem;
    padding-left: 3.2rem;
    background: var(--color-gray-50);
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius-primary);
    transition: all 0.3s;
}
.symptoms .condition-card:hover {
    background: var(--color-gray-100);
}

.symptoms .condition-card .icon-wrapper {
    width: 106px;
    height: 106px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2rem;
    background: var(--color-gray-200);
}

.symptoms .condition-card .icon-wrapper img {
    width: 48px;
    height: 48px;
}

.symptoms .text-bottom {
    margin: 45px auto 0 auto;
    max-width: 940px;
    text-align: center;
}
.symptoms .text-bottom a {
    color: #9D7A9F;
    text-decoration: none;
    font-weight: 600;
}
.symptoms .text-bottom a:hover {color: #000;}

@media (max-width: 1600px) {
    .symptoms .central-container {max-width: 1100px;}
    .symptoms .cards + h2.title {font-size: 33px;}
    .symptoms .cards {zoom: 0.9;}
    .symptoms .text-bottom {max-width: 750px;}
}

@media (max-width: 991px) {
    .symptoms .cards {grid-template-columns: repeat(2, 1fr);}
}

@media all and (max-width: 810px) {
    .symptoms .condition-card .icon-wrapper {
        width: 86px;
        height: 86px;
    }

    .symptoms .condition-card .icon-wrapper img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 550px) {
    .symptoms {padding: 50px 0 50px 0;}
    .symptoms h2.title {margin-bottom: 25px;}
    .symptoms .cards {
        grid-template-columns: 1fr;
        zoom: 1;
    }
    .symptoms .condition-card {
        border-radius: 16px;
        padding-left: 20px;
    }
    .symptoms .condition-card .icon-wrapper {
        border-radius: 12px;
        width: 70px;
        height: 70px;
    }

    .symptoms .cards + h2.title {
        font-size: 6.5vw;
        max-width: 335px;
        margin: 0 auto 30px auto;
    }

    .symptoms .text-bottom {font-size: 4.4vw;}
}

/* ------------------ CHANGES ------------------ */
.changes {padding: 75px 0 50px 0;}
.changes .central-container {max-width: 1250px;}
.changes h2.title {
    max-width: 820px;
    margin: 0 auto;
}
.changes .sub {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.changes .text-bottom {
    margin-top: 20px;
    font-size: 19px;
    color: #6F707F;
}

.video-player {
    margin: 40px auto 0 auto;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.video-player video {
    display: block;
    width: 100%;
    min-height: 500px;
    object-fit: cover;
    object-position: center;
}

.video-player .play,
.video-player .pause {
    position: absolute;
    top: calc(50% - 52.5px);
    left: calc(50% - 52.5px);
    background: rgba(0,0,0,.5);
    width: 105px;
    height: 105px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    color: #fff;
    opacity: 0;
    z-index: 10;
    cursor: pointer;
}
.video-player .play svg {
    width: 34px;
    height: 38px;
    margin-right: -10px;
}
.video-player .play:before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: block;
    background: rgba(0, 0, 0, .2);
    border-radius: 50%;
    z-index: -1;
    animation: pulse-border 3000ms ease-out infinite;
}

.video-player .pause span {
    display: block;
    width: 10px;
    height: 50px;
    background: #fff;
    position: relative;
    z-index: 2;
}
.video-player .pause span:first-child {margin-right: 15px;}

.pause-video .pause,
.play-video .play {
    display: inline-flex;
    animation: anVideoBtn 0.3s linear forwards !important;
}

.video-player:not(.playing) .play {
    display: inline-flex;
    animation: anVideoBtn2 0.3s linear forwards !important;
}

@keyframes anVideoBtn {
    0% {opacity: 1;}
    100% {opacity: 0; transform: scale(0.5); visibility: hidden;}
}
@keyframes anVideoBtn2 {
    0% {opacity: 1; transform: scale(1); visibility: visible;}
    100% {opacity: 1; transform: scale(1); visibility: visible;}
}
@keyframes pulse-border {
    0% {transform: scale(1); opacity: 1;}
    100% {transform: scale(1.5); opacity: 0;}
}

@media (max-width: 1600px) {
    .changes h2.title {max-width: 700px;}
    .changes .sub {max-width: 700px;}
    .changes .text-bottom {font-size: 16px;}
    .video-player {
        max-width: 1070px;
        border-radius: 20px;
    }
}

@media (max-width: 991px) {
    .video-player .play,
    .video-player .pause {zoom: 0.7;}
}

@media (max-width: 550px) {
    .changes {padding: 40px 0 50px 0;}
    .changes h2.title {font-size: 7.5vw;}
    .changes .sub {
        margin-top: 20px;
        margin-bottom: 0;
        font-size: 4.3vw;
    }

    .video-player video {min-height: inherit;}
    .video-player {
        border-radius: 15px;
        margin-top: 30px;
    }

    .changes .text-bottom {
        font-size: 12px;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 15px;
    }
}

/* ------------------ OFFERS ------------------ */
.offers {
    background: #fff;
    position: relative;
    overflow: hidden;
}
.offers .central-container {position: static;}
.offers .center {
    display: flex;
    max-width: inherit;
}

.offers-content {
    width: 50%;
    padding-top: 65px;
    padding-bottom: 100px;
    color: #474747;
    display: flex;
    justify-content: center;
    align-items: center;
}
.offers-content h2.title {color: #000229;}

.offers-content .group {
    display: flex;
    gap: 15px;
    max-width: 640px;
    margin: 35px 0;
}
.offers-content .label {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    gap: 10px;
    min-height: 40px;
    background: #F6F2F0;
    color: #6F707F;
    font-size: 14px;
    font-weight: normal;
    border-radius: 30px;
    padding: 0 20px;
    white-space: nowrap;
}

.offers-content .description {
    color: #474747;
    max-width: 570px;
    font-size: 22px;
    font-weight: 600;
    padding-left: 15px;
    border-left: 3px solid #474747;
}

.offers-content .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    font-weight: 500;
    color: #474747;
    margin-top: 15px;
    padding: 0;
    transition: all 0.3s;
    outline: none;
}
.offers-content .btn svg {
    width: 8px;
    height: 14px;
    position: relative;
    top: 1px;
}
.offers-content .btn:hover {color: #abacb8;}
.offers-content .btn:focus {box-shadow: none;}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 35px 0;
}
.check-list li {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 20px;
}
.check-list li svg {
    width: 17px;
    height: 17px;
    min-width: 17px;
    color: #000229;
}

.offers-content > .btn {padding: 0;}
.offers-content > .btn svg {
    position: relative;
    top: 2px;
}

.offers-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background: url(../img/offers/bg.webp?4) no-repeat left top;
    background-size: cover;
    display: flex;
}
.offers-image .info {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    text-align: center;
    font-size: 22px;
    color: #fff;
    background: rgba(78, 78, 78, .35);
    backdrop-filter: blur(5px);
    padding: 30px 25px 50px 25px;
    width: 100%;
    line-height: 1.3;
    position: relative;
}
.offers-image .info:before {
    content:'Actor portrayal';
    content:'';
    position:absolute;
    top:-30px;
    color:white;
    font-size:11px;
    text-align:center;
    width: 100%;
}
.offers-image .info > div {padding: 0 15px;}
.offers-image .info > div p {font-weight: 300;}
.offers-image .info small {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 15px 15px 15px;
    font-size: 14px;
    font-weight: 300;
}
.offers-image .info h3 {
    font-size: 45px;
    font-weight: 500;
    margin-bottom: 3px;
}

@media (max-width: 1600px) {
    .offers-content {
        padding-top: 50px;
        padding-bottom: 35px;
        zoom: 0.9;
    }
    .offers-content .group {
        max-width: 535px;
        gap: 10px;
    }
    .offers-content .label {
        font-size: 12px;
        gap: 5px;
    }
    .offers-content .btn {zoom: 0.9;}

    .offers-image {zoom: 0.8;}

    .check-list {gap: 10px;}
    .check-list li {
        gap: 10px;
        font-size: 15px;
    }
    .check-list li svg {zoom: 0.9;}
}

@media (max-width: 1200px) {
    .offers-content {zoom: 0.8;}
    .offers-image .info {zoom: 0.8;}
    .offers-image .info h3 {font-size: 38px;}
}

@media (max-width: 991px) {
    .offers {
        padding: 50px 0 50px 0;
        border-radius: 20px;
    }
    .offers .central-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .offers-content {
        zoom: 1;
        max-width: 565px;
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }
    .check-list li {font-size: 14px;}

    .offers-image {
        position: relative;
        width: auto;
        min-height: 550px;
        overflow: hidden;
        border-radius: 20px;
    }
}

@media (max-width: 767px) {
    .offers-content .description {font-size: 20px;}
    .offers-image .info {padding: 30px 15px 50px 15px;}
}

@media (max-width: 550px) {
    .offers {
        padding-top: 45px;
        padding-bottom: 0;
    }
    .offers .central-container {gap: 35px;}
    .offers-content h2.title {font-size: 8vw;}
    .offers-content .fact {
        font-size: 4vw;
        border-width: 2px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .offers-content .main-text {font-size: 3.99vw;}

    .offers-content .group {
        gap: 5px;
        margin-top: 15px;
        margin-bottom: 25px;
    }
    .offers-content .label {
        font-size: 10px;
        min-height: 30px;
        padding: 0 10px;
    }
    .offers-content .label img {zoom: 0.5;}

    .offers-content .wrap {
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    .offers-content .main-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .offers-content .description {
        font-size: 4vw;
        border-left-width: 2px;
        padding-left: 10px;
    }

    .offers-image {
        min-height: 450px;
        border-radius: 15px;
        margin-left: -15px;
        margin-right: -15px;
    }
    .offers-image .info {
        zoom: 1;
        padding: 15px 15px 35px 15px;
        gap: 5px;
        font-size: 2.5vw;
        border-radius: 0 0 15px 15px;
    }
    .offers-image .info > div {padding: 0;}
    .offers-image .info small {
        font-size: 2.8vw;
        padding-bottom: 10px;
    }
    .offers-image .info h3 {font-size: 6vw;}
    .offers-image .info > div p {
        font-size: 13px;
        line-height: 1.2;
    }

    .main-text {margin-bottom: 20px;}

    .check-list {
        margin-bottom: 17px;
        margin-top: 25px;
        gap: 15px;
    }
    .check-list li {
        font-size: 3.4vw;
        font-weight: 500;
    }
    .check-list li svg {zoom: 1.2;}

    .offers-content .violet-button-container {margin: 0 auto;}
    .offers-content .violet-button-container,
    .offers-content .violet-button-container .button {
        width: 95%;
        margin: 0 auto;
    }
    .offers-content .violet-button-container + div {
        width: 100%;
        text-align: center;
    }
    .offers-content .btn {margin-top: 35px;}
}

@media (max-width: 375px) {
    .offers-content .group {flex-wrap: wrap;}
    .offers-content .label {font-size: 11px;}
    .offers-image .info > div p {font-size: 12px;}
    .offers-content .btn {zoom: 0.8;}
}

/* ------------------ REVIEW ------------------ */
.section-review h2.title {
    max-width: 900px;
    margin: 0 auto 45px auto;
}

.section-review .reviews div.review-card {background-color: var(--color-new-wh-12);}
.section-review .foot p {
    font-size: 14px;
    font-weight: normal;
    color: #6F707F;
    margin-top: 30px;
}
.section-review .verified-text {color: #B4ABA2;}
.section-review .verified-text:before {
    background: url(../img/section-review/ic-verification.svg) no-repeat 100% / 100%;
}

@media (max-width: 810px) {
    .section-review .reviews div.review-card > div {position: relative;}
    .section-review .score-wrapper img {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        content: url('/assets/public/womens-health/images/stars.svg');
    }
}

@media (max-width: 550px) {
    .reviews div.review-card {min-height: 330px;}
    .section-review {
        padding-top: 50px;
        padding-bottom: 40px !important;
    }
    .section-review .central-container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .section-review h2.title {
        font-size: 8vw;
        margin-bottom: 30px;
    }
    .section-review .slick-slider {margin-bottom: 45px;}
    .section-review .violet-button-container,
    .section-review .violet-button-container .button {width: 100%;}
    .section-review .foot p {font-size: 12pt;}
}

/* ------------------ MEDICATION ------------------ */
.medication {padding: 55px 0 30px 0;}

.medication .wrap {
    max-width: 1000px;
    margin: 50px auto 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 75px;
}

.medication-image {
    border-radius: 24px;
    overflow: hidden;
    display: flex;
}
.medication-image img {
    object-fit: cover;
    width: 100%;
}

.medication-content .item + .item {
    margin-top: 35px;
}
.medication-content .item span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #6F707F;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F5F5F6;
    padding: 5px 15px;
    border-radius: 30px;
    margin-bottom: 5px;
}
.medication-content h4 {
    font-size: 21px;
    font-weight: 600;
    margin: 7px 0 10px 0;
}
.medication-content p {
    font-size: 16px;
    font-weight: normal;
    color: #6F707F;
}

.medication-content .foot {
    margin-top: 40px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}
.medication-content .foot p {
    font-size: 13px;
    margin-top: 13px;
    color: #000229;
}

@media (max-width: 1600px) {
    .medication .wrap {
        gap: 60px;
        zoom: 0.9;
    }
}

@media (max-width: 1200px) {
    .medication .wrap {gap: 30px;}
}

@media (max-width: 767px) {
    .medication .wrap {grid-template-columns: 1fr;}
    .medication-image {
        border-radius: 20px;
        max-height: 600px;
    }
}

@media (max-width: 550px) {
    .medication {
        padding-top: 40px;
        padding-bottom: 50px;
    }
    .medication h2.title {font-size: 10.5vw;}
    .medication .main-badge {margin-bottom: 15px;}
    .medication .sub {
        margin-top: 15px;
        font-size: 4.5vw;
    }
    .medication .wrap {margin-top: 40px;}

    .medication-content h4 {font-size: 20px;}
    .medication-content p {font-size: 18px;}

    .medication-content .foot {width: 100%;}
    .medication-content .foot p {display: none;}
    .medication-content .violet-button-container {width: 95%;}
    .medication-content .violet-button-container .button {width: 100%;}
}

/* ------------------ FAQ ------------------ */
.section-faq .central-container {
    display: flex;
    gap: 11.2rem;
    padding-top: 8.2rem;
    padding-bottom: 8.2rem;
}

.section-faq .central-container .title {
    max-width: 410px;
    width: inherit;
}

.section-faq .faq {max-width: 724px;}

@media all and (max-width: 1200px) {
    .section-faq .central-container {
        gap: 8.4rem;
    }
}

@media all and (max-width: 810px) {
    .section-faq .central-container {
        flex-direction: column;
        gap: 3.2rem;
    }

    .section-faq .central-container .title {
        width: 100%;
    }

    .section-faq .faq {
        max-width: 100%;
    }
}

@media (max-width: 550px) {
    .section-faq .central-container {
        padding-top: 40px;
        padding-bottom: 30px;
    }
    .section-faq .central-container  h2,
    .section-faq .central-container  h6 {font-weight: normal;}
}

/* ------------------ COMPARISON ------------------ */
hr.line {
    background: linear-gradient(90deg, rgba(239, 237, 233, 0) 0%, rgba(239, 237, 233) 47%, rgba(239, 237, 233, 0) 100%);
}
.section-comparison .central-container {padding: 8.2rem 4rem;}
.section-comparison .title {
    max-width: 750px;
    margin: 0 auto 20px auto;
}

.section-comparison .central-container .comparison-table {
    position: relative;
    display: grid;
    grid-template-columns: 1.32fr 1fr 1.13fr;
    gap: 0 0.8rem;
}

.section-comparison .central-container .comparison-table .column-2-bg {
    grid-column: 2 / 3;
    background: linear-gradient(to bottom, var(--color-new-wh-6), var(--color-new-wh-5));
    border-radius: var(--radius-primary);
    z-index: 0;
    position: absolute;
    width: 100%;
    height: 100%;
}

.section-comparison .central-container .comparison-table .cell {
    padding: 2rem 2.4rem;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--color-new-wh-2);
    position: relative;
    z-index: 1;
    width: 100%;
}

.section-comparison .central-container .comparison-table .cell h6 {
    flex: 1;
}

.section-comparison .central-container .comparison-table .col-1 {
    justify-content: center;
}

.section-comparison .central-container .comparison-table .col-2 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-comparison .central-container .comparison-table .col-3.head {
    border-top-left-radius: 2.4rem;
    border-top-right-radius: 2.4rem;
    background-color: var(--color-new-wh-11);
    overflow: hidden;
}
.section-comparison .central-container .comparison-table .col-3 {
    border-left: 1px solid var(--color-new-wh-2);
    border-right: 1px solid var(--color-new-wh-2);
}
.section-comparison .central-container .comparison-table .col-3:last-child {
    border-bottom-left-radius: 2.4rem;
    border-bottom-right-radius: 2.4rem;
}

.section-comparison .central-container .comparison-table .cell img {
    width: 32px;
    height: 32px;
}

.section-comparison .central-container .comparison-table .cell.logo img {
    max-width: 110px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media all and (max-width: 810px) {
    .section-comparison .central-container {
        padding: 4.6rem 0.8rem;
    }

    .section-comparison .central-container .comparison-table {
        grid-template-columns: 1.32fr 1fr 1fr;
        gap: 0 0.4rem;
    }

    .section-comparison .central-container .comparison-table .cell {
        padding: 1.2rem 0.2rem;
        min-height: 0;
    }

    .section-comparison .central-container .comparison-table .cell img {
        width: 24px;
        height: 24px;
    }

    .section-comparison .central-container .comparison-table .col-3.head {
        padding: 1.2rem 0.6rem;
    }
}

@media all and (max-width: 500px) {
    .section-comparison .central-container .comparison-table h6 {
        font-size: 1.6rem;
    }

    .section-comparison .central-container .comparison-table .cell.logo img {
        max-width: 75px;
    }
}

/* ------------------ SECTION MEDICATIONS ------------------ */
.section-medications .central-container {
    padding-top: 8.2rem;
    padding-bottom: 8.2rem;
}
.section-medications h2.title {
    max-width: 650px;
    margin: 0 auto;
}
.section-medications .sub {margin-bottom: 25px;}
.section-medications .central-container .products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}
.section-medications .central-container .products .product-card {background: none;}
.section-medications .central-container .products .product-card .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.8rem;
    border-radius: var(--radius-primary);
    background-color: #ded2c9;
}

.section-medications .central-container .products .product-card img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.section-medications .central-container .products .product-card .content {
    border-radius: var(--radius-secondary);
    background-color: var(--color-new-wh-12);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.2rem;
    padding: 2.4rem;
    min-height: 285px;
}

.section-medications .central-container .products .product-card .content .text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.section-medications .central-container .products .product-card .content .text-wrapper h5 {
    max-width: 200px;
}

.section-medications .central-container .products .product-card .content .new-wh-button-container,
.section-medications .central-container .products .product-card .content .button {
    width: 100%;
}

.section-medications .foot {
    padding: 25px 25px 10px 25px;
    max-width: 98%;
    margin: 40px auto 0 auto;
    color: #6F707F;
    border: 1.5px solid #BEBEC5;
    border-radius: 20px;
}
.section-medications .foot p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.3;
}
.section-medications .foot p b {font-weight: 600;}
.section-medications .foot p + p {margin-top: 15px;}
.section-medications .foot a {color: #6F707F;}
.section-medications .foot a:hover {text-decoration: none;}
.section-medications .foot .text-right {
    margin-top: 15px;
    text-align: right;
}
.section-medications .foot button {
    border: none;
    background: none;
    color: #6F707F;
    font-size: 14px;
    font-weight: bold;
}

.collapsed {
    max-height: 120px;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

@media (max-width: 1600px) {
    .section-medications h2.title {max-width: 550px;}
    .section-medications .central-container .products {zoom: 0.9;}
}

@media (max-width: 1200px) {
    .section-medications .foot {max-width: initial;}
}

@media all and (max-width: 1264px) {
    .section-medications .central-container .products .product-card .content {
        min-height: 314px;
    }

    @media all and (max-width: 1028px) {
        .section-medications .central-container .products .product-card .content {
            padding: 2rem;
        }
    }
}

@media all and (max-width: 1200px) {
    .section-medications .central-container .products .product-card .content .text-wrapper h5 {
        max-width: 188px;
    }
}

@media all and (max-width: 1023px) {
    .section-medications .central-container .products {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-medications .central-container .products .product-card .content {
        min-height: 255px;
    }

    .section-medications .central-container .products .product-card img {
        width: 70%;
    }
}

@media all and (max-width: 700px) {
    .section-medications .central-container .products .product-card img {
        width: 85%;
    }
}

@media all and (max-width: 620px) {
    .section-medications .central-container .products {
        display: flex;
        flex-direction: column;
        margin-left: -15px;
        margin-right: -15px;
    }

    .section-medications .central-container .products .product-card {
        padding: 0 15px;
    }
    .section-medications .central-container .products .product-card .content {
        min-height: 0px;
        gap: 2.4rem;
    }

    .section-medications .central-container .products .product-card img {
        width: 90%;
    }

    .section-medications .central-container .products .product-card .content .text-wrapper h5 {
        max-width: 800px;
    }

    .section-medications div.slick-list {margin-bottom: 20px;}
    .section-medications .slick-dots {
        margin-left: 15px;
        border-radius: 15px;
    }

    .section-medications .foot p {font-size: 13px;}
}

@media (max-width: 550px) {
    .section-medications .central-container {
        padding-top: 40px;
        padding-bottom: 15px;
    }
    .section-medications h2.title {font-size: 8vw;}
    .section-medications .main-badge {margin-bottom: 15px;}
    .section-medications .sub {
        margin-top: 20px;
        font-size: 4.5vw;
    }
    .section-medications hr.line {display: none;}

    .section-medications .foot {
        padding: 15px 15px 10px 15px;
        margin: 30px auto 0 auto;
        border-width: 1.2px;
        border-radius: 15px;
    }
    .section-medications .foot .text-right {margin-top: 5px;}

    .collapsed {max-height: 135px;}
}

/* ------------------ SOLUTIOIN ------------------ */
.solution {
    overflow: hidden;
    background: linear-gradient(40deg, #9B789D 30%, #DAC9DA 90%);
    position: relative;
}
.solution .central-container {position: static;}
.solution .center {
    display: flex;
    max-width: 1800px;
}

.solution-image {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 50%;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    overflow: hidden;
}
.solution-image:before {
    content: '';
    display: block;
    position: absolute;
    inset: 0;
    background: url(../img/solution/bg.webp?4) no-repeat center top;
    background-size: cover;
}

.solution-image .text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(78,78,78,.35);
    color: #fff;
    text-align: center;
    padding: 35px 15px 35px 15px;
}
.solution-image .text h3 {
    font-size: 45px;
    font-weight: 500;
    margin: 0 auto;
    max-width: 800px;
}
.solution-image .text p {
    font-size: 14px;
    font-weight: normal;
    margin-top: 15px;
}

@keyframes scale-bg {
    0% {transform: scale(1);}
    25% {transform: scale(1.2) translate(5%, 5%);}
    50% {transform: scale(1.15) translate(3%, 3%);}
    75% {transform: scale(1.1) translate(1%, 1%);}
    100% {transform: scale(1) translate(0%, 0%);}
}

.solution-content {
    width: 50%;
    margin-left: auto;
    padding: 160px 15px 160px 75px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solution-content .rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.solution-content h2.title {
    font-size: 46px;
    margin-bottom: 85px;
}

.solution-content .foot {
    text-align: center;
    width: fit-content;
}
.solution-content .button {min-width: 320px;}
.solution-content .foot p {
    font-size: 18px;
    font-weight: normal;
    margin-top: 10px;
}

.main-text {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 35px;
    margin-top: 20px;
}
.main-text b {font-weight: 600;}

@media (max-width: 1600px) {
    .solution-content {
        zoom: 0.9;
        padding-top: 130px;
        padding-bottom: 130px;
    }
    .solution-image .text h3 {font-size: 35px;}
}

@media (max-width: 1200px) {
    .solution {border-radius: 20px;}
    .solution-content {
        padding-top: 50px;
        padding-bottom: 50px;
        padding-left: 30px;
    }
    .solution-content h2.title {
        font-size: 35px;
        margin-bottom: 50px;
    }
    .solution-image .text h3 {font-size: 25px;}
}

@media (max-width: 991px) {
    .solution .center {flex-direction: column;}
    .solution-image {
        position: relative;
        width: auto;
        min-height: 500px;
        margin-left: -15px;
        margin-right: -15px;
    }
    .solution-content {
        padding: 40px 0;
        width: 100%;
        text-align: center;
    }
    .solution-content .rating {justify-content: center;}
    .solution-content .foot {margin: 0 auto;}
}

@media (max-width: 550px) {
    .solution-image {
        min-height: 430px;
        padding-bottom: 0;
        border-radius: 0;
    }
    .solution-image:before {
        background: url(../img/solution/bg-mob.webp?4) no-repeat center top;
        background-size: cover;
    }
    .solution-image .text {padding: 25px 15px 25px 15px;}
    .solution-image .text h3 {
        font-size: 5.3vw;
        line-height: 1.4;
    }

    .solution-content {
        padding: 55px 0 55px 0;
        display: flex;
        flex-direction: column;
    }
    .solution-content h2.title {
        font-size: 8.4vw;
        text-align: left;
        margin-bottom: 40px;
    }
    .solution-content .rating {
        justify-content: start;
        zoom: 0.9;
        margin-bottom: 20px;
    }

    .solution-content .foot p {
        font-size: 15px;
        margin-top: 15px;
    }
}

/* ------------------ TEAM ------------------ */
.team {padding: 90px 0;}
.team .central-container {
    display: grid;
    grid-template-columns: 0.6fr 1fr;
    gap: 30px;
}
.team .sub {margin-bottom: 50px;}
.team .team-content .button {min-width: 260px;}

.team-doctors {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
.team-doctors > div {
    border-radius: 24px;
    background: #F4F0EE;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.team-doctors .image {
    padding: 10px;
    max-height: 290px;
    display: flex;
}
.team-doctors .image img {
    border-radius: 24px;
    object-fit: cover;
}
.team-doctors .content {
    padding: 25px 30px 20px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.team-doctors .content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000229;
}
.team-doctors .content p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.4;
    color: #6F707F;
    margin-top: 10px;
    margin-bottom: 15px;
}
.team-doctors .content > img {
    max-width: 115px;
    margin-left: auto;
    margin-right: -15px;
    margin-top: auto;
}

@media (max-width: 1600px) {
    .team {padding: 80px 0;}
    .team .central-container {grid-template-columns: 0.4fr 1fr;}
}

@media (max-width: 1200px) {
    .team .central-container {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .team-content {
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (max-width: 991px) {
    .team {padding: 50px 0;}
    .team-doctors {gap: 10px;}
    .team-doctors .content {padding: 15px;}
    .team-doctors .content h3 {font-size: 15px;}
    .team-doctors .content p {font-size: 15px;}
    .team-doctors .content > img {
        max-width: 95px;
        margin-right: -5px;
    }
}

@media (max-width: 550px) {
    .team {padding: 40px 0;}
    .team-content {text-align: left;}
    .team h2.title {font-size: 7.7vw;}
    .team .sub {
        font-size: 4.5vw;
        margin-top: 15px;
        margin-bottom: 30px;
    }

    .team-doctors {grid-template-columns: 1fr;}
    .team-doctors > div {
        display: grid;
        grid-template-columns: 0.7fr 1fr;
        gap: 5px;
        background: none;
    }

    .team-doctors .image {
        padding: 0;
        background: #F4F0EE;
        border-radius: 24px;
    }
    .team-doctors .content {
        background: #F4F0EE;
        border-radius: 24px;
        padding: 20px 15px 15px 15px;
    }
    .team-doctors .content h3 {
        font-size: 5.5vw;
        font-weight: normal;
    }
    .team-doctors .content p {
        font-size: 3.7vw;
        color: #000229;
        margin-bottom: 10px;
        padding-bottom: 10px;
        position: relative;
    }
    .team-doctors .content p:after {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 1px;
        background: #E2DFD6;
    }
    .team-doctors .content > img {
        max-width: 105px;
        margin-right: auto;
    }
}

/* ------------------ EXPERIENCE ------------------ */
.experience {
    padding: 100px 0 135px 0;
    background: #F4F0EE;
}

.experience .central-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.experience-content {max-width: 600px;}
.experience-content .sub {color: #000229;}
.experience-content .group {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}
.experience-content .button-wrapper {border-color: #b8b6bc;}

.experience-image {
    display: flex;
    justify-content: end;
    align-items: center;
}

.experience-image .image {
    max-width: 600px;
    overflow: hidden;
    border-radius: 50px;
    display: flex;
    align-items: end;
    position: relative;
}
.experience-image .image > img {
    width: 100%;
    position: relative;
    z-index: 2;
}
.experience-image .main-label {
    position: absolute;
    z-index: 10;
}
.experience-image .main-label:nth-child(2) {
    left: calc(50% - 180px);
    top: 50px;
}
.experience-image .main-label:nth-child(3) {
    right: 10px;
    top: 120px;
}
.experience-image .main-label:nth-child(4) {
    left: 50px;
    top: 150px;
}

.candles {
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    align-items: end;
    gap: 14px;
    position: absolute;
    top: 85px;
    left: 0;
    right: 0;
    height: 100%;
    max-height: 250px;
    list-style: none;
    opacity: 0.5;
}
.candles li {
    border-radius: 30px;
    height: 100%;
    background: linear-gradient(to bottom, #AF85AD, #DEB9DF);
    animation: spectrum ease-in-out infinite alternate;
    opacity: 0;
    animation-timing-function: cubic-bezier(0.5, 0.0, 0.5, 1.0);
}

.candles li:nth-child(10),
.candles li:nth-child(11),
.candles li:nth-child(12),
.candles li:nth-child(13),
.candles li:nth-child(14),
.candles li:nth-child(15),
.candles li:nth-child(16) {
    background: linear-gradient(to top, #AF85AD, #DEB9DF);
}

@keyframes spectrum {
    from { opacity: 1; max-height: var(--min-h); }
    to   { opacity: 1; max-height: var(--max-h); }
}

.candles li:nth-child(1)  { --max-h: 230px; --min-h: 100px; animation-duration: 6s; animation-delay: 0.00s; }
.candles li:nth-child(2)  { --max-h: 215px; --min-h: 95px;  animation-duration: 7.5s; animation-delay: 0.15s; }
.candles li:nth-child(3)  { --max-h: 200px; --min-h: 90px;  animation-duration: 5s; animation-delay: 0.05s; }
.candles li:nth-child(4)  { --max-h: 190px; --min-h: 85px;  animation-duration: 6.5s; animation-delay: 0.30s; }
.candles li:nth-child(5)  { --max-h: 180px; --min-h: 80px;  animation-duration: 8s; animation-delay: 0.10s; }
.candles li:nth-child(6)  { --max-h: 195px; --min-h: 88px;  animation-duration: 6s; animation-delay: 0.40s; }
.candles li:nth-child(7)  { --max-h: 165px; --min-h: 75px;  animation-duration: 5.5s; animation-delay: 0.20s; }
.candles li:nth-child(8)  { --max-h: 145px; --min-h: 65px;  animation-duration: 7s; animation-delay: 0.35s; }
.candles li:nth-child(9)  { --max-h: 125px; --min-h: 55px;  animation-duration: 4.5s; animation-delay: 0.08s; }
.candles li:nth-child(10) { --max-h: 105px; --min-h: 48px;  animation-duration: 8s; animation-delay: 0.25s; }
.candles li:nth-child(11) { --max-h: 85px;  --min-h: 40px;  animation-duration: 6s; animation-delay: 0.45s; }
.candles li:nth-child(12) { --max-h: 80px;  --min-h: 38px;  animation-duration: 5s; animation-delay: 0.12s; }
.candles li:nth-child(13) { --max-h: 85px;  --min-h: 40px;  animation-duration: 6.5s; animation-delay: 0.38s; }
.candles li:nth-child(14) { --max-h: 100px; --min-h: 46px;  animation-duration: 7.5s; animation-delay: 0.22s; }
.candles li:nth-child(15) { --max-h: 110px; --min-h: 50px;  animation-duration: 5.5s; animation-delay: 0.48s; }
.candles li:nth-child(16) { --max-h: 115px; --min-h: 52px;  animation-duration: 6s; animation-delay: 0.18s; }

@media (max-width: 1600px) {
    .experience {padding: 100px 0 100px 0;}
    .experience-content {max-width: 500px;}
    .experience-content .sub {max-width: 475px;}
    .experience-content .group {zoom: 0.9;}
    .experience-image .image {border-radius: 40px;}
}

@media (max-width: 1200px) {
    .experience {padding: 80px 0;}
    .experience-content {zoom: 0.9;}
}

@media (max-width: 991px) {
    .experience {padding: 50px 0;}
    .experience .central-container {grid-template-columns: 1fr;}
    .experience-content {
        zoom: 1;
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }
    .experience-content .sub {max-width: inherit;}
    .experience-content .group {
        zoom: 1;
        justify-content: center;
    }

    .experience-image {justify-content: center;}
}

@media (max-width: 550px) {
    .experience {padding: 40px 0 0;}
    .experience h2.title {
        text-align: left;
        font-size: 8vw;
    }
    .experience-content .group {
        flex-direction: column;
        margin-top: 30px;
    }
    .experience-content .sub {
        text-align: left;
        font-size: 4.5vw;
        font-weight: 300;
    }
    .experience-content .violet-button-container,
    .experience-content .violet-button-container .button {width: 100%;}
    .experience-content .button-wrapper,
    .experience-content .button-wrapper .button {width: 100%;}
    .experience-content .button span {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    .experience-content .button svg {
        display: inline-block !important;
        width: 8px;
        height: 14px;
        position: relative;
        top: 1px;
    }

    .experience-image {
        margin-left: -15px;
        margin-right: -15px;
    }
    .experience-image .image {border-radius: 30px;}
    .experience-image .main-label {zoom: 0.8;}
    .experience-image .main-label:nth-child(4) {left: 15px;}
    .experience-image .main-label:nth-child(2) {
        left: calc(50% - 185px);
        top: 35px;
    }
    .experience-image .main-label:nth-child(3) {top: 115px;}

    .candles {
        top: 65px;
        max-height: 160px;
        gap: 10px;
    }
}

/* ------------------ FOOTER ------------------ */
.footer {
    background: #000229;
    border-radius: 24px 24px 0 0;
    position: relative;
    z-index: 99;
    top: 0;
    color: #fff;
    list-style: none;
    -webkit-font-smoothing: antialiased;
}

.footer .central-container {
    display: flex;
    flex-direction: column;
    padding: 0 15px;
    gap: 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}
.footer-main h3 {
    color: #6F707F;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-main ul a {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 13px;
}
.footer-main ul a svg {
    width: 13px;
    height: 13px;
}
.footer-main ul li + li {margin-top: 20px;}
.main-hover {color: #fff;}
.main-hover > div {
    overflow: hidden;
    max-height: 28px;
}
.main-hover > div > div {
    display: flex;
    flex-direction: column;
    line-height: 1.5;
    transition: all 0.2s ease-out;
}
.main-hover:hover > div > div {transform: translateY(-50%);}

.footer-social {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 4px;
    margin-top: 145px;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    background: #151637;
    border-radius: 24px;
    padding: 0 32px;
    min-height: 88px;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease-out;
}
.footer-social a:hover {
    background: #fff;
    color: #151637;
}
.footer-social a img {display: none;}

.footer-address {
    margin-top: 55px;
    display: flex;
    align-items: center;
    gap: 30px;
}
.footer-address a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
}
.footer-address a:first-child svg {
    width: 16px;
    height: 16px;
}
.footer-address a:last-child svg {
    width: 18px;
    height: 18px;
}

.footer-logo {padding: 125px 0;}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    border-top: none !important;
    order: -1;
}
.footer-bottom .copy {
    color: #fff !important;
    font-size: 12px;
    font-weight: 600;
}

.footer-bottom ul {
    display: flex;
    gap: 38px;
    list-style: none;
}
.footer-bottom ul li {position: relative;}
.footer-bottom ul li:after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    margin-left: 15px;
}
.footer-bottom ul li:last-child:after {display: none;}
.footer-bottom ul a {
    font-size: 17px !important;
    text-decoration: none;
}
.footer-bottom ul a:hover {color: #fff;}

.footer-bottom > div {
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer-bottom > div img:first-child {max-width: 120px;}
.footer-bottom > div img:last-child {max-width: 65px;}

.footer-btns {display: none;}

.footer-text p {
    font-size: 12px;
    line-height: 1.5;
    font-weight: 500;
}
.footer-text p + p {margin-top: 20px;}
.footer-text p a {color: #fff;}
.footer-text p a:hover {text-decoration: underline;}

#cannellamedia {display: none !important;}

@media (max-width: 1600px) {
    .footer-main ul a {font-size: 15px;}
    .main-hover > div {max-height: 23px;}

    .footer-social {margin-top: 100px;}
    .footer-social a {zoom: 0.8;}

    .footer-address {
        margin-top: 40px;
        zoom: 0.8;
    }

    .footer-logo {padding: 90px 0;}

    .footer-bottom {padding: 15px 0;}
    .footer-bottom .copy {font-size: 10px;}
    .footer-bottom ul {zoom: 0.7;}
}

@media (max-width: 991px) {
    .footer-main ul a {font-size: 13px;}
    .footer-main ul li + li {margin-top: 15px;}

    .footer-address {zoom: 0.7;}

    .footer-social {margin-top: 60px;}
    .footer-social a {zoom: 0.7;}

    .footer-logo {padding: 60px 0;}

    .footer-bottom > div {
        gap: 15px;
        zoom: 0.8;
    }

    .footer-bottom ul {zoom: 0.6;}
}

@media (max-width: 767px) {
    .footer-main ul li + li {margin-top: 10px;}
    .footer-bottom {
        padding: 25px 0;
        flex-direction: column;
        gap: 20px 0;
    }
    .footer-bottom .copy {font-size: 13px;}
    .footer-bottom ul {zoom: 0.7;}
    .footer-bottom > div {
        gap: 20px;
        zoom: 1;
    }
}

@media (max-width: 550px) {
    .footer {padding-bottom: 80px;}
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px 15px;
    }
    .footer-main ul a {font-size: 15px;}

    .footer-social {margin-top: 45px;}
    .footer-social a {
        justify-content: center;
        zoom: 1;
        border-radius: 20px;
    }
    .footer-social a span {display: none;}
    .footer-social a img {
        display: inline-block;
        zoom: 0.7;
    }

    .footer-address {
        zoom: 1;
        justify-content: space-between;
    }
    .footer-address img {
        position: relative;
        top: 2px;
    }

    .footer-btns {
        display: flex;
        gap: 17px;
        margin-top: 25px;
    }

    .footer-logo {padding: 40px 0;}

    .footer-bottom {padding: 40px 0 15px 0 !important;}
    .footer-bottom ul {
        zoom: 1;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 38px;
    }

    .footer-bottom ul a {font-size: 14px !important;}
    .footer-bottom ul li:after {margin-top: 0 !important;}
    .footer-bottom .copy {
        font-size: 14px;
        order: 1;
    }
}

@media (max-width: 413px) {
    .footer-bottom ul a {font-size: 13px !important;}
    .footer-address a {font-size: 15px;}
}

.btn-fix {
    position: fixed;
    left: 0;
    right: 0;
    bottom: -100%;
    transition: all 0.3s;
    z-index: 990;
    padding: 10px;
    background: #fff;
    display: none;
    border-radius: 30px 30px 0 0;
    line-height: 1;
}
.btn-fix.active {bottom: 0;}
.btn-fix .btn {
    width: 100%;
    border-radius: 15px;
    min-height: 65px;
}
.btn-fix .btn > div {
    max-height: 28px;
    font-size:18px;
}

.btn-fix .violet-button-container,
.btn-fix .violet-button-container .button {width: 100%;}
.btn-fix .violet-button-container .button {zoom: 1;}
.btn-fix .violet-button-container .button span {font-size: 15px;}

@media (max-width: 500px) {
    .btn-fix {display: block;}
}

/* ===== Custom Video Controls (Winona-style) ===== */
.video-player {
    --vp-bar: #7C5FD3;
    --vp-bar-dark: #5C42BD;
    --vp-bar-darker: #4B33A8;
}
.video-player .vp-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 48px;
    padding: 0 14px;
    background: var(--vp-bar);
    z-index: 11;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    user-select: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}
.video-player:hover .vp-controls,
.video-player:focus-within .vp-controls {
    opacity: 1;
    pointer-events: auto;
}
.video-player .vp-btn {
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: background-color .15s ease;
}
.video-player .vp-btn-play {
    background: var(--vp-bar-dark);
}
.video-player .vp-btn:hover {background: var(--vp-bar-darker);}
.video-player .vp-btn:focus-visible {outline: 2px solid #fff; outline-offset: 1px;}
.video-player .vp-ic {
    width: 18px;
    height: 18px;
    display: block;
}
.video-player .vp-btn-play .vp-ic {width: 13px; height: 13px;}
.video-player .vp-btn-play .vp-ic-play {margin-left: 2px;}
.video-player .vp-ic-pause,
.video-player .vp-ic-mute,
.video-player .vp-ic-fs-exit {display: none;}
.video-player.playing .vp-ic-play {display: none;}
.video-player.playing .vp-ic-pause {display: block;}
.video-player.vp-muted .vp-ic-vol {display: none;}
.video-player.vp-muted .vp-ic-mute {display: block;}
.video-player.vp-fullscreen .vp-ic-fs-enter {display: none;}
.video-player.vp-fullscreen .vp-ic-fs-exit {display: block;}
.video-player .vp-time {
    font-size: 13px;
    font-variant-numeric: tabular-nums;
    color: #fff;
    letter-spacing: .02em;
    white-space: nowrap;
    flex-shrink: 0;
}
.video-player .vp-progress {
    flex: 1;
    height: 16px;
    display: flex;
    align-items: center;
    cursor: pointer;
    outline: none;
    min-width: 0;
}
.video-player .vp-progress-track {
    position: relative;
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,.4);
    border-radius: 999px;
}
.video-player .vp-progress-buffered {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 0;
    background: rgba(255,255,255,.55);
    border-radius: 999px;
}
.video-player .vp-progress-filled {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 0;
    background: #fff;
    border-radius: 999px;
}
.video-player .vp-progress-thumb {
    position: absolute;
    top: 50%;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    transform: translate(-50%, -50%);
    box-shadow: 0 1px 2px rgba(0,0,0,.2);
}
.video-player .vp-volume {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.video-player .vp-vol-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 0;
    height: 3px;
    background: rgba(255,255,255,.45);
    border-radius: 999px;
    outline: none;
    margin-left: 0;
    opacity: 0;
    transition: width .2s ease, opacity .2s ease, margin-left .2s ease;
    cursor: pointer;
    vertical-align: middle;
}
.video-player .vp-volume:hover .vp-vol-slider,
.video-player .vp-volume:focus-within .vp-vol-slider {
    width: 70px;
    opacity: 1;
    margin-left: 6px;
}
.video-player .vp-vol-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #fff;
    border: 0;
    cursor: pointer;
}
.video-player .vp-vol-slider::-moz-range-thumb {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #fff;
    border: 0;
    cursor: pointer;
}
.video-player .vp-settings {position: relative; flex-shrink: 0;}
.video-player .vp-settings-menu {
    position: absolute;
    bottom: calc(100% + 8px);
    right: 0;
    background: rgba(20, 12, 50, .96);
    border-radius: 8px;
    padding: 6px 0;
    min-width: 130px;
    box-shadow: 0 4px 18px rgba(0,0,0,.35);
    display: flex;
    flex-direction: column;
}
.video-player .vp-settings-menu[hidden] {display: none;}
.video-player .vp-settings-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: rgba(255,255,255,.55);
    padding: 6px 14px;
}
.video-player .vp-settings-menu button {
    background: transparent;
    border: 0;
    color: #fff;
    text-align: left;
    padding: 7px 14px;
    font-size: 13px;
    cursor: pointer;
    font-family: inherit;
}
.video-player .vp-settings-menu button:hover {background: rgba(255,255,255,.1);}
.video-player .vp-settings-menu button[aria-checked="true"] {color: #fff; font-weight: 600;}
.video-player .vp-settings-menu button[aria-checked="true"]::before {
    content: "\2713";
    margin-right: 6px;
    display: inline-block;
    width: 12px;
}
.video-player .vp-settings-menu button:not([aria-checked="true"])::before {
    content: "";
    margin-right: 6px;
    display: inline-block;
    width: 12px;
}
.video-player.vp-fullscreen {
    border-radius: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    max-width: none;
}
.video-player.vp-fullscreen video {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    background: #000;
}

@media (max-width: 550px) {
    .video-player .vp-controls {height: 42px; padding: 0 8px; gap: 6px;}
    .video-player .vp-btn {width: 32px; height: 32px;}
    .video-player .vp-ic {width: 16px; height: 16px;}
    .video-player .vp-btn-play .vp-ic {width: 11px; height: 11px;}
    .video-player .vp-time {font-size: 12px;}
    .video-player .vp-volume:hover .vp-vol-slider,
    .video-player .vp-volume:focus-within .vp-vol-slider {width: 54px;}
}
