/* Banner */
.banner {
    background-image: url(../images/Banner-Background.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #284394;
    position: relative;
    max-height: 600px;
    height: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
}
.banner-content h1 { margin-bottom: 20px;}
.banner-content p { margin-bottom: 0;}
.banner-graphic {
    width: 502px;
    height: 502px;
    margin-left: auto;
}
.banner-graphic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-graphic.mobile { display: none;}
/* End Banner */

/* Box Border */
.box-border {
    margin-top: 80px;
}
.box-border-inner {
    border: 1px solid #BCBCBC;
    padding: 20px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    text-align: center;
    border-radius: 10px;
}
.box-border-inner p {
    font-weight: 600;
}
/* Box Border */

/* About Us Section */
.about-us { padding-top: 120px;}
.about-us-right {
    border-bottom: 1px solid #BCBCBC;
    padding-bottom: 24px;
}
/* End About Us Section */

/* Health Record */
.health-record-content {
    max-width: 500px;
    padding-left: 30px;
}
.health-record-img.mobile { display: none;}
/* End Health Record */

/* Features */
.features-content .features-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}
.features-img.mobile { display: none;}
/* End Features */

/* FAQ Section */
.faq-section { padding-bottom: 120px;}
.faq-section-title { position: relative;}
.faq-section-title:after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: 116px;
    right: 0;
    background-image: url(../images/down-arrow-shape.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 289px;
    height: 126px;
}
.faq-section .accordion-item {
    color: #0A0A0A;
    background-color: #fff;
    border: 1px solid #BCBCBC;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
}
.faq-section .accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 30px;
    font-size: 23px;
    line-height: 28px;
    font-weight: 600;
    color: #0A0A0A;
    text-align: left;
    background-color: #fff;
    border-radius: 20px;
    overflow-anchor: none;
    transition: 0.4s;
    border: 0;
}
.faq-section .accordion-item:first-of-type {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.faq-section .accordion-item:last-of-type {
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}
.faq-section .accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.faq-section .accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.faq-section .accordion-item:not(:first-of-type) {
    border-top: 1px solid #BCBCBC;
}
.faq-section .accordion-item:last-child {
    margin-bottom: 0;
}
.faq-section .accordion-button:not(.collapsed) {
    color: #0A0A0A;
    background-color: transparent;
    box-shadow: none;
}
.faq-section .accordion-button:focus {
    border-color: transparent;
    outline: 0;
    box-shadow: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.faq-section .accordion-button::after {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-left: auto;
    content: "";
    background-image: url(../images/icon_plus.svg);
    background-repeat: no-repeat;
    background-size: 24px;
    transition: transform 0.2s ease-in-out;
}
.faq-section .accordion-button:not(.collapsed)::after {
    background-image: url(../images/icon_minus.svg);
    transition: transform 0.2s ease-in-out;
    transform: rotate(0deg);
}
.faq-section .accordion-body {
    padding: 0 70px 30px 30px;
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    color: #292929;
}
/* End FAQ Section */

/* Responsive CSS */
@media only screen and (max-width: 1200px) {
    /* Banner */
    .banner {
        height: 520px;
    }
    .banner-graphic {
        width: 450px;
        height: 450px;
    }
    /* End Banner */

    /* About Us Section */
    .about-us {
        padding-top: 100px;
    }
    /* End About Us Section */

    /* Health Record */
    .health-record-img {
        width: auto;
        height: auto;
    }
    .health-record-content {
        padding-left: 20px;
    }
    /* End Health Record */

    /* Features */
    .features-content .features-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    /* End Features */

    /* FAQ Section */
    .faq-section {
        padding-bottom: 100px;
    }
    .faq-section-title:after {
        bottom: -130px;
        left: 100px;
        width: 250px;
        height: 110px;
    }
    .faq-section .accordion-button {
        padding: 26px;
        font-size: 22px;
        line-height: 28px;
    }
    .faq-section .accordion-item {
        border-radius: 18px;
        margin-bottom: 16px;
    }
    .faq-section .accordion-item:first-of-type {
        border-top-left-radius: 18px;
        border-top-right-radius: 18px;
    }
    .faq-section .accordion-item:last-of-type {
        border-bottom-right-radius: 18px;
        border-bottom-left-radius: 18px;
    }
    .faq-section .accordion-body {
        padding: 0 60px 26px 26px;
        font-size: 17px;
        line-height: 28px;
    }
    .faq-section .accordion-button::after {
        width: 22px;
        height: 22px;
        background-size: 22px;
    }
    /* End FAQ Section */
}

@media only screen and (max-width: 991px) {
    /* Banner */
    .banner {
        height: 480px;
    }
    .banner-content h1 {
        margin-bottom: 16px;
    }
    .banner-graphic {
        width: 360px;
        height: 360px;
        margin-left: auto;
    }
    /* End Banner */

    /* About Us Section */
    .about-us {
        padding-top: 80px;
    }
    /* End About Us Section */

    /* Health Record */
    .health-record-content {
        padding-left: 0;
        max-width: 100%;
    }
    /* End Health Record */

    /* Features */
    .features-content .features-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }
    /* End Features */

    /* FAQ Section */
    .faq-section {
        padding-bottom: 80px;
    }
    .faq-section-title:after {
        bottom: -110px;
        left: 80px;
        width: 200px;
        height: 88px;
    }
    .faq-section .accordion-button {
        padding: 22px;
        font-size: 20px;
        line-height: 26px;
    }
    .faq-section .accordion-item {
        border-radius: 16px;
        margin-bottom: 12px;
    }
    .faq-section .accordion-item:first-of-type {
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
    }
    .faq-section .accordion-item:last-of-type {
        border-bottom-right-radius: 16px;
        border-bottom-left-radius: 16px;
    }
    .faq-section .accordion-body {
        padding: 0 50px 22px 22px;
        font-size: 17px;
        line-height: 28px;
    }
    .faq-section .accordion-button::after {
        width: 20px;
        height: 20px;
        background-size: 20px;
    }
    /* End FAQ Section */
}

@media only screen and (max-width: 767px) {
    /* Banner */
    /* .banner-graphic.desktop { display: none;} */
    /* .banner-graphic.mobile { display: block;} */
    .banner {
        height: auto;
        padding-top: 40px;
        padding-bottom: 20px;
    }
    .banner-content h1 {
        margin-bottom: 12px;
    }
    .banner-graphic {
        width: auto;
        height: auto;
        margin-top: 20px;
    }
    /* End Banner */

    /* Box Border */
    .box-border {
        margin-top: 60px;
    }
    .box-border-inner p {
        font-size: 16px;
        line-height: 26px;
    }
    .box-border-col { margin-bottom: 16px;}
    /* Box Border */

    /* About Us Section */
    .about-us {
        padding-top: 60px;
    }
    .about-us-left { margin-bottom: 20px;}
    /* End About Us Section */

    /* Health Record */
    .health-record-img.desktop { display: none;}
    .health-record-img.mobile { display: block; margin: 20px 0;}
    /* End Health Record */

    /* Features */
    .features-img.desktop { display: none;}
    .features-img.mobile { display: block;margin: 20px 0;}
    .features-content .features-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    /* Features */

    /* FAQ Section */
    .faq-section {
        padding-bottom: 60px;
    }
    .faq-section-title {
        margin-bottom: 20px;
    }
    .faq-section-title:after { display: none;}
    .faq-section .accordion-button {
        padding: 16px;
        font-size: 18px;
        line-height: 24px;
    }
    .faq-section .accordion-item {
        border-radius: 14px;
    }
    .faq-section .accordion-item:first-of-type {
        border-top-left-radius: 14px;
        border-top-right-radius: 14px;
    }
    .faq-section .accordion-item:last-of-type {
        border-bottom-right-radius: 14px;
        border-bottom-left-radius: 14px;
    }
    .faq-section .accordion-body {
        padding: 0 40px 16px 16px;
        font-size: 15px;
        line-height: 24px;
    }
    .faq-section .accordion-button::after {
        width: 18px;
        height: 18px;
        background-size: 18px;
    }
    /* End FAQ Section */
}

@media only screen and (max-width: 575px) {
    /* Banner */
    .banner {
        padding-top: 20px;
    }
    /* End Banner */

    /* Box Border */
    .box-border {
        margin-top: 40px;
    }
    .box-border-col:last-child {
        margin-bottom: 0;
    }
    /* Box Border */
    
    /* About Us Section */
    .about-us {
        padding-top: 40px;
    }
    .about-us-left { margin-bottom: 10px;}
    /* End About Us Section */

    /* FAQ Section */
    .faq-section {
        padding-bottom: 40px;
    }
    .faq-section .accordion-button {
        padding: 14px;
        font-size: 16px;
        line-height: 22px;
    }
    .faq-section .accordion-body {
        padding: 0 30px 14px 14px;
        font-size: 14px;
        line-height: 22px;
    }
    .faq-section .accordion-button::after {
        width: 16px;
        height: 16px;
        background-size: 16px;
    }
    /* End FAQ Section */
}   

@media only screen and (max-width: 500px) {
    .faq-section .accordion-button { align-items: flex-start;}
    .faq-section .accordion-button::after {
        margin-top: 5px;
    }
}