/* common css start  */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root{
    /* font-sizes  */
    --fs-10: 10px;
    --fs-12: 12px;
    --fs-13: 13px;
    --fs-14: 14px;
    --fs-15: 15px;
    --fs-16: 16px;
    --fs-17: 17px;
    --fs-18: 18px;
    --fs-19: 19px;
    --fs-20: 20px;
    --fs-21: 21px;
    --fs-22: 22px;
    --fs-24: 24px;
    --fs-25: 25px;
    --fs-27: 27px;
    --fs-28: 28px;
    --fs-30: 30px;
    --fs-41: 41px;

    /* line heights  */

    --lh-23: 23px;
    --lh-24: 24px;
    --lh-25: 25px;
    --lh-27: 27px;
    --lh-31: 31px;
    --lh-33: 33px;
    --lh-38: 38px;
    --lh-44: 44px;

    /* colors  */

    --c-5b85db: #5b85db;
    --c-333333: #333333;
    --c-ffffff: #ffffff;
    --c-d2d2d2: #d2d2d2;

}

html{
    scroll-behavior: smooth;
}
html:has(.nav_list.open_menu){
    overflow-y: hidden;
}
.container{
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.accordianContent {
    display: none;
    padding: 0;
}

.section_heading h2, .testimonial_sec .section_heading h4, .media_sec .section_heading h4,.blogs_sec .section_heading h3, .popular_searches_sec .section_heading h3, .doctor_name .section_heading h3, section.difference_sec .section_heading > p:first-child{
    font-size: var(--fs-30);
    color: var(--c-333333);
    /* line-height: var(--lh-25); */
    text-transform: uppercase;
    font-weight: 900;
}

.section_heading:not(.our_story_sec .section_heading, .google_reviews_wrap .section_heading) p:not(.section_heading li p):first-child {
    font-size: var(--fs-30);
    color: var(--c-333333);
    /* line-height: var(--lh-25); */
    text-transform: uppercase;
    font-weight: 900;
}

.section_heading p{
    /* font-size: var(--fs-16); */
    margin-top: 5px;
    color: var(--c-333333);
    font-weight: normal;
    font-size:20px;
}

.section_heading p:first-child{
    margin: 0 0 5px 0;
}

.accordian li{
    border: none;
}

.cta_btn {
    margin-top: 25px;
}

.cta_btn ul{
    display: flex;
    gap: 20px;  
}

.cta_btn ul li a{
    color: var(--c-ffffff);
    background-color: var(--c-5b85db);
    text-align: center;
    min-width: unset;
    height: 100%;
    align-content: center;
} 

.cta_btn ul li:last-child a{
    background-color: var(--c-ffffff);
    color: #5f5f5f;
    border: 1px solid var(--c-333333);
} 

.cta_btn a{
    font-size: var(--fs-17);
    text-transform: uppercase;
    background: var(--c-5b85db);
    color: var(--c-ffffff);
    font-weight: 900;
    display: inline-block;
    padding: 18px 40px;
    border-radius: 5px; 
    min-width: 200px;
    text-align: center;
    transition: 0.4s;
    border: 1px solid transparent;
}

.main_page_wrap .slick-slider{
    overflow: unset;
}

@media screen and (min-width: 768px){
    .main_page_wrap .cta_btn a.bg-blue:hover{
        background: var(--c-ffffff);
        color: var(--c-333333);
        border: 1px solid var(--c-333333);
    }
    .main_page_wrap .cta_btn a.bg-white:hover{
        background: var(--c-5b85db);
        color: var(--c-ffffff);
    }

    .store_image{
        display: none;
    }
}

.item_content .item_txt{
    margin-top: 20px;
    padding-right: 20px;
}

.item_content .item_txt p:not(.item_title p), .item_content .item_txt p:not(.item_title p) a{
    font-size: var(--fs-18);
    margin-top: 20px;
    line-height: var(--lh-31);
    color: #666666;
}

.item_content .item_txt .item_title h3, .item_content .item_txt .item_title h3 a, .figure_name p, .item_content .item_txt .item_title > p a{
    font-size: var(--fs-19);
    /* line-height: var(--lh-25); */
    text-transform: capitalize;
    color: var(--c-333333);
    font-weight: 900;
}

.item_content .item_txt .item_title p, .item_content .item_txt .item_title p a:not(.achievements_item .item_title > p a){
    font-size: var(--fs-16);
    margin-top: 5px;
    color: #666666;
}

.read_more_btn{
    margin-top: 10px;
}

.read_more_btn button{
    display: inline-block;
    position: static;
    padding: 0;
    color: #666666;
    cursor: pointer;
    text-decoration: underline;
    font-size: var(--fs-14);
    border: none;
    outline: none;
    background: none;
    text-transform: uppercase;
        height: auto;
    margin: 0;
    font-weight: 700;
}

.other_service_sec:last-of-type{
    border-bottom: 1px solid var(--c-ffffff);
}
/* common css end */

@media screen and (max-width: 767px){
/* common css mobile start */

.container{
    max-width: 100%;
    padding: 0 15px;
}

.section_heading h2, .testimonial_sec .section_heading h4, .media_sec .section_heading h4, .blogs_sec .section_heading h3, .popular_searches_sec .section_heading h3, .doctor_name .section_heading h3, section.difference_sec .section_heading > p:first-child{
    font-size: var(--fs-25);
}

.section_heading p{
    font-size: var(--fs-15);
    line-height: normal;
}


.main_page_wrap .cta_btn ul{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.main_page_wrap .cta_btn ul li a{
    width: 100%;
    padding: 18px 5px;
}

.main_page_wrap .cta_btn a{
    font-size: var(--fs-12);
    padding: 18px 40px;
    min-width: 160px;
}

.main_page_wrap .cta_btn a.bg-blue:active{
    background: var(--c-ffffff);
    color: var(--c-333333);
    border: 1px solid var(--c-333333);
}
.main_page_wrap .cta_btn a.bg-white:active{
    background: var(--c-5b85db);
    color: var(--c-ffffff);
}

.item_content div.item_txt .item_title h3,.testimonial_sec .testimonial_item .figure_name p, .item_content div.item_txt .item_title h3 a{
    font-size: var(--fs-18) !important;
    margin-top: 0;
    font-weight: 400;
}
.item_content div.item_txt .item_title h2{
    font-size: var(--fs-25);
    font-weight: 900;
}
.item_content div.item_txt .item_title p{
    font-size: var(--fs-15);
    
}
section[class] .item_content div.item_txt p:not(.item_title p),section[class] .item_content div.item_txt p a{
    font-size: var(--fs-15);
    line-height: var(--lh-23);
}

/* common css mobile end  */
}

.popup{
    padding: 5px !important;
}
.popup .close-popup{
    background-color: transparent;
    position: absolute;
    right: -54px;
    top: -16px;
    padding: 5px;

}

.popup iframe{
    display: block;
}

  
/* stcky footer css start  */

.sticky_footer{
    display: none;
}

/* stcky footer css end */


@media screen and (max-width:767px) {
   
   .difference_sec  .difference_icons_grid{
        gap: 10px !important;
    }

    /* body:has(.sticky_footer) .footerdesclaimer{
        padding-bottom: 90px;
    } */

    section.sticky_footer{
        padding: 0;
    }

    /* .achievements_item .item_img {
        height: 180px;
    } */
    .footer_link_list ul{
        display: block !important;
        column-count: 2;
        column-gap: 14px;
        margin-bottom: 20px;
    } 

    .footer_link_list ul li p{
        display: inline-block;
    }
    .footer_link_list ul li a{
        font-size: 15px !important;
        text-transform: none !important;
    }
    .problems_accord .accordianContent p a{
        font-size: 14px;
    }
    .story_vid iframe{
        height: 215px;
    }

    .popup{
        width: 95%;
    }
    .popup iframe{
        height: 207px;
    }
    .popup .close-popup{
        right: 0px;
        top: -28px;
    }
    ul.accordian li:last-child {
        border-bottom: none;
    }
    .achievements_item .item_title h3 {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    
    .achievements_item .item_txt p{
        overflow: hidden;
        text-overflow: ellipsis; 
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    
    .cta_btn ul a{
        padding-inline: 20px;
    }






    .centers_grid .accordian li h3 {
        font-size: var(--fs-18) !important;
        line-height: 48px !important;
    }
    .our_centers_sec .centers_wrap ul.accordian li h3:not(.our_centers_sec li h5) {
        padding: 0 !important;
    }
    .our_centers_sec .centers_wrap .centers_grid .accordian li h3 {
        padding-block: 0;
    }



    
}

.footerdesclaimer1 p a {
    color: #666;
    text-align: center;
    display: block;
}
.our_centers_sec .centers_wrap ul.accordian li h3:not(.our_centers_sec li h5) {
        padding: 0 !important;
    }
@media only screen and (max-device-width: 375px){
    
    section.sticky_footer .sticky_grid ul li a img {
        max-width: 23px;
        min-height: 23px;
    }
    section.sticky_footer .sticky_grid ul li a span {
        font-size: var(--fs-10);
        line-height: normal;
    }
} 

.our_centers_sec .accordian div.accord_txt p a{
    text-decoration: underline;
}

/* css for 9 pages section scroll list  */

.section_links_wrap .accord {
    background: #eaeaea;
    border: 1px solid #b5b5b5;
    display: block;
}

.section_links_wrap .accord li:last-child{
    border-bottom: none;
}

.section_links_wrap .accord li{
   width: 100%;
    border-bottom: 1px solid #b5b5b5;
}

.section_links_wrap .accord li h5 a{
    font-size: 16px;
    line-height: 46px;
    padding: 0 15px;
    color: #000000;
    text-transform: capitalize;
    display: block;
    position: relative;
    font-weight: 400;
}

/* .dnb_accord_wrap .accordian li .accord_txt{
    padding-bottom: 15px;
}
.dnb_accord_wrap .accordian li p{
    color: #000000;
    font-weight: 400;
} */

.section_links_wrap .accord li h5 a:after{
    content: "";
    background: url(https://www.shroffeyecentre.com/wp-content/themes/shroff/images/video_select.png);
    background-repeat: no-repeat;
    background-size: 35%;
    right: 0;
    background-position: center;
    height: 16px;
    width: 23px;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    transition: 0.3s;
    transform: translateY(-50%) rotate(270deg) !important;
}

/* css for 9 pages section scroll list end */

.doctor_div .dr-img a img {
    width: 100%;
    height: auto;
}