@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Sora", sans-serif;
}
:root{
    --primary-font: "Sora", sans-serif;
    --primary-color: #2B2270;
    --secondary-color: #1489CD;
}
html,
body{
    overflow-x: hidden;
    /* background: #F6F5ED; */
}

body::-webkit-scrollbar{
    width: 5px;
    background: var(--primary-color);
}
body::-webkit-scrollbar-thumb{
    background: var(--secondary-color);
}
a{text-decoration: none;color: #000; display: block;}
ul{padding: 0; margin: 0; list-style-type: none;}
p,h1,h2,h3,h4,h5,h6{margin: 0;}
.msgbox{
    position: fixed;
    bottom: 20px;
    z-index: 99;
    width: 70%;
    margin: auto;
    left: 50%;
    transform: translateX(-50%);
}
.msgbox .alertdiv{
    background: #fff;
    padding: 12px  10px;
    text-align: center;
    border-radius: 5px;
    width: fit-content;
    margin: auto;
}
.msgbox .alertdiv.success{
    background: #7acb7a;
}
.msgbox .alertdiv.failed{
    background: #ff8d8d;
}
.msgbox .alertdiv p{font-family: var(--secondary-font); color: #fff;margin: 0;font-size: 16px;letter-spacing: 0.5px;font-weight: 300;display: flex;align-items: center;gap: 5px;}
.msgbox .alertdiv.success p{}
.msgbox .alertdiv.success p i{color: green; font-size: 16px; line-height: 1;}
.msgbox .alertdiv.failed p{}
.msgbox .alertdiv.failed p i{color: red;font-size: 16px;line-height: 1;}
.msgbox .loading-wrapper{background: #bb8100;padding: 10px;display: flex;align-items: center;justify-content: center;width: 50%;margin: auto;border-radius: 10px;}
.msgbox .loading-wrapper .loading_span{
    width: 30px;
    height: 30px;
    border: 2px solid #bb8100;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    border-radius: 50px;
    animation: circle 1s linear infinite;
}
@keyframes circle{
    0%{transform: rotate(0deg);}
    100%{transform: rotate(360deg);}
}
.msgbox .loading-wrapper p{
    color: #fff;
    letter-spacing: 1px;
    margin-left: 10px;
}
.pagebtn{
    background: var(--primary-color);
    padding: 10px 12px 10px 20px;
    border-radius: 50px;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
    transition: .3s linear;
    overflow: hidden;
}
.pagebtn:before{
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50px;
    z-index: -1;
    transition: .3s linear;
    background: #a4cb1f;
}
.pagebtn i{
    font-size: 20px;
    transform: rotate(-30deg);
    transform-origin: center center;
    transition: .2s linear;
    line-height: 1;
    position: relative;
    z-index: 1;
    color: #fff;
}

.pagebtn:hover{
    color: #fff;
}
.pagebtn i:after{
    content: "";
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50px;
    z-index: -1;
}
.pagebtn:hover:before{
    width: 100%;
}
.pagebtn:hover i:after{
    background: #fff;
}
.pagebtn:hover i{
    transform: rotate(0);
    color: var(--secondary-color);
}

.preloader{
    background: var(--secondary-color);
    position: fixed;
    width: 100%;
    height: 100vh;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.preloader span{
    width: 150px;
    height: 150px;
    border: 1px solid #fff;
    border-radius: 50%;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    animation: circle 1s linear infinite alternate;
}
@keyframes circle{
    0%{transform: rotate(0deg);}
    100%{transform: rotate(360deg);}
}


.slick-dots{
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    width: auto;
    display: flex;
    gap: 0;
    justify-content: end;
    align-items: end;
    border-radius: 50px;
}
.slick-dots li{
    width: 10px;
    height: 10px;
    background: var(--secondary-color);
    border-radius: 6px;
    display: block;
    transition: .2s linear;
    outline: 1px solid #fff;
    outline-offset: 3px;
}
.slick-dots li.slick-active{
    background: var(--primary-color);
}
.slick-dots li button{
    display: none;
}


/*=======================
    page breadcrumb
=======================*/
.page-breadcrumb{
    background: url('../image/breadcrumb.webp');
    background-size: cover;
    background-position: center;
    margin: 0 40px;
    border-radius: 20px;
    overflow: hidden;
}
.page-breadcrumb:after{
    content: "";
}
.page-breadcrumb .breadcrumb-col{display: flex;align-items: start;padding: 150px 30px;flex-direction: column;}
.page-breadcrumb .breadcrumb-col h3{
    color: #fff;
    font-size: 28px;
    font-weight: 500;
    color: var(--secondary-color);
    padding: 0 0 15px;
}
.page-breadcrumb .breadcrumb-col span{
    font-weight: 800;
    margin: 30px 0 0;
    color: #fff;
}
.page-breadcrumb .breadcrumb-col ul{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.page-breadcrumb .breadcrumb-col ul li{
    font-size: 14px;
}
.page-breadcrumb .breadcrumb-col ul li a{
    color: var(--secondary-color);
    font-weight: 400;
}
.page-breadcrumb .breadcrumb-col ul li:not(:first-child) a:before{
    content: "/";
    margin: 0 5px;
    color: var(--primary-color);
    font-weight: 500;
}

.page-breadcrumb .breadcrumb-col ul li:not(:last-child) a{
    color: var(--primary-color);
    font-weight: 500;
}

.maintitle{
    text-align: center;
    margin: 0 0 30px;
}
.maintitle span{
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
    background: #1489cd24;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 50px;
    color: var(--secondary-color);
}
.maintitle h2{
    font-size: 40px;
    font-weight: 500;
    margin: 20px 0 0;
}



/*=======================
        header
=======================*/
header{
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 9;
    transition: position .5s linear;
    padding: 0 30px;
}
header.fix{
    box-shadow: 0 2px 5px 2px #00000014;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background: #fff;
}
header.fix .topheader{
    display: none;
}
.topheader{
    background: var(--third-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
}
.th-left{}
.th-left p{
    color: #fff;
    font-size: 14px;
    line-height: 1;
}
.th-left p i{
    color: var(--secondary-color);
    margin-right: 5px;
}
.th-right{
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 15px;
}
.th-right .icons{
    color: #fff;
    transition: .3s ease-in;
    font-size: 14px;
    line-height: 1;
}
.th-right .icons:hover{
    color: var(--secondary-color);
}

.headerleft{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
}
.headerleft a.searchicon{
    font-size: 25px;
    transition: .3s linear;
}
.headerleft a.searchicon:hover{
    color: var(--primary-color);
}
.headerleft .headeremail{
    font-size: 16px;
}
.headerleft .headeremail i{
    margin: 0 8px 0 0;
    line-height: 1;
}
.headercenter{
    text-align: center;
    margin: 15px 0;
}
.headercenter .websitelogo{
    width: 100%;
    margin: auto;
}
.headerright{
    display: flex;
    align-items: center;
    justify-content: end;
    height: 100%;
    gap: 10px;
}
.headerright .contactno{
    font-size: 16px;
}
.headerright .contactno i{
    margin-right: 10px;
}
.headerright .contactlink{
    padding: 8px 15px;
    transition: .3s linear;
    color: #fff;
    border-radius: 4px;
    background: var(--secondary-color);
    font-size: 14px;
}
.headerright .contactlink:hover{
    background: var(--primary-color);
    color: #fff;
}
.headerleft{
}
.headerleft .menu{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.headerleft .menu .menulist{
    display: inline-block;
    position: relative;
    z-index: 1;
}
.headerleft .menu .menulist .menulink{
    font-size: 14px;
    transition: .3s linear;
    line-height: 1;
    padding: 30px 0;
    position: relative;
    z-index: 1;
    color: #222;
    text-transform: capitalize;
    font-weight: 500;
}
.headerleft .menu .menulist .menulink:after{
    content: "";
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    bottom: 20%;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: .3s linear;
}
.headerleft .menu .menulist .menulink:hover:after{
}
.header.fix headerleft .menu .menulist .menulink{color: #000;font-weight: 500;letter-spacing: 0.4px;}
.header.fix headerleft .menu .menulist{margin-left: 16px;}
.headerleft .menu .menulist .menulink:hover{color: #000;}
.headerleft .menu .menulist .menulink i{
    font-size: 0.9em;
    color: #000;);
}
.header.fix headerleft .menu .menulist .menulink i{color: #000;}
.headerleft .menu .menulist .menulink:hover i{color: var(--secondary-color);}

.headerleft .menu .menulist.enuirylist{}
.headerleft .menu .menulist.enuirylist .menulink.enquirylink{
    background: #fff;
    padding: 5px 10px 5px 20px;
    border-radius: 50px;
    color: #000;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
    transition: .3s linear;
    overflow: hidden;
}
.headerleft .menu .menulist.enuirylist .menulink.enquirylink:before{
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50px;
    z-index: -1;
    transition: .3s linear;
    background: #000;
}
.headerleft .menu .menulist.enuirylist .menulink.enquirylink i{
    width: 25px;
    height: 25px;
    display: inline-block;
    background: #000;
    border-radius: 50px;
    line-height: 25px;
    text-align: center;
    font-size: 20px;
    transform: rotate(-30deg);
    transition: .2s linear;
}
.headerleft .menu .menulist.enuirylist .menulink.enquirylink:hover{
    color: #fff;
}
.headerleft .menu .menulist.enuirylist .menulink.enquirylink:hover:before{
    width: 100%;
}
.headerleft .menu .menulist.enuirylist .menulink.enquirylink:hover i{
    transform: rotate(0);
    background: #fff;
    color: #000;
}

/*====== submenu start here =======*/
.headerleft .submenu{
    position: absolute;
    top: 100%;
    left: 0;
    background: #151617;
    width: 280px;
    margin: 40px 0 0;
    visibility: hidden;
    opacity: 0;
    transition: .2s linear;
    z-index: 99999;
    text-align: left;
    z-index: 9999;
    box-shadow: 0 2px 10px -4px rgb(0,0,0,0.2);
    /* padding: 10px 0; */
}
.headerleft .menu .menulist:hover .submenu{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;   
    margin: 0;   
}
.headerleft .submenu .sublist{
    display: block;
    position: relative;
}
.headerleft .submenu .sublist .sublink{
    color: #999;
    padding: 8px 20px;
    border-radius: 3px;
    transition: .2s linear;
    letter-spacing: 0.8px;
    font-size: 14px;
    text-transform: uppercase;
}
.headerleft .submenu .sublist .sublink:hover{
    color: #fff;
    transform: translateX(10px);
}

.headerleft .submenu .sublist .childmenu {position: absolute;top: 0;left: 100%;background: #151617;width: 280px;margin: 40px 0 0;visibility: hidden;opacity: 0;transition: .2s 
linear;z-index: 99999;text-align: left;z-index: 9999;box-shadow: 0 2px 10px -4px rgb(0, 0, 0, 0.2);padding: 10px 0;}

.headerleft .submenu .sublist a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.headerleft .submenu .sublist:hover .childmenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin: 0;
}

.headerleft .submenu .sublist .childmenu .childlist {}

.headerleft .submenu .sublist .childmenu .childlist .childlink {
    color: #999;
    padding: 5px 20px;
    border-radius: 3px;
    transition: .2s 
linear;
    letter-spacing: 0.8px;
    font-size: 14px;
    text-transform: uppercase;
}

.headerleft .submenu .sublist .childmenu .childlist .childlink:hover {
    color: #fff;
    transform: translateX(10px);
}

/*====== submenu end here =======*/

/*====== mobile menu start here =======*/

.mobheader{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}
.mobheader .moblogo{width: 60%;}
.mobheader .moblogo img{width: 100%;}
.mobheader .mobtoggle{
    color: #000;
    width: 35px;
    height: 30px;
    position: relative;
    z-index: 1;
}
.mobheader .mobtoggle span{
    width: 35px;
    height: 2px;
    background: #000;
    display: inline-block;
    position: absolute;
    right: 0;
}
.mobheader .mobtoggle span:nth-child(1){}
.mobheader .mobtoggle span:nth-child(2){margin: 8px 0 0;}
.mobheader .mobtoggle span:nth-child(3){
    margin: 16px 0 0;
}
.mobsearch-box{
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-color);
    padding: 8px;
}
.mobsearch{
    width: 30px;
    height: 23px;
    position: relative;
    z-index: 1;
    display: none;
}
.mobsearch span{
    display: inline-block;
    position: absolute;
    z-index: 1;
}
.mobsearch span:nth-child(1){
    width: 18px;
    height: 18px;
    border-radius: 50px;
    border: 1px solid #000;
    top: 0;
    left: 0;
}
.mobsearch span:nth-child(2){
    width: 1px;
    height: 10px;
    background: #000;
    top: 14px;
    left: 60%;
    transform: rotate(-42deg);
}
.mobheader .mobheader-right{
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobmenu{
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    z-index: 9999;
    background: #fff;
    transition: .3s linear;
    overflow: auto;
}
.mobmenu.active{
    box-shadow: -2px 0 10px 0 #0000002e;
    right: 0;
}
.mobmenu .close-mobmenu{
    position: absolute;
    top: 10px;
    left: 10px;
    color: #000;
    font-size: 18px;
}

.mobmenuhead{text-align: center;padding: 15px 10px;border-bottom: 1px solid #ddd;}
.mobmenuhead h3{font-size: 16px;text-transform: uppercase;letter-spacing: 1px;font-weight: 700;}
.mobul{
    padding: 15px;
}
.mobul .mobli{
    padding: 0 0 10px;
}
.mobul .mobli .moba{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #101010;
    letter-spacing: .4px;
    font-family: var(--primary-font);
    font-size: 15px;
    letter-spacing: .5px;
    font-weight: 500;
    padding: 0 0 5px;
}
.mobsmneu{
    padding: 0 10px 0;
    display: none;
}
.mobsmneu .mobslist{
    padding: 5px 0 0;
}
.mobsmneu .mobslist .mobslink{
    font-size: 13px;
    font-family: var(--secondary-font);
    letter-spacing: .4px;
    color: #666;
}
/*====== mobile menu end here =======*/


.searchpanel{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 50%);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .3s linear;
}
.searchpanel.active{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.close-searchpanel{
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    font-size: 30px;
}
.close-searchpanel:before,
.close-searchpanel:after{}
.close-searchpanel:before{}
.close-searchpanel:after{}
.innersearchpanel{
    width: 100%;
    padding: 5% 10%;
    background: #151617;
    margin-top: -8%;
    transition: .3s linear;
}
.searchpanel.active .innersearchpanel{
    margin-top: 0;
}
.searchpanel-header{
    position: relative;
    z-index: 1;
}
.searchpanel-header img{width: 150px;margin: 0 0 10%;}
.innersearchpanel form{
}
.innersearchpanel form h3{
    font-size: 22px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 1px;
}
.innersearchpanel form .fields{
    position: relative;
    z-index: 1;
}
.innersearchpanel form .fields input{
    width: 100%;
    border: 0;
    border-bottom: 1px solid #b48b482e;
    padding: 15px 0;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 20px;
}
.innersearchpanel form .fields input::after{
    content: "alsdfj";
}
.innersearchpanel form .fields input::placeholder{
    color: #cdcdcd;
    letter-spacing: 0.5px;
    font-weight: 300;
    font-size: 25px;
}
.innersearchpanel form .fields button{
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 10px 0;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 23px;
}
.innersearchpanel form .fields .emptyinput{
    position: absolute;
    bottom: 14px;
    line-height: 1;
    right: 28px;
    display: none;
}


.sidebar-shadow{
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 30%);
    z-index: 998;
    transition: left .3s ease-in;
}
.sidebar-shadow.active{
    left: 0;
}
.sidebar-contact-info{
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: #fff;
    z-index: 999;
    transition: right .3s ease-in;
    transition-delay: .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sidebar-contact-info.active{
    right: 0;
}
.sidebar-inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}
.sidebar-inner .sidelogo{}
.sidebar-inner .sidelogo img{width: 150px;}
.sidebar-inner h3{
    font-weight: 600;
    font-size: 1.4em;
    padding: 30px 0 15px;
    font-family: var(--secondary-font);
}
.sidebar-inner .number{font-weight: 500;letter-spacing: 1px;font-size: 20px;}
.sidebar-inner p{
    padding: 10px 0;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
}
.sidebar-inner .email{
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 20px;
}
.sidebar-inner .social{
    padding: 50px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.sidebar-inner .social a{
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50px;
    position: relative;
    color: #aaa;
}
.sidebar-inner .social a:hover{
    border-color: transparent;
    color: #000;
}
.sidebar-inner .social a:after{
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50px;
    border: 1px dashed #000;
    position: absolute;
    top: 0;
    left: 0;
    animation: socialcircle 3s linear infinite reverse;
    opacity: 0;
}
.sidebar-inner .social a:hover:after{
    opacity: 1;
}
@keyframes socialcircle{
    0%{transform: rotate(360deg);}
    100%{transform: rotate(0deg);}
}
.close-sidebar{
    width: 30px;
    height: 30px;
    position: absolute;
    top: 10px;
    right: 20px;
}
.close-sidebar span{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    background: #000;
    height: 100%;
    border-radius: 50px;
    transition: .3s ease;
}
.close-sidebar span:nth-child(1){
    transform: translate(-50%, -50%) rotate(45deg);
}
.close-sidebar span:nth-child(2){
    transform: translate(-50%, -50%) rotate(-45deg);
}

.close-sidebar:hover span:nth-child(1){
    transform: translate(-50%, -50%) rotate(90deg);
}
.close-sidebar:hover span:nth-child(2){
    transform: translate(-50%, -50%) rotate(-90deg);
}




/*====== slider start here =======*/
.slider-wrapper{
    margin: 0 40px;
    border-radius: 20px;
    overflow: hidden;
}
.slider{
    position: relative;
    z-index: 1;
    margin: 0 !important;
}
.slider .slider-img{
    position: relative;
}
.slider .slider-img img{width: 100%;}
.slider .slider-img .overlaytext{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 60%;
}
.slider .slider-img .overlaytext p{
    font-size: 18px;
    color: #fff;
    font-weight: 200;
    margin: 0 0 10px;
    transform: translateX(50px);
    transition: 1s ease-out;
}
.slider .slider-img.slick-active .overlaytext p{transform: translateX(0);}
.slider .slider-img .overlaytext h3{
    font-size: 50px;
    color: #fff;
    line-height: 1.3;
    transform: translateX(50px);
    transition: 1s ease-out;
    font-weight: 100;
}
.slider .slider-img.slick-active .overlaytext h3{transform: translateX(0);}
.slider .slick-dots{
    bottom: initial;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: end;
    align-items: end;
    border-radius: 50px;
}

.slider .overslide{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 60%;
}
.slider .overslide h2{
    color: #fff;
    font-size: 2.8em;
    white-space: nowrap;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 10px;
}
.slider .overslide h2 span{
    color: var(--primary-color);
    font-weight: 800;
}
.slider .overslide p{
    color: #fff;
    font-size: 15px;
    width: 80%;
    margin: auto;
}
.slider .overslide a{margin: 30px;}
.slider .overslide a:hover{}
/*====== slider end here =======*/


/*====== appointment start here =======*/

.appointment-wrapper{
    padding: 50px 30px 20px;
}
.appointment-wrapper .appointmentfrm{
    box-shadow: 0 1px 10px 1px rgb(0 0 0 / 15%);
    padding: 20px;
    display: flex;
    gap: 1%;
}
.appointment-wrapper h3{
    color: var(--secondary-color);
    font-size: 22px;
    font-weight: 500;
    padding: 0 0 30px;
    text-align: center;
}
.appointment-wrapper .appointmentfrm .fields{flex-basis: 27%;}
.appointment-wrapper.appointmentpage .appointmentfrm .fields {
    flex-basis: 50%;
}
.appointment-wrapper .appointmentfrm .fields select,
.appointment-wrapper .appointmentfrm .fields input{
    width: 100%;
    padding: 15px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    outline: none;
}
.appointment-wrapper .appointmentfrm .fields select:focus{
    box-shadow: none;
}
.appointment-wrapper .appointmentfrm .fields-btn{flex-basis: 20%;}
.appointment-wrapper .appointmentfrm .fields-btn button{
    font-size: 14px;
    border: none;
    padding: 17px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 5px;
}
.appointment-wrapper .appointmentfrm .fields-btn button:hover{}

.appoints-calendar{
    padding: 0 0 50px;
}
.appointments-dates{
    box-shadow: 0 2px 10px 0 rgb(0 0 0 / 20%);
}
.appointments-dates .month{
    text-align: center;
    padding: 10px;
}
.appointments-dates .month span{
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary-color);
}
.appointments-dates .dates-weekday{
    display: flex;
    overflow: auto;
    justify-content: space-between;
}
.appointments-dates .dates-weekday::-webkit-scrollbar{
    height: 5px;
    background: #999;
}
.appointments-dates .dates-weekday::-webkit-scrollbar-thumb{
    background: #444;
}
.appointments-dates .dates-weekday .datebox{
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--primary-color);
    flex: 0 0 40px;
    padding: 5px 10px;
    position: relative;
    z-index: 1;
    background: #e3e3e3;
}
.appointments-dates .dates-weekday .datebox:hover,
.appointments-dates .dates-weekday .datebox.active{
    background: var(--secondary-color);
    color: #fff;
}
.appointments-dates .dates-weekday .datebox:hover span,
.appointments-dates .dates-weekday .datebox.active span{
    color: #fff;
}
.appointments-dates .dates-weekday .datebox:before{
    content: "";
    width: 1px;
    height: 90%;
    background: #ffffff3d;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.appointments-dates .dates-weekday .datebox span{
    color: #000;
    font-size: 15px;
    font-weight: 300;
}
.appointments-dates .dates-weekday .datebox span:nth-child(1){}
.appointments-dates .dates-weekday .datebox span:nth-child(2){
    font-weight: 600;
}




.appoint-doctorlist{
    padding: 0 0 50px;
}
.doctorlist{}
.doctorlist-box{}
.doctorlist-box .doctorinfo{
    position: relative;
    z-index: 1;
}
.doctorlist-box .doctorinfo .infodetails{
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #ddd;
    margin: 0 0 20px;
}
.doctorlist-box .doctorinfo .infodetails figure{
    width: 100px;
    border: 1px solid #eee;
}
.doctorlist-box .doctorinfo .infodetails figure img{width: 100%;}
.doctorlist-box .doctorinfo .infodetails .content{}
.doctorlist-box .doctorinfo .infodetails .content h3{
    font-size: 22px;
}
.doctorlist-box .doctorinfo .infodetails .content h4{
    font-size: 15px;
    color: #666;
}
.doctorlist-box .doctorinfo .otherinfo span{
    display: block;
    font-size: 16px;
    color: #555;
}
.doctorlist-box .doctorinfo .otherinfo span:nth-child(1){}
.doctorlist-box .doctorinfo .otherinfo span:nth-child(2){}
.doctorlist-box .doctorinfo .otherinfo span i{}
.doctorlist-box .doctorinfo .otherinfo h5{
    font-size: 14px;
    font-weight: 400;
    border: 1px solid #ddd;
    display: inline-block;
    padding: 8px 10px;
    border-radius: 5px;
    margin: 10px 0 0;
}
.doctorlist-box .doctorinfo .btnappoint{
    position: absolute;
    bottom: 20px;
    right: 0;
    background: var(--primary-color);
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 14px;
    color: #fff;
    transition: .3s linear;
}
.doctorlist-box .doctorinfo .btnappoint:hover{
    background: var(--secondary-color);
}




/*====== appointment end here =======*/



/*====== contact info start here =======*/

.continfo{
    padding: 40px 40px 30px;
    background: #fff;
    /* box-shadow: 0 0 10px 2px #e7e7e7; */
    height: 100%;
    border-radius: 10px;
}
.continfo .continfobox{
    border-radius: 20px;
    position: relative;
    z-index: 1;
    height: 100%;
}
.continfo .continfobox .masking{
    -webkit-mask: url(../image/shape.png) top right no-repeat;
    mask: url(../image/shape.png) top right no-repeat;
    padding: 40px;
    border-radius: 30px;
    height: 100%;
}
.continfo .continfobox .masking.schedule{
    background: var(--primary-color);
}
.continfo .continfobox .masking.location{
    background: var(--secondary-color);
}
.continfo .continfobox .masking.appointment{
    background: url('../image/appoint.webp');
    background-size: cover;
}
.continfo .continfobox .masking.appointment:before{
    content: "";
    width: 100%;
    height: 100%;
    background: #ffffffc7;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.continfo .continfobox .masking.appointment h3{
    color: #000;
    font-weight: 600;
}
.continfo .continfobox .masking.appointment p{
    color: #000;
}
.continfo .continfobox .content .infos.appointinfo span{color: #000;}
.continfo .continfobox.schedule .icon{
    background: var(--primary-color);
}
.continfo .continfobox.location .icon{
    background: var(--secondary-color);
}
.continfo .continfobox.appointment .icon{
    background: #000;
}
.continfo .continfobox.schedule .icon i{
    color: #fff;
}
.continfo .continfobox.location .icon i{
    color: #fff;
}
.continfo .continfobox.appointment .icon i{
    color: #fff;
}
.continfo .continfobox .icon{
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
}
.continfo .continfobox .icon i{
    color: var(--primary-color);
    font-size: 24px;
}
.continfo .continfobox h3{
    font-size: 22px;
    color: #fff;
    padding: 0 0 20px;
    border-bottom: 1px solid #ffffff3b;
    margin: 0 0 20px;
}
.continfo .continfobox .content{}
.continfo .continfobox .content .infos{display: flex;align-items: center;justify-content: space-between;padding: 0 0 10px;flex-wrap: wrap;}
.continfo .continfobox .content .infos span{
    color: #fff;
    font-size: 14px;
}
.continfo .continfobox .content .infos span:nth-child(1){}
.continfo .continfobox .content .infos span:nth-child(2){}
.continfo .continfobox .content p{
    font-size: 14px;
    padding: 0 0 20px;
    color: #fff;
}
.continfo .continfobox .content .infos a{
    border: 1px solid #ffffff;
    font-size: 15px;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    color: #fff;
    transition: all .3s ease;
}
.continfo .continfobox .content .infos a i{
    font-size: 26px;
    line-height: 0.5;
    color: #fff;
}
.continfo .continfobox .content .infos a:hover{
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.continfo .continfobox .content .infos.appointinfo{}
.continfo .continfobox .content .infos.appointinfo span{
    font-size: 20px;
    flex-basis: 100%;
}
.continfo .continfobox .content .infos.appointinfo span:nth-child(1){
    font-size: 18px;
}
.continfo .continfobox .content .infos.appointinfo span:nth-child(2){
    color: var(--primary-color);
    font-weight: 600;
}


/*====== contact info end here =======*/


/*====== home about us start here =======*/
.homeaboutus{padding: 50px 0 60px;}
.homeaboutleft{}
.homeaboutleft img{width: 100%;border-radius: 50px;}
.homeaboutright{
    padding: 50px 0 0 30px;
}
.homeaboutright > span{
    color: var(--secondary-color);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.homeaboutright h3{
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    color: var(--primary-color);
    padding: 0 0 15px;
}
.homeaboutright p{
    font-weight: 400;
    padding: 0 0 15px;
}
.homeaboutright .aboutser{
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
}
.homeaboutright .aboutser ul{
    padding-left: 20px;
}
.homeaboutright .aboutser ul li{
    position: relative;
    z-index: 1;
    font-weight: 400;
    font-size: 15px;
    padding: 0 0 5px;
}
.homeaboutright .aboutser ul li:before{
    content: "";
    background: url('../image/check.svg');
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    background-size: cover;
    transform: translateY(-50%);
    left: -12%;
}
.homeaboutright .morebtns{
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 40px 0 0;
}
.homeaboutright .morebtns .appointment{
    font-size: 13px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 500;
    padding: 10px 10px 10px 15px;
    border-radius: 50px;
    display: inline-flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}
.homeaboutright .morebtns .appointment i{
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: #fff;
}

.homeaboutright .morebtns span{
    display: inline-block;
    position: relative;
    z-index: 1;
    color: #999;
    font-weight: 300;
    padding-left: 40px;
}
.homeaboutright .morebtns span i{
    color: var(--primary-color);
    font-size: 30px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.homeaboutright .morebtns span a{
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
}




.fulldesc{
    padding: 40px 0 0;
}
.fulldesc p{
    font-size: 15px;
    padding: 0 0 10px;
    text-align: justify;
}

.mission-vision{
    margin: 0 0 30px;
}
.mission-vision .mvbox{
    background: #1489cd1c;
    border-radius: 10px;
    padding: 15px;
    height: 100%;
}
.mission-vision .mvbox.visionbox{}
.mission-vision .mvbox.missionbox{}
.mission-vision .mvbox.valuesbox{}
.mission-vision .mvbox h3{
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    padding: 0 0 10px;
}
.mission-vision .mvbox p{
}
.mission-vision .mvbox ul{}
.mission-vision .mvbox ul li{
    line-height: 1.3;
    padding: 0 0 5px;
}
.mission-vision .mvbox ul li:before{
    content: "\f269";
    font-family: "bootstrap-icons";
    color: green;
    font-size: 20px;
    vertical-align: middle;
    margin-right: 5px;
}


.leadership{
    padding: 50px 20px;
    position: relative;
    z-index: 0;
    background: #fff;
}
.leadership .maintitle{}
.leadership .maintitle span{}
.leadership .maintitle h3{}

.leadershipbox{box-shadow: 0 0 10px 0 rgb(0 0 0 / 15%);border-radius: 10px;padding: 15px 15px 20px;}
.leadershipbox figure{
    margin: 0;
    position: relative;
    z-index: 1;
    text-align: center;
}
.leadershipbox figure img{width: 70%;border-radius: 5px;}
.leadershipbox .content{
    padding: 10px 0 0;
    text-align: center;
}
.leadershipbox .content h3{position: relative;z-index: 1;font-size: 20px;margin: 0 0 15px;}
.leadershipbox .content h3:before{
    content: "";
    width: 40%;
    height: 1px;
    background: #ddd;
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
}
.leadershipbox .content h4{
    font-size: 14px;
    letter-spacing: 1px;
    color: #666;
}
.leadershipbox .socialinfo{
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    display: flex;
    background: var(--bg-linear-blue);
    padding: 8px 20px;
    border-radius: 50px;
    gap: 15px;
    display: none;
}
.leadershipbox .socialinfo a{
    color: #fff;
    font-size: 14px;
    line-height: 1;
}

/*====== home about us end here =======*/





/*====== our services start here =======*/
.services{
    padding: 80px 30px 120px 30px;
    background: url('../image/servicebg.webp');
    position: relative;
    z-index: 1;
}
.services:before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: #1489cd8a;
}
.services .maintitle{}
.services .maintitle span{
    background: #fff;
}
.services .maintitle h2{
    color: #fff;
}
.services .services-wrapper{}
.services .services-wrapper .serbox{
    padding: 20px 0;
    display: inline-flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    width: 150px;
    /* aspect-ratio: 1 / 1; */
    border-radius: 10px;
    margin: 0 10px;
    transition: .3s linear;
    height: 250px;
}
.services .services-wrapper .serbox .icon{
    width: 90%;
    /* aspect-ratio: 1 / 1; */
    text-align: center;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s linear;
    overflow: hidden;
    padding: 5px;
}
.services .services-wrapper .serbox:hover .icon{
    background: #fff;
}
.services .services-wrapper .serbox img{
    width: 100%;
    /* filter: invert(1); */
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}
.services .services-wrapper .serbox h3{
    font-size: 16px;
    font-weight: 600;
    padding: 30px 0 0;
    text-align: center;
    transition: .3s linear;
}
.services .services-wrapper .serbox:hover{
    background: var(--secondary-color);
}
.services .services-wrapper .serbox:hover img{
    filter: invert(0);
}
.services .services-wrapper .serbox:hover h3{
    color: #fff;
}
.services .services-wrapper .slick-dots{
    display: none !important;
}

/*====== our services end here =======*/


/*====== our specialities start here =======*/

.specialities{
    padding: 50px 30px;
}
.specialities .maintitle{}
.specialities .maintitle span{}
.specialities .maintitle h3{}

.specialities .specbox{
    background: #00597c14;
    margin: 0 0 20px;
    padding: 25px;
    border-radius: 10px;
}
.specialities .specbox figure{}
.specialities .specbox figure img{
    width: 40px;
}
.specialities .specbox .content{}
.specialities .specbox .content h3{
    font-size: 18px;
    font-weight: 600;
    padding: 0 0 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
}
.specialities .specbox .content p{
    font-size: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
}

/*====== our specialities end here =======*/





/*========== views start here ==========*/
.testimonials{
    padding: 50px 30px;
    position: relative;
    z-index: 1;
}
.testimonials .maintitle{
    text-align: start;
}
.testimonials .maintitle span{}
.testimonials .maintitle h2{}
.testimonials .maintitle a{
    background: var(--primary-color);
    margin-top: 40px;
    display: inline-flex;
    padding: 8px 20px;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: .3s linear;
    line-height: 1;
}
.testimonials .maintitle a i{
    font-size: 25px;
    line-height: 1;
}
.testimonials .maintitle a:hover{
    background: var(--secondary-color);
}

.reviewright .reviewbox{
    overflow: hidden;
    height: 100%;
    padding: 60px;
    margin: 15px;
    transition: .3s ease-in;
    position: relative;
    z-index: 1;
    text-align: center;
    box-shadow: 0 0 10px 10px rgb(118 118 118 / 10%);
    border-radius: 10px;
    padding-left: 200px;
}
.reviewright .reviewbox > i{
    font-size: 30px;
    color: #1489cd3d;
}
.reviewright .reviewbox p{
    font-weight: 300;
    font-size: 15px;
    transition: .3s ease-in;
}

.reviewright .reviewbox span{
    font-size: 16px;
    font-weight: 200;
    margin: 20px 0 0;
    display: inline-block;
}
.reviewright .reviewbox .icon{
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background: #f2f2f2;
    border-radius: 50%;
    padding: 10px;
}
.reviewright .reviewbox .icon img{width: 80px;}

.reviewright .reviewbox .start{
    position: absolute;
    top: 0px;
    left: 20px;
    font-size: 50px;
}
.reviewright .reviewbox .last{
    position: absolute;
    bottom: 0px;
    right: 20px;
    font-size: 50px;
}

/*========== views end here ==========*/



/*========== homeblogs start here ==========*/

.homeblogs{
    padding: 50px 30px;
}
.homeblogs .maintitle{}
.homeblogs .maintitle span{}
.homeblogs .maintitle h2{}
.homeblogs .homeblogbox{
    display: flex;
    gap: 4%;
    border-bottom: 1px solid #ddd;
    padding: 0 0 15px;
    align-items: center;
    margin: 0 0 15px;
}
.homeblogs .homeblogbox figure{
    flex-basis: 24%;
    border-radius: 50%;
    overflow: hidden;
    margin: 0;
}
.homeblogs .homeblogbox figure img{width: 100%;}
.homeblogs .homeblogbox .content{
    flex-basis: 77%;
}
.homeblogs .homeblogbox .content .date{
    font-size: 15px;
    font-weight: 500;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 0 15px;
}
.homeblogs .homeblogbox .content .date i{
    color: var(--secondary-color);
}
.homeblogs .homeblogbox .content h3{
    font-size: 20px;
    padding-right: 50px;
}
.homerightblog{
    display: flex;
    align-items: center;
    gap: 15px;
}
.homerightblog figure{
    flex-basis: 50%;
    overflow: hidden;
    margin: 0;
    border-radius: 10px;
}
.homerightblog figure img{width: 100%;}
.homerightblog .content{
    flex-basis: 50%;
}
.homerightblog .content .date{
    font-size: 15px;
    font-weight: 500;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 0 10px;
}
.homerightblog .content .date i{
    color: var(--secondary-color);
}
.homerightblog .content h3{
    font-size: 30px;
    padding-right: 50px;
    font-weight: 500;
    color: #000;
    padding: 0 0 15px;
}
.homerightblog .content p{
    font-size: 15px;
}

/*========== homeblogs end here ==========*/



/*=========== footer ===========*/
footer{
    padding: 50px 30px 20px;
    background: #1489cd21;
}
footer .footerlogo{
    width: 80%;
}
footer .footerlogo + p{font-size: 16px;padding: 15px 0;}
footer .footerlogo img{width: 100%;}
.footerbox iframe{
    width: 100%;
    height: 290px;
}
.footerbox .footerlogo{margin: 0 0 10px;display: inline-block;}
.footerbox .footerlogo img{
    width: 130px;
}
.footerbox .cont-info{
    font-size: 16px;
    font-weight: 100;
    color: #fff;
    padding: 15px 0 0;
    display: block;
    letter-spacing: 1px;
}
.footerbox .cont-info a{
    color: #000;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
}
.footerbox .cont-info a i{
    margin: 0 10px 0 0;
    color: #001d62;
    font-size: 1.3em;
}
.footerbox-title{
    color: var(--primary-color);
    font-size: 20px;
    margin: 0 0 10px;
    font-weight: 600;
}
.socialmedia{
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}
.socialmedia .sociallinks{
    width: 40px;
    height: 40px;
    border-radius: 50px;
    text-align: center;
    line-height: 40px;
    color: #fff;
    transition: .3s linear;
    display: inline-block;
    font-size: 18px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}
.socialmedia .sociallinks:hover{
    background: var(--primary-color);
    color: #fff;
}
.socialmedia .sociallinks.ri-facebook-line{
    /* background: #3B5998; */
}
.socialmedia .sociallinks.ri-instagram-line{
    /* background: #f00073; */
}
.socialmedia .sociallinks.ri-youtube-line{
    background: #FF0000;
}
.socialmedia .sociallinks.ri-linkedin-line{
    /* background: #55ACEE; */
}
.socialmedia .sociallinks.ri-twitter-line{
    /* background: #55ACEE; */
}
.socialmedia .sociallinks.ri-pinterest-line{
    background: #E60023;display: none;
}
.usefullinks{color: #fff;
    font-size: 22px;
    letter-spacing: 2px;
    margin: 0 0 15px;
    font-family: var(--secondary-font);
}
footer .footer-menu{
    /* text-align: center; */}footer .footer-menu li{
    padding: 0 0 5px;
}footer .footer-menu li a{
    font-size: 14px;
    position: relative;
    transition: .2s linear;
    letter-spacing: normal;
    display: inline-block;
    font-weight: 400;
    color: #000;
}
footer .footer-menu li a:is(:hover, .active){
    color: var(--secondary-color);
}footer .footer-menu li a:before{
    content: "";
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 20px;
    transform: scaleX(0);
    transition: .2s linear;
}footer .footer-menu li a.active:before,
footer .footer-menu li a:hover:before{
}
.footer-map{
    display: flex;
    align-items: center;
    justify-content: start;
    margin: 20px 0 0;
}
.footer-map iframe{
    width: 100%;
    height: 140px;
    border-radius: 20px;
}
.footer-mapiframe{width: 100%;height: 300px;display: block;border-radius: 50px;border-bottom-left-radius: 0;
}

.copyright{margin: 20px 0 0;border-top: 1px solid #ddd;padding: 20px 0 0;text-align: center;}
.copyright p{
    font-size: 15px;
    display: block;
    color: var(--secondary-color);
    font-weight: 500;
    letter-spacing: normal;
}
.copyright p a{
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
}
.copyright p a:hover{
    color: #fff;
}


/*=========== contact page =======*/
.contactpage{
    padding: 40px 30px 0;
}
.contactpage .contmap{margin: 0 0 30px;}
.contactpage .contmap iframe{width: 100%;height: 400px;display: block;border-radius: 30px;border: 2px solid #2b227036;}
/*.continfo{}
.continfo span{text-transform: uppercase;letter-spacing: 1px;font-size: 16px;font-weight: 400;color: #333;}
.continfo h3{
    width: 80%;
    font-size: 43px;
    font-weight: 100;
    line-height: 1.3;
    margin: 15px 0 20px;
}*/
.rightbox{
    display: flex;
    align-items: start;
    flex-direction: column;
}
.rightbox i{font-size: 28px;color: var(--secondary-color);margin: 0 0 15px;}
.rightbox h3{
    border-top: 1px solid var(--secondary-color);
    display: block;
    width: 100%;
    padding: 15px 0 30px;
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 600;
}
.rightbox a{font-size: 18px;color: #000;font-weight: 400;}
.contactfrm{
    padding: 50px 0;
}
.contactfrm .formleft{border-radius: 40px 0 0 40px; overflow: hidden;}
.contactfrm .formleft img{width: 100%;}
.form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.form .maintitle{
    text-align: start;
}
.form .maintitle span{}
.form .maintitle h2{}
.form form{}
.form form .fields{margin: 0 0 25px;position: relative;z-index: 1;}
.form form .fields label{font-size: 14px;font-weight: 500;letter-spacing: 1px;color: var(--primary-color);
}
.form form .fields :is(input, select){background: none;color: #000;font-weight: 400;border: none;border-bottom: 1px solid #e7e7e7;font-size: .9em;padding: 15px;border-radius: 0;font-family: var(--secondary-font);}
.form form .fields input[type='number']::-webkit-outer-spin-button,
.form form .fields input[type='number']::-webkit-inner-spin-button{
    -webkit-appearance: none;-moz-appearance: none;appearance: none;
}
.form form .fields textarea{border: none;border-bottom: 1px solid #e7e7e7;background: none;height: 100px;font-size: .9em;font-weight: 400;border-radius: 0;color: #000;padding: 15px;color: #271e6c61;}

.form form .fields textarea::placeholder,
.form form .fields input::placeholder{
    color: #271e6c61;
    font-weight: 400;
    font-size: 14px;
}
.form form .fields :is(input, select, textarea):focus{
    box-shadow: none;
    border-color: var(--secondary-color);
}
.form form .fields i{
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #959595;
    font-size: 20px;
}
.form form .fields.textarea i{
    top: 30px;
}
.form form .fields-btn{}
.form form .fields-btn button{
    border: none;
    background: var(--primary-color);
    display: inline-flex;
    padding: 13px 20px;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: .3s linear;
    line-height: 1;
}
.form form .fields-btn button i{
    margin-left: 5px;
}
.form form .fields-btn button:hover{
    background: var(--secondary-color);
}

/*========== aboutus page ===========*/
.aboutpage{
    padding: 3% 80px;
    position: relative;
    z-index: 1;
}
.aboutpage .contenttagline{
    padding: 0 0 30px;
}
.aboutpage .contenttagline h3{
    margin: 10px auto 10px;
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    color: #000;
    text-align: center;
    margin: 0;
}
.aboutpageleft{
    padding: 0 30px;
    text-align: start;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    height: 100%;
}
.aboutpageleft span{
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    font-weight: 400;
    color: #333;
}
.aboutpageleft h3{margin: 10px auto 10px;font-size: 30px;font-weight: 300;text-transform: uppercase;color: #000;}
.aboutpageleft p{
    text-align: justify;
    font-weight: 300;
    color: #000;
    font-size: 16px;
    letter-spacing: .5px;
}
.aboutpageleft .aboutcontact{margin: 30px 0 0;background: var(--primary-color);display: inline-block;padding: 10px 50px;color: #fff;letter-spacing: 1px;transition: .3s linear;}
.aboutpageleft .aboutcontact:hover{
    background: #a98244;
}
.aboutpageright{display: flex; justify-content: space-between;}
.aboutpageright img{width: 48%;}
.aboutuscontainter{}

.aboutpage .fulldesc{
    padding: 40px 0 0;
}
.aboutpage .fulldesc .descbox{
    margin: 0 0 20px;
}
.aboutpage .fulldesc .descbox .manufact-box{
    display: flex;
    align-items: start;
    justify-content: center;
    padding: 15px 0 0;
    gap: 25px;
}
.aboutpage .fulldesc .descbox .manufact-box figure{
    flex-basis: 50%;
    margin: 0;
}
.aboutpage .fulldesc .descbox .manufact-box figure img{width: 100%;}
.aboutpage .fulldesc .descbox .manufact-box .content{
    flex-basis: 50%;
}
.aboutpage .fulldesc .descbox .manufact-box .content p{}
.aboutpage .fulldesc .descbox h3{margin: 10px auto 10px;font-size: 30px;font-weight: 300;text-transform: uppercase;color: #000;text-align: center;}
.aboutpage .fulldesc .descbox .manufact-box .content h3{
    text-align: left;
}
.aboutpage .fulldesc .descbox .manufact-box .content h4{margin: 20px 0 0; font-size: 18px; font-weight: 600;}
.aboutpage .fulldesc .descbox p{color: #000;font-weight: 300;font-size: 16px;text-align: justify;letter-spacing: .3px;}
.aboutpage .fulldesc .descbox ul{
    padding: 10px 00;
}
.aboutpage .fulldesc .descbox ul li{
    color: #000;
    font-weight: 300;
    padding: 0 0 15px;
    font-size: 16px;
    text-align: justify;
    letter-spacing: 0.5px;
}
.aboutpage .fulldesc .descbox ul li:before{
    content: "\f3ce";
    font-family: "bootstrap-icons";
    color: var(--primary-color);
    margin-right: 5px;
    font-size: 13px;
    display: none;
}
.aboutpage .fulldesc .descbox ul li span{
    color: #000;
    font-weight: 400;
}
.aboutpage .fulldesc .descbox p.last{
}
.aboutpage .fulldesc .descbox:last-child{}
.aboutpage .fulldesc .descbox:last-child h3{
    line-height: 1;
}
.aboutpage .fulldesc .descbox:last-child ul{
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.aboutpage .fulldesc .descbox:last-child ul li{
    background: #eee;
    line-height: 1;
    padding: 15px 20px;
    border-radius: 5px;
    font-weight: 400;
    font-size: 16px;
}






/*====== our services start here =======*/
.servicespage{
    padding: 40px 30px 20px;
}
.servicespage{}
.servicespage .serbox{
    display: inline-flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    margin: 0 10px;
    transition: .3s linear;
    width: 100%;
    background: #1489cd1c;
    margin: 0 0 20px;
}
.servicespage .serbox .icon{
    width: 70px;
    /* aspect-ratio: 1 / 1; */
    text-align: center;
    background: var(--primary-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s linear;
}
.servicespage .serbox:hover .icon{
    background: #fff;
}
.servicespage .serbox img{
    width: 60%;
    /* filter: invert(1); */
    margin: -5px 0 0;
}
.servicespage .serbox h3{
    font-size: 18px;
    font-weight: 600;
    padding: 30px 0 0;
    text-align: center;
    transition: .3s linear;
}
.servicespage .serbox:hover{
    background: var(--secondary-color);
}
.servicespage .serbox:hover img{
    filter: invert(0);
}
.servicespage .serbox:hover h3{
    color: #fff;
}
.servicespage .slick-dots{
    display: none !important;
}

.innerservices{
    padding: 50px 0;
}
.innerservices .innerserbox{}
.innerservices .innerserbox figure{
    width: 40%;
    margin: auto;
    border-radius: 20px;
    overflow: hidden;
}
.innerservices .innerserbox figure img{width: 100%;}
.innerservices .innerserbox h3{
    /*text-align: center;*/
    font-size: 22px;
    font-weight: 600;
    padding: 15px 0;
}
.innerservices .innerserbox h1{
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    padding: 15px 0;
}
.innerservices .innerserbox p{
    text-align: justify;
}
.innerservices .innerserbox h2 {
    font-size: 22px;
    font-family: var(--primary-font);
    color: var(--primary-color);
    margin: 10px 0 10px;
    font-weight: 600;
}
.innerservices .innerserbox ul {
    list-style: disc;
    margin: 10px 0 20px 40px;
}

.innerservices .innerserbox ul li {
    margin: 10px 0;
}


/*====== our services end here =======*/


/*====== our specialities start here =======*/

.specialitiespage{
    padding: 40px 30px;
}

.specialitiespage .specbox{
    background: #00597c14;
    margin: 0 0 20px;
    padding: 25px;
    border-radius: 10px;
}
.specialitiespage .specbox figure{}
.specialitiespage .specbox figure img{
    width: 40px;
}
.specialitiespage .specbox .content{}
.specialitiespage .specbox .content h3{
    font-size: 18px;
    font-weight: 600;
    padding: 0 0 10px;
}
.specialitiespage .specbox .content p{
    font-size: 15px;
}

/*====== our specialities end here =======*/

/*========== gallery page start here ==========*/
.gallerypage{
    padding: 3% 30px;
}
.gallerypage .gallerbox{
    margin: 0 0 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    height: 200px;
    border: 4px solid #1489cd42;
}
.gallerypage .gallerbox span{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #8db60061;
    padding: 5px 15px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    font-size: 15px;
    letter-spacing: 1px;
    border-radius: 3px;
    backdrop-filter: blur(3px);
    color: var(--secondary-color);
}
.gallerypage .gallerbox > img{width: 100%;object-fit: cover;height: 100%;}
.gallerypage .gallerbox .gal_overlay{
    width: 40px;
    height: 40px;
    position: absolute;
    top: 5px;
    left: 10px;
}
.gallerypage .gallerbox .gal_overlay img{
    width: 100%;
}

/*========== gallery page end here ==========*/


/*========== blogs page start here ==========*/
.blogpage{padding: 40px 30px;}
.blogpage .blogbox{
    background: #fff;
    margin: 0 0 20px;
}
.blogpage .blogbox figure{
    overflow: hidden;
    border-radius: 30px;
}
.blogpage .blogbox figure img{width: 100%;transition: .3s ease-in;}
.blogpage .blogbox:hover figure img{}
.blogpage .blogbox .content{flex: 1 0 48%;}
.blogpage .blogbox .content .tagname{
    background: var(--secondary-color);
    color: #fff;
    font-size: 12px;
    display: inline-block;
    padding: 1px 10px;
    border-radius: 2px;
    text-transform: uppercase;
    margin: 0 0 10px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 1px;
}
.blogpage .blogbox .content .date{
    color: var(--secondary-color);
    font-size: 14px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 0 20px;
}
.blogpage .blogbox .content .date i{}
.blogpage .blogbox .content h3{
    font-size: 25px;
    margin: 0 0 10px;
    font-weight: 400;
}
.blogpage .blogbox .content p{
    font-size: 15px;
    color: #49456a80;
    font-weight: 400;
    border-top: 1px solid #2b227024;
    padding: 15px 0 0;
    margin: 15px 0 0;
}
.blogpage .blogbox .content a{
    font-size: 14px;
    color: #666;
    letter-spacing: .5px;
}
.blogpage .blogbox .content a:hover{
    color: var(--primary-color);
}







/*============= single blogs start here ===========*/
.blog{
    position: relative;
    padding: 30px 30px;
}
.blog figure{
    border-radius: 20px;
    overflow: hidden;
}
.blog figure img{width: 100%;margin: auto;}
.blog .blogleft{
    position: relative;
    margin: 0 0 50px;
}
.blog .blogleft .content{
    position: relative;
    margin: 0 0 0;
    z-index: 1;
}
.blog .blogleft .content .tagname{
    background: var(--secondary-color);
    color: #fff;
    font-size: 12px;
    display: inline-block;
    padding: 1px 10px;
    border-radius: 2px;
    text-transform: uppercase;
    margin: 0 0 10px;
    font-weight: 400;
    letter-spacing: 1px;
    font-style: italic;
}
.blog .blogleft .content .date{
    display: inline-block;
    color: #999;
    font-size: 14px;
    position: relative;
    z-index: 1;
    color: var(--secondary-color);
    font-weight: 500;
}
.blog .blogleft .content h1{
    font-size: 35px;
    margin: auto;
    font-weight: 400;
    padding: 0 0 10px;
    line-height: 1.1;
}
.blog .blogleft .blogdesc{position: relative;z-index: 2;margin: auto;}
.blog .blogleft .blogdesc h1{
    font-size: 18px;
}
.blog .blogleft .blogdesc h2{
    font-size: 28px;
    margin: 20px 0 10px;
    font-weight: 500;
    color: var(--primary-color);
}
.blog .blogleft .blogdesc h3{
    font-size: 22px;
    margin: 10px 0 5px;
    color: var(--secondary-color);
}
.blog .blogleft .blogdesc h4{
    font-size: 18px;
    color: var(--primary-color);
    padding: 0 0 5px;
}
.blog .blogleft .blogdesc h5{}
.blog .blogleft .blogdesc p{
    color: #333;
    line-height: 1.4;
    font-weight: 300;
    text-align: justify;
    padding: 0 0 10px;
}
.blog .blogleft .blogdesc p a{display: inline-block; color: green; transition: .3s linear;}
.blog .blogleft .blogdesc p a:hover{text-decoration: underline;}
.blog .blogleft .blogdesc ul{
    background: #1489cd1f;
    border-left: 4px solid var(--primary-color);
    padding: 10px 10px 15px;
    margin: 0 0 15px;
}
.blog .blogleft .blogdesc ul li{
    font-weight: 300;
}


.recentblogs-wrapper{background: #2b227014;border-radius: 20px;}
.recentblogs-wrapper h2{
    padding: 15px 15px 0;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 20px;
}
.recentblogs{
    padding: 15px;
}
.recentblogs a{
    border-radius: 10px;
    overflow: hidden;
    margin: 0 0 20px;
}
.recentblogs a:last-child{
    margin: 0;
}
.recentblogs a img{
    border-radius: 10px;
    margin: 0 0 10px;
    width: 100%;
}
.recentblogs a h3{
    font-weight: 600;
    color: var(--primary-color);
    font-size: 17px;
}
.recentblogs a span{
    color: #666;
    font-size: 13px;
    font-style: italic;
}
.recentblogs a span i{}

/*============= single blogs start here ===========*/

.time-slot{padding: 4px 10px;border:1px solid #ccc;margin: 0 5px;display:inline-block;font-size: 14px;border-radius: 2px;}
.time-slot.active{background:#000;color:#fff}
.time-slot.disabled{opacity:.4;pointer-events:none}
.timeslots {
    margin: 15px 0 0;
}

.appointment-modal{display:none;position:fixed;top:0;left:0;width:100%;height:100%;z-index:99}
.modal-overlay{position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.6)}
.modal-box{
    position:relative;
    width:100%;
    max-width:420px;
    background:#fff;
    margin: 50px auto;
    padding:25px;
    border-radius:10px;
    animation:scaleIn .3s ease;
}
@keyframes scaleIn{from{transform:scale(.8);opacity:0}to{transform:scale(1);opacity:1}}

.close-modal{
    position:absolute;top:12px;right:15px;
    font-size:22px;cursor:pointer
}
.modal-box h3{margin-bottom:15px;font-size:20px}

.form-group{margin-bottom:12px}
.form-group label{font-size:14px;margin-bottom:4px;display:block}
.form-group input,
.form-group textarea{
    width:100%;padding:8px;border:1px solid #ccc;border-radius:5px
}

.confirm-btn{
    width:100%;
    background:#0d6efd;
    color:#fff;
    border:none;
    padding:10px;
    border-radius:6px;
    font-size:16px;
    cursor:pointer
}

.insurance_companies{}
.insurance_company_logo{}
.insurance_company_logo .slick-dots{display: none !important;}
.insurance_company_logo a{
    box-shadow: 1px 4px 9px 0px rgb(0 0 0 / 11%);
    margin: 10px;
    padding: 5px 10px;
    width: 150px !important;
}
.insurance_company_logo a img{width: 100%;aspect-ratio: 2/1;}