@font-face {
    font-family: ClickerScript-Regular;
    src: url('../fonts/ClickerScript-Regular.ttf');
}

@font-face {
    font-family: Jost-Regular;
    src: url('../fonts/Jost-Regular.ttf');
}

@font-face {
    font-family: Jost-Medium;
    src: url('../fonts/Jost-Medium.ttf');
}

@font-face {
    font-family: Jost-SemiBold;
    src: url('../fonts/Jost-SemiBold.ttf');
}

@font-face {
    font-family: Jost-Bold;
    src: url('../fonts/Jost-Bold.ttf');
}

:root{
    --theme-color-1: #A15C9F;
    --theme-color-2: #1F1F1F;
    --theme-color-3: #E0AF83;
    --theme-color-4: #7B8A70;
    --body-bg: #ffffff;
    --font-color: #292621;
    --heading-color: #333333;
    --font-white: #ffffff;
}

body{
    background-color: var(--body-bg);
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 25px;
    font-family: 'Jost-Regular';
    font-weight: normal;
    color: var(--font-color);
}


h1, h2, h3{
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'Jost-Bold';
    font-weight: normal;
}

h4, h5{
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'Jost-SemiBold';
    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: 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: 'Jost-SemiBold';
    font-weight: normal;
    transition: ease-in-out 0.3s;
    text-transform: uppercase;
    font-size: 14px;
}

.btn-main{
    color: #fff;
    background-color: var(--theme-color-4);
    transition: ease-in-out 0.3s;
    border: 1px solid var(--theme-color-4);
}

.btn-main:hover{
    background-position: left bottom;
    color: #fff;
    background-color: #3b5826;
    border: 1px solid #3b5826;
    transition: ease-in-out 0.3s;
}

.btn-secondary{
    color: #fff;
    background-color: var(--theme-color-1);
    transition: ease-in-out 0.3s;
}

.btn-border{
    border: 1px solid var(--theme-color-1);
    background-color: transparent;
    color: var(--theme-color-1);
    transition: ease-in-out 0.3s;
}

.btn-border:hover{
    border-color: var(--theme-color-4);
    background-color: var(--theme-color-4);
    color: #fff;
    transition: ease-in-out 0.3s;
}

.btn-border-white{
    border: 1px solid var(--font-white);
    background-color: transparent;
    color: var(--font-white);
    transition: ease-in-out 0.3s;
}

.btn-border-white:hover{
  border-color: var(--theme-color-3);
  background-color: transparent;
  color: var(--theme-color-3);
  transition: ease-in-out 0.3s;
}

.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;
    border-bottom: 1px solid #dee2e6;
}


.navbar-dark .navbar-nav .nav-link{
    color: var(--font-color);
    font-family: 'Jost-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: #fff;
    box-shadow: transparent;
    transition: none !important;
    height: 75px;
}

.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: 'Jost-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;
}

.topbar{
    background-color: var(--theme-color-2);
    padding: 12px 0px;
}

.topbar-info-wrapper p{
    color: var(--font-white);
}

.topbar-contact{
    display: flex;
    justify-content: flex-end;
}

.topbar-contact li a{
    color: var(--font-white);
}

.topbar-contact li:first-child{
    border-right: 1px solid var(--font-white);
    padding-right: 15px;
}

.topbar-contact li{
    margin-left: 15px;
}

.topbar-contact li a i{
    margin-right: 8px;
}


#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: poJost;
    padding: 15px;
    border-radius: 4px;
    width: 50px;
    height: 50px;
    line-height: 18px;
}
  
#backTop:hover {
    background-color: var(--theme-color-1);
}

.section{
    padding: 60px 0px;
    position: relative;
}

input:hover, input:focus, input:active{
    box-shadow: none;
    outline: none;
}

/* slider zoom */
.slider-zoom{
    position: relative;
    width: 100%;
}

.slider-zoom .slick-list{
    margin: 0 0px;
}

.slider-zoom .slick-slide {
    margin: 0 0px;
}

.banner-slider-caption{
  padding: 0rem 2.5rem;
}
  
.banner-slider-caption h4{
    font-size: 30px;
    color: var(--font-white);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.banner-slider-caption h1{
    font-size: 48px;
    color: var(--font-white);
    margin-bottom: 20px;
}

.banner-slider-caption a{
    margin: auto;
    margin-top: 30px;
}


@media (min-width: 992px) {
    .slider-zoom .slider,
    .slider-zoom .slide {
      height: 600px;
      overflow: hidden;
    }
  }
  .slider-zoom .slide {
    position: relative;
    height: 720px;
    overflow: hidden;
  }
  .slider-zoom .slide .slide__img {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  @media (min-width: 992px) {
    .slider-zoom .slide .slide__img {
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
    }
  }
  .slider-zoom .slide .slide__img img {
    max-width: 100%;
    height: 100%;
    opacity: 1 !important;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    transition: all 1s ease;
    object-fit: cover;
    width: 100%;
  }
  .slider-zoom .slide .slide__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
  }
  .slider-zoom .slide .slide__content--headings {
    text-align: center;
    color: #FFF;
  }
  .slider-zoom .slide .slide__content--headings h4 {
    font-size: 32px;
    margin: 10px 0;
    color: var(--font-white);
    text-transform: uppercase;
  }
  .slider-zoom .slide .slide__content--headings h2 {
    font-size: 50px;
    margin: 10px 0;
    color: var(--font-white);
  }
  .slider-zoom .slide .slide__content--headings .animated {
    transition: all 0.5s ease;
  }
  .slider-zoom .slider [data-animation-in] {
    opacity: 0;
    -webkit-animation-duration: 1.5s;
            animation-duration: 1.5s;
    transition: opacity 0.5s ease 0.3s;
  }
  .slider-zoom .slick-dotted .slick-slider {
    margin-bottom: 30px;
  }
  .slider-zoom .slick-dots {
    position: absolute;
    bottom: 25px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  .slider-zoom .slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    cursor: poJost;
  }
  .slider-zoom .slick-dots li button {
    border: 0;
    display: block;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 5px;
    cursor: poJost;
    transition: all 0.3s ease;
  }
  .slider-zoom .slick-dots li button:hover,
  .slider-zoom .slick-dots li button:focus {
    outline: none;
  }
  .slider-zoom .simple-dots .slick-dots li {
    width: 20px;
    height: 20px;
  }
  .slider-zoom .simple-dots .slick-dots li button {
    border-radius: 50%;
    background-color: white;
    opacity: 0.25;
    width: 20px;
    height: 20px;
  }
  .slider-zoom .simple-dots .slick-dots li button:hover,
  .slider-zoom .simple-dots .slick-dots li button:focus {
    opacity: 1;
  }
  .slider-zoom .simple-dots .slick-dots li.slick-active button {
    color: white;
    opacity: 0.75;
  }
  .slider-zoom .stick-dots .slick-dots li {
    height: 3px;
    width: 50px;
  }
  .slider-zoom .stick-dots .slick-dots li button {
    position: relative;
    background-color: white;
    opacity: 0.25;
    width: 50px;
    height: 3px;
    padding: 0;
  }
  .slider-zoom .stick-dots .slick-dots li button:hover,
  .slider-zoom .stick-dots .slick-dots li button:focus {
    opacity: 1;
  }
  .slider-zoom .stick-dots .slick-dots li.slick-active button {
    color: white;
    opacity: 0.75;
  }
  .slider-zoom .stick-dots .slick-dots li.slick-active button:hover,
  .slider-zoom .stick-dots .slick-dots li.slick-active button:focus {
    opacity: 1;
  }
  /* /////////// IMAGE ZOOM /////////// */
@-webkit-keyframes zoomInImage {
    from {
      transform: scale3d(1, 1, 1);
    }
    to {
      transform: scale3d(1.1, 1.1, 1.1);
    }
}
@keyframes zoomInImage {
    from {
      transform: scale3d(1, 1, 1);
    }
    to {
      transform: scale3d(1.1, 1.1, 1.1);
    }
}
.zoomInImage {
    -webkit-animation-name: zoomInImage;
            animation-name: zoomInImage;
}
@-webkit-keyframes zoomOutImage {
    from {
      transform: scale3d(1.1, 1.1, 1.1);
    }
    to {
      transform: scale3d(1, 1, 1);
    }
}
@keyframes zoomOutImage {
    from {
      transform: scale3d(1.1, 1.1, 1.1);
    }
    to {
      transform: scale3d(1, 1, 1);
    }
}
.zoomOutImage {
    -webkit-animation-name: zoomOutImage;
    animation-name: zoomOutImage;
}

.slider-zoom .slide:before{
    content: '';
    position: absolute;
    background-color: rgb(0 0 0 / 60%);
    background-size: cover;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9;
}

.slider-zoom .slick-dotted.slick-slider{
    margin-bottom: 0px;
}

.slider-zoom .slick-dots li button:before{
    content: '';
}

.script-font{
    font-family: 'ClickerScript-Regular';
    color: var(--theme-color-3);
    margin-bottom: 25px;
    font-size: 48px;
}

.slider-zoom .slick-next{
    right: 0;
    z-index: 1;
    height: 65px;
    background-color: rgb(255 255 255 / 10%);
}

.slider-zoom .slick-prev{
  left: 0;
  z-index: 1;
  height: 65px;
  background-color: rgb(255 255 255 / 10%);
}

.slider-zoom .slick-next:before{
    font-family: auto;
    font-size: 12px;
    color: var(--theme-color-3);
}

.slider-zoom .slick-prev:before{
    font-family: auto;
    font-size: 12px;
    color: var(--theme-color-3);
}

.section-heading-wrapper{
  position: relative;
  text-align: center;
  margin-bottom: 3rem;
}

.script-font-heading{
  font-family: 'ClickerScript-Regular';
  font-weight: normal;
  margin-bottom: 10px;
  font-size: 24px;
}

.home-about-info ul li{
  margin-bottom: 25px;
}

.home-about-info ul li:last-child{
  margin-bottom: 0px;
}

.home-about-list-inner{
  display: flex;
}

.home-about-list-icon{
  min-width: 60px;
  height: 60px;
  background: rgba(224, 175, 131, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-right: 30px;
}

.home-about-list-icon img{
    position: absolute;
    left: 10px;
    top: 5px;
}

.home-about-list-text h3{
  font-size: 20px;
  margin-bottom: 10px;
}

.home-about-services-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  transition: ease-in-out 0.3s;
  display: inline-block;
}

.home-about-services-wrapper img{
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.home-about-services-wrapper::after{
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  transition: ease-in-out 0.3s;
}

.home-about-services-layer{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    text-align: center;
    color: #fff;
    z-index: 10;
    transition: ease-in-out 0.3s;
}

.home-about-services-layer h3{
  font-size: 24px;
  color: var(--font-white);
  margin-bottom: 10px;
}

.home-about-services-wrapper:hover::after{
  background-color: rgba(224, 175, 131, 0.8);
  transition: ease-in-out 0.3s;
}

.home-about-services-wrapper:hover .home-about-services-layer{
  padding: 15px;
  border: 3px solid var(--font-white);
  margin: 10px;
  width: 93%;
  height: 91%;
  transition: ease-in-out 0.3s;
}

.chooseus-content-wrapper{
  position: relative;
}

.chooseus-content-wrapper h3{
  font-size: 32px;
  margin-bottom: 20px;
}

.chooseus-list li{
  margin-bottom: 15px;
  display: flex;
}

.chooseus-list li span img{
  min-width: 15px;
  height: 15px;
  margin-right: 8px;
}

.chooseus-list{
  margin-top: 25px;
}

.priceslider{
  width: 100%;
  overflow: hidden;
}

.slide-item-inner img{
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/* the slides */
.priceslider .slick-slide {
  margin: 0 10px;
}

/* the parent */
.priceslider .slick-list {
  margin: 0 -10px;
}

.slide-item-inner{
  position: relative;
}

.priceslider-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90.2deg, #A15C9F 0.21%, rgba(0, 0, 0, 0) 155.43%);
    padding-left: 35px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: ease-in-out 0.3s;
}

.slick-center .priceslider-overlay{
    opacity: 1;
    visibility: visible;
    transition: ease-in-out 0.3s;
}

.priceslider-overlay ul li span img{
  width: 15px;
  height: 15px;
  margin-right: 8px;
}

.priceslider-overlay ul li{
  display: flex;
  color: var(--font-white);
  margin-bottom: 15px;
  align-items: center;
}

.priceslider-overlay h3{
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--font-white);
}

.priceslider-overlay h2{
  font-size: 24px;
  color: var(--font-white);
  margin-top: 10px;
}

.fun-factor-card{
  padding: 25px;
  text-align: center;
  width: 100%;
  height: 100%;
}

.fun-factor-card img{
  width: 50px;
  height: 50px;
}

.fun-factor-card h3{
  color: var(--theme-color-4);
  margin: 15px 0px;
  font-size: 36px;
}

.fun-factor-card h4{
  font-size: 20px;
}

.certificates{
  background-color: var(--theme-color-2);
  position: relative;
  display: inline-block;
  width: 100%;
}

.certificates-image{
  position: relative;
  text-align: center;
}

.certificates-image img{
  width: 450px;
  height: 450px;
  border-radius: 50%;
  object-fit: cover;
}

.certificates-image-off{
    bottom: 0;
    width: 150px;
    height: 150px;
    position: absolute;
    right: 0;
    background-color: transparent;
    border: 1px dashed var(--font-white);
    padding: 10px;
    border-radius: 50%;
}

.certificates-image-off > div{
    background-color: var(--theme-color-4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 10px;
    text-align: center;
}

.certificates-image-off > div h3{
  font-size: 20px;
  color: var(--font-white);
}

.certificates-image-off > div h4{
  font-size: 13px;
  color: var(--font-white);
}

.heading-script-text{
  font-size: 24px;
  line-height: 32px;
  font-family: 'ClickerScript-Regular';
  color: var(--theme-color-3);
}

.font-white{
  color: var(--font-white);
}

.certificates-info h2{
  margin-top: 10px;
  margin-bottom: 20px;
}

.certificates-info-list{
  margin: 30px 0px;
}

.certificates-info-list li::before{
  content: '';
  width: 12px;
  height: 12px;
  margin-right: 10px;
  background: var(--theme-color-3);
  position: relative;
  display: inline-block;
  border-radius: 50%;
}

.certificates-info-list li{
  color: var(--font-white);
  margin-bottom: 10px;
  display: flex;
    align-items: baseline;
}

.certificates-info{
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: flex-start;
    justify-content: center;
}

.experts-certicate-list li{
  display: inline-block;
  margin-right: 15px;
}

.experts-certicate-list li img{
  width: 40px;
}

.experts-image img{
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.otherexperts-inner-image img{
  width: 100%;
  object-fit: cover;
}

.otherexperts-inner-info{
  padding: 15px;
}

.otherexperts-inner-info h3{
  font-size: 20px;
  margin-bottom: 1px;
}

.otherexperts{
  position: relative;
  margin-top: -75px;
}

.otherexperts-inner{
  position: relative;
  transition: ease-in-out 0.3s;
}

.otherexperts-inner:hover{
  position: relative;
  transition: ease-in-out 0.3s;
  margin-top: -10px;
}

.otherexperts-inner:hover .otherexperts-inner-info h3{
  color: var(--theme-color-1);
  transition: ease-in-out 0.3s;
}

.homedivider{
  background-image: url('../images/home-divider-bg.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 430px;
  display: inline-block;
  position: relative;
  width: 100%;
}

.divider-wrapper{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
}

.divider-btns{
  width: 100%;
  display: flex;
  margin-top: 20px;
}

.divider-btns a{
  margin-right: 20px;
}

.divider-wrapper h3{
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--font-white);
}

.divider-wrapper p{
  color: var(--font-white);
}

.news-image{
  position: relative;
}

.news-posted-date{
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 5px 10px;
  background-color: var(--theme-color-3);
  color: var(--font-white);
  font-size: 14px;
}

.news-body{
  position: relative;
  padding: 20px 0px;
}

.news-body h4{
  font-size: 14px
}

.news-body h3{
  margin: 15px 0px;
  font-size: 24px;
}

.news-body .readmore-link{
  font-family: 'Jost-SemiBold';
  text-decoration: underline;
  margin-top: 15px;
  display: inline-block;
  width: 100%;
  transition: ease-in-out 0.3s;
}

.news-card-wrapper{
  transition: ease-in-out 0.3s;
}

.news-card-wrapper:hover .news-body h3{
  transition: ease-in-out 0.3s;
  color: var(--theme-color-1);
}

.readmore-link:hover{
  color: var(--theme-color-4);
  transition: ease-in-out 0.3s;
}

.footer-section{
  background-color: var(--theme-color-2);
  position: relative;
  padding: 40px 0px 0px 0px;
}

.footer-newsletter-info h3{
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--font-white);
}

.footer-newsletter-info p{
  margin-bottom: 15px;
  color: var(--font-white);
}

.footer-social li{
  display: inline-block;
  margin-right: 10px;
}

.footer-social li a{
  color: var(--font-white);
}

.newsletter{
  position: relative;
  border-bottom: 1px solid #DDDDDD;
}

.footer-newsletter-form{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.newsletter-form-input {
    height: 48px;
    width: 100%;
    padding: 10px 15px;
    border: none;
    position: relative;
    margin-right: 25px;
}

.footer-newsletter-form form{
  width: 100%;
  display: inline-block;
}

.newsletter-form-container{
  display: flex;
}

.newsletter-form-submit{
  height: 48px;
  border: none;
  background-color: var(--theme-color-1);
  color: var(--font-white);
  text-transform: uppercase;
  padding: 10px 20px;
}

.footer-links{
  padding: 40px 0px 20px 0px;
  position: relative;
}

.footer-links-wrapper h3{
  font-size: 24px;
  color: var(--font-white);
  margin-bottom: 20px;
}

.footer-list li{
  margin-bottom: 15px;
}

.footer-list li p{
  color: var(--font-white);
}

.footer-list li span{
  color: var(--font-white);
}

.footer-list li .reviwe-stars{
  margin-top: 10px;
  color: var(--font-white);
}

.footer-list li .reviwe-stars i.active{
  color: var(--theme-color-3);
}

.footer-list li a i{
  margin-right: 10px;
  color: var(--theme-color-3);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-list li a{
  color: var(--font-white);
  display: flex;
}

.footer-list.hours li{
  text-transform: uppercase;
  color: var(--font-white);
}

.footer-list.hours li span{
  color: var(--theme-color-3);
}

.footer-bottom{
    background: var(--theme-color-3);
    position: relative;
    width: 100%;
    padding-bottom: 45px;
    display: inline-block;
}

.footer-bottom-image{
  width: 100%;
  height: 100%;
  position: relative;
}

.footer-bottom-image img{
  width: 100%;
  height: 100%;
  position: relative;
  object-fit: cover;
}

.bottom-images{
  position: relative;
  margin-top: -30px;
}

.footer-bottom-image-overlay{
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(224, 175, 131, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: ease-in-out 0.3s;
}

.footer-bottom-image:hover .footer-bottom-image-overlay{
    opacity: 1;
    visibility: visible;
    transition: ease-in-out 0.3s;
}

.footer-bottom-info{
  display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.footer-bottom-info p{
  color: var(--font-white);
}

.otherlinks li{
  display: inline-block;
  color: var(--font-white);
  margin-left: 15px;
}

.page-breadcrumb{
  position: relative;
  display: inline-block;
  margin-top: 75px;
  width: 100%;
  height: 350px;
  background-image: url('../images/breadcrumb-bg.jpg');
  background-position: 60% 75%;
  background-size: cover;
  background-attachment: fixed;
}

.page-breadcrumb-inner{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.page-breadcrumb-inner h1{
  font-size: 34px;
}

.page-breadcrumb-inner ul li{
  display: inline-block;
}

.page-breadcrumb-inner ul li.activepage{
  color: var(--theme-color-1);
  font-family: 'Jost-SemiBold';
  font-weight: normal;
}

.fun-factors-about{
    background-color: var(--heading-color);
    padding-bottom: 1.5rem;
}

.fun-factors-about .fun-factor-card h4{
  color: var(--font-white);
}

.otherexperts-inner-image{
  position: relative;
}

.experts-social{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: ease-in-out 0.3s;
  display: flex;
}

.experts-social a{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-color-1);
    color: var(--font-white);
    border-radius: 10px;
    margin: 0px 5px;
    transition: ease-in-out 0.3s;
}

.otherexperts-inner:hover .experts-social{
  opacity: 1;
  visibility: visible;
  transition: ease-in-out 0.3s;
}

.experts-social a:hover{
  background-color: var(--theme-color-4);
  transition: ease-in-out 0.3s;
}

.testSlideInner img{
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
}

.testSlideInner h3{
    margin: 20px 0px 0px 0px;
    text-align: center;
    font-size: 20px;
}

.testSlideInner h5{
    text-align: center;
    font-size: 14px;
}

.testSlideInner ul{
  text-align: center;
    margin: 15px 0px;
}

.testSlideInner ul li{
  display: inline-block;
  color: #efbe2d;
}

.testSlideInner p{
  text-align: center;
  font-family: 'Jost-SemiBold';
  font-weight: normal;
  font-size: 16px;
}

.testimonial{
  position: relative;
  display: inline-block;
  width: 100%;
  background-image: url('../images/testimonial-bg.png');
  background-position: center;
  background-size: cover;
}

.carosel-nav-left-testi{
  position: absolute;
  top: 50%;
  left: 7rem;
  /* transform: translate(-50%, -50%); */
  z-index: 99;
  width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: var(--theme-color-3);
    color: var(--font-white);
    font-size: 20px;
}

.carosel-nav-right-testi{
  position: absolute;
  top: 50%;
  right: 7rem;
  /* transform: translate(-50%, -50%); */
  z-index: 99;
  width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: var(--theme-color-3);
    color: var(--font-white);
    font-size: 20px;
}

.sl-img img{
  width: 100%;
  height: 200px;
  margin-bottom: 20px;
  object-fit: cover;
}

.otherservices-card-wrapper{
  text-align: center;
  padding: 30px;
}

.otherservices-card-wrapper h3{
  font-size: 18px;
  margin-top: 20px;
}

.error-page{
    height: calc(100vh - 1px);
    display: inline-block;
    width: 100%;
}

.error-page-image{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-page-content{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.error-page-content h1{
  font-size: 120px;
  color: var(--theme-color-1);
}

.error-page-content h3{
  font-size: 40px;
}

.error-page-content p{
  font-size: 20px;
  margin: 20px 0px;
}

.faq-content-wrapper .accordion-item{
  border: none;
  margin-bottom: 20px;
}

.faq-content-wrapper .accordion-button{
  background-color: rgb(161 92 159 / 25%);
  font-weight: normal;
  font-family: 'Jost-Medium';
}

.faq-content-wrapper .accordion-button:not(.collapsed){
    color: var(--body-bg);
    background-color: var(--theme-color-1);
    box-shadow: none;
}

.faq-content-wrapper .accordion-button::after{
  background-image: none;
  font-family: "Fontawesome"; 
	font-weight: 400;
	content: "\f107";
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion-button:focus{
  box-shadow: none;
}

.policy-main-heading{
  font-size: 20px;
  margin: 20px 0px 20px 0px;
}

.page-full-coming{
  width: 100%;
  min-height: 100vh;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover !important;
  background-repeat: no-repeat;
  /* background-image: url('../images/coming-soon-bg.jpg'); */
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/coming-soon-bg.jpg');
  padding: 30px;
}

.page-coming-inner{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

.page-coming-inner h2{
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--font-white);
}

.page-coming-inner p{
  margin-bottom: 20px;
  color: var(--font-white);
}

.soon-subscribe{
  width: 100%;
}

.soon-form-wrapper{
  position: relative;
  width: 100%;
}

.soon-input{
  width: 100%;
  height: 55px;
  border-radius: 35px;
  padding: 10px 15px;
  display: inline-block;
  border: none;
}

.soon-submit{
  background-color: var(--theme-color-2);
  border-radius: 35px;
  text-align: center;
  color: #fff;
  padding: 10px 10px;
  position: absolute;
  top: 5px;
  right: 5px;
  border: none;
  width: 135px;
}

.soon-counter-list{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.soon-counter-list > div{
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin: 30px 8px 0px 8px;
  background-color: rgb(255 255 255 / 20%);
  flex-direction: column;
  color: var(--theme-color-1);
  font-family: 'Jost-Bold';
  font-weight: normal;
  font-size: 32px;
}

.soon-counter-list > div span{
  font-family: 'Jost-Medium';
  font-weight: normal;
  /* margin: 10px 0px; */
  color: var(--font-white);
  font-size: 14px;
}

.coming-soon .footer-heading {
  font-size: 20px;
  line-height: 24px;
  color: #fff;
}

.coming-soon .footer-social-list {
  margin-top: 20px;
}

.coming-soon .footer-social-list li {
  display: inline-block;
  margin-right: 20px;
}

.coming-soon .footer-social-list li a {
  display: inline-block;
  color: #fff;
}

.gallery_product_image{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: ease-in-out 0.3s;
}

.gallery_product_image img{
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-overlay{
  position: absolute;
  top: 0;
  width: 93%;
  height: 100%;
  background-color: rgb(31 31 31 / 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: ease-in-out 0.3s;
}

.portfolio-overlay .po-inner{
  position: relative;
  z-index: 11;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 25px;
}

.portfolio-overlay .po-inner h3{
  color: var(--theme-color-3);
  font-size: 20px;
  margin-bottom: 10px;
}

.portfolio-overlay .po-inner p{
  color: #fff;
  margin-bottom: 20px;
}

.portfolio-overlay .po-inner a{
  position: absolute;
  bottom: 25px;
  color: #fff;
  font-size: 25px;
}

.gallery_product_image:hover ~ .portfolio-overlay{
  opacity: 1;
  visibility: visible;
  transition: ease-in-out 0.3s;
}

.filter-button.active{
  background-color: var(--theme-color-4);
  color: var(--font-white);
  transition: ease-in-out 0.3s;
  box-shadow: none;
}

.gallery_product_image:hover > img{
  transform: scale(1.5);
  transition: ease-in-out 0.3s;
}

.contact-info-card{
  width: 100%;
  height: 100%;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 6px;
  text-align: center;
}

.contact-info-card h3{
  margin: 15px 0px;
  font-size: 20px
}

.contact-info-card img{
  width: 50px;
  height: 50px;
}

.contact-form-container{
  position: relative;
  width: 100%;
  margin-bottom: 25px;
}

.contact-form-input{
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.widget-search-input{
  width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.widget-search{
  position: relative;
  margin-bottom: 30px;
}

.widget-search-submit{
    position: absolute;
    right: 0;
    padding: 10px;
    border: navajowhite;
    background: transparent;
    color: var(--theme-color-3);
}

.widget-categories{
  position: relative;
  margin-bottom: 30px;
}

.widget-heading{
  font-size: 24px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.widget-categories ul li{
  margin-bottom: 15px;
}

.widget-categories ul li::before{
  font-family: "Fontawesome"; 
	font-weight: 400;
	content: "\f105";
  margin-right: 10px;
}

.recent-post-item{
  display: flex;
}

.recent-post-img{
  width: 150px;
  margin-right: 20px;
}

.recent-post-info{
  width: 100%;
}

.recent-post-info h4{
  font-size: 15px;
  margin-bottom: 5px;
}

.recent-post-info p{
  font-size: 12px;
}

.recent-post-list li{
  margin-bottom: 20px;
}

.widget-recentpost{
  margin-bottom: 30px;
}

.widget-tags ul li{
  display: inline-block;
}

.widget-tags ul li a{
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 30px;
    margin-right: 10px;
    margin-bottom: 10px;
    display: inline-block;
    transition: ease-in-out 0.3s;
}

.widget-tags ul li a:hover{
  border-color: var(--theme-color-3);
  color: var(--theme-color-3);
  transition: ease-in-out 0.3s;
}

.bd-published-date{
    min-width: 80px;
    width: 80px;
    height: 80px;
    background-color: var(--theme-color-2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-align: center;
    line-height: 30px;
    padding: 10px;
    margin-right: 20px;
}

.blog-detail-head{
  display: flex;
}

.bd-head-detail h1{
  font-size: 24px;
  margin-bottom: 10px;
}

.bd-head-detail ul{
  display: flex;
}

.blog-detail-head ul li a{
  color: #c5c5c5;
  margin-right: 10px;
  transition: ease-in-out 0.3s;
}

.blog-detail-head ul li a i{
  margin-right: 5px;
}

.blog-detail-head ul li a:hover{
  color: var(--theme-color-3);
  transition: ease-in-out 0.3s;
}

.bd-main-image{
  margin: 30px 0px;
  position: relative;
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.bd-body p{
  margin-bottom: 20px;
}

.bg-small-heading{
  font-size: 18px;
  margin-bottom: 20px;
}

.bd-quoteblock{
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-image: url('../images/breadcrumb-bg.jpg');
    position: relative;
    z-index: 10;
    margin: 20px 0px;
}


.bd-quoteblock::before{
  content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: auto;
    right: auto;
    width: 100%;
    height: 100%;
    background: rgba(55, 68, 86, 0.75);
}

.bd-quoteblock-content{
  position: relative;
    z-index: 11;
    padding: 20px;
    text-align: center;
    color: #fff;
}

.bd-quoteblock-content img{
  width: 40px;
  height: 40px;
  margin: auto;
  margin-bottom: 20px;
}

.bd-quoteblock-content p{
  font-style: italic;
}

.content-comment{
  margin-top: 4rem;
}

.content-comment-header h3{
  font-size: 24px;
  color: #374456;
  font-weight: bold;
  margin-bottom: 54px;
}

.comments-list{
  padding-bottom: 30px;
}

.comment-content-wrapper{
  padding: 30px 0;
  border-top: 1px solid #efefef;
}

.comments-wrapper > .comment:first-child .comment-content-wrapper{
  border-top: 0 none;
}

.gr-table {
  display: flex;
  width: 100%;
}

.comment .content-thumb {
    min-width: 120px;
    width: 120px;
    margin-right: 20px;
}

.comment .content-thumb a img{
  border-radius: 50%;
}

.comment .content-meta {
  margin-bottom: 5px;
  display: inline-block;
}

.comment .content-meta ul > li {
  float: left;
}

.comment .comment-author a {
  font-size: 14px;
  color: #aeb1b7;
  font-weight: lighter;
}

.gr-icon-left-text-style-5 {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #374456;
  padding: 0 0 0 18px;
}


.comment .content-meta ul > li:last-child {
  margin-right: 0;
}

.comment .content {
  color: #374456;
  font-weight: lighter;
  margin-bottom: 13px;
}

.content-button a{
  color: var(--theme-color-1);
}

.comment-reply-wrapper .comment-content-wrapper {
  padding-top: 36px;
  padding-left: 120px;
}

.comment-respond{
  padding-top: 30px;
  border-top: 1px solid #efefef;
}

.comment-respond-wrapper{
  position: relative;
  margin-bottom: 25px;
}

.comment-respond-input{
  width: 100%;
  position: relative;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px 15px;
}

.sidebar-widget{
  position: relative;
  margin-bottom: 30px;
}


.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;
  /* border-radius: 5px; */
  z-index: 10;
  top: 65px;
  left: 0;
color: #fff;
}

.subscribe-inner{
position: relative;
}

.subscribe-inner form{
position: relative;
}

.check-success-icon{
margin-right: 10px
}

.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: #001941;
  font-size: 14px;
  /* border-radius: 5px; */
  z-index: 10;
  bottom: -150px;
  left: 0;
  padding-left: 3px;
color: #fff;
width: 265px;
}

.check-success-icon{
  padding: 10px;
  margin-right: 10px;
color: #fff;
}
.success-msg p, .success-msg-display p{
  margin-bottom: 0;
}
.error-msg p, .error-msg-display p{
  margin-bottom: 0;
}

#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;
}