/* =========================================================
   CTA STRIP
========================================================= */

.cta-strip {
    width: 100%;
    background: #ffffff;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.cta-strip__inner {
    width: 92%;
    max-width: 1250px;
    margin: 0 auto;

    min-height: 120px;
    padding: 25px 0;

    display: flex;
    align-items: center;

    gap: 22px;
}


/* =========================================================
   CTA ICON
========================================================= */

.cta-strip__icon {
    width: 60px;
    height: 60px;

    flex: 0 0 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf7ef;
    border-radius: 15px;
}

.cta-strip__icon img {
    width: 32px;
    height: 32px;

    display: block;
    object-fit: contain;
}


/* =========================================================
   CTA TEXT
========================================================= */

.cta-strip__text {
    flex: 1;
    min-width: 0;
}

.cta-strip__text h3 {
    margin: 0 0 5px;

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 23px;
    line-height: 1.3;
    font-weight: 800;

    color: #173f79;
}

.cta-strip__text p {
    margin: 0;

    max-width: 580px;

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 14px;
    line-height: 1.6;

    color: #59677d;
}


/* =========================================================
   CTA BUTTON AREA
========================================================= */

.cta-strip__actions {
    display: flex;
    align-items: center;
    gap: 12px;

    flex-shrink: 0;
}


/* =========================================================
   CTA BUTTON COMMON
========================================================= */

.cta-btn {
    min-height: 46px;

    padding: 0 19px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    border-radius: 9px;

    text-decoration: none;

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.cta-btn img {
    width: 17px;
    height: 17px;

    display: block;
    object-fit: contain;
}


/* =========================================================
   BOOK APPOINTMENT
========================================================= */

.cta-btn--primary {
    background: #17643d;

    color: #ffffff;

    border: 1px solid #17643d;
}

.cta-btn--primary img {
    filter: brightness(0) invert(1);
}

.cta-btn--primary:hover {
    background: #125431;

    border-color: #125431;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow: 0 7px 18px rgba(23,100,61,.18);
}


/* =========================================================
   CALL BUTTON
========================================================= */

.cta-btn--outline {
    background: #ffffff;

    color: #17643d;

    border: 1px solid #17643d;
}

.cta-btn--outline:hover {
    background: #eaf7ef;

    color: #17643d;

    border-color: #17643d;

    transform: translateY(-2px);
}


/* =========================================================
   REMOVE CTA DECORATION IF PRESENT
========================================================= */

.cta-strip__art {
    display: none;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    width: 100%;

    background: #0d4326;

    padding: 58px 0 0;

    color: #ffffff;
}


/* =========================================================
   FOOTER CONTAINER
========================================================= */

.footer-container {
    width: 92%;
    max-width: 1280px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.45fr
        1fr
        1.25fr
        1fr;

    column-gap: 50px;

    align-items: start;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column {
    min-width: 0;
}


/* =========================================================
   FOOTER LOGO
========================================================= */

.footer-logo {
    width: 190px;

    margin-bottom: 22px;
}

.footer-logo img {
    width: 190px;
    height: auto;

    display: block;

    object-fit: contain;
}


/* =========================================================
   ABOUT TEXT
========================================================= */

.footer-about p {
    max-width: 350px;

    margin: 0 0 27px;

    color: rgba(255,255,255,.82);

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================================
   FOOTER HEADINGS
========================================================= */

.footer-column h4 {
    margin: 0 0 22px;

    color: #ffffff;

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 21px;

    line-height: 1.25;

    font-weight: 800;
}


/* =========================================================
   QUICK LINKS
========================================================= */

.footer-column ul {
    list-style: none;

    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin: 0 0 15px;

    color: rgba(255,255,255,.82);

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 15px;

    line-height: 1.6;
}

.footer-column ul li a {
    color: rgba(255,255,255,.82);

    text-decoration: none;

    transition:
        color .25s ease,
        padding-left .25s ease;
}

.footer-column ul li a:hover {
    color: #78df99;

    padding-left: 5px;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.footer-contact {
    list-style: none;

    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 17px;
}


/* =========================================================
   FONT AWESOME CONTACT ICONS
========================================================= */

.footer-contact li > i {
    width: 18px;
    min-width: 18px;

    margin-top: 4px;

    color: #72df96;

    font-size: 16px;

    text-align: center;

    line-height: 1;
}


/* =========================================================
   CONTACT TEXT
========================================================= */

.footer-contact li span {
    color: rgba(255,255,255,.84);

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================================
   CONTACT LINKS
========================================================= */

.footer-contact li a {
    color: rgba(255,255,255,.84);

    text-decoration: none;

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 15px;

    line-height: 1.6;

    transition: color .25s ease;
}

.footer-contact li a:hover {
    color: #72df96;
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.footer-social {
    display: flex;

    align-items: center;

    gap: 12px;
}

.footer-social a {
    width: 46px;
    height: 46px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.08);

    color: #ffffff;

    text-decoration: none;

    transition:
        background .25s ease,
        transform .25s ease,
        color .25s ease;
}

.footer-social a i {
    font-size: 17px;

    line-height: 1;
}

.footer-social a:hover {
    background: #1a8d46;

    color: #ffffff;

    transform: translateY(-4px);
}


/* =========================================================
   CLINIC IMAGE
========================================================= */

.footer-image {
    display: block;

    width: 230px;
    height: 135px;

    margin-top: 20px;

    object-fit: cover;

    object-position: center;

    border-radius: 15px;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */
/* =================================================
   FOOTER BOTTOM
================================================= */

.footer-bottom {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 20px 68px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    box-sizing: border-box;

    font-size: 13px;

    color: rgba(255, 255, 255, 0.75);

}


/* =================================================
   LEFT COPYRIGHT
================================================= */

.footer-copyright {

    text-align: left;

    white-space: nowrap;

}


/* =================================================
   RIGHT DEVELOPER CREDIT
================================================= */

.footer-credit {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 10px;

    text-align: right;

    white-space: nowrap;

}


/* =================================================
   XL LOGO
================================================= */

.xl-credit-logo {

    width: 28px;

    height: 28px;

    object-fit: contain;

    display: block;

}


/* =================================================
   DEVELOPER TEXT
================================================= */

.footer-credit strong {

    font-weight: 500;

    color: rgba(255, 255, 255, 0.88);

}


/* =================================================
   MOBILE
================================================= */

@media (max-width: 768px) {

    .footer-bottom {

        flex-direction: column;

        gap: 12px;

        padding: 18px 20px;

        text-align: center;

    }


    .footer-copyright {

        white-space: normal;

        text-align: center;

    }


    .footer-credit {

        white-space: normal;

        justify-content: center;

        text-align: center;

    }

}


/* =========================================================
   LARGE SCREEN
========================================================= */

@media (max-width: 1100px) {

    .footer-container {
        grid-template-columns:
            1.3fr
            1fr
            1.2fr
            1fr;

        column-gap: 30px;
    }

    .footer-logo img {
        width: 165px;
    }

    .footer-about p {
        font-size: 14px;
    }

    .footer-column h4 {
        font-size: 19px;
    }

    .footer-column ul li,
    .footer-contact li span,
    .footer-contact li a {
        font-size: 14px;
    }

    .footer-image {
        width: 210px;
        height: 125px;
    }

}


/* =========================================================
   CTA TABLET
========================================================= */

@media (max-width: 900px) {

    .cta-strip__inner {
        width: 90%;

        padding: 24px 0;

        gap: 16px;
    }

    .cta-strip__text h3 {
        font-size: 20px;
    }

    .cta-strip__text p {
        font-size: 13px;
    }

    .cta-btn {
        min-height: 44px;

        padding: 0 15px;

        font-size: 12px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;

        row-gap: 45px;

        column-gap: 45px;
    }

}


/* =========================================================
   TABLET / MOBILE CTA
========================================================= */

@media (max-width: 700px) {

    .cta-strip__inner {
        width: 88%;

        flex-wrap: wrap;

        padding: 24px 0;
    }

    .cta-strip__icon {
        width: 54px;
        height: 54px;

        flex: 0 0 54px;
    }

    .cta-strip__icon img {
        width: 29px;
        height: 29px;
    }

    .cta-strip__text {
        flex: 1;
    }

    .cta-strip__text h3 {
        font-size: 18px;
    }

    .cta-strip__text p {
        font-size: 15px;
    }

    .cta-strip__actions {
        width: 100%;

        margin-top: 5px;

        justify-content: flex-start;
    }

    .cta-btn {
        flex: 1;
    }


    /* FOOTER */

    .footer {
        padding-top: 45px;
    }

    .footer-container {
        width: 88%;

        grid-template-columns: 1fr;

        row-gap: 38px;

        text-align: center;
    }

    .footer-logo {
        width: 180px;

        margin-left: auto;
        margin-right: auto;
    }

    .footer-logo img {
        width: 180px;
    }

    .footer-about p {
        max-width: 500px;

        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-column h4 {
        font-size: 20px;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-image {
        width: 230px;

        margin-left: auto;
        margin-right: auto;
    }

    .footer-bottom {
        margin-top: 40px;

        font-size: 13px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .cta-strip__inner {
        width: 88%;
    }

    .cta-strip__actions {
        flex-direction: column;

        width: 100%;
    }

    .cta-btn {
        width: 100%;
    }


    .footer-container {
        width: 88%;
    }

    .footer-logo img {
        width: 165px;
    }

    .footer-about p {
        font-size: 13px;

        line-height: 1.7;
    }

    .footer-column h4 {
        font-size: 18px;
    }

    .footer-column ul li,
    .footer-contact li span,
    .footer-contact li a {
        font-size: 13px;
    }

    .footer-social a {
        width: 43px;
        height: 43px;
    }

    .footer-image {
        width: 210px;
        height: 120px;
    }

    .footer-bottom {
        padding: 18px 12px;

        font-size: 12px;
    }

}