@font-face {
    font-family: DMSerifDisplay-Regular;
    src: url('../font/DMSerifDisplay-Regular.ttf');
}

@font-face {
    font-family: Gilroy-Regular;
    src: url('../font/Gilroy-Regular.ttf');
}

@font-face {
    font-family: Gilroy-Medium;
    src: url('../font/Gilroy-Medium.ttf');
}

@font-face {
    font-family: Gilroy-SemiBold;
    src: url('../font/Gilroy-SemiBold.ttf');
}

@font-face {
    font-family: Gilroy-Bold;
    src: url('../font/Gilroy-Bold.ttf');
}

:root{
    --theme-color-1: #2AA7FF;
    --theme-color-2: #FF684C;
    --theme-color-3: #4CD080;
    --theme-color-4: #FFB200;
    --theme-color-5: #1B3C74;
    --body-bg: #ffffff;
    --font-color: #44474E;
    --heading-color: #1B3C74;
    --font-white: #ffffff;
}

body{
    background-color: var(--body-bg);
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 25px;
    font-family: 'Gilroy-Regular';
    font-weight: normal;
    color: var(--font-color);
}


h1, h2, h3{
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'DMSerifDisplay-Regular';
    font-weight: normal;
}

h4, h5{
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'DMSerifDisplay-Regular';
    font-weight: normal;
}

p{
    margin-bottom: 0;
}

a, a:hover, a:active, a:focus{
    color: inherit;
    text-decoration: none;
}

ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.theme-btn{
    border-radius: 6px;
    height: 48px;
    text-align: center;
    border: none;
    max-width: max-content;
    width: auto;
    padding:10px 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Gilroy-Medium';
    font-weight: normal;
}

.btn-main{
    color: #fff;
    background-color: var(--theme-color-1);
    transition: all .5s ease-out;
}

.btn-main:hover{
    background-position: left bottom;
    color: #fff;
}

.btn-secondary{
    color: #fff;
    background-color: var(--theme-color-5);
    transition: all .5s ease-out;
}

.btn-secondary:hover{
    background-position: left bottom;
    color: #fff;
}

.navbar{
    position: absolute;
    width: 100%;
    z-index: 1030;
    left: 0;
    transition-duration: 0.5s;
    transition: all 0.35s ease;
} 

.navbar.fixed-top{
    position: fixed;
    background-color: var(--body-bg);
    transition-duration: 0.5s;
    transition: all 0.35s ease;
}


.navbar-dark .navbar-nav .nav-link{
    color: var(--font-color);
    font-family: 'Gilroy-Medium';
    font-weight: normal;
    height: 100%;
    display: flex;
    align-items: center;
}


.dropdown .nav-link:after{
    font-family: "Fontawesome"; 
	font-weight: 400;
	content: "\f107";
    margin-left: 5px;
    font-size: 13px;
}

.navbar-nav .nav-item{
    margin-right: 10px;
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover{
    color: var(--theme-color-1);
}

@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{
    background: transparent;
    box-shadow: transparent;
    transition: none !important;
}

.dropdown-menu{
    min-width: 12rem;
}


.dropdown-menu li{
    margin: 5px 0px 5px 0px;
} 

.dropdown-menu li a{
    color: var(--font-color);
    font-size: 16px;
    font-family: 'Gilroy-Medium';
    font-weight: normal;
    transition: ease-in-out 0.3s;
}

.navbar .nav-item:hover .dropdown-menu{
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
    border: none;
    /* position: relative; */
}

.dropdown-menu li a:hover{
    color: var(--theme-color-1);
    transition: ease-in-out 0.3s;
    margin-left: 5px;
    background-color: transparent;
}

.dropdown-menu{
    transition: ease-in-out 0.3s;
}

.banner-section{
    background-image: url('../image/main-banner-bg.png');
    /* background: linear-gradient(to bottom, #370b6f, #00429b, #006dba, #0095ce, #2dbcdc), url('../images/banner-bg.png'); */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 800px;
    display: inline-block;
    overflow: hidden;
}

.banner-grid{
    width: 100%;
    height: 100%;
    display: table;
    position: relative;
    z-index: 15;
}

.banner-grid-wrapper{
    vertical-align: middle;
    display: table-cell;
}

.banner-shape{
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content-wrapper{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    width: 100%;
    /* animation: left_to_right 3s ease; */
}

.banner-main-heading{
    font-size: 55px;
    line-height: 70px;
    margin-bottom: 20px;
    color: var(--heading-color);
}

.banner-description{
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 23px;
}

.banner-btns{
    width: 100%;
    display: flex;
}

.banner-image-wrapper{
    height: 100%;
    display: flex;
    align-items: center;
}

#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);
}


.banner-list-info{
    position: absolute;
    bottom: 4rem;
    width: 50%;
    display: inline-block;
}

.banner-list-info ul{
    display: flex;
}

.banner-list-info ul li{
    flex: 30%;
}

.banner-list-info ul li h3{
    font-size: 28px;
}

.section-small-heading{
    color: var(--theme-color-1);
    margin-bottom: 10px;
    font-family: 'Gilroy-Medium';
    font-weight: normal;
    font-size: 16px;
}

.section-main-heading{
    color: var(--theme-color-5);
    font-size: 40px;
    line-height: 55px;
}

.section{
    padding: 60px 0px;
    position: relative;
}

.services-card-wrapper{
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(163, 163, 163, 0.25);
    border-radius: 10px;
    padding: 20px;
    height: 100%;
}

.service-card-heading{
    font-size: 28px;
    margin: 20px 0px;
}

.service-explore-link{
    margin-top: 20px;
    color: var(--theme-color-5);
    font-family: 'Gilroy-SemiBold';
    display: inline-block;
}

.about-section-img-small img{
    width: 100%;
    height: 60%;
    object-fit: cover;
    border-radius: 30px 0px;
}

.about-section-img-small{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.about-section-info{
    height: 100%;
    width: 100%;
    display: inline-block;
}

.about-section-img{
    text-align: center;
}

.section.contact{
    background-image: url('../image/main-banner-1.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
    display: inline-block;
    padding-top: 5rem;
    padding-bottom: 25rem;
}

.contact-box{
    background: var(--theme-color-1);
    border-radius: 6px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 20px;
}

.contact-box-icon{
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    padding: 10px;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-box-info h3{
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
}

.contact-box-info a{
    color: #fff;
}

.contact-section-img{
    width: 94%;
    height: 100%;
    position: relative;
}

.contact-section-img img.contact{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.contact-award-layer{
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(163, 163, 163, 0.25);
    border-radius: 10px;
    position: absolute;
    top: -30px;
    padding: 15px;
    left: -40px;
    text-align: center;
}

.contact-skills-layer{
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(163, 163, 163, 0.25);
    border-radius: 10px;
    position: absolute;
    bottom: -45px;
    padding: 15px;
    right: -30px;
}

.contact-skills-layer h3{
    font-size: 16px;
    margin-bottom: 10px;
}

.meet-form{
    position: relative;
    margin-top: -16rem;
}

.meet-form-wrapper{
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(163, 163, 163, 0.25);
    border-radius: 10px;
    padding: 30px;
}

.form-input-wrapper{
    display: inline-block;
    position: relative;
    width: 100%;
    margin-bottom: 25px;
}

.meet-form-input{
    background: #F2F6F9;
    border-radius: 10px;
    height: 51px;
    padding: 10px 30px 10px 10px;
    width: 100%;
    position: relative;
    border: none; 
    color: #9E9FA0;
}

.meet-form-input::placeholder{
    color: #9E9FA0;
}


.form-input-wrapper .theme-btn{
    width: 100%;
    max-width: 100%;
}

.form-input-wrapper i{
    position: absolute;
    top: 16px;
    right: 10px;
    color: #9E9FA0;
}

.section-choose-img-box{
    background: url('../image/main-banner-1.png');
    border-radius: 10px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    display: inline-block;
    position: relative;
    /* height: 310px; */
    padding: 40px;
    margin-top: 5rem;

}

.section-choose-img-box h3{
    font-size: 24px;
    line-height: 33px;
    margin-bottom: 20px;
}

.section-choose-img-box a{
    color: var(--theme-color-1);
    text-decoration: underline;
    font-family: 'Gilroy-SemiBold';
    font-weight: normal;
}

.section-choose-img-box img.person{
    position: absolute;
    top: -55px;
    width: 230px;
    right: 10px;
}

.choose-inner-card{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 20px 10px;
}

.choose-inner-icon{
    max-width: 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.choose-inner-icon.one{
    background: rgba(42, 167, 255, 0.2);
}

.choose-inner-icon.two{
    background: rgba(255, 104, 76, 0.2);
}

.choose-inner-icon.three{
    background: rgba(76, 208, 128, 0.2);
}

.choose-inner-icon.four{
    background: rgba(255, 178, 0, 0.2);
}

.choose-inner-info h3{
    font-size: 24px;
    line-height: 38px;
    margin: 15px 0px;
}

.section.testimonial{
    background-image: url('../image/main-banner-2.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
    display: inline-block;
}

.testimonial-card{
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(163, 163, 163, 0.25);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    height: 100%;
}

.tc-author{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.tc-author-info{
    display: flex;
    align-items: center;
    justify-content: center;
}

.tc-author-info-text h3{
    font-size: 24px;
    line-height: 33px;
}

.tc-author-info img{
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 15px;
}

.tc-author-stars i{
    color: #FFAB07;
}

/* the slides */
.slick-slide {
    margin: 0 15px;
}

/* the parent */
.slick-list {
    margin: 0 -15px;
}

.carosel-nav-left-testi{
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(163, 163, 163, 0.25);
    width: 45px;
    height: 45px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color-1);
    border: none;
    margin-right: 15px;
}

.carosel-nav-right-testi{
    background: var(--theme-color-1);
    box-shadow: 0px 0px 20px rgba(163, 163, 163, 0.25);
    width: 45px;
    height: 45px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--font-white);
    border: none;
}

.carosel-arrow{
    display: flex;
}

.map-img{
    display: flex;
    height: 100%;
    align-items: center;
}

.team-card{
    background: url('../image/main-banner-1.png');
    border-radius: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    display:inline-block;
    position: relative;
    padding: 30px 10px;
    text-align: center;
    padding-bottom: 0;
    height: 100%;
}

.team-card h3{
    font-size: 20px;
    line-height: 33px;
}

.team-card p{
    color: var(--theme-color-1);
    margin-bottom: 30px;
}

.team-social-btns li{
    display: inline-block;
}

.team-social-btns li a{
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(163, 163, 163, 0.25);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin: 0px 3px;
    color: var(--theme-color-1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-social-btns{
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: ease-in-out 0.3s;
}

.team-card:hover .team-social-btns{
    opacity: 1;
    visibility: visible;
    transition: ease-in-out 0.3s;
}

.faq-image-wrapper{
    border-radius: 10px;
    width: 320px;
    height: 100%;
    background-color: var(--theme-color-3);
    padding: 5rem;
    position: relative;
    height: 350px;
    margin: auto;
}

.faq-image-wrapper img.faq-bg{
    position: absolute;
    top: -59px;
    height: 410px;
}

.faq-content-tab .accordion-item {
    background-color: transparent;
    border: none;
}

.faq-content-tab .accordion-button{
    padding: 10px 0px;
    margin-bottom: 10px;
    background-color: transparent;
}

.faq-content-tab .accordion-body{
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(163, 163, 163, 0.25);
    border-radius: 10px;
    margin-bottom: 20px;
}

.faq-content-tab .accordion-button:not(.collapsed){
    color: var(--heading-color);
    background-color: transparent;
    box-shadow: none;
}

.faq-content-tab .accordion-button{
    font-size: 18px;
    line-height: 25px;
    color: var(--heading-color);
}

.section.faq{
    background-image: url('../image/main-banner-1.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
    display: inline-block;
}

.faq-content-tab .accordion-button::after{
    content: "\f067";
    font-family: FontAwesome;
    font-weight: normal;
    position: relative;
    background-image: none;
}

.faq-content-tab .accordion-button:not(.collapsed)::after{
    content: "\f068";
    font-family: FontAwesome;
    font-weight: normal;
    position: relative;
    background-image: none;
}

.faq-info-box{
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(163, 163, 163, 0.25);
    border-radius: 10px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 20px;
    bottom: -40px;
    right: -40px;
}

.faq-info-box img{
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.faq-info-box h3{
    font-size: 16px;
}

.blog-card-wrapper{
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(163, 163, 163, 0.25);
    border-radius: 10px;
    height: 100%;
}

.blog-card-image{
    position: relative;
    width: 100%;
    height: 230px;
}

.blog-card-image img{
    border-radius: 10px;
    height: 230px;
    width: 100%;
    object-fit: cover;
}

.blog-posted{
    position: absolute;
    background-color: var(--theme-color-1);
    right: 15px;
    bottom: -25px;
    width: 50px;
    text-align: center;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    line-height: 18px;
    font-size: 14px;
    border-radius: 6px;
}

.blog-card-info{
    padding: 30px 20px;
    position: relative;
    height: 100%;
}

.blog-post-date{
    font-size: 24px;
    margin: 10px 0px;
}

.read-more-link{
    font-size: 16px;
    line-height: 19px;
    font-family: 'Gilroy-SemiBold';
    color: var(--heading-color);
}

.blog-postrd-by{
    font-size: 12px;
}

.subscribe-container{
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(163, 163, 163, 0.25);
    border-radius: 10px;
    padding: 30px;
}

.subscribe-input-wrapper{
    position: relative;
    height: 100%;
}

.subscribe-input-wrapper form{
    position: relative;
    height: 100%;
}

.subscribe-input{
    background: #F2F6F9;
    border-radius: 10px;
    height: 60px;
    padding: 10px 135px 10px 30px;
    width: 100%;
    position: relative;
    border: none;
}

.subscribe-input-wrapper form i{
    position: absolute;
    top: 22px;
    z-index: 10;
    left: 5px;
    color: #9E9FA0;
}

.subscribe-input-wrapper form .theme-btn{
    position: absolute;
    top: 5px;
    right: 5px;
}

footer{
    background-color: var(--heading-color);
    padding-top: 60px;
    display: inline-block;
    position: relative;
    width: 100%;
}

.footer-about-wrapper h3{
    color: var(--font-white);
    font-size: 40px;
    margin-bottom: 20px;
}

.footer-about-wrapper p{
    color: var(--font-white);
    margin-bottom: 20px;
}

.footer-social-list li{
    display: inline-block;
}

.footer-social-list li a{
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgb(163 163 163 / 5%);
    width: 35px;
    height: 35px;
    color: var(--theme-color-1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.footer-block-heading{
    font-size: 24px;
    line-height: 33px;
    color: var(--font-white);
    margin-bottom: 30px;
}

.footer-link-list{
    display: flex;
}

.footer-link-list ul{
    display: inline-block;
    flex: 50%;
}

.footer-link-list ul li{
    margin-bottom: 10px;
}

.footer-link-list ul li a{
    color: var(--font-white);
}

.footer-link-list ul li a::before{
    content: "\f105";
    font-family: FontAwesome;
    font-weight: normal;
    position: relative;
    margin-right: 10px;
}

.footer-hours-list li{
    color: var(--font-white);
    display: flex;
    margin-bottom: 10px;
}

.footer-hours-list li span{
    flex: 50%;
}

.footer-bottom-wrapper{
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 30px;
    margin-top: 20px;
    padding-bottom: 30px;
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: 14px;
}

.footer-hours-list li span.day{
    color: var(--theme-color-1);
}

.team-card img{
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.read-more-link:hover{
    color: var(--theme-color-1);
}

.page-banner-section{
    background-image: url('../image/main-banner-1.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    display: inline-block;
    height: 400px;
}

.page-banner-inner{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.page-banner-inner ul li{
    display: inline-block;
}

.page-banner-inner ul li span.slash{
    margin: 0px 5px;
}

.page-heading{
    font-size: 40px;
    margin-bottom: 10px;
    text-align: center;
}

.btn-main:hover{
    background-color: #1171b5;
    transition: ease-in-out 0.3s;
}

.btn-secondary:hover{
    background-color: #1757c3;
}

.section.dentist-appointment{
    /* background-image: url('../image/dentist-appointment-bg.jpg'); */
    background:linear-gradient( rgba(42, 167, 255, 0.7) 100%, rgba(42, 167, 255, 0.7)100%),url("../image/dentist-appointment-bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    display: inline-block;
    position: relative;
}

b{
    font-family: 'Gilroy-Bold';
    font-weight: normal;
}

.dentist-appointment-wrapper p{
    font-size: 38px;
    line-height: 1.4;
    color: var(--font-white);
}

.dentist-appointment-btns{
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: center;
}

.theme-btn.btn-main.additional{
    background-color: transparent;
    border: 1px solid var(--font-white);
    color: var(--font-white);
}

.sidebar-search{
    position: relative;
    margin-bottom: 30px;
}

.search-input{
    width: 100%;
    padding: 15px;
    height: 51px;
    border-radius: 6px;
    border: 1px solid #ccc;
    position: relative;
}

.search-btn{
    position: absolute;
    border: none;
    top: 12px;
    color: var(--theme-color-1);
    right: 10px;
    background-color: transparent;
}

.widget-heading{
    font-size: 20px;
    margin-bottom: 20px;
}

.popular-service-list li{
    padding: 15px 0px;
}

.popular-service-list li a{
    font-family: 'Gilroy-Medium';
    font-weight: normal;
}

.popular-service-list li:hover{
    background-color: #efefef;
    border-left: 3px solid var(--theme-color-1);
    padding-left: 10px;
    transition: ease-in-out 0.3s;
}

.popular-service-list li a:hover{
    color: var(--theme-color-1);
    transition: ease-in-out 0.3s;
}

.sidebar-working-hours{
    margin: 20px 0px;
    background-color: var(--theme-color-1);
    border-radius: 6px;
    padding: 20px;
}

.widget-working-hours li{
    margin: 10px 0px;
    display: flex;
    justify-content: space-between;
    color: var(--font-white);
}

.sidebar-working-hours .widget-heading{
    color: var(--font-white);
}

.sidebar-help-info{
    border: 1px solid var(--theme-color-1);
    border-radius: 6px;
    padding: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.sidebar-help-info h3{
    margin: 15px 0px;
    font-size: 20px;
}

.sidebar-help-info p{
    font-size: 20px;
    font-family: 'Gilroy-SemiBold';
    font-weight: normal;
}

.department-content-wrapper .service-img{
    width: 100%;
    height: 350px;
    object-fit: cover;
    /* margin-bottom: 30px; */
}

.service-main-heading{
    margin: 20px 0px;
    font-size: 24px;
}

.service-small-heading{
    margin: 20px 0px;
    font-size: 20px;
}

.department-content-wrapper p{
    margin-bottom: 20px;
}

.quote-description{
    font-family: 'Gilroy-Medium';
    font-weight: normal;
    font-style: italic;
}

.service-small-img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.pricing-heading-price{
    display: flex;
    justify-content: space-between;
    margin: 15px 0px;
}

.pricing-service-image img{
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
}

.pricing-service-info{
    margin: 15px 0px;
}

.pricing-service-image{
    position: relative;
    overflow: hidden;
}

.offer-banner{
    top: 10px;
    position: absolute;
    width: 200px;
    padding: 3px;
    background-color: #4CD080;
    z-index: 10;
    right: -68px;
    color: #fff;
    text-align: center;
    transform: rotate(35deg);
}

.pricing-contact{
    width: 100%;
    max-width: 100%;
    border-radius: 0px;
}

.error-page{
    width: 100%;
    height: 100vh;
    position: relative;
}

.error-page-inner h1{
    color: var(--theme-color-1);
    font-size: 150px;
}

.text-gray-silver {
    color: #c0c0c0 !important;
}

.error-page-inner{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-info-oops{
    margin: 10px;
    font-family: 'Gilroy-SemiBold';
    font-size: 28px;
}

.comingsoon-container {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../image/dental-tool.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
    display: flex;
    background-attachment: initial;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
}

.comingsoon-page-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.comingsoon-page-wrapper h2 {
    font-size: 45px;
    margin-bottom: 20px;
    color: #fff;
}

.comingsoon-page-wrapper p {
    color: #fff;
}

.soon-subscribe {
    margin: 20px 0px;
    width: 80%;
}

.soon-form-wrapper {
    width: 100%;
    position: relative;
}

.soon-input {
    width: 100%;
    height: 60px;
    background-color: #fff;
    border-radius: 30px;
    padding: 10px 15px;
    border: none;
    position: relative;
}

.soon-submit {
    position: absolute;
    padding: 10px 15px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color-1);
    color: #fff;
    border-radius: 30px;
    width: 120px;
    top: 5px;
    right: 5px;
    border: none;
}

.soon-counter {
    width: 100%;
    margin-top: 40px;
}

.soon-counter-list {
    display: flex;
    align-items: center;
    justify-content: center;
}

.soon-counter-list div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100px;
    height: 100px;
    background-color: rgb(42 167 255 / 30%);
    border-radius: 20px;
    margin: 0px 10px;
    font-size: 34px;
    font-family: 'Gilroy-Regular';
    font-weight: normal;
    color: var(--theme-color-1);
    /* border: 1px solid #6b6b6b; */
}

.soon-counter-list div span {
    margin-top: 8px;
    font-size: 16px;
    color: var(--heading-color);
    font-family: 'Gilroy-Regular';
    font-weight: normal;
    color: #fff;
}

.footer-heading {
    font-size: 20px;
    line-height: 25px;
    color: #fff;
    margin-bottom: 30px;
}

.footer-social-list li {
    display: inline-block;
    margin-right: 8px;
}

.footer-social-list li a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(42, 167, 255, 0.3);
    border-radius: 6px;
    color: var(--theme-color-1);
}

.policy-main-heading {
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.policy-description {
    margin-bottom: 15px;
}

.sidebar-tags{
    margin-top: 30px;
}

.sidebar-tags ul li{
    display: inline-block;
    margin-right: 5px;
    border: 1px solid var(--theme-color-4);
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 6px;
}

.post-details{
    margin-top: 15px;
}

.post-details li{
    display: inline-block;
    margin-right: 10px;
}

.post-details li i{
    color: var(--theme-color-1);
    margin-right: 5px;
}

.share-article{
    text-align: center;
    margin: 3rem 0rem;
}

.share-article li{
    display: inline-block;
    margin: 0px 3px;
}

.share-article p{
    font-style: italic;
}

.share-article li a{
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: var(--theme-color-1);
}

.comments-wrapper{
    display: flex;
    align-items: flex-start;
}

.comments-author-image{
    max-width: 70px;
    height: 70px;
    margin-right: 15px;
}

.comments-author-image img{
    border-radius: 6px;
}

.comments-author-info h3{
    font-size: 18px;
}

.comments-author-info p{
    font-size: 14px;
    margin-bottom: 10px;
}

.comment-reply-link{
    font-family: 'Gilroy-SemiBold';
    color: var(--theme-color-1);
    font-size: 14px;
}

.comments-list li{
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ccc;
}

.comments-list > li:last-child{
    border: none;
    margin-bottom: 0;
}

.reply-list{
    margin-left: 100px;
    margin-top: 30px;
}

.reply-input {
    height: 51px;
    width: 100%;
    display: inline-block;
    border-radius: 6px;
    border: 1px solid #ccc;
    padding: 10px 15px;
}

.reply-form-wrapper{
    margin-bottom: 20px;
}

.comment-textarea {
    width: 100%;
    display: inline-block;
    border-radius: 6px;
    border: 1px solid #ccc;
    padding: 10px 15px;
}

.contact-left-box{
    /* background-image: url('../image/main-banner-bg.png'); */
    background:linear-gradient( rgba(42, 167, 255, 0.7) 100%, rgba(42, 167, 255, 0.7)100%),url("../image/dental-bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 100%;
    display: inline-block;
    overflow: hidden;
    border-radius: 10px;
    padding: 50px;
}

.contact-left-box h3{
    color: #fff;
    margin-bottom: 20px;
}

.contact-left-box p{
    color: #fff;
    margin-bottom: 40px;
}

.contact-info-list li{
    margin-bottom: 20px;
    color: #fff;
    display: flex;
}

.contact-info-list li i{
    color: var(--theme-color-4);
    margin-right: 10px;
}

.contact-social{
    margin-top: 5rem;
}

.contact-social li{
    display: inline-block;
    margin-right: 5px;
}

.contact-social li a{
    background-color: var(--theme-color-5);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
}

.meet-form-textarea {
    background: #F2F6F9;
    border-radius: 10px;
    padding: 10px 30px 10px 10px;
    width: 100%;
    position: relative;
    border: none;
    color: #9E9FA0;
}

.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-1);
    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;
}

.check-success-icon i{
    position: relative;
    top: 0;
    left: 0;
    color: var(--font-white);
}