@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@200..1000&display=swap');
:root {
    --primary_color: #24598E;
    --secondary_color: #008CCF;
    --black_color: #23201F;
    --body_text_color: #636363;
    --white_color: #fff;
    --dark_bg_color: rgba(36, 89, 142, 0.1);
    --light_bg_color: rgba(243, 247, 249, 1);
    --mulish_font: "Mulish", sans-serif;
}
body{
    font-family: var(--mulish_font);
}
a:focus{
    outline: none;
}
img{
    max-width: 100%;
    height: auto;
}
li,p,a{
    text-decoration: none;
}
ul,ol{
    margin: 0;
    padding: 0; 
}
li{
    list-style: none;
}
body p{
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--body_text_color);
}
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: 210px;
}
.dark_bg{
    background-color: var(--dark_bg_color);
}
.light_bg{
    background-color: var(--light_bg_color);
}
/* Container Css */
.container{
    width: 100%;
    max-width: 1340px;
    padding: 0 12px;
}
@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%;
    }
}
@media only screen and (min-width: 768px) {
    body .container, body .grid-container {
        max-width: 920px;
        width: 100%;
    }
}
@media only screen and (min-width: 992px) {
    body .container, body .grid-container {
        max-width: 960px;
        width: 100%;
    }
}
@media only screen and (min-width: 1200px) {
    body .container, body .grid-container {
        max-width: 1140px;
        width: 100%;
    }
    body .container.container1160{
        max-width: 1160px;
    }
}
@media only screen and (min-width: 1300px) {
    body .container, body .grid-container {
        max-width: 1200px;
        width: 100%;
    }
}
/*@media only screen and (min-width: 1400px) {
    body .container, body .grid-container {
        max-width: 1340px;
        width: 100%;
    }
}*/
/* 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;
}
.left_side_content{
    padding-right: 36px;
}
.right_side_content{
    padding-left: 36px;
}
@media only screen and (max-width: 1366.98px) {
    .section_padding {
        padding: 90px 0;
    }
    .section_margin {
        margin: 90px 0;
    }
    .left_side_content{
        padding-right: 30px;
    }
    .right_side_content{
        padding-left: 30px;
    }
}
@media only screen and (max-width: 1199.98px) {
    .section_padding {
        padding: 80px 0;
    }
    .section_margin {
        margin: 80px 0;
    }
    .left_side_content{
        padding-right: 20px;
    }
    .right_side_content{
        padding-left: 20px;
    }
}
@media only screen and (max-width: 1024.98px) {
    .section_padding {
        padding: 70px 0;
    }
    .section_margin {
        margin: 70px 0;
    }
    .left_side_content{
        padding-right: 10px;
    }
    .right_side_content{
        padding-left: 10px;
    }
}
@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;
    }
    .left_side_content{
        padding-right: 0px;
    }
    .right_side_content{
        padding-left: 0px;
    }
}
@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 */
.btn_group {
    display: flex;
    gap: 14px;
}
.top-padding {
    padding-top: 30px;
}
.lp_btn{
    font-size: 16px;
    font-weight: 600;
    line-height: 1.125;
    color: var(--white_color);
    background: linear-gradient(90deg, var(--secondary_color) 0.33%, var(--primary_color) 137.97%);
    padding: 15px 24px;
    border-radius: 8px;
    transition: all 0.5s;
    display: inline-block;
    text-align: center;
}
.lp_btn:hover {
    background: linear-gradient(90deg, var(--primary_color) 0.33%, var(--secondary_color) 137.97%);
}
.lp_btn.white_border_btn {
    background: transparent;
    color: var(--white_color);
    outline: 2px solid var(--white_color);
    outline-offset: -2px;
}
.lp_btn.white_border_btn:hover {
    outline-color: transparent;
    background: linear-gradient(90deg, var(--primary_color) 0.33%, var(--secondary_color) 137.97%);
}
.lp_btn.white_btn {
    background: var(--white_color);
    color: var(--primary_color);
}
.lp_btn.white_btn:hover {
    color: var(--white_color);
    background: transparent;
    outline: 2px solid var(--white_color);
}
@media only screen and (max-width: 991.98px){
    .lp_btn{
        padding: 15px 20px;
    }
}
@media only screen and (max-width: 575.98px){
    .btn_group {
        flex-wrap: wrap;
    }
    .btn_group > * {
        width: 100%;
    }
    .top-padding {
        padding-top: 20px;
    }
    .lp_btn{
        padding: 13px 16px;
        width: 100%;
    }
    .lp_btn span{
        display: none;
    }
}
/*====================================================
Header Css Start
====================================================*/
.header_section {
    background-color: var(--white_color);
    padding: 18px 0;
    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: 14px 0px;
    }
}
@media only screen and (max-width: 575.98px){
    .header_section {
        padding: 10px 0px;
    }
    .header_btn a.lp_btn {
        width: fit-content;
        font-size: 14px;
    }
}
@media only screen and (max-width: 440.98px){
    .header_btn a.lp_btn {
        padding: 12px 10px;
    }
}
@media only screen and (max-width: 420.98px){
    .header_section .row .header_col {
        width: 100%;
    }
    .header_btn {
        display: none;
    }
}
/*====================================================
Header Css End
====================================================*/
/*====================================================
Footer Css Start
====================================================*/
.footer_section {
    padding: 24px 0;
}
.footer_row{
    display: flex;
    row-gap: 20px;
    align-items: center;
    justify-content: space-between;
}
.copy_right_text p {
    text-align: center;
}
@media only screen and (max-width: 1199.98px){
    .footer_row {
        flex-wrap: wrap;
    }
    .footer_col:first-child{
        order: 1;
    }
    .footer_col:last-child{
        order: 2;
    }
    .footer_col:first-child, .footer_col:last-child{
        width: 50%;
    }
    .footer_col:nth-child(2) {
        order: 3;
        width: 100%;
    }
}
@media only screen and (max-width: 575.98px){
    .footer_row{
        flex-direction: column;
    }
    .footer_row .footer_col{
        width: 100%;
    }
    .footer_logo{
        text-align: center;
    }
}
/*====================================================
Footer Css End
====================================================*/
/*=============================================
= Banner Section  CSS
=============================================*/
.lp_banner_section{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 80%;
    min-height: 740px;
    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;
    position: relative;
}
.banner_res_image {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    inset: 0;
    z-index: -1;
}
.banner_res_image iframe{
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(-50%) scale(1.3);
}
.banner_title_inner{
    color: var(--white_color);
}
.banner_title_inner img {
    width: 100%;
    max-width: 160px;
}
hr.line_design {
    margin: 14px auto;
    width: 40px;
    border-width: 2px;
    border-color: var(--secondary_color);
    opacity: 1;
    border-radius: 4px;
}
.banner_title_inner h1{
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
    .banner_res_image:after {
        position: absolute;
        content: "";
        inset: 0;
        background-color: rgba(0, 0, 0, .4);
        opacity: 1;
    }
}
@media only screen and (max-width: 1440.98px){
    .lp_banner_section{
        min-height: 650px;
    }
    .banner_res_image iframe{
        transform: translateY(-50%) scale(1.1);
    }
}
@media only screen and (max-width: 1199.98px){
    .lp_banner_section{
        min-height: 600px;
    }
    .banner_title_inner h1{
        font-size: 50px;
    }
}
@media only screen and (max-width: 1024.98px){
    .lp_banner_section{
        min-height: 550px;
    }
    .banner_title_inner h1{
        font-size: 45px;
    }
}
@media only screen and (max-width: 991.98px){
    .lp_banner_section{
        min-height: 450px;
    }
    .banner_title_inner h1{
        font-size: 40px;
    }
}
@media only screen and (max-width: 767.98px){
    .lp_banner_section{
        min-height: 100%;
        background-color: var(--black_color);
        padding-bottom: 50px;
    }
    .banner_title_inner{
        padding-top: 30px;
    }
    .banner_title_inner h1{
        font-size: 35px;
    }
    .banner_res_image {
        position: unset;
        z-index: 1;
    }
    .banner_res_image div iframe {
        top: 0;
        transform: none;
    }
}
@media only screen and (max-width: 575.98px){
    .lp_banner_section{
        padding-bottom: 40px;
    }
    .banner_title_inner h1{
        font-size: 30px;
    }
}
/*=============================================
= Banner Section  CSS
=============================================*/
/*=============================================
= Layout Section  CSS
=============================================*/
.layout_section {
    margin-top: -73px;
}
.layout_row {
    background-color: rgba(23, 76, 130, 0.9);
    backdrop-filter: blur(20px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 48px;
    width: 100%;
    row-gap: 20px;
    margin: 0 auto;
    max-width: 1115px;
    border-radius: 12px;
}
.layout_row > span {
    width: 2px;
    height: auto;
    background-color: rgba(255, 255, 255, 0.2);
    display: block;
}
.layout_col {
    width: fit-content;
}
.layout_detl {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}
.layout_detl img {
    width: 50px;
    aspect-ratio: 1;
}
.layout_detl p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--white_color);
}
@media only screen and (max-width: 1199.98px){
    .layout_section {
        margin-top: -53px;
    }
    .layout_row{
        max-width: calc(100% - 60px);
        margin: 0 30px;
    }
}
@media only screen and (max-width: 1024.98px){
    .layout_section {
        margin-top: -43px;
    }
    .layout_detl p{
        font-size: 18px;
    }
}
@media only screen and (max-width: 991.98px){
    .layout_section {
        margin-top: -33px;
    }
    .layout_row{
        justify-content: space-around;
        padding: 40px;
    }
    .layout_col {
        width: 100%;
        max-width: calc(50% - 2px);
    }
    .layout_row > span:last-of-type{
        display: none;
    }
    .layout_detl p{
        font-size: 16px;
    }
}
@media only screen and (max-width: 767.98px){
    .layout_section {
        margin-top: 0;
        padding-top: 50px; 
    }
    .layout_row{
        padding: 35px;
    }
}
@media only screen and (max-width: 680.98px){
    .layout_row{
        flex-direction: column;
        padding: 30px;
    }
    .layout_row > span{
        display: none;
    }
    .layout_col{
        max-width: 260px;
        margin: 0 auto;
    }
    .layout_detl{
        justify-content: left;
    }
    .layout_detl img{
        width: 40px;
    }
}
/*=============================================
= Layout Section  CSS
=============================================*/
/*=============================================
= Logo Section  CSS
=============================================*/
.logo_slider .slick-track {
    display: flex;
    align-items: center;
}
.logo_img {
    text-align: center;
    padding: 0 10px;
}
.logo_img img {
    margin: 0 auto;
    width: 100%;
    max-height: 90px;
    object-fit: contain;
    object-position: center;
}
/*=============================================
= Logo Section  CSS
=============================================*/
/*=============================================
= Doctor Section  CSS
=============================================*/
.doctor_section{
    background: linear-gradient(180deg, rgba(235, 241, 245, 0.6) 0%, #FFFFFF 52.21%);
}
.doctor_row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.doctor_col {
    width: 100%;
    max-width: calc(25% - 18px);
}
.doctor_col.title_col {
    max-width: calc(50% - 12px);
}
.doctor_box {
    border: 1px solid rgba(0, 139, 205, 0.12);
    background: rgba(0, 139, 205, 0.05);
    border-radius: 12px;
    height: 100%;
}
.doctor_box img {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.doctor_box p {
    padding: 14px 0;
    text-align: center;
    font-size: 18px;
    color: var(--body_text_color)
}
.common_title span {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--primary_color);
    padding-bottom: 8px;
    display: block;
}
.common_title h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--black_color);
    margin-bottom: 24px;
}
@media only screen and (min-width: 992px){
    .doctor_title  p {
        width: 100%;
        max-width: 512px;
    }
}
@media only screen and (max-width: 1199.98px){
    .common_title h2{
        font-size: 34px;
    }
}
@media only screen and (max-width: 1024.98px){
    .common_title h2{
        font-size: 32px;
    }
}
@media only screen and (max-width: 991.98px){
    .doctor_col {
        max-width: calc(33.33% - 16px);
    }
    .doctor_col.title_col {
        max-width: 100%;
        padding-bottom: 20px;
    }
    .common_title h2{
        font-size: 30px;
    }
}
@media only screen and (max-width: 767.98px){
    .common_title h2{
        font-size: 28px;
        margin-bottom: 20px;
    }
    .doctor_col.title_col {
        padding-bottom: 10px;
    }
}
@media only screen and (max-width: 600.98px){
    .doctor_col {
        max-width: calc(50% - 12px);
    }
}
@media only screen and (max-width: 575.98px){
    .common_title h2{
        font-size: 26px;
        margin-bottom: 16px;
    }
    .doctor_col.title_col {
        padding-bottom: 0;
    }
    .doctor_box p{
        font-size: 16px;
    }
}
@media only screen and (max-width: 425.98px){
    .doctor_col {
        max-width: 100%;
    }
    .doctor_box {
        width: fit-content;
        margin: 0 auto;
    }
}
/*=============================================
= Doctor Section  CSS
=============================================*/
/*=============================================
= Services Section  CSS
=============================================*/
.bottom_padding{
    padding-bottom: 60px;
}
.services_box {
    width: 100%;
    background-color: var(--white_color);
    height: 100%;
    text-align: center;
    padding: 18px;
    border-radius: 12px;
}
.services_slide {
    height: auto;
    margin: 0 15px;
}
.services_box img {
    width: 100%;
    border-radius: 12px;
}
.services_box h3 {
    margin: 12px 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--black_color);
}
@media only screen and (min-width: 601px){
    .services_slider .slick-track {
        height: auto;
        display: flex;
    }    
}
@media only screen and (max-width: 1024.98px){
    .bottom_padding{
        padding-bottom: 50px;
    }
}
@media only screen and (max-width: 991.98px){
    .bottom_padding{
        padding-bottom: 40px;
    }
}
@media only screen and (max-width: 767.98px){
    .bottom_padding{
        padding-bottom: 30px;
    }
}
@media only screen and (max-width: 575.98px){
    .services_box{
        padding: 12px;
    }
}
/*Services arrow Design*/
.services_slider_main {
    position: relative;
}
.services_slider{
    position: unset;
}
.services_slider .slick-arrow {
    background: linear-gradient(90deg, var(--secondary_color) 0.33%, var(--primary_color) 137.97%);
    width: 48px;
    height: 48px;
    z-index: 9;
    border-radius: 50%;
}
.services_slider .slick-prev {
    left: 30px;
}
.services_slider .slick-next {
    right: 30px;
}
.services_slider .slick-prev::before{
    background-image: url("/lp-asset/lp-images/slider-left-arrow.svg");
}
.services_slider .slick-next::before{
    background-image: url("/lp-asset/lp-images/slider-right-arrow.svg");
}
.services_slider .slick-prev::before, .services_slider .slick-next::before {
    position: absolute;
    content: "";
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 1;
    width: 24px;
    height: 24px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media only screen and (max-width: 1525.98px){
    .services_slider .slick-prev {
        left: 5px;
    }
    .services_slider .slick-next {
        right: 5px;
    }
    .services_slider .slick-arrow{
        width: 40px;
        height: 40px;
    }
}
@media only screen and (max-width: 1024.98px){
    .services_slider .slick-arrow{
        width: 30px;
        height: 30px;
    }
    .services_slider .slick-prev::before, .services_slider .slick-next::before{
        width: 18px;
        height: 18px;
    }
}
/*Services arrow Design*/
/*=============================================
= Services Section  CSS
=============================================*/
/*=============================================
= Side Image Section  CSS
=============================================*/
.image_content_section {
    background-color: var(--primary_color);
}
.video_img_side img {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 1;
    border-radius: 12px;
}
.white_content span, .white_content h2 {
    color: var(--white_color);
}
.white_content p{
    color: rgb(255 255 255 / 80%);
}
/*=============================================
= Side Image Section  CSS
=============================================*/
/*=============================================
= Doctor Video Section  CSS
=============================================*/
.doctor_video_row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.doctor_video_col {
    width: 100%;
    max-width: calc(33.33% - 16px);
}
.doctor_video_col.first_row {
    max-width: calc(50% - 12px);
}
.doctor_video_box {
    position: relative;
}
.doctor_video_box iframe {
    border-radius: 12px;
}
.video_caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgb(0 0 0 / 34%);
    backdrop-filter: blur(4px);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 10px 24px;
}
.video_caption p {
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    color: var(--white_color);
}
@media only screen and (min-width: 1200px){
    .first_video{
        order: -1;
    }
}
@media only screen and (max-width: 1199.98px){
    .doctor_video_col{
        max-width: calc(50% - 12px);
    }
    .doctor_video_col.video_title_col{
        max-width: 100%;
    }
}
@media only screen and (max-width: 767.98px){
    .doctor_video_col.first_row, .doctor_video_col {
        max-width: 100%;
    }
    .video_caption p{
        font-size: 16px;
    }
}
@media only screen and (max-width: 575.98px){
    .video_caption p{
        font-size: 14px;
    }
}
/*=============================================
= Doctor Video Section  CSS
=============================================*/
/*===============================================
= Start Testimonials CSS
================================================*/
@media only screen and (min-width: 1600px){
    body .container1600{
        max-width: 1600px;
    }
}
.review_slide {
    padding: 5px 16px;
}
.review_slider_content {
    background: #fff;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    padding: 32px;
    display: flex;
    flex-direction: column;
}
.review_slider_content h3 {
    font-size: 22px;
    color: #323335;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: capitalize;
}
.review_rating ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.review_slider_main_content {
    margin-bottom: 24px;
}
.review_description {
    background: rgba(234, 239, 244, 0.5);
    padding: 18px;
    border-radius: 10px;
}
.review_content p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: -0.2px;
}
.google_review {
    padding-top: 24px;
}
/*Readmore Design*/
.read-more-btn {
    color: #5E5F60;
    background: none;
    border: none;
    padding: 0px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 60px;
    font-family: var(--mulish_font);
}
.review_content {
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.review_content.clamped {
    -webkit-line-clamp: unset;
    overflow: auto;
    height: 218px;
    padding-right: 8px;
}
.review_content::-webkit-scrollbar {
    width: 6px;
}
.review_content::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
}
.review_content::-webkit-scrollbar-thumb {
    background: var(--primary_color); 
    border-radius: 10px;
}
/*Readmore Design*/
@media only screen and (max-width: 1599.98px){
    .review_content p{
        font-size: 18px;
    }
}
@media only screen and (max-width: 1366.98px){
    .read-more-btn{
        margin-top: 50px;
    }
}
@media only screen and (max-width: 1199.98px){
    .read-more-btn{
        margin-top: 40px;
    }
}
@media only screen and (max-width: 1024.98px){
    .review_description{
        padding: 18px 12px;
    }
    .read-more-btn{
        font-size: 18px;
        margin-top: 30px;
    }
}
@media only screen and (max-width: 991.98px){
    .review_slider_main_content{
        margin-bottom: 20px;
    }
    .review_slider_content h3{
        font-size: 20px;
    }
    .review_content p, .read-more-btn {
        font-size: 16px;
    }
    .review_description{
        padding: 14px 10px;
    }
    .read-more-btn{
        margin-top: 20px;
    }
    .google_review{
        padding-top: 20px;
    }
}
@media only screen and (max-width: 767.98px){
    .review_slider_content{
        padding: 20px 15px;
    }
    .read-more-btn{
        margin-top: 15px;
    }
}
@media only screen and (max-width: 680.98px){
    .review_slide{
        padding: 5px;
    }
}
@media only screen and (max-width: 575.98px){
    .read-more-btn{
        margin-top: 10px;
    }
}
/*Review arrow Design*/
.review-part{
    position: relative;
}
.review_slider{
    position: unset;
}
.review_slider .slick-arrow {
    background: linear-gradient(90deg, var(--secondary_color) 0.33%, var(--primary_color) 137.97%);
    width: 48px;
    height: 48px;
    z-index: 9;
    border-radius: 50%;
}
.review_slider .slick-prev {
    left: 30px;
}
.review_slider .slick-next {
    right: 30px;
}
.review_slider .slick-prev::before{
    background-image: url("/lp-asset/lp-images/slider-left-arrow.svg");
}
.review_slider .slick-next::before{
    background-image: url("/lp-asset/lp-images/slider-right-arrow.svg");
}
.review_slider .slick-prev::before, .review_slider .slick-next::before {
    position: absolute;
    content: "";
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 1;
    width: 24px;
    height: 24px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.slick-disabled {
    opacity: 0.5;
    cursor: auto !important;
}
@media only screen and (max-width: 1720.98px){
    .review_slider .slick-prev {
        left: 5px;
    }
    .review_slider .slick-next {
        right: 5px;
    }
    .review_slider .slick-arrow{
        width: 40px;
        height: 40px;
    }
}
@media only screen and (max-width: 1024.98px){
    .review_slider .slick-arrow{
        width: 30px;
        height: 30px;
    }
    .review_slider .slick-prev::before, .review_slider .slick-next::before{
        width: 18px;
        height: 18px;
    }
}
/*Review arrow Design*/
/*===============================================
= End Testimonials CSS
================================================*/
/*===============================================
= Start Patient Resources CSS
================================================*/
.patient_row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.patient_col {
    width: 100%;
    max-width: calc(33.33% - 16px);
}
.patient_box {
    border: 1px solid rgba(234, 239, 244, 1);
    padding: 32px 28px;
    text-align: center;
    border-radius: 12px;
    height: 100%;
}
.patient_box img {
    width: 100%;
    max-width: 52px;
    aspect-ratio: 1;
}
.patient_box h3 {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--black_color);
}
@media only screen and (max-width: 991.98px){
    .patient_row{
        justify-content: center;
    }
    .patient_col {
        max-width: calc(50% - 12px);
    }    
}
@media only screen and (max-width: 600.98px){
    .patient_col {
        max-width: 100%;
    }    
}
/*===============================================
= End Patient Resources CSS
================================================*/
/*===============================================
= Start Location CSS
===============================================*/
.location-sec{
    background-color: var(--primary_color)
}
.tab-content {
    background-color: #184979;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}
.location_row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 60px;
}
.location_col {
    width: 100%;
}
.location_right_side h3, .location_right_side p {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    color: var(--white_color);
    margin-bottom: 20px;
}
ul.contact_bar {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(217, 217, 217, 0.2);
}
.contact_bar li {
    position: relative;
    padding-left: 25px;
    font-size: 16px;
    font-weight: 400;
    color: var(--white_color);
}
.contact_bar li:not(:last-of-type) {
    margin-bottom: 10px;
}
.contact_bar li::before {
    position: absolute;
    content: "";
    top: 5px;
    left: 0;
    width: 18px;
    height: 18px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.contact_bar li.address::before {
    background-image: url("/lp-asset/lp-images/location-pin.svg");
}
.contact_bar li.phone::before {
    background-image: url("/lp-asset/lp-images/call-icon.svg");
}
.contact_bar li a{
    color: inherit;
}
.contact_bar li a:hover{
    color: var(--secondary_color);
}
.location_hour li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--white_color);
}
.location_hour li:not(:last-of-type) {
    padding-bottom: 8px;
}
.location_map iframe {
    border-radius: 12px;
}
.location-tab-slider .slick-list {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}
.location-tab-slider li.nav-item {
    background: var(--white_color);
    outline: none;
    border: unset;
    text-align: center;
}
.location-tab-slider li.nav-item a {
    color: var(--black_color);
    outline: none;
    border: unset;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    padding: 16px 0;
}
.location-tab-slider li a.nav-link.active {
    background: #184979 !important;
    color: var(--white_color);
}
.location-tab-slider li a.nav-link.active {
    background: #184979 !important;
    color: var(--white_color);
    border-radius: 0;
    position: relative;
}
.location-tab-slider li a.nav-link.active::before {
    position: absolute;
    content: "";
    bottom: -6px;
    right: -17px;
    border-left: 7px solid #184979;
    border-bottom: 7px solid #184979;
    border-bottom-left-radius: 24px;
    background-color: #fff;
    width: 24px;
    height: 24px;
}

.location-tab-slider .slick-prev {
    left: 0;
    border-top-left-radius: 16px !important;
}
.location-tab-slider .slick-next {
    right: 0;
    border-top-right-radius: 16px !important;
}
.location-tab-slider .slick-arrow {
    background-color: var(--white_color);
    border-radius: unset;
    border: unset;
    height: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0px;
    aspect-ratio: 1;
    width: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1;
    opacity: 1
}
.location-tab-slider .slick-arrow::before {
    transform: translate(-50%, -50%);
    content: "";
    background-image: url("/lp-asset/lp-images/slider-left-arrow.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 28px;
    height: 28px;
    opacity: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    filter: brightness(0) saturate(100%) invert(28%) sepia(100%) saturate(405%) hue-rotate(167deg) brightness(90%) contrast(91%);
}
.location-tab-slider .slick-arrow.slick-disabled::before{
    opacity: 0.5
}

.location-tab-slider .slick-arrow.slick-next::before {
    background-image: url("/lp-asset/lp-images/slider-right-arrow.svg");
}
@media only screen and (min-width: 992px){
    .map_col {
        max-width: calc(60% - 15px);
        order: 2;
    }
    .content_col {
        max-width: calc(40% - 15px);
        order: 1;
    }
}
@media only screen and (max-width: 1199.98px){
    .location_row{
        padding: 50px;
    }
}
@media only screen and (max-width: 1024.98px){
    .location_row{
        padding: 40px;
    }
}
@media only screen and (max-width: 991.98px){
    .location_row{
        padding: 30px;
    }
    .location_col{
        max-width: 100%;
    }
    .location_map iframe {
        height: 340px;
    }
    .location-tab-slider .slick-list{
        padding: 0 50px;
    }
    .location-tab-slider li.nav-item a{
        font-size: 18px;
    }
}
@media only screen and (max-width: 767.98px){
    .location_row{
        padding: 20px;
    }
    ul.contact_bar{
        padding-bottom: 25px;
        margin-bottom: 25px;
    }
    .location_map iframe {
        height: 320px;
    }
    .location-tab-slider li.nav-item a{
        font-size: 16px;
    }
    .location-tab-slider li a.nav-link.active::before{
        position: unset;
        display: none;
    }
}
@media only screen and (max-width: 575.98px){
    .location_row{
        padding: 15px;
    }
    ul.contact_bar{
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .location_map iframe {
        height: 280px;
    }
    .location-tab-slider li.nav-item a{
        font-size: 15px;
    }
}
/*===============================================
= End Location CSS
===============================================*/