/* ----------------------------------------------------- HERO -------------------------------------------------------------- */


.hero {
    height: 100dvh;
    margin-top: -113px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero .subline {
    font-size: 30px;
    font-weight: 300;
    opacity: 0.9;
}

.hero .tagline {
    font-style: italic;
    color: #92ACB0;
    font-size: 50px;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 56%;
    height: 100%;
    background-size: cover;
    z-index: 1;
    pointer-events: none;
}



@media (min-width:767px) {
    .hero {
        background: white !important;
    	
		
    }
}

@media (max-width:767px) {
    .hero-image {
        display: none;
    }

    .hero {
        background-size: cover;
        align-items: end;
		margin-top: -92px;
    }

    .hero-content {
        width: 100%;
        margin-bottom: 20px;
        color: white;
    }

    .btn {
        width: 100%;
        padding-block: 20px;
        font-size: 16px;

    }

    .hero .tagline {
        color: #bddde1;
    }
}

/* ----------------------------------------------------- LAYOUT 1 / INTRO ------------------------------------------------------ */

.layout-1 {
    position: relative;
}

.layout-1 h2 {
    font-style: italic;
    font-size: 35px;
    max-width: 360px;
}

.layout-1 .divider {
    width: 90px;
    height: 3px;
    background: #92ACB0;
    margin-top: 20px;
    margin-bottom: 40px;
}

.layout-1 p {
    max-width: 1000px;
    margin-bottom: 20px;
}

.layout-1::after {
    content: "";
    width: 185px;
    height: 310px;
    background: url(../assets/heart-bg.svg) no-repeat center / cover;
    position: absolute;
    left: 0;
    bottom: 20px;
}

.introduction {
    background: var(--bg-1);
    min-height: 100vh;

}

/* ------------------------------------------------------- EXPERTISE ---------------------------------------------------------- */


.section {
    position: relative;
    width: 100%;
}

.expertise .container {
    position: absolute;
    top: 100px;
    width: min(90%, 1300px);

}

.expertise-image-desktop {
    width: 38vw;
}

.expertise-image-mobile {
    display: none;
}

.expertise-content {
    margin-left: 45vw;
}

.expertise-content p {
    font-size: 30px;
    font-style: italic;
    margin-bottom: 50px;
    margin-top: 65px;
}

.expertise-content li {
    list-style: none;
    font-size: 22px;
    display: flex;
    gap: 16px;
    align-items: start;
}

.expertise-content li::before {
    content: "";
    display: block;
    min-width: 17px !important;
    margin-top: 3px;
    height: 20px;
    background: url(../assets/heart-bp.svg) no-repeat center / cover;
}

.expertise ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    opacity: 0.9;
}


@media (max-width:1092px) {
    .expertise-image-desktop {
        width: 42vw;
    }

    .expertise-content p {
        font-size: 25px;
        margin-bottom: 20px;
        margin-top: 0;
    }

    .expertise ul {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .expertise .section {
        min-height: 540px;
    }

    .expertise-content {
        margin-left: 50vw;
    }
}

@media (max-width:767px) {
    .expertise-image-desktop {
        display: none;
    }

    .expertise-image-mobile {
        display: block;
        width: 100%;
    }

    .expertise-content {
        margin-left: 0;
    }

    .expertise .section {
        min-height: unset;
        padding: 60px 0 100px 0;
    }

    .expertise .container {
        position: relative;
        top: 0;
    }

    .expertise-content p {
        margin-bottom: 40px;
    }

    .expertise ul {
        gap: 16px;
    }

}

/* ------------------------------------------------------- CLINICS ---------------------------------------------------------- */

.clinics.section {
    background: var(--bg-1);
}

.clinics-content {
    display: flex;
    flex-direction: column;
    gap: 70px;
    align-items: center;
}

.clinics-cards {
    display: flex;
    gap: 100px;
}

.clinics h2 {
    font-style: italic;
    font-size: 35px;
}

.clinic-card {
    width: 290px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.clinic-card .icon {
    width: 90px;
}

.clinic-card h3 {
    font-size: 25px;
}

.clinic-card p {
    font-style: italic;
    opacity: 0.9;
}

.clinic-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.clinic-btn {
    display: flex;
    width: 200px;
    border: solid 1px var(--primary);
    padding: 16px 26px;
    font-size: 20px;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.clinic-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--primary);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.clinic-btn:hover::before {
    transform: translateX(0);
}

.clinic-btn:hover {
    color: #fff;
}

.clinic-btn:hover .next-icon {
    filter: invert(1);
    filter: brightness(100)
}

.clinic-btn>* {
    position: relative;
    z-index: 1;
}

.clinic-btn.call {
    border: solid 1px var(--gold);
}

.clinic-btn.call::before {
    background: var(--gold);

}

@media(max-width:767px) {
    .clinics-cards {
        display: flex;
        flex-direction: column;
    }

    .clinics-cards,
    .clinic-card,
    .clinic-btns,
    .clinic-btn {
        width: 100%;
    }

    .clinic-btn {
        max-width: 400px;
        box-sizing: border-box;
    }

    .clinics h2 {
        max-width: 250px;
        text-align: center;
    }
}

/* ------------------------------------------------------- CONTRIBUTIONS ---------------------------------------------------------- */

.contributions {
    min-height: 700px;
}

.contributions ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 0;
}

.contributions li {
    list-style: none;
    display: flex;
    gap: 12px;
    max-width: 380px;
}

.contributions li::before {
    content: "";
    display: block;
    min-width: 17px !important;
    width: 17px;
    margin-top: 6px;
    height: 20px;
    background: url(../assets/award-bp.svg) no-repeat center / cover;
}

.contributions a{
    color: #7c999e
}

@media (max-width: 830px) {
    .contributions ul {
        grid-template-columns: 1fr;
    }
}