@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --blue_color: #24A6DF;
    --green_color: #093523;
    --dark_blue_color: #0D223F;
    --light_blue_color: #E9F1FA;
    --light_green_color: #DBEFE3;
    --black_color: #101816;
    --white_color: #fff;
    --inter_font: "Inter", sans-serif;
    --montserrat_font: "Montserrat", sans-serif;
}
a:focus{
    outline: none;
}
img{
    max-width: 100%;
    height: auto;
}
li,p,a{
    font-family: var(--inter_font);
    text-decoration: none;
}
h1,h2,h3,h4,h5,h6{
    font-family: var(--montserrat_font);
}
ul,ol{
    margin: 0;
    padding: 0; 
}
li{
    list-style: none;
}
body p{
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--black_color);
}
@media only screen and (max-width: 767.98px){
    body p{
        font-size: 16px;
    }
}
section {
    width: 100%;
    display: inline-block;
    vertical-align: top;
}
a:hover{
    text-decoration: none !important;
}
p:last-of-type {
    margin-bottom: 0;
}
.header_logo img, .footer_logo img{
    width: 100%;
    max-width: 325px;
}
.bg-color{
    background-color: var(--light_blue_color);
}
/* Container Css */
.container{
    width: 100%;
    max-width: 1340px;
    padding: 0 12px;
}
.container-right {
    margin-left: auto !important;
    margin-right: 0 !important;
}
@media only screen and (max-width: 991px){
    body .container, body .container-fluid {
        padding: 0 30px;
    }
}
@media only screen and (min-width: 576px) {
    body .container, body .grid-container {
        max-width: 100%;
        width: 100%;
    }
    .container-right {
        max-width: 100% !important;
    }
}
@media only screen and (min-width: 768px) {
    body .container, body .grid-container {
        max-width: 920px;
        width: 100%;
    }
    .container-right {
        max-width: 100%  !important;
    }
}
@media only screen and (min-width: 992px) {
    body .container, body .grid-container {
        max-width: 960px;
        width: 100%;
    }
    .container-right {
        max-width: calc(50% + 480px)  !important;
    }
}
@media only screen and (min-width: 1200px) {
    body .container, body .grid-container {
        max-width: 1140px;
        width: 100%;
    }
    .container-right {
        max-width: calc(50% + 570px)  !important;
    }
    body .container.container1160{
        max-width: 1160px;
    }
}
@media only screen and (min-width: 1300px) {
    body .container, body .grid-container {
        max-width: 1210px;
        width: 100%;
    }
    .container-right {
        max-width: calc(50% + 605px)  !important;
    }
}
@media only screen and (min-width: 1400px) {
    body .container, body .grid-container {
        max-width: 1340px;
        width: 100%;
    }
     .container-right {
        max-width: calc(50% + 670px)  !important;
    }
}
/* Section Spacing Css */
.section_padding {
    padding: 100px 0;
}
.section_padding_small{
    padding: 60px 0;
}
.section_margin {
    margin: 100px 0;
}
.section_margin_small {
    margin: 60px 0;
}
@media only screen and (max-width: 1366.98px) {
    .section_padding {
        padding: 90px 0;
    }
    .section_margin {
        margin: 90px 0;
    }
}
@media only screen and (max-width: 1199.98px) {
    .section_padding {
        padding: 80px 0;
    }
    .section_margin {
        margin: 80px 0;
    }
}
@media only screen and (max-width: 1024.98px) {
    .section_padding {
        padding: 70px 0;
    }
    .section_margin {
        margin: 70px 0;
    }
}
@media only screen and (max-width: 991.98px) {
    .section_padding {
        padding: 60px 0;
    }
    .section_padding_small{
        padding: 50px 0;
    }
    .section_margin {
        margin: 60px 0;
    }
    .section_margin_small {
        margin: 50px 0;
    }
}
@media only screen and (max-width: 767.98px) {
    .section_padding {
        padding: 50px 0;
    }
    .section_padding_small{
        padding: 40px 0;
    }
    .section_margin {
        margin: 50px 0;
    }
    .section_margin_small {
        margin: 40px 0;
    }
}
@media only screen and (max-width: 575.98px){
    .section_padding {
        padding: 40px 0;
    }
    .section_padding_small{
        padding: 30px 0;
    }
    .section_margin {
        margin: 40px 0;
    }
    .section_margin_small {
        margin: 30px 0;
    }
}
/* Page Button Css */
.top-padding {
    padding-top: 30px;
}
.lp_btn{
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
    color: var(--white_color);
    background-color: var(--dark_blue_color);
    border: 2px solid var(--dark_blue_color);
    padding: 12px 30px;
    border-radius: 60px;
    transition: all 0.5s;
    display: inline-block;
    text-align: center;
}
.lp_btn:hover {
    color: var(--dark_blue_color);
    background-color: transparent;
}
.lp_btn.white_btn {
    background-color: var(--white_color);
    border-color: var(--white_color);
    color: var(--dark_blue_color);
}
.lp_btn.white_btn:hover {
    border-color: var(--white_color);
    color: var(--white_color);
    background-color: transparent;
}
.lp_btn.border_btn {
    background-color: transparent;
    color: var(--dark_blue_color);
}
.lp_btn.border_btn:hover {
    color: var(--white_color);
    background-color: var(--dark_blue_color);
}
@media only screen and (max-width: 991.98px){
    .lp_btn{
        padding: 10px 25px;
    }
}
@media only screen and (max-width: 575.98px){
    .top-padding {
        padding-top: 20px;
    }
    .lp_btn{
        padding: 12px 18px;
        width: 100%;
    }
    .lp_btn span{
        display: none;
    }
}
/*====================================================
Header Css Start
====================================================*/
.header_section {
    background-color: var(--white_color);
    padding: 10px 16px;
    border-bottom: 1px solid rgb(54 54 53 / 10%);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 10px 0px;
}
.sticky_header {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    display: inline-block;
    width: 100%;
    z-index: 999;
}
@media only screen and (max-width: 991.98px){
    .header_section {
        padding: 10px 0px;
    }
}
@media only screen and (max-width: 575.98px){
    .footer_logo {
        text-align: center;
    }
}
/*====================================================
Header Css End
====================================================*/
/*============================================
= Start Banner section CSS
=============================================*/
section.hero-banner-section {
    background-color: var(--light_blue_color);
}
.banner-video {
    margin-left: 30px;
    border-radius: 300px 0 0 300px;
    overflow: hidden;
}
.banner-content{
    padding: 30px 30px 30px 0;
}
.banner_img_main img {
    border-radius: 24px;
}
.banner-video iframe {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 8.7;
}
.banner-content h1 {
    font-size: 55px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark_blue_color);
    text-transform: capitalize;
    margin-bottom: 20px;
}
@media only screen and (max-width: 1440.98px){
    .banner-content h1{
        font-size: 50px;
    }
}
@media only screen and (max-width: 1199.98px){
    .banner-content h1{
        font-size: 45px;
    }
}
@media only screen and (max-width: 1024.98px){
    .banner-content h1{
        font-size: 40px;
    }
}
@media only screen and (max-width: 991.98px){
    .banner-content h1{
        font-size: 35px;
    }
    .banner-content{
        padding-left: 30px;
    }
    .banner-video {
        margin-left: 0;
        border-radius: 0;
    }
    .hero-banner-section .container-right{
        padding-left: 0 !important;;
    }
}
@media only screen and (max-width: 767.98px){
    .banner-content h1{
        font-size: 30px;
        margin-bottom: 10px;
    }
}
@media only screen and (max-width: 575.98px){
    .banner-content h1{
        font-size: 28px;
    }
}
/*============================================
= End Banner CSS
=============================================*/
.bottom_padding{
    padding-bottom: 60px;
}
.common_title h2{
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark_blue_color);
    margin-bottom: 0;
}
.common_title h2 span{
    color: var(--blue_color);
}
.common_title h3{
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark_blue_color);
    margin-bottom: 0;
}
.common_title p:not(:last-of-type){
    padding-top: 20px;
}
@media only screen and (max-width: 1440.98px){
    .common_title h3{
        font-size: 30px;
    }
}
@media only screen and (max-width: 1199.98px){
    .common_title h2{
        font-size: 40px;
    }
    .common_title h3{
        font-size: 28px;
    }
}
@media only screen and (max-width: 1024.98px){
    .bottom_padding{
        padding-bottom: 50px;
    }
    .common_title h2{
        font-size: 36px;
    }
    .common_title h3{
        font-size: 26px;
    }
}
@media only screen and (max-width: 991.98px){
    .bottom_padding{
        padding-bottom: 40px;
    }
    .common_title h2{
        font-size: 32px;
    }
    .common_title h3{
        font-size: 24px;
    }
}
@media only screen and (max-width: 767.98px){
    .bottom_padding{
        padding-bottom: 30px;
    }
    .common_title h2{
        font-size: 28px;
        letter-spacing: 0;
    }
    .common_title h3{
        font-size: 22px;
    }
}
@media only screen and (max-width: 575.98px){
    .bottom_padding{
        padding-bottom: 20px;
    }
    .common_title h2{
        font-size: 25px;
    }
    .common_title h3{
        font-size: 20px;
    }
}
/*============================================
= Start Section 2 CSS
=============================================*/
.section2_wrapper .wrapper-row{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.section2_wrapper .wrapper-row > div{
    width: 100%;
    max-width: calc(33.33% - 20px);
}
.section2_content h3{
    margin-bottom: 0;
    font-weight: 500;
    font-family: var(--inter_font);
    color: var(--blue_color);
    width: 100%;
    max-width: 350px;
}
@media only screen and (min-width: 992px){
    .section2_content h3{
        font-size: 26px;
    }
    .section2_content:first-of-type h3 {
        margin-left: 0;
        margin-right: auto;
    }
    .section2_content:nth-child(2) h3 {
        margin: 0 auto;
    }
    .section2_content:last-of-type h3 {
        margin-right: 0;
        margin-left: auto;
    }
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px){
    .section2_content h3{
        text-align: center;
    }
}
@media only screen and (max-width: 991.98px){
    .section2_wrapper .wrapper-row{
        gap: 20px;
    }
    .section2_wrapper .wrapper-row > div{
        max-width: calc(50% - 10px);
    }
    .section2_wrapper .wrapper-row > div:not(:last-child){
        padding-bottom: 20px;
        border-bottom: 2px solid var(--dark_blue_color);
    }
}
@media only screen and (max-width: 575.98px){
    .section2_wrapper .wrapper-row > div{
        max-width: 100%;
    }
}
/*============================================
= End Section 2 CSS
=============================================*/

/*===============================================
= Review Section CSS
============================================*/
.slick-arrow {
    font-size: 0;
    padding: 0;
    margin: 0;
    border: none;
}
.review-section {
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.review-slider .slick-arrow {
    z-index: 111;
}
.review-slider .slick-arrow:before {
    content: '';
    background-color: transparent!important;
    width: 50px;
    height: 50px;
    font-size: 0;
    position: absolute;
    background-image: url('/wp-content/uploads/2022/10/review_arrow2.svg');
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    border-radius: 100%;
    top: 50%;
    opacity: 1;
    transform: translateY(-50%);
}
.review-slider .slick-arrow {
    bottom: -97px;
    background-color: #ffffff !important;
    position: absolute;
    top: 50%;
    left: 0;
    display: inline-block;
    width: 40px;
    margin-right: 15px;
    width: 40px;
    height: 40px;
    border: 2px solid #48c28b;
    border-radius: 100px;
    bottom: -26%;
    top: auto;
}
.review-slider .slick-arrow::before{
    width: 100%;
    height: 100%;
    left: 0;
}
.review-slider .slick-arrow.slick-prev {
    left: 48%;
}
.review-slider .slick-next.slick-arrow {
    left: 51%;
    margin-left: 15px;
}
.review-slider .slick-next:before {
    transform: translateY(-50%) rotate(180deg);
}
.review-tab-navigation ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 0px solid #44816B;
    position: relative;
    align-items: center;
    justify-content: start;
    background: #EBF6EF;
    width: fit-content;
    border-radius: 50px;
}
.responsive-tabs > i {
    display: none;
}
.review-tab-navigation ul li a {
    font-size: 18px;
    line-height: 1.66;
    color: var(--dark_navy_blue);
    font-weight: 500;
    padding-bottom: 0;
    padding: 37px 65px;
    display: block;
}
.review-tab-navigation ul li.active {
    background: #DBEFE3;
    border-radius: 50px;
}
.review-tab-navigation ul li:not(:last-child) {
    margin-right: 0px;
}
/* .review-slider {
    margin: 108px 0 0;
} */
.review-slider .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.review-slider-content {
    background: #DBEFE3;
    padding: 60px 37px 113px 43px;
    height: inherit;
    border-radius: 25px;
    position: relative;
    border: 1px solid #DBEFE3;
    transition: all 0.6s;
}
.right_space {
    margin-left: calc(((100vw - 1545px) / 2) + 15px) !important;
}
.review-slider-content:hover {
    transform: translateY(-45px);
    background: #fff;
}
.review-slider-content:hover .review-description .read-more{
    color:  #50BD8B;
}
.review-slider-content:hover .review-rating img {
    filter: brightness(0) saturate(100%) invert(69%) sepia(19%) saturate(1003%) hue-rotate(100deg) brightness(90%) contrast(92%);
}
.review_single{
    position: relative;
}
.review_single:before {
    position: absolute;
    content: "";
    width: calc(100% - 30px);
    height: 100%;
    background: #BCE1CB;
    left: 15px;
    bottom: 0;
    border-radius: 25px;
    opacity: 1;
}
.review-slider-content h3 {
    font-size: 18px;
    color: var(--dark_navy_blue);
    font-weight: 600;
    margin-bottom: 10px;
}
.review-slider .tesimonial_revire_sec{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
}
.review-rating ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.review-rating ul li:not(:last-child) {
    margin-right: 8px
}
.review-description p {
    font-size: 18px;
    padding: 0 15px 0 0!important;
    display: inline-block;
}
.review-description p:not(:last-child) {
    margin-bottom: 10px;
}
.review-description{
}
.google-review {
    position: absolute;
    bottom: 0;
    padding: 40px 0;
}
.morecontent span {
    display: none;
}
.morelink {
    color: #0397D6;
    text-transform: uppercase;
    text-decoration: underline !important;
}
.review-btn {
    float: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 15px
}
.review-btn .default-cta {
    margin: 0 0 0 42px;
    text-transform: uppercase;
}
.lp_testimonial_arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.testimonial_arrow_prev {
    margin-right: 30px;
}
.lp_testimonial_arrow:hover, .lp_testimonial_arrow:focus {
    background: transparent;
    border: none;
}
.more-text{
    display: none;
}
a.read-more {
    line-height: 1.6;
    color: #BC8452;
    font-weight: 600;
}
.review-section .subtitle_line {
    color: var(--color-white);
    padding-left: 40px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    letter-spacing: 0.2em;
    margin-bottom: 15px;
}
.review-section .subtitle_line:before {
    background: var(--light_green_color);
    width: 30px;
}
.review-slider .slick-arrow:hover {
    background: #20624A !important;
    backdrop-filter: brightness(0%) invert(1);
    border-color: #20624A;
}
.review-slider .slick-arrow:hover:before{
    filter: brightness(0) invert(1); 
}
.lp_testimonial_arrows{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.lp_testimonial_arrow{
    background: #Fff;
    border: 2px solid transparent;
    padding: 0;
    width: 48px;
    height: 48px;
    border-radius: 100%;
    transition: all 0.5s;
    margin: 0 0 0 28px;
}
.lp_testimonial_arrow:hover{
    background: #1B75BC;
}
.lp_testimonial_arrow:hover img{
    filter: grayscale(1) brightness(0) invert(1);
}
.lp_testimonial_arrow:focus{
    outline: none;
}
/* width */
.scrollbar-active::-webkit-scrollbar {
    width: 8px;
}
/* Track */
.scrollbar-active::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px #0d223f70;
            box-shadow: inset 0 0 5px #0d223f70; 
    border-radius: 10px;
}
/* Handle */
.scrollbar-active::-webkit-scrollbar-thumb {
    background: var(--dark_blue_color);
    border-radius: 10px;
}
/* Handle on hover */
.scrollbar-active::-webkit-scrollbar-thumb:hover {
    background: #24A6DF; 
}
.review_single {
    padding: 0 15px;
    height: 100%;
}
.review-slider .slick-slide > div {
    height: 100%;
}
.review-slider.slick-initialized .slick-slide {
    height: auto;
}
.review-rating img {
    filter: brightness(0) saturate(100%) invert(11%) sepia(73%) saturate(807%) hue-rotate(180deg) brightness(90%) contrast(97%);
}
.review-slider .slick-list {
    overflow: visible;
}
@media only screen and (min-width: 1626px) {
    .review-slider .slick-next.slick-arrow {
        left: 50%;
    }
}
@media only screen and (max-width: 1199px) {
    .review-tab-navigation ul li a {
        font-size: 17px;
    }
    .review-slider-content {
        padding: 30px 30px 90px;
    }
    .google-review {
        padding: 30px 0;
    }
    /* .review-slider {
        margin: 40px 0 0;
    } */
}
@media only screen and (max-width: 991px) {
    .review-slider-content:hover{
        border-bottom: unset;
    }
    .review-tab-navigation ul {
        border: none;
        width: 100%;
    }
    .review-tab-navigation ul li {
        display: none;
        width: 100%;
        padding: 8px 0;
        margin: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .review-tab-navigation ul li a {
        padding-bottom: 0;
        width: 100%;
        font-size: 16px;
    }
    .review-tab-navigation ul li a.active {
        border: none;
    }
    .review-tab-navigation ul.open li {
        display: block;
    }
    .review-tab-navigation ul li.active {
        display: block;
    }
    .responsive-tabs > i {
        position: absolute;
        top: 14px;
        right: 20px;
        display: block;
        color: #0d223f;
    }
    /* .review-slider {
        margin: 30px 0 0 0;
    } */
    .review-slider .slick-arrow{
        bottom: -74px;
    }
    .right_space {
        margin-left: 0 !important;
    }
    .review-tab-navigation ul li a {
        padding: 0 25px;
    }
    .review-slider-content:hover {
        transform: translateY(-20px);
    }
    .review_single {
        padding: 0 5px;
    }
    .review-description p {
        font-size: 16px;
    }
    .review-tab-navigation ul {
        border-radius: 18px;
    }
}
@media only screen and (max-width: 767px) {
    .review-slider-content {
        padding: 20px;
    }
    .review-section > .container-fluid {
        padding: 0;
    }
    .review-section .Care-sec-border {
        margin-left: 8%;
        margin-right: 8%;
    }
    .review-slider .slick-arrow::before , .review-slider .slick-arrow{
        width: 35px;
        height: 35px;
    }
}
@media only screen and (max-width: 640px) {
    .review-slider-content {
        margin: 0px;
    }
}
@media only screen and (max-width: 480px) {
    .review-btn {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 100%;
    }
    .testimonial_arrow_prev {
        margin-right: 20px;
    }
}
@media only screen and (max-width: 425px) {
    .review-btn .default-cta {
        margin: 0 0 0 15px;
    }
}
.review-description .more-text{
    display: none;
}
.review-description .moreless-button{
    display: inline-block;
    font-weight: 600;
    color: #676769;
}
.read_more_txt p {
    color: #515b5b;
    margin-bottom: 20px;
}
.review-section-content .review-description .scrollbar-active {
     max-height: 127px!important;
    overflow-y: scroll;
}
.review-description .read-more{
    display: inline-block;
    font-weight: 600;
    color: var(--dark_blue_color);
}
.review-slider-tab .review-description .read-more{
    position: absolute;
    width: 100%;
    bottom: 0;
}
.review-description p:not(:first-child) {
    margin-top: 10px;
}
@media only screen and (max-width: 767px){
    .affordable-br-none .elementor-widget-container br{
        display: none
    }
}
@media only screen and (max-width: 641px){
    .review-slider-new .slick-arrow:before , .review-slider-tab .slick-arrow:before {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
    .review-slider-new .slick-arrow , .review-slider-tab .slick-arrow{
        width: 30px;
        height: 30px;
    }
}
@media only screen and (min-width: 991px) and (max-width: 1199px)  {
    .right_space {
        margin-left: calc(((100vw - 980px) / 2) + 15px) !important;
    }
    .review-tab-navigation ul li a {
        padding: 16px 20px;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1299px)  {
    .right_space {
        margin-left: calc(((100vw - 1160px) / 2) + 15px) !important;
    }
    .review-tab-navigation ul li a {
        padding: 18px 25px;
    }
}
@media only screen and (min-width: 1300px) and (max-width: 1599px)  {
    .right_space {
        margin-left: calc(((100vw - 1250px) / 2) + 15px) !important;
    }
    .review-tab-navigation ul li a {
        padding: 18px 25px;
    }
}
@media only screen and (min-width: 1025px) and (max-width: 1599px)  {
    .review-slider-content:hover {
        transform: translateY(-25px);
    }
}
@media only screen and (min-width: 1500px) and (max-width: 1599px)  {
    .right_space {
        margin-left: calc(((100vw - 1400px) / 2) + 15px) !important;
    }
    .review-tab-navigation ul li a {
        padding: 18px 25px;
    }
}
@media only screen and (min-width: 1600px) and (max-width: 1699px)  {
    .right_space {
        margin-left: calc(((100vw - 1500px) / 2) + 15px) !important;
    }
}

/*===============================================
= End Review Section CSS
============================================*/
.about-section{
    margin: 30px;
    background-color: var(--light_blue_color);
    width: calc(100% - 60px);
    border-radius: 22px;
    margin-top: 0;
}
.about-video{
    width: 100%;
    max-width: 992px;
    margin: 0 auto;
}
/*===============================================
= Start Side Image Section CSS
============================================*/
.dark-bg{
    background-color: var(--green_color);
}
.dark-bg * {
    color: var(--white_color);
}
.choose-image iframe, .choose-image img {
    border-radius: 20px;
    width: 100%;
    overflow: hidden;
}
.choose-content {
    max-width: 600px;
    margin: 0 auto;
}
.choose-content h2 {
    margin-bottom: 28px;
    color: var(--white_color);
}
.choose-content ul li{
    padding-left: 20px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    font-size: 18px;
    position: relative;
    border-bottom: 1px solid var(--white_color);
}
.choose-content ul li::before{
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    left: 0;
    top: 9px;
    background-color: var(--white_color);
}
.bg-color .choose-content h2 {
    color: var(--dark_blue_color);
}
.bg-color .choose-content ul li{
    border-color: var(--blue_color);
}
.bg-color .choose-content ul li::before{
    background-color: var(--blue_color);
}
@media only screen and (max-width: 991.98px){
    .choose-content{
        max-width: 100%;
        padding-top: 30px;
    }
}
@media only screen and (max-width: 767.98px){
    .choose-content ul li{
        font-size: 16px;
    }
}
@media only screen and (min-width: 401px){
    ul.two-col {
        column-count: 2;
    }
}
/*===============================================
= End Side Image Section CSS
============================================*/
/*============================================
= Start List CSS
=============================================*/
/* .service-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 90px;
}
.service-list .care-box {
    max-width: calc(33.33% - 60px);
    width: 100%;
}
.care-box h4 {
    position: relative;
    color: var(--dark_blue_color);
    font-size: 26px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    padding: 20px 0px 20px 60px;
    border-bottom: 1px solid var(--green_color);
    font-family: var(--inter_font);
}
.care-box h4:before{
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    background-image: url("/wp-content/uploads/2024/11/check-icon.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}
@media only screen and (max-width: 1600.98px){
    .care-box h4{
        font-size: 22px;
    }
}
@media only screen and (max-width: 1300.98px){
    .care-box h4{
        padding: 16px 20px 16px 60px;
        font-size: 20px;
    }
    .care-box h4:before{
        width: 24px;
        height: 24px;
        left: 24px;
    }
    .service-list{
        column-gap: 30px;
    }
    .service-list .care-box {
        max-width: calc(33.33% - 20px);
    }
}
@media only screen and (max-width: 991.98px){
    .care-box h4{
        font-size: 18px;
    }
    .service-list .care-box {
        max-width: calc(50% - 30px);
    }
}
@media only screen and (max-width: 768.98px){
    .care-box h4{
        padding: 10px 15px 10px 30px;
        font-size: 16px;
    }
    .care-box h4:before {
        width: 20px;
        height: 20px;
        left: 6px;
    }
}
@media only screen and (max-width: 575.98px){
    .service-list .care-box {
        max-width: 100%;
    }
} */
/*============================================
= End List CSS
=============================================*/
/*============================================
= start Dental Modal CSS
=============================================*/
.dental-modal-first-content {
    max-width: 700px;
    padding: 50px 30px;
    width: 100%;
    margin: 0 auto;
    height: 100%;
    align-content: center;
}
.dental-modal-section .default-content{
    background-color: var(--light_blue_color);
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.dental-modal-section .default-content::before {
    position: absolute;
    content: "";
    height: calc(100% + 100px);
    aspect-ratio: 1;
    border-radius: 50%;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
    background-color: #D6E7F7;
}
.two-type-list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding: 50px;
    gap: 30px;
    width: 100%;
}
.two-type-list > div {
    width: 100%;
    max-width: calc(50% - 15px);
}
.two-type-list h3 {
    margin-bottom: 30px;
}
.two-type-list ul li {
    padding-left: 20px;
    padding-bottom: 16px;
    margin: 16px 0;
    font-size: 18px;
    position: relative;
    border-bottom: 1px solid var(--blue_color);
}
.two-type-list ul li:before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    left: 0;
    top: 9px;
    background-color: var(--blue_color);
}
@media only screen and (max-width: 1600.98px){
    .two-type-list{
        padding: 30px;
    }
}
@media only screen and (max-width: 1490.98px){
    .two-type-list h3{
        font-size: 26px;
    }
}
@media only screen and (max-width: 1250.98px){
    .two-type-list ul li{
        font-size: 17px;
    }
    .two-type-list h3{
        font-size: 25px;
    }
}
@media only screen and (max-width: 1199.98px){
    .two-type-list ul li{
        font-size: 16px;
    }
    .two-type-list h3{
        font-size: 24px;
    }
}
@media only screen and (max-width: 991.98px){
    .dental-modal-first-content {
        max-width: 100%;
        padding: 60px 30px 30px;
    }
    .two-type-list h3{
        font-size: 23px;
    }
}
@media only screen and (max-width: 767.98px){
    .dental-modal-first-content {
        padding: 50px 30px 30px;
    }
}
@media only screen and (max-width: 575.98px){
    .dental-modal-first-content {
        padding: 40px 30px 30px;
    }
    .two-type-list > div {
        max-width: 100%;
    }
    .two-type-list h3 {
        font-size: 22px;
    }
}
/*============================================
= End Dental Modal CSS
=============================================*/
/*============================================
= Start Same Side CSS
=============================================*/
.same-side-title {
    padding: 50px 30px;
}
.same-right-side {
    background-color: var(--light_blue_color);
    height: 100%;
}
.same-side-inner{
    width: 100%;
    max-width: 630px;
    margin: 0 auto;
    align-content: center;
    height: 100%;
}
.same-side-inner h2 {
    padding-bottom: 20px;
}
.same-side-inner ul li{
    padding-left: 20px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    font-size: 18px;
    position: relative;
    border-bottom: 1px solid var(--green_color);
}
.same-side-inner ul li::before{
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    left: 0;
    top: 9px;
    background-color: var(--blue_color);
}
@media only screen and (max-width: 575.98px){
    .same-side-title {
        padding: 40px 30px;
    }
}
/*============================================
= End Same Side CSS
=============================================*/
/*============================================
= Start Healthy CSS
=============================================*/
.healthy-section {
    background-color: var(--light_green_color);
}
.healthy-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}
.healthy-col {
    width: 100%;
    max-width: calc(50% - 10px);
}
.healthy-img {
    height: 100%;
    width: 100%;
}
.healthy-img img {
    height: 100%;
    object-fit: cover;
}
@media only screen and (max-width: 850.98px){
    .healthy-col {
        max-width: 100%;
    }
}
/*============================================
= End Healthy CSS
=============================================*/
/*============================================
= Start Footer CSS
=============================================*/
.footer_section {
    background-color: var(--dark_blue_color);
}
.footer_logo {
    padding-bottom: 20px;
}
ul.location li {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--white_color);
}
ul.location li a {
    color: inherit;
}
ul.location li:not(:last-of-type) {
    padding-bottom: 15px;
}
ul.location li a:hover {
    color: var(--blue_color);
}
.hours {
    width: fit-content;
    margin-left: auto;
    margin-right: 0;
    color: var(--white_color);
}
.hours h3 {
    margin-bottom: 15px;
}
.hours ul li:not(:last-of-type){
    padding-bottom: 10px;
}
@media only screen and (max-width: 767.98px){
    ul.location li {
        font-size: 16px;
    }
    .hours {
        width: 100%;
        margin-left: 0;
        margin-right: auto;
        margin-top: 30px;
    }
}
/*============================================
= End Footer CSS
=============================================*/