@font-face {
    font-family: Roboto-Regular;
    src: url('../fonts/Roboto-Regular.ttf');
}

@font-face {
    font-family: Roboto-Medium;
    src: url('../fonts/Roboto-Medium.ttf');
}

@font-face {
    font-family: Roboto-Bold;
    src: url('../fonts/Roboto-Bold.ttf');
}

:root{
    --theme-color-1: #015D67;
    --theme-color-2: #00ACB1;
    --theme-color-3: #87E4DB;
    --theme-color-4: #CAF0C1;
    --theme-color-5: #99BDC1;
    --theme-color-6: #F4FFFE;
    --theme-color-7: #F5F9F9;
    --top-header-bg: #F4FFFE;
    --font-color: #2F2F2F;
    --heading-color: #333333;
    --main-heading-color: #000000;
}

body{
    background-color: var(--theme-color-7);
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 25px;
    font-family: 'Roboto-Regular';
    font-weight: normal;
    color: var(--font-color);
}

h1, h2, h3, h4, h5{
    margin-bottom: 0;
    font-family: 'Roboto-Bold';
    font-weight: normal;
}

p{
    margin-bottom: 0;
}

a, a:hover, a:active, a:focus{
    color: inherit;
    text-decoration: none;
}

.theme-btn{
    border-radius: 10px;
    height: 48px;
    text-align: center;
    border: none;
    max-width: max-content;
    width: auto;
    padding:10px 22px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-main{
    color: #fff;
    background-color: var(--theme-color-1);
}

.btn-secondary{
    color: #fff;
    background-color: var(--theme-color-2);
}

.top-header{
    background-color: var(--top-header-bg);
    height: 48px;
    padding: 10px 0px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.th-list{
    list-style: none;
    margin: 0;
    padding: 0;
}

.th-list li{
    display: inline-block;
    margin-right: 15px;
}

.th-list li a i{
    color: var(--theme-color-2);
    margin-right: 8px;
}

.th-social-list{
    list-style: none;
    margin: 0;
    padding: 0;
    float: right;
}

.th-social-list li{
    display: inline-block;
    margin-left: 5px;
}

.th-social-link{
    background-color: #686868;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.ml-auto{
    margin-left: auto;
}

.mr-auto{
    margin-left: auto;
}

@media (min-width: 768px) {
    .animate {
      animation-duration: 0.3s;
      -webkit-animation-duration: 0.3s;
      animation-fill-mode: both;
      -webkit-animation-fill-mode: both;
    }
}
  
@keyframes slideIn {
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
  
    100% {
      transform: translateY(0rem);
      opacity: 1;
    }
  
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
}
  
@-webkit-keyframes slideIn {
    0% {
      -webkit-transform: transform;
      -webkit-opacity: 0;
    }
  
    100% {
      -webkit-transform: translateY(0);
      -webkit-opacity: 1;
    }
  
    0% {
      -webkit-transform: translateY(1rem);
      -webkit-opacity: 0;
    }
}
  
.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}

.navbar{
    height: 85px;
    background-color: #fff;
}

.navbar-dark .navbar-nav .nav-link{
    height: 100%;
    display: flex;
    align-items: center;
    margin-right: 15px;
    color: var(--main-heading-color);
    font-family: 'Roboto-Medium';
    font-weight: normal;
}

.dropdown .nav-link::after{
    font-family: "Fontawesome"; 
	font-weight: 400;
	content: "\f107";
    margin-left: 5px;
}

.navbar-brand{
    font-size: 32px;
    line-height: 38px;
    color: #000000 !important;
    font-family: 'Roboto-Bold';
    font-style: normal;
    width: 180px;
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover{
    color: #000000;
}

.dropdown-menu{
    background-color: var(--theme-color-3);
    border: none;
    min-width: 220px;
    width: auto;
    border-radius: 6px;
}

.dropdown-item{
    padding: 4px 15px;
    font-size: 14px;
    color: var(--main-heading-color);
}

.dropdown-item:focus, .dropdown-item:hover{
    background-color: #fff;
    color: var(--theme-color-2);
    transition: ease-in-out 0.3s;
}

.carousel.slide{
    height: calc(100vh - 23vh);
}

.carousel-item{
    height: calc(100vh - 23vh);
}

.carousel-caption{
    position: absolute;
    right: 0;
    bottom: auto;
    left: 43%;
    padding-top: 0;
    padding-bottom: 0;
    color: #fff;
    text-align: left;
    top: 50%;
    transform: translate(-50%, -50%);  
    width: 50%;
}

.banner-smallheading{
    font-size: 22px;
    font-family: 'Roboto-Medium';
    font-weight: normal;
    margin-bottom: 10px;
    color: var(--theme-color-2);
}

.banner-mainheading{
    font-size: 55px;
    font-family: 'Roboto-Bold';
    font-weight: normal;
    margin-bottom: 10px;
    color: #333;
}

.banner-description{
    color: var(--font-color);
}

.banner-info-layer{
    position: relative;
    margin-top: -40px;
}

.banner-layer-card{
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    border-bottom: 5px solid var(--theme-color-3);
    padding: 30px;
    box-shadow: 0px 0px 20px 5px rgba(190, 190, 190, 0.25);
    z-index: 11;
    height: 100%;
}

.banner-layer-iconheading{
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 15px;
}

.banner-layer-iconheading span{
    min-width: 80px;
    min-height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    margin-right: 20px;
    background-color: var(--theme-color-6);
}

.banner-layer-heading{
    font-size: 20px;
    line-height: 23px;
    font-family: 'Roboto-Bold';
    font-weight: normal;
    color: var(--heading-color);
    width: 100%;
    display: inline-block;
}

.banner-layer-learn{
    width: 100%;
    margin-top: 15px;
    color: var(--theme-color-3);
    display: inline-block;
    text-align: right;
    font-family: 'Roboto-Medium';
    font-weight: normal;
    position: relative;
    z-index: 15;
}

.banner-layer-learn::after{
    font-family: "Fontawesome"; 
	font-weight: 400;
	content: "\f061";
    margin-left: 5px;
}

.card-count{
    position: absolute;
    color: rgba(135, 228, 219, 0.2);
    right: 15px;
    bottom: 65px;
    font-size: 95px;
    z-index: 10;
}

.habout-heading{
    font-size: 40px;
    line-height: 47px;
    font-family: 'Roboto-Bold';
    font-weight: normal;
    margin-bottom: 20px;
    color: var(--main-heading-color);
}

.section{
    padding: 60px 0px;
}

.habout-list{
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 30px;
}

.habout-list li{
    display: flex;
    margin-bottom: 30px;
}

.habout-icons{
    border-radius: 6px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-right: 15px;
    background-color: var(--theme-color-3);
}

.habout-info {
    width: 100%;
    display: inline-block;
}

.habout-info h4{
    font-size: 20px;
    line-height: 23px;
    font-family: 'Roboto-Bold';
    font-weight: normal;
    margin-bottom: 15px;
}

.habout-image-wrapper{
    position: relative;
    padding: 30px 30px 0px 0px;
    height: 100%;
    z-index: 11;
}

.habout-image-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.habout-img-background{
    background-color: var(--theme-color-4);
    position: absolute;
    top: 0px;
    width: 85%;
    display: inline-block;
    z-index: -1;
    height: 70%;
    right: 0;
}

.digital-service{
    background-color: var(--theme-color-6);
    position: relative;
}

.section-heading-wrapper{
    display: inline-block;
    position: relative;
    width: 100%;
}

.section-heading{
    font-size: 40px;
    line-height: 47px;
    text-align: center;
    font-family: 'Roboto-Bold';
    font-weight: normal;
    color: var(--main-heading-color);
    margin-bottom: 20px;
}

.section-heading-descrip{
    margin-bottom: 10px;
    text-align: center;
}

.dservices-card{
    background: #FFFFFF;
    box-shadow: 0px 0px 20px 5px rgba(190, 190, 190, 0.25);
    border-radius: 10px;
    padding: 15px;
    position: relative;
    display: inline-block;
    width: 100%;
    overflow: hidden;
}

.know-more {
    width: 100%;
    margin-top: 15px;
    color: var(--theme-color-3);
    display: inline-block;
    text-align: right;
    font-family: 'Roboto-Medium';
    font-weight: normal;
    position: relative;
    z-index: 15;
}

.know-more::after {
    font-family: "Fontawesome";
    font-weight: 400;
    content: "\f061";
    margin-left: 5px;
}

.dservices-info{
    padding: 20px 0px 0px 0px;
}

.dservices-info h4{
    font-size: 22px;
    line-height: 26px;
    font-family: 'Roboto-Bold';
    font-weight: normal;
    margin-bottom: 15px;
}

.dservices-card img{
    border-radius: 10px;
    overflow: hidden;
    transition: ease-in-out 0.3s;
    height: 220px;
    object-fit: cover;
    width: 100%;
}

.dservices-card:hover .dservices-img img{
    transform: scale(1.5);
}

.dservices-img{
    width: 100%;
    overflow: hidden;
    height: 100%;
    border-radius: 10px;
}

.dservices-card:hover .dservices-info h4{
    color: var(--theme-color-2);
}

.tab-icon{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--theme-color-2);
    background-color: #fff;
    padding: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.nav-pills .nav-link{
    display: flex;
    align-items: center;
    font-size: 20px;
    line-height: 28px;
    font-family: 'Roboto-Medium';
    font-weight: normal;
    color: var(--heading-color);
    text-align: left;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    background-color: var(--theme-color-3);
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
    background-color: var(--theme-color-4);
    color: var(--heading-color);
}

.tabs-pills-content-wrapper{
    width: 100%;
    border: 1px solid #ccc;
    display: inline-block;
    position: relative;
    padding: 20px;
    border-radius: 10px;
}

.tab-image img{
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
}

.tab-inner-content h4{
    font-size: 24px;
    line-height: 28px;
    font-family: 'Roboto-Bold';
    font-weight: normal;
    margin: 10px 0px 20px 0px;
}

.tab-content-points{
    display: flex;
    /* align-items: center; */
}

.tab-point-img{
    width: 60px;
    padding: 5px;
    margin-right: 15px;
}

.tab-point-info{
    width: 100%;
}

.tab-point-info h4{
    font-size: 20px;
    line-height: 28px;
    font-family: 'Roboto-Bold';
    font-weight: normal;
    margin-bottom: 10px;
}

.tab-image{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.our-team-card{
    background: #FFFFFF;
    box-shadow: 0px 0px 20px 5px rgba(190, 190, 190, 0.25);
    border-radius: 10px;
    padding: 20px;
    transition: ease-in-out 0.3s;
    height: 100%;
}

.team-profile-info h3{
    font-size: 20px;
    line-height: 28px;
    margin: 15px 0px 5px 0px;
    color: var(--heading-color);
    font-family: 'Roboto-Bold';
    font-weight: normal;
}

.team-profile-info h4{
    font-size: 14px;
    line-height: 16px;
    font-family: 'Roboto-Regular';
    font-weight: normal;
}

.team-social ul{
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 15px;
}

.team-social ul li{
    display: inline-block;
    margin-right: 5px;
}

.team-social ul li a{
    width: 35px;
    height: 35px;
    background-color: #686868;
    border-radius: 50%;
    padding: 5px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.team-social ul li a:hover{
    background-color: var(--theme-color-2);
}

.team-social ul li a.active{
    background-color: var(--theme-color-2);
}

.our-team-card:hover .team-profile-info h3{
    color: var(--theme-color-2);
}

.our-team-card:hover{
    transition: ease-in-out 0.3s;
    margin-top: -20px;
}

a:hover, button:hover{
    transition: ease-in-out 0.3s;
}

/* *{
    transition: ease-in-out 0.3s;
} */

.th-social-link:hover{
    background-color: var(--theme-color-2);
    color: #fff;
}

.subscribe{
    background-color: var(--theme-color-2);
    padding: 50px 0px;
    background-image: url('../images/subscribe-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.subscribe-inner-wrapper{
    position: relative;
}

.subscribe-inner-wrapper h3{
    position: relative;
    font-size: 28px;
    line-height: 33px;
    font-family: 'Roboto-Bold';
    font-weight: normal;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
}

.subscribe-inner-wrapper form{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.newssletter-input{
    background: #FFFFFF;
    border-radius: 29px;
    height: 60px;
    padding: 10px 15px;
    width: 100%;
    display: inline-block;
    border: none;
}

.newsletter-form-wrapper{
    position: relative;
    display: inline-block;
    width: 100%;
}

.subscribe-btn{
    position: absolute;
    right: 5px;
    border: none;
    background-color: var(--theme-color-2);
    height: 50px;
    top: 5px;
    border-radius: 30px;
    width: 130px;
    color: #fff;
}

.services-2-card{
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 20px;
    height: 100%;
}

.s2-head-icon{
    background-color: var(--theme-color-4);
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 22px;
    margin-bottom: 20px;
}

.s2-body h3{
    font-size: 24px;
    line-height: 28px;
    font-family: 'Roboto-Bold';
    font-weight: normal;
    margin-bottom: 20px;
}

.book-appointment{
    background-image: url('../images/depp-1.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.appointment-form-wrapper{
    position: relative;
    background-color: var(--theme-color-1);
    box-shadow: 0px 0px 20px 5px rgba(154, 154, 154, 0.25);
    border-radius: 10px;
    padding: 30px;
    margin: 50px 0px;
}

.appointment-form-heading{
    font-size: 28px;
    line-height: 33px;
    color: #fff;
    font-family: 'Roboto-Bold';
    font-weight: normal;
    margin-bottom: 30px;
}

.appointment-form-group{
    position: relative;
    margin-bottom: 20px;
}

.appointment-input{
    border: none;
    border-bottom: 1px solid #CCCCCC;
    height: 50px;
    padding: 10px 15px;
    width: 100%;
    background-color: transparent;
    color: #fff;
}

.appointment-textarea{
    border: none;
    border-bottom: 1px solid #CCCCCC;
    padding: 10px 15px;
    width: 100%;
    background-color: transparent;
    color: #fff;
}

.appointment-input::placeholder{
    color: #fff;
}

.appointment-textarea::placeholder{
    color: #fff;
}

.blog-card{
    background: #FFFFFF;
    box-shadow: 0px 4px 20px 5px rgba(190, 190, 190, 0.25);
    border-radius: 10px;
}

.blog-image{
    position: relative;
    display: inline-block;
    width: 100%;
}

.blog-image img{
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content-card{
    padding: 20px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.blog-post-detail{
    margin-bottom: 10px;
}

.blog-post-detail span{
    color: #7A7A7A;
    font-size: 13px;
    margin-right: 10px;
}

.blog-post-detail span i{
    color: var(--theme-color-2);
    margin-right: 5px;
}

.blog-content-card h3 a{
    font-size: 20px;
    line-height: 23px;
    font-family: 'Roboto-Bold';
    font-weight: normal;
    margin-bottom: 10px;
    color: var(--heading-color);
    display: inline-block;
}

.popular-blog{
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--theme-color-4);
    color: var(--heading-color);
    padding: 8px 10px;
    border-top-right-radius: 10px;
}

.popular-blog i{
    margin-right: 5px;
}

.blog-card:hover .blog-content-card h3 a{
    color: var(--theme-color-2);
}

.blog-content-card p{
    margin-bottom: 15px;
}

.blog-uploader-share{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-uploader{
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-uploader-image img{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 10px;
}

.blod-uploader-details h4{
    font-size: 12px;
    line-height: 14px;
    font-family: 'Roboto-Medium';
    font-weight: normal;
    margin-bottom: 5px;
}

.blod-uploader-details p{
    font-size: 10px;
    line-height: 12px;
    color: #7A7A7A;
}

.blog-share a{
    margin-left: 15px;
    color: var(--theme-color-2);
}

.testimonial-card{
    border: 1px solid #CCCCCC;
    border-radius: 10px;
    width: 100%;
    padding: 30px;
    position: relative;
}

.testimonial-card p{
    font-style: italic;
    font-family: 'Roboto-Medium';
    font-weight: normal;
    margin-bottom: 20px;
}

.testimonial-author{
    display: flex;
    align-items: center;
}

.ta-image img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.ta-info h3{
    font-family: 'Roboto-Medium';
    font-weight: normal;
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 16px;
}

.ta-info p{
    font-size: 12px;
    line-height: 14px;
}

/* the slides */
.slick-slide {
    margin: 0 20px;
    background-color: #fff;
}

/* the parent */
.slick-list {
    margin: 0 -20px;
}

.slick-slide.slick-center{
    background-color: var(--theme-color-4);
}

.carosel-nav-left-testi{
    position: absolute;
    top: 0;
    left: 0;
}

.testimonial-quote{
    position: absolute;
    top: 0px;
    z-index: 142;
    font-size: 25px;
    left: 5px;
    color: var(--theme-color-2)
}

.slick-slide.slick-center .testimonial-quote{
    color: var(--heading-color);
}

footer{
    background-color: var(--theme-color-1);
    width: 100%;
    display: inline-block;
}

.top-footer{
    padding: 50px 0px;
}

.footer-brand-logo-text{
    font-size: 36px;
    line-height: 42px;
    font-family: 'Roboto-Bold';
    font-weight: normal;
    margin-bottom: 20px;
    color: #fff;
}

.footer-about-inf0{
    color: #fff;
}

.footer-heading{
    font-size: 20px;
    line-height: 28px;
    font-family: 'Roboto-Bold';
    font-weight: normal;
    margin-bottom: 20px;
    color: #fff;
}

.footer-link-list{
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-link-list li{
    padding: 5px 0px;
}

.footer-link-list li a{
    color: #fff;
}

.footer-link-list li .footer-link-item::before{
    font-family: "Fontawesome"; 
	font-weight: 400;
	content: "\f061";
    margin-right: 10px;
    font-size: 9px;
}

.footer-link-list.hours li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.footer-link-list.contact li{
    color: #fff;
    display: flex;
}

.footer-link-list.contact li span{
    font-family: 'Roboto-Bold';
    font-weight: normal;
}

.folow-us-heading{
    margin: 20px 0px;
    font-family: 'Roboto-Bold';
    font-weight: normal;
    font-size: 18px;
    color: #fff;
}

.follow-us-list{
    list-style: none;
    margin: 0;
    padding: 0;
}

.follow-us-list li{
    display: inline-block;
    margin-right: 6px;
}

.follow-us-list li a{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: var(--theme-color-4);
    color: #333;
}

.footer-copyright p{
    font-size: 12px;
    color: #fff;
    /* line-height: 35px; */
}

.bottom-footer{
    background-color: #0D484F;
    padding: 20px 0px;
}

.footer-bottom-links ul{
    list-style: none;
    margin: 0;
    padding: 0;
    float: right;
}

.footer-bottom-links ul li{
    display: inline-block;
    margin-left: 10px;
}

.footer-bottom-links ul li a{
    font-size: 12px;
    color: #fff;
}

.mob-info ul{
    margin: 20px 0px;
}

.mob-info ul li{
    padding: 5px 0px;
}

.mob-info ul li a{
    color: #fff;
}

.mob-info ul li a i{
    color: var(--theme-color-4);
}

.banner-page{
    background-image: url('../images/main-banner-2.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-block;
    position: relative;
    width: 100%;
    height: calc(100vh - 23vh);
}

.banner-content-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: center;
}

.banner-breadcrumb{
    background:linear-gradient(0deg, rgb(0 172 177 / 50%), rgb(0 172 177 / 50%)), url('../images/main-banner-3.jpg');
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 200px;
    background-attachment: fixed;
}

.banner-breadcrumb-inner{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.breadcrumb-heading{
    font-size: 32px;
    line-height: 35px;
    font-family: 'Roboto-Bold';
    font-weight: normal;
    color: #fff;
    margin-bottom: 10px;
}

.banner-breadcrumb-inner ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.banner-breadcrumb-inner ul li{
    margin:0px 5px;
    display: inline-block;
    color: #fff;
}

.banner-breadcrumb-inner ul li a{
    color: #fff;
}

.white-heading{
    font-size: 40px;
    line-height: 47px;
    text-align: center;
    font-family: 'Roboto-Bold';
    font-weight: normal;
    color: #fff;
    margin-bottom: 20px;
}

.faq{
    background-color: var(--theme-color-3);
}

.faq-icon{
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background-color: var(--theme-color-4);
    border-radius: 6px;
    margin-right: 15px;
}

.faq-content-wrapper{
    display: flex;
    margin-bottom: 30px;
}

.faq-content-wrapper:last-child{
    margin-bottom: 0;
}

.faq-content{
    width: 100%;
}

.faq-content-heading{
    font-family: 'Roboto-Bold';
    font-weight: normal;
    font-size: 20px;
    margin-bottom: 20px;
}

.services-2-card.about{
    background-color: #fff;
    /* border: 1px solid #ccc; */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px 5px rgb(190 190 190 / 25%);
}

.about-service-wrapper h3{
    font-size: 36px;
    line-height: 43px;
    font-family: 'Roboto-Bold';
    font-weight: normal;
    margin-bottom: 20px;
    color: var(--heading-color);
}

.about-service-wrapper h4{
    font-size: 18px;
    line-height: 25px;
    font-family: 'Roboto-Medium';
    font-weight: normal;
    margin-bottom: 10px;
    color: var(--heading-color);
    border-left: 3px solid var(--theme-color-4);
    padding-left: 15px;
}

.progress-bar-container{
    width: 100%;
    margin: 20px 0px 0px 0px;
}

.progress-bar-label{
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.progress-bar-label span{
    font-size: 12px;
    line-height: 30px;
    font-family: 'Roboto-Medium';
    font-weight: normal;
    color: var(--heading-color);
}

.progress{
    height: 5px;
}

.progress-bar{
    background-color: var(--theme-color-4);
}

.wedo-card{
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0px 0px 20px 5px rgb(190 190 190 / 25%);
    height: 100%;
}

.wedo-head{
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}

.wedo-head img{
    width: 40px;
    margin-right: 15px;
}

.wedo-head h3{
    width: 100%;
    display: inline-block;
    font-size: 18px;
    font-family: 'Roboto-Bold';
    font-weight: normal;
    color: var(--heading-color);
}

.our-team .our-team-card{
    box-shadow: none;
    border: 1px solid #ccc;
    padding: 0;
}

.our-team .team-profile-info{
    padding: 0px 20px;
    padding-bottom: 20px;
}

.our-team .our-team-card:hover{
    margin-top: 0;
}

.team-image{
    position: relative;
}

.team-social.inner{
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: ease-in-out 0.5s;
}

.our-team-card:hover .team-social.inner{
    display: flex;
    opacity: 1;
    transition: ease-in-out 0.5s;
}

.meet-doctor-image{
    text-align: center;
}

.doctor-info{
    background-color: var(--theme-color-1);
    color: #fff;
    padding: 20px;
    text-align: center;
}

.doctor-info h3{
    font-size: 18px;
    font-family: 'Roboto-Bold';
    font-weight: normal;
    margin-bottom: 10px;
}

.doctor-info h4{
    font-size: 18px;
    font-family: 'Roboto-Medium';
    font-weight: normal;
    margin-bottom: 10px;
}

.doctor-info p{
    font-size: 12px;
}

.doctor-info p span{
    margin: 0px 5px;
}

.doctor-info-heading{
    margin: 20px 0px;
    font-size: 20px;
    font-family: 'Roboto-Bold';
    font-weight: normal;
    color: var(--heading-color);
}

.doctors-box{
    position: relative;
    text-align: center;
    border: 2px solid #f4f6fa;
    padding: 28px 20px;
    border-radius: 6px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    margin: 0 14px 25px;
    border-radius: 10px;
}

.doctor-box-img{
    border-radius: 50%;
    border: 2px solid #fff;
    margin: 0 auto;
    width: 140px;
    height: 140px;
    -webkit-box-shadow: 0 0 14px -8px rgb(0 0 0 / 75%);
    box-shadow: 0 0 14px -8px rgb(0 0 0 / 75%);
}

.doctors-box h4 {
    font-size: 21px;
    margin: 24px 0 10px;
    font-family: 'Roboto-Bold';
    font-weight: normal;
}

.doctors-box p{
    font-size: 13px;
    margin-bottom: 10px;
}

.doctors-box ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.doctors-box ul li {
    list-style: none;
    display: inline-block;
    margin: 0 12px;
}

.doctors-box ul li a {
    color: #333;
}

.doctors-box ul li a i {
    font-size: 13px;
}

.doctors-box:hover {
    background: var(--theme-color-4);
}

.emergency{
    padding: 90px 0;
    background: url('../images/bg-img-doctors.jpg') no-repeat;
    background-size: cover;
}

.emergency-box {
    background: url('../images/emergency-contact-bg.png') no-repeat var(--theme-color-2);
    background-size: cover;
    color: #fff;
    padding: 40px;
    border-radius: 10px;
}

.emergency-box h2{
    font-family: 'Roboto-Bold';
    font-weight: normal;
    font-size: 40px;
    margin-bottom: 20px;
}

.emergency-block {
    margin: 25px 0 0;
}

.emergency-block i {
    font-size: 20px;
    background: #4d72d0;
    text-align: center;
    width: 45px;
    height: 45px;
    border-radius: 4px;
    margin: 0 14px 0 0;
    vertical-align: middle;
    padding: 11px 0;
}

.emergency-text {
    display: inline-block;
    vertical-align: middle;
}

.emergency-text h4{
    font-size: 20px;
    font-family: 'Roboto-Bold';
    font-weight: normal;
}

.pricing {
    padding: 0;
    margin: 0;
    -webkit-box-shadow: 0 0 23px -17px #3c3f42;
    box-shadow: 0 0 23px -17px #3c3f42;
}

.pricing li {
    list-style: none;
    width: 100%;
    padding: 55px;
    border-right: none;
    border-bottom: transparent;
    border-right: 1px solid #ccc;
    display: inline-block;
    text-align: center;
}

.pricing li:last-child{
    border-right: none;
}

.pricing li h2 {
    margin: 20px 0 16px;
    color: var(--theme-color-2);
    font-size: 40px;
    font-family: 'Roboto-Bold';
    font-weight: normal;
}

.pricing li h2 span {
    font-size: 22px;
    font-family: 'Roboto-Medium';
    font-weight: normal;
}

.pricing li h3{
    font-family: 'Roboto-Bold';
    font-weight: normal;
    font-size: 25px;
    margin-bottom: 20px;
}

.pricing-badge {
    position: absolute;
    top: -5px;
    right: 34px;
}

.medical-team-card{
    position: relative;
    overflow: hidden;
    padding-bottom: 45px;
    margin-bottom: 30px;
    height: 300px;
}

.medica-team-card-image{
    overflow: hidden;
    position: relative;
    height: 100%;
}

.medical-team-card:hover .medica-team-card-image::before{
    height: 100%;
}

.medica-team-card-image::before{
    background: #00ACB1;
    opacity: 0.6;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0%;
    content: "";
    transition: .5s;
    border-radius: 10px;
}

.medica-team-card-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.mtc-icon-content{
    padding: 21px 15px 26px;
    position: absolute;
    background-color: #fff;
    bottom: -80px;
    left: 15px;
    margin: auto;
    transition: .5s;
    right: 15px;
    text-align: left;
}

.medical-team-card:hover .mtc-icon-content{
    bottom: -4px;
}

.mtc-content h4{
    font-size: 12px;
    color: var(--theme-color-2);
    font-weight: 700;
    margin-bottom: 4px;
}

.mtc-content h3{
    font-size: 22px;
    font-family: 'Roboto-Bold';
    font-weight: normal;
    color: var(--heading-color);
}

.mtc-know-more{
    margin-top: 20px;
}

.mtc-know-more a{
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-color-2);
    padding: 13px 25px;
    border-radius: 5px;
    display: inline-block;
    background: #fff;
    transition: .5s;
    border: 1px solid #ececec;
}

.mtc-know-more a i{
    margin-left: 5px;
    transition: 1s;
}

.pricing-plan2-card{
    background: #FFFFFF;
    box-shadow: 0px 0px 20px 5px rgb(190 190 190 / 25%);
    border-radius: 10px;
    padding: 35px 20px;
    transition: ease-in-out 0.3s;
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pp2-icon{
    margin-bottom: 20px;
}

.pp2-icon img{
    width: 50px;
}

.pp2-body h4{
    font-size: 18px;
    font-family: 'Roboto-Bold';
    font-weight: normal;
    margin-bottom: 10px;
    color: var(--heading-color)
}

.pp2-body h3{
    font-size: 35px;
    font-family: 'Roboto-Bold';
    font-weight: normal;
    margin-bottom: 30px;
    color: var(--main-heading-color)
}

.pp2-body h3 span{
    font-size: 22px;
}

.pp2-body ul{
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
}

.pp2-body ul li{
    margin-bottom: 10px;
}

.plan-popular{
    position: absolute;
    top: 20px;
    right: -65px;
    padding: 5px 20px;
    background-color: var(--theme-color-2);
    color: #fff;
    transform: rotate(45deg);
    width: 200px;
}

.hours-list-wrapper{
    background-color: var(--theme-color-4);
    padding: 50px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.hours-info-wrapper{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 50px;
}

.hours-list-wrapper.dt{
    border-radius: 10px;
    padding: 30px;
}

.hours-list-wrapper.dt h3{
    font-size: 30px;
    font-family: 'Roboto-Bold';
    font-weight: normal;
    margin-bottom: 20px;
    color: var(--main-heading-color);
}

.hours-list-wrapper.dt h4{
    font-size: 24px;
    font-family: 'Roboto-Bold';
    font-weight: normal;
    margin-bottom: 0px;
    color: var(--main-heading-color);
}

.hours-list-wrapper ul{
    list-style: none;
    margin: 0;
    padding: 0;
    /* border-bottom: 1px solid #ccc; */
    /* margin-bottom: 10px; */
    padding-bottom: 15px;
}

.hours-list-wrapper ul li{
    padding: 10px 10px;
    /* margin-bottom: 5px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 6px;
}

.hours-list-wrapper ul li:nth-child(odd) {
    background: rgb(0 172 177 / 10%);
}

.hours-info-wrapper{
    border: 1px solid #ccc;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-left: none;
}

.hours-info-wrapper h3{
    font-size: 30px;
    font-family: 'Roboto-Bold';
    font-weight: normal;
    margin-bottom: 20px;
    color: var(--main-heading-color);
}


.hours-info-wrapper p{
    margin-bottom: 20px;
}

.faqpage .accordion-item{
    background-color: transparent;
    border: none;
}

.faqpage .accordion-button{
    background-color: var(--theme-color-4);
    margin-bottom: 15px;
    border-radius: 6px !important;
}

.faqpage .accordion-button:not(.collapsed){
    background-color: var(--theme-color-1);
    color: #fff;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--theme-color-2);
}

.accordion-button::after{
    font-family: "Fontawesome"; 
	font-weight: 400;
	content: "\f067";
    /* margin-left: 5px; */
    background-image: none;
}

.accordion-button:not(.collapsed)::after{
    font-family: "Fontawesome"; 
	font-weight: 400;
	content: "\f068";
    transform: none;
}


.gallery-title
{
    font-size: 36px;
    color: #42B32F;
    text-align: center;
    font-weight: 500;
    margin-bottom: 70px;
}
.gallery-title:after {
    content: "";
    position: absolute;
    width: 7.5%;
    left: 46.5%;
    height: 45px;
    border-bottom: 1px solid #5e5e5e;
}
.filter-button
{
    font-size: 14px;
    border: 1px solid var(--theme-color-2);
    border-radius: 5px;
    text-align: center;
    color: var(--bs-white);
    margin-bottom: 30px;
    background-color: var(--theme-color-2);

}
.filter-button:hover
{
    font-size: 14px;
    border: 1px solid var(--theme-color-2);
    border-radius: 5px;
    text-align: center;
    color: var(--theme-color-2);
    background-color: #fff;

}
.btn-default:active .filter-button:active
{
    background-color: var(--theme-color-2);
    color: white;
}

.port-image
{
    width: 100%;
}

.gallery_product
{
    margin-bottom: 30px;
    height: 200px;
    position: relative;
}

.gallery_product img{
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.portfolio-overlay{
    background-color: var(--theme-color-4);
    position: absolute;
    top: 0;
    left: 12px;
    width: 94%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    padding: 30px;
    transition: ease-in-out 0.3s;
}

.gallery_product:hover .portfolio-overlay{
    opacity: 1;
    background-color: rgb(0 172 177 / 60%);
    transition: ease-in-out 0.3s;
}

.portfolio-overlay h3{
    font-family: 'Roboto-Bold';
    font-weight: normal;
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}

.portfolio-overlay p{
    color: #fff;
    margin-bottom: 10px;
}

.search{
    margin-bottom: 30px;
    width: 100%;
    display: inline-block;
    position: relative;
}

.search-input{
    height: 50px;
    padding: 10px 50px 10px 20px;
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    border: none;
}

.search-submit{
    width: 50px;
    height: 50px;
    background-color: var(--theme-color-1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border: none;
    position: absolute;
    top: 0;
    right: 0;
}

.sidebar-list{
    margin-bottom: 30px;
}

.sidebar-list h3{
    background-color: var(--theme-color-2);
    padding: 15px 15px;
    color: #fff;
    font-family: 'Roboto-Bold';
    font-weight: normal;
    margin-bottom: 15px;
    font-size: 16px;
    border-radius: 6px;
}

.sidebar-list ul{
    list-style: none;
    margin: 0;
    padding: 0px;
}

.sidebar-list ul li{
    font-size: 12px;
    padding: 5px;
    border-bottom: 1px solid rgb(238, 238, 238);
    display: flex;
}

.sidebar-list ul li:last-child{
    border: none;
}

.sidebar-list ul li a:before{
    font-family: "Fontawesome"; 
	font-weight: 400;
	content: "\f105";
    margin-right: 5px;
    /* background-image: none; */
}

.sidebar-list ul.tags li{
    display: inline-block;
    border: none;
    /* margin-right: 5px; */
    margin-bottom: 5px;
    border-radius: 6px;
}

.sidebar-list ul.tags li a::before{
    display: none;
}

.sidebar-list ul.tags li a{
    padding: 10px;
    background-color: var(--theme-color-4);
}

.blog-list-wrapper{
    position: relative;
    margin: 0 0 25px;
}

.blog-list-wrapper img{
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
}

.blog-date{
    position: absolute;
    background: var(--theme-color-2);
    display: inline-block;
    padding: 15px 20px;
    text-align: center;
    color: #fff;
    border-radius: 6px;
    left: 32px;
    top: 32px;
}

.blog-date h3 {
    font-size: 34px;
    margin: 0;
    font-family: 'Roboto-Bold';
    font-weight: normal;
}

.blog-date span {
    font-size: 13px;
}

.blog-text-wrap {
    padding: 30px;
    border: 2px solid #f4f6fa;
}

.blog-comment-top {
    border-bottom: 1px solid #f4f6fa;
    margin: 0 0 16px;
}

.blog-text-wrap h3{
    font-size: 20px;
    margin-bottom: 15px;
    font-family: 'Roboto-Bold';
    font-weight: normal;
}

.blog-text-wrap p{
    margin-bottom: 20px;
}

.blog-comment-top p {
    font-size: 13px;
    display: inline-block;
    margin-bottom: 0;
}

.blog-comment-top i {
    font-size: 13px;
    color: var(--theme-color-2);
    margin-right: 8px;
}

.blog-content-wrap {
    padding: 30px 0px;
    position: relative;
}

.blog-text-wrap h2{
    font-size: 32px;
    margin-bottom: 15px;
    font-family: 'Roboto-Bold';
    font-weight: normal;
}

.blog-detail h5 {
    font-weight: normal;
    letter-spacing: 1px;
    line-height: 1.5;
    margin-bottom: 15px;
    font-family: 'Roboto-Medium';
}

.blog-detail .blog-text-wrap{
    padding-left: 0;
    padding-right: 0;
}

.blog-testi {
    background: var(--theme-color-1);
    padding: 12px;
    margin: 0 0 25px;
}

.blog-content-testi {
    border: 1px solid #ccc;
    padding: 30px;
    color: #fff;
}

.blog-content-testi i {
    font-size: 42px;
}

.blog-center-img{
    height: auto !important;
}

.tag-block {
    border-top: 1px solid #f4f6fa;
    border-bottom: 1px solid #f4f6fa;
    padding: 14px 0;
}

.tags span {
    display: inline-block;
    font-weight: 500;
    margin-right: 12px;
    font-size: 15px;
}

.tags ul {
    padding: 0;
    margin: 0;
    display: inline-block;
}

.tags ul li {
    list-style: none;
    display: inline-block;
    margin-right: 10px;
}

.tags ul li a {
    font-size: 12px;
    color: #3c3f42;
    background: #f4f6fa;
    padding: 6px 14px;
    border-radius: 22px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.blog-author{
    padding: 14px 0;
    display: flex;
}

.blog-author img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    float: left;
    margin-right: 28px;
}

.blog-author-content{
    width: 100%;
}

.blog-author-content h4{
    font-size: 18px;
    margin-bottom: 15px;
    font-family: 'Roboto-Bold';
    font-weight: normal;
}

.blog-author-content P{
    font-size: 12px;
    margin-bottom: 10px;
}

.blog-author-content ul{
    padding: 0;
    margin: 0;
}

.blog-author-content ul li{
    list-style: none;
    display: inline-block;
}

.blog-author-content ul li a{
    color: var(--heading-color);
    font-size: 14px;
    margin-right: 6px;
}

.comment-wrap {
    padding: 25px 0;
}

.comment-wrap h3 {
    margin: 0 0 24px;
    font-size: 25px;
    font-family: 'Roboto-Bold';
    font-weight: normal;
}

.media {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
}

.comment-wrap .media img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin-right: 20px;
}

.media-body {
    -ms-flex: 1;
    flex: 1;
}

.comment-wrap .media-body span {
    display: inline-block;
    font-size: 15px;
}

.comment-wrap .media-body span i {
    margin-right: 8px;
}

.comment-wrap .media-body a {
    float: right;
    font-size: 15px;
    color: var(--theme-color-2);
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0,0,0,.1);
}

.blog-comment-wrap h3 {
    font-weight: 600;
    margin: 20px 0;
}

.blog-comment-wrap input {
    height: 50px;
    padding: 0 0.85rem;
}

textarea.form-control {
    height: auto;
}

.form-group{
    margin-bottom: 20px;
    position: relative;
}

.contact-detail {
    margin: 0 0 10px;
}

.contact-detail h4 {
    margin: 0 0 22px;
    font-size: 19px;
}

.contact-detail i {
    background: var(--theme-color-2);
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    padding: 13px 0;
    font-size: 13px;
}

.contact-detail-info {
    display: inline-block;
    vertical-align: top;
    margin: 0 0 0 16px;
}

.get-in-touch {
    margin: 0;
    background: var(--theme-color-1);
    position: relative;
    padding: 45px 40px;
    overflow: hidden;
}

.get-in-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    opacity: .4;
}

.get-in-touch h3 {
    font-size: 30px;
    color: #fff;
    margin: 0 0 20px;
}

.get-in-touch .form-group {
    position: relative;
    margin-bottom: 20px;
}

.get-in-touch .form-group input {
    padding: 10px 14px;
}

.get-in-touch textarea {
    margin: 0 0 25px;
    padding: 10px 14px;
    font-size: 13px;
    height: 100px;
}

.map-img-wrap {
    position: relative;
}

.get-in-touch.contact2 {
    margin: -550px 0 0;
}

.get-in-info-card{
    box-shadow: 0px 0px 12px 0px rgb(0 0 0 / 8%);
    background-color: #FFFFFF;
    border: 1px solid #ccc;
    padding: 30px 30px 30px 30px;
    /* margin-bottom: 30px; */
    border-radius: 10px;
    text-align: center;
    height: 100%;
}

.get-in-icons{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color-2);
    background-color: var(--theme-color-4);
    font-size: 30px;
    margin: auto;
    margin-bottom: 20px
}

.get-in-info-card h3{
    font-size: 24px;
    margin-bottom: 10px;
}

input{
    font-size: 14px !important;
}

input, input:focus, input:active, input:hover{
    outline: none;
    box-shadow: none;
}

.contact-form3 input.form-control{
    height: 50px;
    padding: 10px 15px;
    border-radius: 6px;
}

.contact-form3 textarea.form-control{
    height: 150px;
    padding: 10px 15px;
    border-radius: 6px;
}

.btn-main:hover{
    background-color: #0fabc0;
    color: #fff;
}

.btn-secondary:hover{
    background-color: #23a0a4;
    color: #fff;
}

.site-tp-wrapper h2{
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--theme-color-1);
}

.site-tp-wrapper .quote-content{
    font-style: italic;
    font-weight: normal;
    font-family: 'Roboto-Bold'
}

.site-tp-wrapper p{
    margin-bottom: 20px;
}

.site-tp-wrapper h3{
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--theme-color-1);
}

.site-tp-wrapper a{
    color: var(--theme-color-2);
}

.doctors-box a{
    margin: auto;
}

.service-image-wrapper{
    position: relative;
    width: 100%;
    height: 100%;
    display: inline-block;
}

.service-image-wrapper img{
    position: relative;
    width: 100%;
    height: 100%;
    display: inline-block;
    border-radius: 6px;
    object-fit: cover;
}

.service-info-quote-text{
    font-style: italic;
    font-weight: normal;
    font-family: 'Roboto-Bold';
    color: var(--theme-color-2);
    font-size: 20px;
    margin-bottom: 20px;
}

.success-msg-contact {
    display: none;
    transition: ease-out 0.3s;
}

.success-msg-contact-display {
    position: absolute;
    display: block;
    transition: ease-out 0.3s;
    padding: 10px;
    background: var(--theme-color-2);
    font-size: 14px;
    border-radius: 6px;
    z-index: 10;
    bottom: 72px;
    left: 50%;
    padding-left: 10px;
    color: #fff;
    width: 265px;
    transform: translate(-50%, 50%);
}

.success-msg-contact-display p{
    display: flex;
    align-items: center;
}

.check-success-icon {
    background: var(--theme-color-3);
    padding: 10px;
    margin-right: 10px;
    color: #fff;
    border-radius: 50%;
    width: 30px;
    min-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-msg-contact {
    display: none;
    transition: ease-out 0.3s;
    opacity: 0;
}

.error-msg-contact-display {
    display: block;
    transition: ease-out 0.3s;
    opacity: 1;
    position: absolute;
    bottom: -8px;
    font-size: 10px;
    left: 0;
    margin: 0;
    line-height: 0;
    color: red;
}

#loading {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: fixed;
	display: block;
	/* opacity: 0.7; */
	background-color: #fff;
	z-index: 9999;
	text-align: center;
}

#loading-image {
	position: absolute;
	top: 40%;
	z-index: 999;
	transform: translate(-50%);
	background-color: #fff;
	display: inline-block;
}

#backTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: var(--theme-color-1);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
    width: 50px;
    height: 50px;
    line-height: 18px;
}
  
#backTop:hover {
    background-color: var(--theme-color-1);
}