/* Banner Section */
.banner-section {
    background: #f0faf9;
    padding: 80px 0 0px;
}

.banner-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
}

.banner-content {
    max-width: 679px;
    width: 100%;
}

.banner-content h1 {
    font-size: 45px;
    font-weight: 400;
    line-height: 67.5px;
    text-align: left;
    color: #0e145f;
    margin-bottom: 50px;
}

.banner-content h1 span {
    /* background: linear-gradient(92.38deg,
            #52bab0 47.37%,
            #f5863e 57.89%,
            #f99936 68.41%,
            #fea72f 78.08%); */
            background: linear-gradient(
        92.38deg,
        #52bab0 47.37%,
        #5fc0b6 57.89%,
        #70cac0 68.41%,
        #82d4ca 78.08%
        );
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
    row-gap: 25px;
}

.banner-list p {
    position: relative;
    max-width: max-content;
    width: 100%;
    font-size: 18px;
    font-weight: 400;
    line-height: 24.3px;
    text-align: left;
    color: #6b6e98;
    padding-left: 31px;
}

.banner-list p::before {
    content: '';
    position: absolute;
    background-image: url('../images/banner-check-icon.svg');
    width: 19px;
    height: 19px;
    left: 0;
    top: 2px;
}

.banner-img {
    max-width: 469px;
    width: 100%;
}

.banner-svg {
    display: none;
}

.banner-btn {
    max-width: max-content;
    width: 100%;
    display: block;
    padding: 16px 30px 17px;
    margin-top: 60px;
    font-size: 18px;
    font-weight: 700;
    line-height: 24.3px;
    text-align: center;
    background: #52bab0;
    color: white;
    border-radius: 100px;
    border-bottom: 5px solid #44a198;
    box-shadow: 0px 6px 7.3px 2px #52bab040;
    transition: all 0.5s ease;
}

.banner-btn:hover {
    box-shadow: 0px 3px 4px 1px #52bab040;
    transform: translateY(3px);
}

.banner-reviews {
    max-width: 660px;
    width: 100%;
    margin: 50px auto 60px;
    border-radius: 15px;
    border: 1px dashed #52bab0;
    padding: 0px 36px 24px 36px;
}

.reviews-wrapper {
    max-width: 471px;
    width: 100%;
    margin: -25px auto 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 43px;
    background: #e6f7f5;
    padding: 8px 5px 8px 18px;
}

.reviews-wrapper p {
    font-size: 14px;
    font-weight: 500;
    line-height: 18.9px;
    color: #0e145f;
}

.review-info {
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    color: #6b6e98;
    margin-bottom: 24px;
    text-align: center;
}

.review-info span {
    font-weight: 700;
    color: #0e145f;
}

.reviews-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 65px;
}

.reviews-logo p {
    display: inline-block;
    font-size: 16px;
    font-weight: 450;
    line-height: 20.24px;
    color: #6b6e98;
}

.reviews-logo-img {
    display: flex;
    align-items: center;
    gap: 65px;
}

.banner-video {
    max-width: 970px;
    width: 100%;
    height: 469px;
    margin: 0 auto -219px;
    position: relative;
    z-index: 1;
}

.bannervideo-thumbnail {
    box-shadow: 0px 4px 38px 0px #00000040;
    border-radius: 20px;
}

.bannervideo-mobthumbnail {
    display: none;
}

.video-play-btn {
    position: absolute;
    width: 80px;
    height: 80px;
    padding: 22px 23px 22px 29px;
    background: #db2b42b2;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.video-play-btn::after {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: inherit;
    animation-delay: 0.2s;
}

.video-play-btn,
.video-play-btn::after {
    animation: pulseAnimation 1.8s infinite;
    -webkit-animation: pulseAnimation 1.8s infinite;
}

@keyframes pulseAnimation {
    0% {
        box-shadow: 0 0 0 0 #b00000;
    }

    100% {
        box-shadow: 0 0 0 20px transparent;
    }
}

.bannervideo-iframe {
    display: none;
    overflow: hidden;
}

.bannervideo-iframe iframe {
    border-radius: 20px;
    background: black;
}

/* /Banner Section */

/* Steps Section */
.step-section {
    background: #f0faf9;
    padding: 319px 0 40px;
    position: relative;
}

.step-section:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 840px;
    top: 0;
    background: white;
    z-index: 0;
    clip-path: polygon(0 0,
            100% 0,
            100% calc(100% - 200px),
            50% 100%,
            0 calc(100% - 200px));
}

.steps-wrapper {
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.steps-wrapper h2 {
    font-size: 38px;
    font-weight: 400;
    line-height: 52.1px;
    color: #0e145f;
    margin: 32px 0 15px;
}

.steps-wrapper p:nth-of-type(1) {
    font-size: 18px;
    font-weight: 500;
    line-height: 24.3px;
    color: #6b6e98;
}

.steps-wrapper p:nth-of-type(2) {
    max-width: 629px;
    width: 100%;
    margin: 0 auto;
    font-size: 15px;
    font-style: italic;
    font-weight: 400;
    line-height: 25.5px;
    color: #6b6e98;
}

.steps-wrapper p:nth-of-type(3) {
    font-size: 16px;
    font-weight: 400;
    line-height: 21.6px;
    color: #6b6e98;
}

.steps-list {
    max-width: 750px;
    width: 100%;
    margin: 37px auto 32px;
    padding: 40px 33px 47px 48px;
    border-radius: 16px;
    border: 2px dashed #52bab0;
    background: white;
}

.steps-list ul {
    max-width: 684px;
    width: 100%;
    height: 215px;
    padding-left: 35px;
    border-left: 2px solid #52bab0;
    position: relative;
    list-style: none;
}

.steps-list ul::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-right: 2px solid #ffe2da;
    border-bottom: 2px solid #ffe2da;
    left: -6px;
    bottom: -1px;
    transform: rotate(44deg);
}

.steps-list ul li {
    font-size: 17px;
    font-weight: 500;
    line-height: 22.95px;
    text-align: left;
    color: #6b6e98;
    margin-bottom: 32px;
    position: relative;
    counter-increment: li-counter;
}

.steps-list ul li::before {
    content: counter(li-counter);
    position: absolute;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    border: 2px solid #52bab0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    left: -54px;
    font-size: 20px;
    font-weight: 700;
    line-height: 27px;
    color: #52bab0;
}

.steps-list ul li:last-child {
    margin-bottom: 7px;
}

.steps-btn {
    max-width: max-content;
    width: 100%;
    margin: 35px auto 30px;
    display: block;
    padding: 16px 46px 17px;
    font-size: 18px;
    font-weight: 700;
    line-height: 24.3px;
    text-align: center;
    background: #52bab0;
    color: white;
    border-radius: 100px;
    border-bottom: 5px solid #52bab0;
    box-shadow: 0px 6px 7.3px 2px #7aaea8;
    transition: all 0.5s ease;
    position: relative;
}

.steps-btn:hover {
    box-shadow: 0px 3px 4px 1px #52bab0;
    transform: translateY(3px);
}

/* /Steps Section */
/* Content Section */
.content-section {
    padding: 40px 0 !important;
    background: #f0faf9;
}

.content-wrapper {
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.content-wrapper h2 {
    font-size: 38px;
    font-weight: 400;
    line-height: 52.1px;
    text-align: center;
    color: #0e145f;
    margin-bottom: 30px;
}

.content-wrapper p {
    font-size: 17px;
    font-weight: 400;
    line-height: 30.6px;
    color: #6b6e98;
}

/* /Content Section */

/* Letter Section */
.letter-section {
    padding: 40px 0 80px;
    background: #f0faf9;
}

.letter-wrapper {
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
    background: white;
    border: 2px dashed #52bab0;
    border-radius: 16px;
    padding: 30px 33px;
}

.letter-wrapper h2 {
    font-size: 35px;
    font-weight: 400;
    line-height: 47.99px;
    text-align: center;
    color: #0e145f;
    margin-bottom: 30px;
}
.letter-wrapper h3{
    font-family: 'Lato';
    color: #0e145f;
    font-size: 19px;
    font-weight: 700;
    line-height: 30.6px;
    text-align: left;
}
.letter-wrapper p {
    font-size: 17px;
    font-weight: 500;
    line-height: 30.6px;
    text-align: left;
    color: #6b6e98;
    margin-bottom: 27px;
}

.letter-wrapper p:nth-last-of-type(2) {
    margin-bottom: 0px;
}

.letter-wrapper p:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.letter-list {
    margin: 20px 0 30px;
}

.letter-list ul {
    list-style: none;
}

.letter-list ul li {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    color: #6b6e98;
    margin-bottom: 15px;
    padding-left: 25px;
}

.letter-list ul li::before {
    content: '';
    position: absolute;
    background-image: url('../images/list-arrow-right.svg');
    width: 14px;
    height: 14px;
    left: 0;
    top: 5px;
    bottom: 5px;
}

.letter-list ul li:last-child {
    margin-bottom: 0;
}

/* /Letter Section */

/* Letter Detail Section */
.letterDetail-section {
    padding: 139px 0 75px;
    background: #52bab0;
    position: relative;
}

.letterDetail-section::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -1px;
    width: 0;
    height: 0;
    border-top: 59px solid #f0faf9;
    border-right: 57px solid transparent;
    border-left: 57px solid transparent;
}

.letterDetail-section h2 {
    font-weight: 400;
    font-size: 38px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    margin: 51px 0 38px;
    color: #0E145F;
}

.detail-wrapper {
    max-width: 880px;
    width: 100%;
    margin: 0 111px 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
    /* gap: 20px; */
}

.detail-col1 span,
.detail-col2 span {
    display: block;
    max-width: max-content;
    width: 100%;
    background: #39847c;
    padding: 3px 8px 3px 7px;
    font-size: 17px;
    font-weight: 500;
    line-height: 25.5px;
    text-align: center;
    color: white;
}

.detail-col1 span:nth-of-type(1) {
    margin-bottom: 121px;
    margin-left: 82px;
}

.detail-col1 span:nth-of-type(2) {
    margin-bottom: 97px;
    margin-left: 30px;
}

.detail-col1 span:nth-of-type(3) {
    margin-left: 18px;
}

.detail-col2 span:nth-of-type(1) {
    margin-bottom: 110px;
}

.detail-col2 span:nth-of-type(2) {
    margin-bottom: 92px;
}

.hide-desk {
    display: none !important;
}

.detail-img a {
    text-align: center;
    display: block;
    text-decoration: underline;
    color: white;
}

.detail-img a:hover {
    text-decoration: none;
}

/* /Letter Detail Section */

/* Certification Section */
.certification-section {
    padding: 102px 0 40px;
}

.certification-section .content-wrapper h2 {
    margin-bottom: 43px;
}

.certification-section .content-wrapper p {
    font-weight: 500;
    margin-bottom: 25px;
}

.certification-section .content-wrapper p:last-child {
    margin-bottom: 0px;
}

/* /Certification Section */

/* ESA Letter Section */
.esa-letter-section {
    padding: 40px 0;
}

.esa-letter-section .letter-wrapper h2 {
    margin-bottom: 40px;
}

.esa-letter-section .letter-wrapper p {
    margin-bottom: 0px;
}

.esa-letter-section .letter-list {
    max-width: 368px;
    width: 100%;
    margin: 30px auto 51px;
    display: flex;
    /* justify-content: center; */
    flex-wrap: wrap;
    column-gap: 73px;
}

.esa-letter-section .letter-list ul li {
    font-size: 17px;
    line-height: 25.5px;
}

.esa-letter-section .letter-list ul {
    list-style: none;
}

.esa-letter-section .letter-list ul li:last-child {
    margin-bottom: 0px;
}

.letter-btn {
    max-width: max-content;
    width: 100%;
    margin: 30px auto 0px;
    display: block;
    padding: 16px 46px 17px;
    font-size: 18px;
    font-weight: 700;
    line-height: 24.3px;
    text-align: center;
    background: #52bab0;
    color: white;
    border-radius: 100px;
    border-bottom: 5px solid #45a49b;
    box-shadow: 0px 6px 7.3px 2px #52bab040;
    transition: all 0.5s ease;
    position: relative;
}

.letter-btn:hover {
    box-shadow: 0px 3px 4px 1px #52bab0;
    transform: translateY(3px);
}

/* /ESA Letter Section */

/* Client Section */
.client-section {
    padding: 40px 0 60px;
}

.client-head {
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
}

.client-head h2 {
    font-size: 35px;
    font-weight: 400;
    line-height: 47.99px;
    text-align: center;
    color: #0e145f;
    margin-bottom: 15px;
}

.client-head p {
    font-size: 16px;
    font-weight: 500;
    line-height: 27.2px;
    text-align: center;
    color: #6b6e98;
}

.client-wrapper {
    max-width: 750px;
    width: 100%;
    margin: 40px auto 0;
}

.client-mainVideo {
    position: relative;
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
}

.video-iframe {
    display: none;
    overflow: hidden;
}

.video-iframe iframe {
    border-radius: 40px;
    background: black;
}

.swiper-video-iframe {
    display: none;
}

.swiper-video-iframe iframe {
    border-radius: 40px;
}

.video-wrapper {
    max-width: 692px;
    width: 100%;
    position: relative;
}

.video-card {
    position: relative;
}

.video-card::after {
    content: '';
    position: absolute;
    background-image: url(../images/play-button-img.svg);
    width: 39px;
    height: 39px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.video-card:hover::after {
    transform: translate(-50%, -50%) scale(1.1);
}

.videoSwipper {
    position: relative !important;
    width: 100%;
    margin: 0 auto;
    cursor: pointer;
    padding: 25px 0px 0px !important;
}

.swiper-button-next-video {
    width: 44px;
    height: 160px;
    border-radius: 100px;
    transition: all ease 0.1s;
    bottom: 0;
    right: -55px;
    position: absolute;
    z-index: 1;
    cursor: pointer;
    background: #52bab0;
}

.swiper-button-next-video:hover {
    background: #52bab0;
}

.swiper-button-next-video::after {
    content: '';
    position: absolute;
    background-image: url(../images/swiper-right-icon.svg);
    width: 20px;
    height: 20px;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
}

.video-wrapper.firstSlide .swiper-button-next-video::after {
    background-image: url(../images/swiper-left-icon.svg);

}

.play-btn {
    position: absolute;
    width: 80px;
    height: 80px;
    padding: 22px 23px 22px 29px;
    background: #db2b42b2;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.play-btn::after {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: inherit;
    animation-delay: 0.2s;
}

.play-btn,
.play-btn::after {
    animation: pulseAnimation 1.8s infinite;
    -webkit-animation: pulseAnimation 1.8s infinite;
}

@keyframes pulseAnimation {
    0% {
        box-shadow: 0 0 0 0 #b00000;
    }

    100% {
        box-shadow: 0 0 0 20px transparent;
    }
}

.client-section .letter-btn {
    margin-top: 40px;
}

/* /Client Section */

/* Therapists Section */
.therapists-section {
    padding: 40px 0;
}

.therapists-box {
    max-width: 682px;
    width: 100%;
    margin: 0 auto;
}

.therapists-head h2 {
    font-size: 35px;
    font-weight: 400;
    line-height: 47.99px;
    text-align: center;
    color: #0e145f;
    margin-bottom: 15px;
}

.therapists-head p {
    font-size: 16px;
    font-weight: 500;
    line-height: 27.2px;
    text-align: center;
    color: #0e145f;
}

.therapists-wrapper {
    max-width: 1100px;
    width: 100%;
    margin: 49px auto 0;
    padding: 0 15px;
    box-sizing: border-box;
}

.therapists-card {
    width: 100%;
    background: #f0faf9;
    border-radius: 16px;
    padding: 22px 24px;
    position: relative;
    border: 1px dashed transparent;
    height: 100%;
    box-sizing: border-box;
}

.therapists-card:hover {
    border-color: #52bab0;
}

.therapists-wrapper .therapists-slider-item:last-child .therapists-card {
    margin-bottom: 0;
}

.therapists-wrapper .therapists-slider-item:nth-of-type(odd) .therapists-card {
    background: #f0faf9;
}

.therapists-wrapper .therapists-slider-item:nth-of-type(even) .therapists-card {
    background: #f0faf9;
}

.card-shape {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 59px;
    height: 59px;
    background: white;
    border-top-left-radius: 35px;
}

.therapists-card:hover .card-shape {
    border: 1px dashed #52bab0;
    border-bottom: none;
    border-left: none;
    border-right: none;
}

.card-arrow {
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 50%;
    width: 47px;
    height: 47px;
    background: #e6f7f5;
    padding: 16px 14px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.card-arrow img {
    transition: transform 0.3s ease;
}

.card-arrow:hover img {
    transform: translate(3px, -3px);
}

.therapists-wrapper .therapists-slider-item:nth-of-type(odd) .therapists-card .card-arrow {
    background: #87e9df;
}

.therapists-wrapper .therapists-slider-item:nth-of-type(even) .therapists-card .card-arrow {
    background: #52bab0;
}

.therapists-card::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border-bottom-right-radius: 50%;
    background: #e6f7f5;
    box-shadow: 4px 5px 0 #fff;
    border-bottom: 2px soild #fff;
    right: 58px;
    transform: rotate(0deg);
    bottom: -1px;
    z-index: 1;
}

.therapists-card:hover::before {
    border: 1px dashed #52bab0;
    border-top: none;
    border-left: none;
    right: 57px;
    bottom: -1px;
}

.therapists-wrapper .therapists-slider-item:nth-of-type(odd) .therapists-card::before {
    background: #87e9df;
}

.therapists-wrapper .therapists-slider-item:nth-of-type(even) .therapists-card::before {
    background: #52bab0;
}

.therapists-card::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border-bottom-right-radius: 50%;
    background: #e6f7f5;
    box-shadow: 4px 5px 0 #fff;
    right: -1px;
    transform: rotate(0deg);
    bottom: 58px;
    z-index: 1;
}

.therapists-card:hover::after {
    border: 1px dashed #52bab0;
    border-top: none;
    border-left: none;
    right: -1px;
    bottom: 57px;
}

.therapists-wrapper .therapists-slider-item:nth-of-type(odd) .therapists-card::after {
    background: #87e9df;
}

.therapists-wrapper .therapists-slider-item:nth-of-type(even) .therapists-card::after {
    background: #52bab0;
}

.profile-head {
    font-size: 17px;
    font-weight: 500;
    line-height: 30.6px;
    text-align: left;
    color: #0e145f;
    margin-bottom: 46px;
}

.profile-info {
    max-width: max-content;
    width: 100%;
    margin: 0 auto 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11.3px;
}

.profile-content p {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    text-align: left;
    color: #0e145f;
}

.profile-content span {
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    text-align: left;
    color: #6b6e98;
}

.therapists-wrapper .therapists-slider-item:nth-of-type(even) .therapists-card .profile-content span {
    color: #0E145F;
}

.therapists-wrapper .therapists-slider-item:nth-of-type(odd) .therapists-card:hover {
    border-color: #D35B37;
}

/* /Therapists Section */

/* Registry Section */
.registry-section {
    padding: 40px 0;
}

.registry-wrapper {
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.registry-wrapper h2 {
    font-size: 35px;
    font-weight: 400;
    line-height: 47.99px;
    color: #0e145f;
    margin-bottom: 39px;
}

.registry-wrapper p {
    font-size: 17px;
    font-weight: 500;
    line-height: 28.9px;
    color: #6b6e98;
    margin-bottom: 25px;
}

.regitry-list {
    max-width: 750px;
    width: 100%;
    margin: 25px 0 30px;
    border: 2px dashed #ffd2d2;
    background: #fff2f2;
    padding: 25px 38px 25px 33px;
    border-radius: 16px;
}

.regitry-list ul {
    list-style: none;
}

.regitry-list ul li {
    height: 32px;
    position: relative;
    padding-left: 62px;
    font-size: 17px;
    font-weight: 500;
    line-height: 22.95px;
    color: #0e145f;
    text-align: left;
    margin-bottom: 14px;
}

.regitry-list ul li::before {
    content: '';
    position: absolute;
    background-image: url('../images/registry-check-icon.svg');
    width: 32px;
    height: 33px;
    left: 0;
    bottom: 4px;
}

.regitry-list ul li:last-child {
    margin-bottom: 0px;
}

.registry-btn {
    max-width: max-content;
    width: 100%;
    margin: 9px auto 0px;
    display: block;
    padding: 16px 46px 17px;
    font-size: 18px;
    font-weight: 700;
    line-height: 24.3px;
    text-align: center;
    background: #52bab0;
    color: white;
    border-radius: 100px;
    border-bottom: 5px solid #45a49b;
    box-shadow: 0px 6px 7.3px 2px #52bab040;
    position: relative;
    transition: all 0.5s ease;
}

.registry-btn:hover {
    box-shadow: 0px 3px 4px 1px #52bab040;
    transform: translateY(3px);
}

/* /Registry Section */

/* Training Section */
.training-section {
    padding: 40px 0;
}

.training-section .letter-wrapper h2 {
    font-size: 30px;
    font-weight: 400;
    line-height: 51px;
    text-align: center;
    margin-bottom: 25px;
}

.training-section .letter-wrapper p {
    margin-bottom: 30px;
}

.training-section .letter-wrapper p:nth-of-type(2) {
    margin-bottom: 25px;
}

.training-section .letter-wrapper .letter-list {
    margin: 0px;
}

.training-section .letter-wrapper .letter-list ul li {
    margin-bottom: 30px;
}

.training-section .letter-wrapper .letter-list ul li:last-of-type {
    margin-bottom: 0px;
}

.training-section .letter-wrapper .letter-list ul li span {
    color: #0e145f;
    font-weight: 700;
    margin-bottom: 13px;
    display: block;
}

.training-section .letter-wrapper .letter-list ul li {
    font-size: 17px;
    line-height: 28px;
}

/* /Training Section */

/* Choose Section */
.choose-section {
    padding: 40px 0 0;
    position: relative;
    background: #f0faf9;
}

.choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 530px;
    z-index: 0;
    background: white;
    clip-path: polygon(0 0,
            100% 0,
            100% calc(100% - 200px),
            50% 100%,
            0 calc(100% - 200px));
}

.choose-wrapper {
    max-width: 513px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.choose-wrapper h2 {
    font-size: 35px;
    font-weight: 400;
    line-height: 47.99px;
    text-align: center;
    color: #0e145f;
    margin-bottom: 50px;
}

.choose-list ul {
    list-style: none;
}

.choose-list ul li {
    position: relative;
    font-size: 17px;
    font-weight: 500;
    line-height: 22.95px;
    text-align: left;
    color: #6b6e98;
    margin-bottom: 20px;
    padding-left: 32px;
}

.choose-list ul li:last-child {
    margin-bottom: 0;
}

.choose-list ul li::before {
    content: '';
    position: absolute;
    background-image: url('../images/choose-check-icon.svg');
    left: 0;
    width: 20px;
    height: 19px;
    top: 4px;
}

/* /Choose Section */

/* FAQ Section */
.faq-section {
    padding: 166px 0 24px;
    background: #f0faf9;
}

.faq-wrapper {
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
}

.faq-head {
    font-size: 35px;
    font-weight: 400;
    line-height: 47.99px;
    text-align: center;
    color: #0e145f;
    margin-bottom: 59px;
}

.faq-card {
    padding: 42px 90px;
    background: #d4f0ed;
    border-radius: 16px;
    counter-increment: faqCounter;
    position: relative;
    margin-bottom: 60px;
    cursor: pointer;
}

.faq-card:hover {
    background: #c5e8e4;
}

.faq-card:hover .card-head p {
    color: #52bab0;
}

.faq-card::before {
    content: '';
    position: absolute;
    left: 74px;
    top: -1px;
    width: 0;
    height: 0;
    border-top: 30px solid #f0faf9;
    border-right: 29px solid transparent;
    border-left: 29px solid transparent;
}

.faq-card::after {
    content: '';
    position: absolute;
    left: 74px;
    bottom: -30px;
    width: 0;
    height: 0;
    border-top: 30px solid #d4f0ed;
    border-right: 29px solid transparent;
    border-left: 29px solid transparent;
}

.faq-card:hover::after {
    border-top: 30px solid #c5e8e4;
}

.card-head {
    position: relative;
    padding-bottom: 30px;
    cursor: pointer;
}

.card-head p {
    max-width: 504px;
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    text-align: left;
    color: #0e145f;
}

.faq-card:hover .card-head {
    color: #52bab0;
}

.card-head::before {
    content: '';
    position: absolute;
    background-image: url('../images/faq-arrowDown.svg');
    width: 23px;
    height: 23px;
    background-repeat: no-repeat;
    right: 0px;
    font-size: 18px;
    font-weight: 500;
    line-height: 21.6px;
    color: #52bab0;
    transition: all 0.5s ease;
}

.card-head.rotate {
    padding-bottom: 15px;
    border-bottom: 1px solid #b3dbd7;
}

.card-head.rotate::before {
    transform: rotate(180deg);
}

.card-para {
    display: none;
    cursor: default;
    padding: 15px 0 30px;
}

.card-para p {
    font-size: 17px;
    font-weight: 500;
    line-height: 28.9px;
    text-align: left;
    color: #6b6e98;
}

.card-para p:last-child {
    margin-top: 15px;
}

.card-para p + ul,
.card-para p + ol {
    padding-top: 15px;
}

.card-para ul,
.card-para ol {
    padding-top: 0px;
    padding-left: 28px;
}

.card-para ul li span,
.card-para ol li strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    color: #0e145f;
    margin-bottom: 10px;
}

.card-para ul li,
.card-para ol li {
    font-size: 17px;
    font-weight: 500;
    line-height: 28.9px;
    text-align: left;
    color: #6b6e98;
    margin-bottom: 20px;
}

.card-para ul li:last-child,
.card-para ol li:last-child {
    margin-bottom: 0px;
}

.faq-card ul {
    padding-top: 15px;
    padding-left: 28px;
}

.faq-card ul li span {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    color: #0e145f;
    margin-bottom: 10px;
}

.faq-card ul li {
    font-size: 16px;
    font-weight: 500;
    line-height: 27.2px;
    text-align: left;
    color: #6b6e98;
    margin-bottom: 20px;
}

.faq-card ul li::marker {
    color: #0e145f;
}

.faq-card ul li:last-child {
    margin-bottom: 0px;
}

.faq-btn {
    display: block;
    max-width: max-content;
    width: 100%;
    margin: 26px auto 0;
    border: none;
    border-radius: 100px;
    background: none;
    font-size: 17px;
    font-weight: 500;
    line-height: 20.4px;
    text-align: center;
    color: #444444;
    text-decoration: underline;
    cursor: pointer;
    padding: 14px 27px;
}

.faq-btn:hover {
    color: #52bab0;
    background: #fff5e7;
}

/* /FAQ Section */

/* Cta Section */
.cta-section {
    padding: 60px 0 100px;
}

.cta-wrapper {
    max-width: 815px;
    width: 100%;
    margin: 0 auto;
    border: 2px dashed #52bab0;
    border-radius: 16px;
    background: linear-gradient(90.46deg,
    rgba(82, 186, 176, 0.25) 0.09%,
    rgba(82, 186, 176, 0.35) 34.6%,
    rgba(82, 186, 176, 0.45) 69.12%,
    rgba(82, 186, 176, 0.55) 100.82%
);
    padding: 58px 65px 121px;
    text-align: center;
    position: relative;
}

.cta-shape {
    position: absolute;
    bottom: -2px;
    width: 277px;
    height: 77px;
    background: white;
    border-radius: 40px 40px 0 0;
    border-top: 2px dashed #52bab0;
    border-right: 2px dashed #52bab0;
    border-left: 2px dashed #52bab0;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
}

.cta-wrapper::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border-bottom-right-radius: 50%;
    box-shadow: 4px 5px 0 #fff;
    border: 2px dashed #52bab0;
    left: 29.3%;
    border-top: none;
    border-left: none;
    transform: rotate(0deg);
    bottom: -1px;
    z-index: 1;
}

.cta-wrapper::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border-bottom-left-radius: 50%;
    /*background: #fddbb9;*/
    box-shadow: -4px 5px 0 #fff;
    border: 2px dashed #52bab0;
    right: 29.3%;
    border-top: none;
    border-right: none;
    transform: rotate(0deg);
    bottom: -2px;
    z-index: 1;
}

.cta-wrapper p:nth-of-type(1) {
    font-family: DM Serif Display;
    font-size: 30px;
    font-weight: 400;
    line-height: 41.13px;
    color: #0e145f;
    margin-bottom: 15px;
}

.cta-wrapper p:nth-of-type(2) {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #0e145f;
}

.cta-btn {
    max-width: max-content;
    width: 100%;
    margin: -63px auto 0px;
    display: block;
    padding: 16px 54px 17px;
    font-size: 18px;
    font-weight: 700;
    line-height: 24.3px;
    text-align: center;
    background: #52bab0;
    color: white;
    border-radius: 100px;
    border-bottom: 5px solid #45a49b;
    box-shadow: 0px 6px 7.3px 2px #52bab040;
    position: relative;
    transition: all 0.5s ease;
}

.cta-btn:hover {
    box-shadow: 0px 3px 4px 1px #52bab040;
    transform: translateY(3px);
}

/* /Cta Section */

.lawsListSec {
    padding: 100px 0px 60px;
}

.lawsListSec h2 {
    font-size: 35px;
    font-weight: 400;
    line-height: 47.99px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    position: relative;
    z-index: 1;
    color: #0e145f;
}
.lawsWrapper {
    display: flex;
    gap: 50px;
    max-width: 1075px;
    width: 100%;
    margin: 70px auto 0;
    justify-content: center;
}

.list-head p {
    font-weight: 700;
    font-style: Bold;
    font-size: 19px;
    line-height: 180%;
    letter-spacing: 0%;
    text-align: left;
    color: #0E145F;
}

.listWrapper {
    margin-top: 35px;

}

.listWrapper ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    list-style: none;
}

.listWrapper ul li a {
    font-weight: 400;
    font-size: 15px;
    line-height: 180%;
    letter-spacing: 0%;
    text-align: left;
    color: #6B6E98;
}

.listWrapper ul li a:hover {
    text-decoration: underline;
}


/* Media Queries */
@media screen and (max-width: 767px) {
    .client-wrapper {
        max-width: 360px;
    }

    .client-mainVideo {
        position: relative;
        max-width: 360px;
        height: 202px;
    }

    .swiper-pagination-therapists .swiper-pagination-bullet-active {
        background: #52bab0 !important;
        width: 28px !important;
        height: 9px !important;
        position: relative;
        border-radius: 100px !important;
        /* top: 3px; */
    }

    .swiper-pagination-therapists .swiper-pagination-bullet {
        background: #c5e8e4;
        opacity: unset;
        width: 9px;
        height: 9px;
    }

    .swiper-pagination-therapists {
        position: absolute !important;
        text-align: center !important;
        transition: 0.3s opacity !important;
        transform: translate3d(0, 0, 0) !important;
        bottom: 1px !important;
        z-index: 1 !important;
    }

    .therapists-slider-row {
        padding: 0 0 20px;
    }
}

@media screen and (max-width: 575px) {

    /* Banner Section */
    .banner-img {
        display: none;
    }

    .banner-video {
        max-width: 360px;
        width: 100%;
        height: 217px;
        margin: 0 auto -100px;
    }

    .bannervideo-thumbnail {
        display: none;
    }

    .bannervideo-mobthumbnail {
        display: block;
        box-shadow: 0px 4px 38px 0px #00000040;
        border-radius: 15px;
    }

    .play-btn {
        width: 70px;
        height: 70px;
    }

    .play-btn img {
        width: 100% !important;
        height: 100% !important;
    }

    .video-play-btn {
        width: 70px;
        height: 70px;
        padding: 22px 23px 22px 25px;
    }

    .video-play-btn img {
        width: 26px;
        height: 28px;
    }

    .bannervideo-iframe iframe {
        width: 100%;
        height: 202px;
        border-radius: 15px;
    }

    .banner-content h1 {
        max-width: 354px;
        width: 100%;
        margin: 0 auto;
        font-size: 28px;
        font-weight: 400;
        line-height: 42px;
        text-align: center;
        margin-bottom: 30px;
    }

    .banner-list {
        max-width: 349px;
        width: 100%;
        margin: 0 auto;
        row-gap: 30px;
        grid-template-columns: 1fr;
    }

    .banner-list p {
        font-size: 16px;
        line-height: 21.6px;
    }

    .banner-btn {
        padding: 14px 20px 15px;
        margin: 39px auto 0;
    }

    .banner-reviews {
        max-width: 360px;
        margin: 65px auto 24px;
        padding: 0px 19px 25px 19px;
    }

    .reviews-wrapper {
        flex-wrap: wrap;
    }

    .reviews-wrapper img:nth-of-type(1) {
        width: 108px;
        height: 23px;
    }

    .reviews-wrapper p {
        font-size: 13px;
        line-height: 147%;
    }

    .reviews-wrapper {
        max-width: 330px;
        width: 100%;
        height: 45px;
        margin: -25px auto 57px;
        display: flex;
        justify-content: center;
        column-gap: 7px;
        row-gap: 5px;
        padding: 11px 13px;
    }

    .review-info {
        margin-bottom: 20px;
    }

    .reviews-logo {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .reviews-logo-img {
        max-width: 322px;
        width: 100%;
        gap: 27px;
    }

    .reviews-logo-img img:nth-of-type(1) {
        width: 72px;
        height: 34px;
    }

    .reviews-logo-img img:nth-of-type(2) {
        width: 87px;
        height: 34px;
    }

    .reviews-logo-img img:nth-of-type(3) {
        width: 109px;
        height: 34px;
    }

    /* /Banner Section */

    /* Steps Section */
    .step-section {
        padding: 181px 0 30px;
    }

    .step-img {
        width: 75px;
        height: 75px;
    }

    .steps-wrapper {
        max-width: 360px;
    }

    .steps-wrapper h2 {
        max-width: 360px;
        width: 100%;
        font-size: 28px;
        line-height: 38.39px;
        margin: 20px auto 20px;
    }

    .steps-wrapper p:nth-of-type(1) {
        font-size: 16px;
        line-height: 24px;
    }

    .steps-list {
        max-width: 360px;
        width: 100%;
        height: 400px;
        margin: 20px auto 43px;
        padding: 20px 31px;
    }

    .steps-list ul li {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 15px;
    }

    .step-section:before {
        height: 740px;
    }

    /* /Steps Section */

    /* Content Section */
    .content-section {
        padding: 30px 0;
    }

    .content-wrapper h2 {
        max-width: 360px;
        width: 100%;
        font-size: 28px;
        line-height: 38.39px;
        margin: 0px auto 20px;
    }

    .content-wrapper p {
        font-size: 16px;
        line-height: 28.8px;
    }

    /* /Content Section */
    /* Letter Section */
    .letter-section {
        padding: 30px 0 50px;
    }

    .letter-wrapper {
        padding: 30px 20px;
    }

    .letter-wrapper h2 {
        font-size: 28px;
        line-height: 38.39px;
    }

    .letter-wrapper p {
        font-size: 15px;
        line-height: 27px;
        margin-bottom: 20px;
    }

    .letter-list ul li {
        font-size: 15px;
        line-height: 22.5px;
    }

    /* /Letter Section */

    /* Letter Detail Section */
    .letterDetail-section {
        padding: 47px 0 29px;
    }

    .detail-wrapper {
        flex-direction: column;
        gap: 24px;
    }

    .detail-col1,
    .detail-col2 {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;

    }

    .detail-col1 {
        column-gap: 163px;
        row-gap: 19px;
    }

    .detail-col2 {
        column-gap: 37px;
        row-gap: 19px;
    }

    .letterDetail-section h2 {
        font-size: 32px;
    }

    .letterDetail-section::before {
        border-top: 41px solid #f0faf9;
        border-right: 43px solid transparent;
        border-left: 44px solid transparent;
    }

    .detail-col1 span,
    .detail-col2 span {
        margin-bottom: 0 !important;
        margin-left: 0 !important;
    }

    .detail-img {
        max-width: 322px;
        width: 100%;
    }

    .detail-img img {
        width: 100%;
        height: 100%;
    }

    .detail-col1 span,
    .detail-col2 span {
        padding: 4px 5px;
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
    }

    .hide-desk {
        display: inline-block !important;
    }

    .hide-mob {
        display: none !important;
    }

    /* /Letter Detail Section */

    /* Certification Section */
    .certification-section {
        padding: 60px 0 30px;
    }

    .certification-section .content-wrapper h2 {
        margin-bottom: 20px;
    }

    /* /Certification Section */

    /* ESA Letter Section */
    .esa-letter-section {
        padding: 30px 0;
    }

    .esa-letter-section .letter-wrapper h2 {
        max-width: 270px;
        width: 100%;
        margin: 0 auto 30px;
    }

    .esa-letter-section .letter-list ul li {
        font-size: 15px;
        line-height: 22.5px;
    }

    .esa-letter-section .letter-list {
        flex-wrap: nowrap;
        column-gap: 48px;
        margin: 30px auto 32px;
    }

    /* /ESA Letter Section */

    /* Client Section */
    .client-head h2 {
        font-size: 28px;
        line-height: 38.39px;
    }

    .client-video {
        max-width: 360px;
        width: 100%;
    }

    .client-video img:nth-of-type(1) {
        width: 100%;
        height: 202px;
    }

    .video-iframe iframe {
        width: 100%;
        height: 202px;
        border-radius: 15px;
    }

    .video-wrapper {
        max-width: 315px;
    }

    .video-card {
        width: 150px;
        height: 147px;
    }

    .video-card img {
        width: 100%;
        height: 100%;
    }

    .swiper-button-next-video {
        width: 37px;
        height: 147px;
        right: -42px;
    }

    /* /Client Section */

    /* Therapists Section */
    .therapists-head h2 {
        font-size: 28px;
        line-height: 38.39px;
        margin-bottom: 20px;
    }

    .profile-head {
        font-size: 16px;
        line-height: 28.8px;
        margin-bottom: 25px;
        min-height: 287px;
    }

    .profile-content p {
        font-size: 16px;
        line-height: 24px;
    }

    .profile-content span {
        font-size: 13px;
        line-height: 19.5px;
        max-width: 206px;
        width: 100%;
        display: block;
    }

    .therapists-card {
        max-width: 360px;
        padding: 20px;
        min-height: 338px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: space-between;
    }

    .therapists-wrapper .therapists-slider-item:nth-of-type(odd) .therapists-card::before {
        background: transparent;
    }

    .therapists-wrapper .therapists-slider-item:nth-of-type(even) .therapists-card::before {
        background: transparent;
    }

    /* /Therapists Section */

    /* Registry Section */
    .registry-section {
        padding: 40px 0 25px;
    }

    .registry-wrapper img {
        width: 66.55px;
        height: 68px;
    }

    .registry-wrapper h2 {
        font-size: 28px;
        line-height: 38.39px;
        margin-bottom: 30px;
    }

    .registry-wrapper p {
        margin-bottom: 20px;
    }

    .regitry-list {
        padding: 25px 12px 15px;
        border-radius: 16px;
    }

    .regitry-list ul li::before {
        width: 25px;
        height: 25px;
        background-size: cover;
        background-repeat: no-repeat;
        top: 0;
    }

    .regitry-list ul li {
        max-height: 47px;
        height: 100%;
        padding-left: 41px;
        font-size: 15px;
        line-height: 22.5px;
    }

    /* /Registry Section */

    /* Training Section */
    .training-section {
        padding: 25px 0;
    }

    .training-section .letter-wrapper {
        padding: 30px 15px;
    }

    .training-section .letter-wrapper h2 {
        font-size: 24px;
        line-height: 40px;
        margin-bottom: 30px;
    }

    .training-section .letter-wrapper .letter-list ul li span {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 15px;
    }

    .training-section .letter-wrapper .letter-list ul li {
        font-size: 16px;
        line-height: 27px;
    }

    .training-section .letter-wrapper p {
        margin-bottom: 20px;
    }

    .training-section .letter-wrapper p:nth-of-type(2) {
        margin-bottom: 27px;
    }

    /* /Training Section */

    /* Choose Section */
    .choose-section {
        padding: 55px 0 0;
        position: relative;
        background: #f0faf9;
    }

    .choose-wrapper h2 {
        font-size: 28px;
        line-height: 38.39px;
        margin-bottom: 25px;
    }

    .choose-list ul li {
        font-size: 16px;
        line-height: 24px;
    }

    .choose-section::before {
        height: 680px;
        clip-path: polygon(0 0,
                100% 0,
                100% calc(100% - 85px),
                50% 100%,
                0 calc(100% - 85px));
    }

    /* /Choose Section */

    /* FAQ Section */
    .faq-section {
        padding: 116px 0 41px;
    }

    .faq-head {
        font-size: 28px;
        line-height: 38.39px;
    }

    .faq-card {
        padding: 42px 30px;
    }

    .card-head p {
        max-width: 254px;
        width: 100%;
        font-size: 16px;
        line-height: 24px;
    }

    .card-para {
        font-size: 16px;
        line-height: 27.2px;
    }

    .faq-btn {
        font-size: 15px;
    }

    .card-head::before {
        font-size: 16px;
        line-height: 19.2px;
    }

    .faq-card ul li {
        font-size: 15px;
        line-height: 25.5px;
    }

    .faq-card::after {
        left: 34px;
    }

    .faq-card::before {
        left: 34px;
    }

    /* /FAQ Section */

    /* Cta Section */
    .cta-wrapper {
        max-width: 360px;
        height: 259px;
        padding: 25px 25px 44px;
        border-radius: 40px;
    }

    .cta-wrapper p:nth-of-type(1) {
        font-size: 25px;
        line-height: 34.28px;
        margin-bottom: 10px;
    }

    .cta-wrapper p:nth-of-type(2) {
        font-size: 14px;
        line-height: 25.2px;
    }

    .cta-btn {
        padding: 16px 39px 17px;
        font-size: 17px;
        line-height: 22.95px;
        margin: -59px auto 0px;
    }

    .cta-shape {
        width: 242px;
        height: 75px;
    }

    .cta-wrapper::before {
        background: transparent;
        left: 7.5%;
        transform: rotate(1deg);
        border-bottom-right-radius: 10px;
        bottom: -2px;
    }

    .cta-wrapper::after {
        background: transparent;
        right: 7.5%;
        border-bottom-left-radius: 10px;
        transform: rotate(1deg);
        bottom: -1px;
    }

    /* /Cta Section */
           .lawsListSec h2 {
               max-width: 338px;
               width: 100%;
               margin: 0 auto;
               font-size: 28px;
               line-height: 150%;
           }
    
           .lawsWrapper {
               flex-direction: column;
               gap: 15px;
               margin: 35px auto 0;
           }
    
           .list-head {
               position: relative;
               padding: 7px 13px;
               border: 1px solid #EBEBEB;
               box-shadow: 0px 4px 4px 0px #EBEBEB40;
               border-radius: 4px;
               cursor: pointer;
           }
    
           .list-head::after {
               content: '';
               position: absolute;
               background-image: url(../../service-pages-cms/images/list-downarrow.svg);
               width: 22px;
               height: 22px;
               top: 10px;
               right: 11px;
           }
    
           .listWrapper {
               margin-top: 17px;
               display: none;
           }
    
           /* .list-col.active .listWrapper {
            display: block;
        } */
           .list-head.rotate::after {
               transform: rotate(180deg);
           }
    
           .listWrapper ul {
               grid-template-columns: 1fr 1fr;
    
           }
    
           .list-head p {
               font-size: 16px;
               line-height: 180%;
           }
    
           .listWrapper ul li a {
               font-size: 14px;
               line-height: 180%;
           }

   
}
@media screen and (max-width: 390px) {
    .reviews-logo-img {
        gap: 12px;
    }
    .reviews-wrapper{
        padding: 11px 5px;
    }
    .reviews-wrapper img:nth-of-type(1) {
        width: 65px;
        height: 23px;
    }
    .reviews-wrapper p {
        font-size: 12px;
        line-height: 142%;
    }
    .reviews-logo-img img:nth-of-type(1) {
        width: 55px;
        height: 34px;
    }
    .reviews-logo-img img:nth-of-type(2) {
        width: 76px;
        height: 34px;
    }
    .reviews-logo-img img:nth-of-type(3) {
        width: 93px;
        height: 34px;
    }
    .client-video img:nth-of-type(1),.client-mainVideo {
        height: 163px;
    }
    .video-wrapper {
        max-width: 264px;
    }
    .video-card {
        width: 124px;
        height: 124px;
    }
    .swiper-button-next-video::after {
      width: 16px;
      height:  16px;
      background-size: cover;
      left: 50%;
  }
  .swiper-button-next-video {
        width: 30px;
        height: 122px;
        right: -29px;
    }
    .banner-video {
        height: 176px;
    }
    .bannervideo-mobthumbnail{
        width: 100%;
        height: 100%;
    }
}



.therapistt-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.therapistt-grid .therapists-card {
    background: #f0faf9;
}

@media screen and (max-width: 767px) {
    .therapistt-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
}


    .faq-card {
        background: #c9eae7 !important;
    }
    .faq-card:hover {
        background: #b3dbd7 !important;
    }
    .faq-card:hover::after {
    border-top-color: #b3dbd7 !important; /* hover color */
}
    .card-head {
    border-bottom: 1px solid #b3dbd7 !important;
    }

    .faq-card::after {
    border-top: 30px solid #c9eae7 !important;
    }
    .therapists-card,.therapists-card::before,.therapists-card::after,.card-arrow,.content-section,.step-section,.letterDetail-section {
        background: #c9eae7;
    }
    

    .therapistt-grid {
        margin-top:40px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    
    @media screen and (max-width: 767px) {
        .therapistt-grid {
            grid-template-columns: 1fr;
        }
    }