@font-face {
    font-family: CenturyGothic-Regular;
    src: url('../fonts/CenturyGothic-Regular.ttf');
}

@font-face {
    font-family: CenturyGothic-Bold;
    src: url('../fonts/CenturyGothic-Bold.TTF');
}

:root {
    --theme-color-1: #5c5c5c;
    --theme-color-2: #5c5c5c;
    --theme-color-3: #5c5c5c;
    --bg-white: #ffffff;
    --bg-black: #07070a;
    --font-color: #646464;
    --heading-color: #1f2324;
    --font-white: #ffffff;
    --font-black: #000000;
    --bg-color1: #d6c5e2;
    --bg-color2: #ede4da;
}


body {
    background-color: var(--bg-white);
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.5;
    font-family: 'CenturyGothic-Regular', sans-serif;
    font-weight: normal;
    color: var(--font-color);
}

h1,
h2,
h3 {
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'CenturyGothic-Bold', sans-serif;
    font-weight: normal;
}

h4,
h5 {
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'CenturyGothic-Bold', sans-serif;
    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: 30px;
    height: 46px;
    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: 'CenturyGothic-Regular', sans-serif;
    font-weight: normal;
}

.btn-main {
    color: var(--font-white);
    background-color: var(--theme-color-2);
    transition: all .5s ease-out;
}

.btn-main:hover {
    background-position: left bottom;
    color: #fff;
    background-color: #623819;
}

.btn-secondary {
    color: var(--theme-color-1);
    background-color: var(--font-white);
    transition: all .5s ease-out;
}

.btn-secondary:hover {
    background-position: left bottom;
    color: #fff;
    background-color: var(--theme-color-1);
}

.main-content-container {
    width: 100%;
    position: relative;
    display: inline-block;
}

#loading {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: fixed;
	display: block;
	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;
}

.error-msg{
    display: none;
    transition: ease-out 0.3s;
    opacity: 0;
}
.error-msg-display{
    display: block;
    transition: ease-out 0.3s;
    opacity: 1;
    position: absolute;
    bottom: -15px;
    font-size: 10px;
    left: 0px;
    margin: 0;
    line-height: 0;
    color: red;
}
.success-msg{
    display: none;
    transition: ease-out 0.3s;
}
.success-msg-display{
    position: absolute;
    display: block;
    transition: ease-out 0.3s;
    padding: 10px;
    background: #2e7dab;
    font-size: 14px;
    z-index: 10;
    top: 65px;
    left: 0;
	color: #fff;
}

.subscribe-inner{
	position: relative;
}

.subscribe-inner form{
	position: relative;
}

.check-success-icon{
	margin-right: 10px;
    padding: 10px;
    color: #fff;
}

.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;
}
.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-3);
    font-size: 14px;
    z-index: 10;
    bottom: -150px;
    left: 0;
    padding-left: 3px;
	color: #fff;
	width: 265px;
}
.success-msg p, .success-msg-display p{
    margin-bottom: 0;
}
.error-msg p, .error-msg-display p{
    margin-bottom: 0;
}

input:hover, input:focus, input:active{
    box-shadow: none;
    outline: none;
}

.navbar{
    position: absolute;
    width: 100%;
    z-index: 1030;
    left: 0;
    background: transparent;
    box-shadow: transparent;
    transition: none !important;
    height: auto;
    flex-direction: column;
} 

.navbar-dark .navbar-nav .nav-link{
    color: var(--font-white);
    font-family: 'CenturyGothic-Regular', sans-serif;
    font-weight: normal;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.dropdown .nav-link:after{
    font-family: "Fontawesome", sans-serif; 
	font-weight: 400;
	content: "\f107";
    margin-left: 5px;
    font-size: 13px;
}

.navbar.fixed-top{
    position: fixed;
    background-color: var(--bg-white);
    transition: all 0.35s ease;
    border-bottom: 1px solid #dee2e6;
}

.navbar .navbar-brand .logo-color{
    display: none;
}

.navbar .navbar-brand .logo-white{
    display: block;
}

.navbar.fixed-top .navbar-brand .logo-color{
    display: block;
}

.navbar.fixed-top .navbar-brand .logo-white{
    display: none;
}

.navbar.fixed-top .nav-link{
    color: var(--font-black) !important;
}

.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);
}

.navbar.fixed-top .nav-link:hover{
    color: var(--theme-color-1) !important;
}

.nav-item.search .btn-main{
    white-space: nowrap;
}

@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;
}

.dropdown-menu{
    min-width: 12rem;
    transition: ease-in-out 0.3s;
    border: none;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
}

.dropdown-menu li{
    margin: 5px 0px 5px 0px;
} 

.dropdown-menu li a{
    color: var(--font-black);
    font-size: 16px;
    font-family: 'CenturyGothic-Regular', sans-serif;
    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;
}

.dropdown-menu li a:hover{
    color: var(--theme-color-1);
    transition: ease-in-out 0.3s;
    margin-left: 5px;
    background-color: transparent;
}

.topbar{
    background-color: transparent;
    padding: 12px 0px;
    width: 100%;
    border-bottom: 1px dashed #464646;
    margin-bottom: 15px;
}

.topbar-contact-wrapper ul li{
    display: inline-block;
    margin-right: 15px;
}

.topbar-contact-wrapper ul li a{
    color: var(--font-white);
}

.topbar-contact-wrapper ul li a i{
    color: var(--font-white);
    margin-right: 10px;
}

.topbar-social{
    text-align: right;
}

.topbar-social li{
    display: inline-block;
    margin-left: 5px;
}

.topbar-social li a{
    color: var(--font-white);
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar.fixed-top .topbar-contact-wrapper ul li a{
    color: var(--font-black);
}

.navbar.fixed-top .topbar-contact-wrapper ul li a i{
    color: var(--theme-color-1);
}

.navbar.fixed-top .topbar-social li a{
    color: var(--theme-color-1)
}

.navbar-brand img{
    width: 180px;
}

section{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 60px 0px;
}

.section-heading-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
    z-index: 11;
}

.section-heading{
    font-size: 32px;
    font-family: 'CenturyGothic-Bold', sans-serif;
    color: var(--heading-color);
    margin-bottom: 15px;
    text-align: center;
}

.section-heading span{
    color: var(--theme-color-1);
}

.section-description{
    font-family: 'CenturyGothic-Regular', sans-serif;
    color: var(--font-black);
    text-align: center;
}

.banner-container{
    width: 100%;
    position: relative;
    display: inline-block;
    background-image: url('../images/banner-bg.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 650px;
    overflow: hidden;
}

.banner-container::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgb(0 0 0 / 60%);
    z-index: 9;
}

.banner-image-wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content-wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    z-index: 11;
    position: relative;
}

.banner-heading{
    font-size: 54px;
    color: var(--font-white);
    margin-bottom: 15px;
    font-family: 'CenturyGothic-Bold', sans-serif;
}

.banner-description{
    font-size: 18px;
    color: var(--font-white);
    margin-bottom: 0px;
    font-family: 'CenturyGothic-Bold', sans-serif;
}

.banner-btns{
    display: flex;
    width: 100%;
    position: relative;
    margin-top: 2rem;
}


footer{
    background-color: #051311;
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 7rem 0 0rem 0;
    z-index: 10;
}

.footer-about{
    width: 100%;
    position: relative;
    display: inline-block;
}

.footer-about img{
    width: 180px;
}

.footer-about p{
    color: var(--font-white);
    margin-bottom: 10px;
}

.footer-about p:last-child{
    margin-top: 2rem;
}

.footer-quick-links{
    position: relative;
    width: 100%;
    display: inline-block;
}

.footer-heading{
    font-size: 20px;
    color: var(--font-white);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.footer-quick-links ul li{
    margin-bottom: 10px;
}

.footer-quick-links ul li:last-child{
    margin-bottom: 0px;
}

.footer-quick-links ul li a{
    color: var(--font-white);
}

.footer-quick-links ul li a::before{
    width: 5px;
    height: 5px;
    background-color: var(--font-white);
    border-radius: 50%;
    content: '';
    position: relative;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 2px;
}

.footer-follow ul li{
    display: inline-block;
    margin-right: 10px;
}

.footer-follow ul li a{
    width: 30px;
    height: 30px;
    min-width: 30px;
    background-color: var(--font-white);
    color: var(--theme-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.footer-contact{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-contact-item{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contact-item span{
    width: 30px;
    height: 30px;
    min-width: 30px;
    margin-right: 15px;
    background-color: var(--font-white);
    color: var(--theme-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.footer-contact-item a{
    width: auto;
    display: inline-block;
    color: var(--font-white);
}

.footer-bottom-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0px;
    border-top: 1px solid #dddddd;
}

.footer-bottom-wrapper p{
    color: var(--font-white)
}

.footer-layer-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--theme-color-3);
    border-radius: 12px;
}

.footer-layer-content{
    flex: 50% 0;
    padding: 20px;
}

.footer-layer-image{
    flex: 50% 0;
}

.footer-layer-image img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.footer-layer{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 200px;
    z-index: 11;
    margin-bottom: -4.5rem;
}

.footer-layer-content h4{
    font-size: 16px;
    color: var(--font-white);
    margin-bottom: 10px;
}

.footer-layer-content h3{
    font-size: 28px;
    color: var(--font-white);
    margin-bottom: 18px;
}

.banner-layer-container{
    width: 100%;
    position: relative;
    display: inline-block;
    z-index: 10;
    margin-top: -6rem;
}

.banner-layer-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 2rem;
    background-color: var(--font-white);
    border-radius: 12px;
    box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 10%);
}

.checkings-list-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
}

.checkings-list-item{
    text-align: center;
}

.checkings-img{
    width: 55px;
    margin: auto;
}

.checkings-heading{
    font-family: 'CenturyGothic-Bold', sans-serif;
    color: var(--heading-color);
    margin-top: 10px;
}

/* the slides */
.slick-slide {
    margin: 0 15px;
}

/* the parent */
.slick-list {
    margin: 0 -15px;
}

.section{
    position: relative;
    padding: 60px 0px;
}

.bookAppointment-form-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 25px;
    background-color: var(--font-white);
    border-radius: 12px;
    box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 10%);
    border: 1px solid #dddddd;
}

.bookAppointment-form-heading{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.bookAppointment-form-heading h3{
    text-align: center;
    font-size: 24px;
}

.form-group{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.form-label{
    width: 100%;
    position: relative;
    display: inline-block;
    font-family: 'CenturyGothic-Bold', sans-serif;
    color: var(--heading-color);
    margin-bottom: 5px;
}

.form-label span{
    color: #ff0000;
}

.form-input{
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid var(--bg-color2);
    min-height: 48px;
    background-color: var(--bg-color2);
    width: 100%;
    position: relative;
    display: inline-block;
}

.bookAppointment-image-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 100%;
}

.bookAppointment-image-wrapper img{
    width: 100%;
    height: 575px;
    object-fit: cover;
}

.ourteam{
    background-color: var(--bg-color2);
}

.team-card-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 20px 20px 20px 20px;
    background-color: var(--font-white);
    border-top-left-radius: 5rem;
    border-top-right-radius: 5rem;
    margin-top: 5rem;
}

.team-img{
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
}

.team-img img{
    width: 150px;
    min-width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.team-info{
    width: 100%;
    position: relative;
    margin-top: 5rem;
    display: inline-block;
}

.team-info h3{
    text-align: center;
    font-size: 18px;
}

.team-info h4{
    text-align: center;
    color: var(--theme-color-2);
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 5px;
}

.team-info p{
    text-align: center;
}

.mt-4rem{
    margin-top: 4rem;
}

.weoffer{
    background-color: var(--bg-color2);
}

.weoffer-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 270px;
}

.weoffer-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.weoffer-badge{
    width: 80%;
    display: flex;
    align-items: center;
    padding: 5px 5px 5px 15px;
    height: 55px;
    background-color: var(--theme-color-3);
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    position: absolute;
    left: 0;
    bottom: 1.5rem;
    justify-content: space-between;
}

.weoffer-badge h3{
    font-size: 14px;
    color: var(--font-white);
}

.weoffer-badge span{
    width: 40px;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--theme-color-2);
    color: var(--font-white);
    margin-left: 15px;
}

.divider-banner{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 2rem 0rem;
}

.divider-banner::before{
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 42%;
    background-color: var(--theme-color-1);
    z-index: 10;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
}

.dividrbanner-wrapper{
    width: 100%;
    position: relative;
    z-index: 11;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.dividrbanner{
    width: 100%;
    position: relative;
    display: flex;
    z-index: 11;
    height: 100%;
    align-items: center;
}

.funfactor-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 25px;
    border-radius: 12px;
    background-color: var(--font-white);
    box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 10%);
    z-index: 11;
}

.funfactor-wrapper img{
    margin: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.funfactor-wrapper h3{
    text-align: center;
    font-size: 32px;
    margin: 10px 0px;
}

.funfactor-wrapper p{
    text-align: center;
    text-transform: uppercase;
    font-family: 'CenturyGothic-Bold', sans-serif;
}

.funfactor::after{
    position: absolute;
    width: 100%;
    height: 180px;
    background-color: var(--theme-color-3);
    z-index: 10;
    content: '';
    left: 0;
    bottom: 0;
}

.testimonial-card{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 20px 20px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 10%);
    margin: 10px 0px;
}

.testimonial-stars i{
    margin-right: 5px;
    font-size: 16px;
}

.testimonial-stars i.earned{
    color: #efb500;
}

.testimonial-content{
    width: 100%;
    position: relative;
    display: inline-block;
    margin: 15px 0px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--bg-color1);
    padding-right: 2rem;
}

.testimonial-bottom{
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.testimonial-bottom img{
    width: 40px;
    min-width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-bottom h3{
    font-size: 14px;
    color: var(--heading-color);
}

.testiQuote{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--theme-color-1);
    color: var(--font-white);
    font-size: 16px;
    position: absolute;
    right: 0;
    top: -38px;
}

.testimonial-wrapper .slick-dots{
    bottom: -35px;
}

.slick-dots li button:before{
    font-size: 10px;
}

.slick-dots li.slick-active button:before{
    color: var(--theme-color-1);
}

.blog-card-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    border-radius: 12px;
    border: 1px solid var(--heading-color);
    padding: 20px;
    margin-top: 24px;
}

.blog-content{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 20px;
}

.blog-heading{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.blog-heading h3{
    font-size: 16px;
}

.blog-image{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: -45px;
}

.blog-image img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.blog-date{
    padding: 5px;
    background-color: var(--font-white);
    position: absolute;
    right: 10px;
    bottom: 10px;
    border-radius: 6px;
}

.whyus-img-wrapper{
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.whyus-content-wrapper{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.footer-contact-item p{
    color: white;
}

.txt-bl{
    color: #000;
}

.navbar-brand .logo {
    margin: 0;
    padding: 0 10px;
    font-size: 1.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .navbar-dark .navbar-brand .logo,
  .navbar.bg-dark .navbar-brand .logo {
    color: #fff;
  }
  
  .navbar-light .navbar-brand .logo,
  .navbar.bg-light .navbar-brand .logo {
    color: #000;
  }
  
  @media (max-width: 768px) {
    .navbar-brand .logo {
      font-size: 1.25rem;
      padding: 0 8px;
    }
  
    .navbar {
      padding: 10px 12px;
    }
  }
  
  @media (max-width: 576px) {
    .navbar-brand .logo {
      font-size: 1.1rem;
    }
  }
  .navbar.fixed-top{
    background-color: #777777;
  }
  .pt-cus {
  padding-top: 160px;
  padding-bottom: 100px;
  padding-left: 50px;
  padding-right: 50px;

}


@media screen and (max-width: 776px) {
  .pt-cus {
      padding-top: 120px;
      padding-bottom: 50px;
      padding-left: 15px;
      padding-right: 15px;
  }
}