/*--- hero banner ---*/
.hero {
    padding: 96px 0;
    background-image: url(../images/banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-content {
    max-width: 476px;
}

.hero-content h1 {
    color: var(--off_white);
    margin-bottom: 26px;
}

.hero-content h2 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    font-family: var(--font_primary);
    color: var(--off_white);
    margin-bottom: 34px;
    padding-bottom: 32px;
    position: relative;
}

.hero-content h2::before {
    content: '';
    display: block;
    position: absolute;
    width: 105px;
    height: 4px;
    background-color: var(--accent_light_green);
    left: 0;
    bottom: 0;
}

.hero-content p {
    color: var(--off_white);
}

.hero-actions {
    margin-top: 46px;
}

/*--- two col section ---*/
section.two-col-section {
    padding: 70px 0;
    background-color: var(--bg_light);
}

.two-col-inner>.left-image {
    max-width: 48.438%;
    flex: 0 0 100%;
}

.left-image img {
    border-radius: var(--radius-md);
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.two-col-inner>.right-content {
    max-width: 47.5%;
    flex: 0 0 100%;
}

.two-col-section .about-actions {
    margin-top: 32px;
}

.two-col-section .about-actions a.btn:hover {
    border-color: var(--accent_dark_green);
    color: var(--accent_dark_green);
}

/*--- approach section ----*/
section.approach {
    background-color: var(--accent_dark_green);
    padding: 70px 0;
}

.approach .two-col-inner {
    max-width: 1170px;
    margin: 0 auto;
}

.approach .two-col-inner>.two-col-media {
    max-width: 42.992%;
    flex: 0 0 100%;
}

.approach .two-col-inner>.two-col-content {
    max-width: 51%;
    flex: 0 0 100%;
}

.approach .two-col-media img {
    border: 4px solid var(--accent_light_green);
    border-radius: var(--radius-md);
}

.approach .two-col-content {
    color: var(--off_white);
}

.approach .two-col-content h2 {
    color: var(--off_white);
    margin-bottom: 25px;
}

ul.approach-list li {
    max-width: calc(50% - 12px);
    flex: 0 0 100%;
    font-size: 15px;
    line-height: 20px;
}

ul.approach-list li img {
    max-width: 22px;
    flex: 0 0 100%;
    height: 22px;
    object-fit: contain;
}

.approach .two-col-content p {
    max-width: 544px;
}

ul.approach-list {
    margin-top: 30px;
}

/*---- schedule section ----*/
section.schedule {
    padding: 70px 0;
}

.schedule-head {
    text-align: center;
    max-width: 838px;
    margin: 0 auto;
}

.schedule-head p strong {
    color: var(--accent_light_green);
    font-weight: 600;
}

.schedule-head p {
    font-weight: 500;
}

.schedule-list {
    margin-top: 40px;
}

.schedule-list>.schedule-card {
    max-width: calc(100% / 3 - 26.8px);
    flex: 0 0 100%;
    padding: 32px 38px;
    text-align: center;
    border-radius: var(--radius-md);
}

.schedule-list>.schedule-card:nth-child(1) {
    background-color: #F4F7EB;
}

.schedule-list>.schedule-card:nth-child(2) {
    background-color: #FCF5E5;
}

.schedule-list>.schedule-card:nth-child(3) {
    background-color: #EDF5F7;
}

.schedule-card-head {
    padding-bottom: 15px;
    margin-bottom: 24px;
    border-bottom: 1px solid #576724;
}

.schedule-card-head>span {
    max-width: 52px;
    flex: 0 0 100%;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #82CD47;
    border-radius: 50%;
    background: var(--white);
}

.schedule-card-body h4 {
    font-size: 17px;
    line-height: 24px;
    font-family: var(--font_primary);
    margin-bottom: 16px;
    color: var(--primary);
}

.schedule-card-body {
    padding: 0 10px;
}

/*---- faq section ----*/
section.faq {
    padding: 60px 0;
    background-color: #fafafa;
}

.faq-inner {
    max-width: 1170px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 40px;
}

.faq-column {
    max-width: 48%;
    flex: 0 0 100%;

}

.faq-column .faq-item {
    background: var(--bg_light);
    margin-bottom: 20px;
    border-radius: var(--radius-md);
    padding: 16px 34px;
}

.faq-column .faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
}

.faq-question span {
    display: inline-block;
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
}

.faq-question img {
    width: 20px;
    transition: var(--transition);
}

.faq-item.active .faq-question img {
    transform: rotate(180deg);
}

.faq-answer {
    padding-right: 20px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 20px;
    margin-top: 20px;
}

/*---- cta section ---*/
section.cta-section {
    padding: 60px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/btm-bg.jpg);
}

.cta-section .cta-content {
    max-width: 40%;
    flex: 0 0 100%;
}

.cta-section .cta-content h2 {
    color: var(--white);
    font-size: 30px;
    line-height: 40px;
}

.cta-section .cta-content p {
    color: var(--off_white);
}

/*--- services section ---*/
section.services {
    padding: 60px 0 80px;
}

.services-head {
    text-align: center;
}

.services-slider {
    margin-top: 40px;
    display: flex;
    gap: 28px;
}

.service-card {
    display: flex;
    border-radius: var(--radius-md);
    background-color: #F4F7EB;
    height: 100%;
}

.service-card-image {
    max-width: 50%;
    flex: 0 0 100%;
}

.service-card-content {
    max-width: 50%;
    flex: 0 0 100%;
    padding: 36px 12px 36px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-content h3 {
    font-size: 17px;
    line-height: 22px;
    margin-bottom: 14px;
}

.service-card-content a {
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    color: #56612D;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.service-card-content a img {
    transition: var(--transition);
}

.service-card-content a:hover img {
    transform: translateX(4px);
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 0 0 10px;
}

.service-card-wrapper {
    margin: 0 14px;
    height: inherit;
}

.services-slider .slick-list {
    margin: 0 -14px;
}

.services-slider .slick-track {
    display: flex;
}

.services-slider .slick-dots li button {
    width: 14px;
    height: 14px;
    padding: 0;
    background: #838383;
    border-radius: 50%;
}

.services-slider .slick-dots li {
    width: 14px;
    height: 14px;
    margin: 0 7.5px;
}

.services-slider .slick-dots li.slick-active button {
    background: #575653;
}

.services-slider .slick-dots {
    bottom: -55px;
}

/*--- inner page banner ---*/
.inner-banner {
    padding: 100px 0;
    text-align: center;
    background-image: url(../images/inner-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.inner-banner h1 {
    font-size: 35px;
    line-height: 47px;
    font-weight: 800;
    color: var(--white);
}

/*--- our story section ----*/
section.story {
    padding: 80px 0;
}

.story-content>span {
    font-size: 17px;
    line-height: 24px;
    display: inline-block;
    font-weight: 600;
    color: var(--accent_light_green);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.story-content h2 {
    margin-bottom: 28px;
}

.story-actions {
    margin-top: 40px;
}

.story-actions a:hover {
    border-color: var(--accent_dark_green);
    color: var(--accent_dark_green);
}

.story-wrapper {
    max-width: 1170px;
    margin: 0 auto;
}

.story-media {
    max-width: 44.53%;
    flex: 0 0 100%;
    position: relative;
    background-color: var(--accent_dark_green);
    border-radius: 15px;
}

.story-content {
    max-width: calc(100% - 44.53% - var(--xxl));
    flex: 0 0 100%;
}

.story-media>img {
    border-radius: 15px 15px 0 0;
}

.story-quote {
    padding: 24px 46px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--accent_dark_green);
    border-radius: 0 0 15px 15px;
}

.story-quote p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: var(--off_white);
    font-family: var(--font_secondary);
}

.story-quote img {
    max-width: 30px;
    flex: 0 0 100%;
}

.story-cards {
    margin-top: 80px;
}

.story-cards>* {
    max-width: calc(50% - 20px);
    flex: 0 0 100%;
    padding: 34px 44px;
    border-radius: var(--radius-md);
}

.story-card:nth-child(1) {
    background-color: #EDF5F7;
}

.story-card:nth-child(2) {
    background-color: #F4F7EB;
}

/*---- core values section ----*/
section.values {
    padding: 60px 0;
    background-color: var(--accent_dark_green);
    color: var(--off_white);
}

.values-head h2 {
    text-align: center;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 25px;
    line-height: 33px;
}

.values-list {
    margin-top: 50px;
}

.value-item {
    max-width: calc(100% / 4 - 30px);
    flex: 0 0 100%;
    text-align: center;
    padding: 10px 24px;
    position: relative;
}

.value-icon {
    text-align: center;
    display: inline-flex;
}

.value-icon img {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 20px;
    line-height: 27px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.value-item::before {
    content: '';
    display: block;
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    top: 0;
    right: -20px;
}

.value-item:last-child::before {
    display: none;
}

/*---- offer section ----*/
section.offer {
    padding: 60px 0;
    text-align: center;
}

.offer-content {
    max-width: 820px;
    margin: 0 auto;
}

.section-tag {
    font-size: 17px;
    line-height: 24px;
    display: inline-block;
    font-weight: 600;
    color: var(--accent_light_green);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.offer-content h2 {
    margin-bottom: 28px;
}

.offer-actions a.btn-outline {
    border-color: var(--accent_light_green);
    color: var(--accent_light_green);
}

.offer-actions a.btn-outline:hover {
    background-color: var(--accent_light_green);
    color: var(--white);
}

.offer-actions {
    margin-top: 40px;
}

/*---- services list section ----*/
section.service-list {
    padding: 100px 0;
    background-color: var(--bg_light);
}

.services-list-wrapper {
    max-width: 1170px;
    margin: 0 auto;
}

.service-item {
    background-color: var(--white);
    box-shadow: 0px 3px 15px #0000001C;
    border-radius: var(--radius-md);
    margin-bottom: 50px;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-item>.service-image {
    max-width: 48%;
    flex: 0 0 100%;
}

.service-item .service-image img {
    border-radius: 10px 0 0 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-item .service-content {
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 350px;
}

.service-content .service-tag {
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
    color: var(--accent_light_green);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.service-content h2 {
    font-size: 25px;
    line-height: 33px;
}

.service-actions {
    margin-top: 20px;
}

.service-actions a.btn:hover {
    border-color: var(--accent_dark_green);
    color: var(--accent_dark_green);
}

/*--- care cta section ---*/
section.care-cta {
    padding: 60px 0;
    background-color: var(--accent_dark_green);
}

.care-cta-inner {
    max-width: 1170px;
    margin: 0 auto;
    color: var(--off_white);
}

.care-cta-content {
    max-width: 600px;
}

.care-cta-content h2 {
    color: var(--white);
    font-size: 25px;
    line-height: 33px;
    font-weight: 700;
}

.care-cta-icon {
    max-width: 156px;
    flex: 0 0 100%;
    aspect-ratio: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #F3F3F3;
    border-radius: 50%;
    margin-right: 30px;
}

.care-cta-icon img {
    width: 66px;
    height: auto;
}

.care-cta-actions {
    margin-left: auto;
}

/*--- service approach section ---*/
section.service-approach {
    padding: 70px 0;
}

.service-approach-head {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.service-approach-list {
    margin-top: 50px;
}

.service-approach-list>* {
    max-width: calc(100% / 3 - var(--xxl));
    flex: 0 0 100%;
    text-align: center;
    padding: 10px 70px;
    position: relative;
}

.service-approach-icon {
    display: inline-flex;
}

.service-approach-icon img {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.service-approach-item h3 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    font-family: var(--font_primary);
    margin-bottom: 16px;
}

.service-approach-item::before {
    content: '';
    display: block;
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #343B21;
    opacity: 0.4;
    top: 0;
    right: -20px;
}

.service-approach-item:last-child::before {
    display: none;
}

/*---- faq accordion section ---*/
section.faq-alt {
    padding: 70px 0;
}

.faq-alt-head h2 {
    text-align: center;
}

.faq-alt-list {
    max-width: 1170px;
    margin: 50px auto 0;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    background-color: var(--white);
}

.faq-alt-question {
    padding: 20px 34px;
    display: flex;
    gap: 32px;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid #ccc;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.faq-alt-icon {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #56612D;
    position: relative;
}

.faq-alt-icon span {
    display: inline-block;
    background-color: var(--white);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
}

.faq-alt-icon span:nth-child(1) {
    width: 15px;
    height: 2px;
}

.faq-alt-icon span:nth-child(2) {
    width: 2px;
    height: 15px;
}

.faq-alt-question h3 {
    font-size: 20px;
    line-height: 27px;
    font-weight: 700;
}

.faq-alt-answer {
    padding: 0 106px 40px;
    position: relative;
    z-index: 1;
    opacity: 0;
}

.faq-alt-answer p {
    max-width: 780px;
}

.faq-alt-item:last-child .faq-alt-question {
    border-bottom: 0;
}

.faq-alt-item.active .faq-alt-answer {
    display: block;
    opacity: 1;
}

.faq-alt-item.active .faq-alt-question {
    border-bottom-color: transparent;
    padding-top: 40px;
}

.faq-alt-item.active {
    background-color: #56612D;
    border-radius: 15px 15px 0 0;
    position: relative;
}

.faq-alt-item.active::before {
    content: '';
    display: block;
    position: absolute;
    left: 4px;
    top: 0;
    width: calc(100% - 4px);
    height: 100%;
    border-radius: 15px 15px 0 0;
    background-color: var(--bg_light);
}

.faq-alt-item:last-child.active::before {
    border-radius: 0 0 15px 15px;
}

.faq-alt-item:last-child.active {
    border-radius: 0 0 15px 15px;
}

.active .faq-alt-icon span:nth-child(2) {
    opacity: 0;
}

/*---- contact banner section  ---*/
section.contact-banner {
    padding: 30px 0 80px;
}

.contact-banner-inner {
    border-radius: 15px;
    background-color: var(--accent_dark_green);
    max-width: 1170px;
    margin: 0 auto;
}

.contact-banner-image {
    max-width: 45%;
    flex: 0 0 100%;
}

.contact-banner-image img {
    border-radius: 15px 0 0 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-banner-content {
    padding: 34px 66px;
    color: var(--off_white);
    max-width: calc(100% - 45%);
    flex: 0 0 100%;
}

.contact-banner-content h2 {
    color: var(--white);
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-banner-content p {
    max-width: 480px;
}

.contact-banner-actions {
    margin-top: 32px;
}



/*----- responsive -----*/

@media(max-width: 1199px) {

    .schedule-list>.schedule-card {
        padding: 30px;
    }

    .schedule-card-head h3 {
        font-size: 22px;
    }

    /*--- core value section ---*/
    .value-item {
        padding: 8px 12px;
    }

    /*--- service list section ---*/
    section.service-list {
        padding: 80px 0;
    }

    .service-item .service-content {
        padding: 40px;
    }

    /*-- care cta --*/
    .care-cta-icon {
        margin-right: 0;
    }

    .care-cta-content {
        max-width: calc(100% - 400px);
        flex: 0 0 100%;
    }

    /*--- service approach ---*/
    .service-approach-list>* {
        padding: 10px 30px;
    }
}

@media(max-width: 991px) {
    .hero {
        padding: 70px 0;
    }

    .two-col-inner>.left-image {
        max-width: 48%;
    }

    .two-col-inner>.right-content {
        max-width: calc(100% - 48% - var(--xxl));
    }

    .service-card-content {
        padding: 24px 12px;
    }

    .service-card-content {
        padding: 24px 12px;
    }

    .schedule-list>.schedule-card {
        max-width: calc(100% / 2 - var(--xxl));
    }

    .schedule-list {
        justify-content: center;
    }

    .faq-column .faq-item {
        padding: 16px 24px;
    }

    .cta-section .cta-content p br {
        display: none;
    }

    .cta-actions {
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    /*-- inner banner ----*/
    .inner-banner {
        padding: 70px 0;
    }

    .story-quote {
        padding: 24px;
    }

    .story-cards {
        margin-top: 60px;
    }

    .story-cards>* {
        padding: 34px;
    }

    .values-list {
        flex-wrap: wrap;
    }

    .value-item {
        max-width: calc(50% - 20px);
    }

    /*--- service approach ---*/
    .service-approach-list>* {
        padding: 10px 10px;
    }

    /*--- contact banner section ---*/
    .contact-banner-content {
        padding: 32px 42px;
    }

    .contact-banner-content h2 {
        font-size: 28px;
    }
}

@media(max-width: 767px) {
    .hero {
        padding: 50px 0;
    }

    .hero-actions {
        margin-top: 32px;
    }

    section.two-col-section {
        padding: 50px 0;
    }

    .two-col-inner {
        flex-wrap: wrap;
    }

    .two-col-inner>.left-image {
        max-width: 100%;
    }

    .two-col-inner>.right-content {
        max-width: 100%;
    }

    section.services {
        padding: 50px 0 70px;
    }

    section.approach {
        padding: 50px 0;
    }

    .approach .two-col-inner>.two-col-media {
        max-width: 100%;
    }

    .approach .two-col-inner>.two-col-content {
        max-width: 100%;
    }

    section.schedule {
        padding: 50px 0;
    }

    .schedule-list>.schedule-card {
        max-width: 100%;
    }

    section.faq {
        padding: 50px 0;
    }

    .faq-list {
        flex-wrap: wrap;
    }

    .faq-column {
        max-width: 100%;
    }

    section.cta-section {
        padding: 50px 0;
    }

    section.cta-section .cta-inner {
        flex-wrap: wrap;
    }

    .cta-section .cta-content {
        max-width: 100%;
    }

    /*---- inner banner ----*/
    .inner-banner h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    section.story {
        padding: 50px 0;
    }

    .story-cards {
        margin-top: 40px;
    }

    .story-cards>* {
        max-width: calc(50% - 16px);
        padding: 24px;
    }

    section.values {
        padding: 50px 0;
    }

    .values-list {
        margin-top: 40px;
    }

    .value-icon img {
        height: 40px;
    }

    /*--- offer section ----*/
    section.offer {
        padding: 50px 0;
    }

    .offer-content h2 {
        margin-bottom: 20px;
    }

    .offer-actions {
        margin-top: 32px;
    }

    /*--- service list section ----*/
    section.service-list {
        padding: 50px 0;
    }

    .service-item .service-content {
        padding: 24px;
    }

    .service-actions {
        margin-top: 16px;
    }

    .service-content h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .service-item {
        margin-bottom: 40px;
    }

    /*--- care cta ---*/
    section.care-cta {
        padding: 50px 0;
    }

    .care-cta-inner {
        flex-wrap: wrap;
    }

    .care-cta-actions {
        max-width: 100%;
        flex: 0 0 100%;
        margin-left: unset;
        text-align: center;
    }

    .care-cta-content {
        max-width: calc(100% - 188px);
    }

    .care-cta-content h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    /*--- service approach ----*/
    section.service-approach {
        padding: 50px 0;
    }

    .service-approach-list {
        margin-top: 40px;
        flex-wrap: wrap;
    }

    .service-approach-list>* {
        max-width: 100%;
        padding: 0;
    }

    .service-approach-item::before {
        width: 100%;
        height: 1px;
        left: 0;
        bottom: -17px;
        right: unset;
        top: unset;
    }

    /*--- faq accordion section ---*/
    section.faq-alt {
        padding: 50px 0;
    }

    .faq-alt-list {
        margin-top: 40px;
    }

    .faq-alt-answer {
        padding: 0 40px 40px 106px;
    }

    /*--- contact banner section ---*/
    section.contact-banner {
        padding: 20px 0 50px;
    }

    .contact-banner-content {
        padding: 32px 24px;
    }

    .contact-banner-content h2 {
        font-size: 24px;
        line-height: 1.3;
    }
}

@media(max-width: 580px) {
    .hero-content h2 {
        font-size: 20px;
        line-height: 1.3;
        padding-bottom: 24px;
        margin-bottom: 24px;
    }

    .service-card {
        flex-wrap: wrap;
    }

    .service-card-image {
        max-width: 100%;
        position: relative;
        padding-bottom: 66.25%;
    }

    .service-card-content {
        max-width: 100%;
    }

    .service-card-image img {
        border-radius: 10px 10px 0 0;
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    ul.approach-list {
        flex-wrap: wrap;
        gap: 16px;
    }

    ul.approach-list li {
        max-width: 100%;
    }

    .schedule-list>.schedule-card {
        padding: 24px;
    }

    .cta-actions {
        justify-content: flex-start;
    }

    /*--- story section ---*/
    .story-inner {
        flex-wrap: wrap;
    }

    .story-media {
        max-width: 100%;
    }

    .story-content {
        max-width: 100%;
    }

    .story-content h2 {
        margin-bottom: 20px;
    }

    .story-actions {
        margin-top: 32px;
    }

    .story-cards {
        margin-top: 32px;
        flex-wrap: wrap;
    }

    .story-cards>* {
        max-width: 100%;
    }

    .values-head h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .value-item {
        max-width: 100%;
    }

    .value-item::before {
        width: 100%;
        height: 1px;
        bottom: -18px;
        left: 0;
        top: unset;
        right: unset;
    }

    /*--- service lists section ---*/
    .service-item {
        flex-wrap: wrap;
    }

    .service-item>.service-image {
        max-width: 100%;
    }

    .service-item .service-image img {
        border-radius: 10px 10px 0 0;
    }

    .service-item .service-content {
        min-height: unset;
    }

    .service-content h2 {
        font-size: 20px;
    }

    /*--- care cta ---*/
    .care-cta-content {
        max-width: 100%;
        text-align: center;
    }

    .care-cta-inner {
        justify-content: center;
    }

    .care-cta-icon {
        max-width: 120px;
    }

    .care-cta-icon img {
        width: 56px;
    }

    /*--- faq accordion section ----*/
    .faq-alt-question {
        padding: 20px;
        gap: 24px;
    }

    .faq-alt-icon {
        max-width: 32px;
        flex: 0 0 100%;
        height: 32px;
    }

    .faq-alt-question h3 {
        font-size: 18px;
        line-height: 24px;
    }

    .faq-alt-answer {
        padding: 0 20px 20px 76px;
    }

    .faq-alt-item.active .faq-alt-question {
        padding-top: 20px;
    }

    /*--- contact banner section ---*/
    .contact-banner-inner {
        flex-wrap: wrap;
    }

    .contact-banner-image {
        max-width: 100%;
    }

    .contact-banner-content {
        max-width: 100%;
    }

    .contact-banner-image img {
        border-radius: 15px 15px 0 0;
    }

    .contact-banner-actions {
        margin-top: 24px;
    }
}