@import url('https://fonts.googleapis.com/css2?family=Lustria&family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

body {
  font-family: "Lustria", serif;
  color: #444444;
}

a {
  color: #A68F5B;
  text-decoration: none;
  font-family: "Prompt", sans-serif;
}

a:hover {
  color: #6aa3d5;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* font-family: "Lustria", serif; */
  font-family: "Lato", sans-serif;
  font-weight: 400;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #323232;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #A68F5B;
  border-top-color: #323232;
  border-bottom-color: #323232;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #A68F5B;
  width: 40px;
  height: 40px;
  border-radius: 0px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 18px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #BDA672;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  /* padding: 18px 0; */
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
  border-bottom: 1px solid #fffaee22;
}

#header.header-scrolled,
#header.header-inner-pages {
  /* background: rgba(23, 26, 29, 0.8); */
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 60px;
}

.footer-con .logo img {
  max-height: 60px;
  margin-bottom:15px;
}

@media (max-width: 992px) {
  #header {
    border: 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 10px 0 10px 30px; */
  padding: 32px 18px 32px 18px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
    line-height: 20px;
    letter-spacing: .2em;
    position: relative;
    margin-right: 5px;

}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #BDA672;
  bottom: 0;
  transition: 0.5s all;
}

.navbar a::after,
.navbar::after{
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 1px;
  background-color: #BDA672;
  transition: 0.5s all;
}
.navbar a:hover::after,
.navbar .active::after{
  width: 100%;
  left: 0;
  right: auto;

}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  color: #BDA672;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #A68F5B;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(34, 39, 43, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #394047;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #A68F5B;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #A68F5B;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(34, 39, 43, 0.8);
  overflow: hidden;
  position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 100px;
  right: 100px;
}

/* #hero .container {
  text-align: center;
} */

#hero h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size:75px;
  font-weight: 700;
}
#hero h2 .top-span{
  font-weight: 300;
  font-size: 40px;
  display: block;
  color:#fff !important;
}
#hero h3{
  color: #cda274;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
}
#hero h2 span{
  color: #cda274;
}

#hero p {
  animation-delay: 0.4s;
  /* margin: 0 auto 30px auto; */
  color: #fff;
  max-width: 80%;
  margin: 0;
  margin-bottom: 25px;
  line-height: 30px;
}

.hero-box{
  padding-left: 30px;
  position: relative;
}
.hero-box::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: #cda274;
}
.second-banner{
  display: flex;
  flex-direction: row-reverse;
}
.second-banner-heading{
  padding-left: 15px;
  border-left: 2px solid #cda274;
  max-width: 45%;
  text-align: left;
}

.second-banner-para{
  width: 55%;
  padding-right: 25px;
}
.second-banner-heading h2{
  font-size: 35px !important;
}


#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  /* background: rgba(255, 255, 255, 0.2); */
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-control-next, .carousel-control-prev {
  width: 10%;
  opacity: 1;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  /* background: rgba(255, 255, 255, 0.3); */
  color: #cda274;
}

#hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #A68F5B;
}

.btn-get-started {
  font-family:  "Lustria", serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 32px;
  border-radius: 0px;
  transition: 0.5s;
  line-height: 1;
  color: #cda274;
  animation-delay: 0.8s;
  /* background: #A68F5B; */
  border: 1px solid #cda274;
  position: relative;
}

.btn-get-started::after{
position: absolute;
    bottom: -7px;
    right: -7px;
    content: "";
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    border: solid;
    border-width: 1px 0px 0px 1px;
    display: inline-block;
    padding: 3px;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    transition: all .7s ease-out;
    border-color: inherit;
    /* background-color: #cda274; */
  }
  .btn-get-started:hover::after{
    right: 100%;
    transform: rotate(90deg);
  }

  .btn-get-started::before{
    position: absolute;
        top: -7px;
        left: -7px;
        content: "";
        transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        border: solid;
        border-width: 1px 0px 0px 1px;
        display: inline-block;
        padding: 3px;
        -webkit-transition: all .5s ease-out;
        -moz-transition: all .5s ease-out;
        transition: all .7s ease-out;
        border-color: inherit;
        /* background-color: #cda274; */
      }
    
      .btn-get-started:hover::before{
        left: 100%;
        transform: rotate(-90deg);
      }
.btn-get-started:hover {
  background: #cda274;
  color: #fff;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

.carousel-item{
  position: relative;
}
/* #hero .carousel-container{
  position: relative !important;
} */
.banner-img{
  opacity: 0;
}
.carousel-item.active .banner-img{
  opacity: 1;
}
.banner-img{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.banner-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.midd-slider{
  text-align: end !important;
}

.midd-slider p{
  margin-left: auto !important;
  margin: auto;
}
/*----------Zoom Slide-Start----------*/

.banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: slideZoom 15s infinite;
  opacity: 1;
  transition: opacity 1s;
}

.carousel-item.active .banner-img:nth-child(1) {
  animation-delay: 0s;
}

.carousel-item.active .banner-img:nth-child(2) {
  animation-delay: 0s;
}

.carousel-item.active .banner-img:nth-child(3) {
  animation-delay:0s;
}



@keyframes slideZoom {
  0% {
      opacity: 1;
      transform: scale(1);
  }
  30% {
      opacity: 1;
      transform: scale(1.1);
  }
  33.33% {
      opacity: 1;
      transform: scale(1.1);
  }
  100% {
      opacity: 1;
      transform: scale(1);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
}

.section-bg {
  background-color: #fafafb;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #f5f9fc;
  color: #A68F5B;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 40px;
  font-weight: 700;
}

.section-title h3 span {
  color: #A68F5B;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 500;
  color: #919191;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about{
background-color: #292929;
}

.about .icon-boxes h3 {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 42px;
  line-height: 53px;
  color: #ffffff;
}

.about .icon-boxes h1 {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 42px;
  line-height: 53px;
  color: #ffffff;
}

.about .icon-box {
  margin-top: 40px;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #BDA672;
  border-radius: 50px;
  transition: 0.5s;
}

.about .icon-box .icon i {
  color: #A68F5B;
  font-size: 32px;
}

.about .icon-box:hover .icon {
  background: #A68F5B;
  border-color: #A68F5B;
}

.about .icon-box:hover .icon i {
  color: #fff;
}

.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: #A68F5B;
}

.about .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}
.about p{
  color: #b3b3b3;
}
h4.top-heading{
  padding: 10px 0 10px 50px;
  position: relative;
  font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 26px;
    letter-spacing: 0.5px;
    color: #cda274;
}
h4.top-heading::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 6%;
  height: 0.5px;
  background-color:#BDA672;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
#main{
  background-color: #292929;
}
.service {
  padding-bottom: 30px;
  background-color: #292929;
  position: relative;
  z-index: 9;
 
}

.bg-ser-top{
position: absolute;
width: 65%;
height: 100%;
background-color:#323232 ;
top: 0;
left: 0;
top: 85px;
}
.bg-ser-bottom{
  position: absolute;
  width: 50%;
  height: 100%;
  background-color:#323232 ;
  top: 0;
 right: 0; 
 z-index: -1;
}

.bg-ser-bottom img{
width: 100%;
height: 100%;
object-fit: cover;
}

.heading3 {
margin-bottom: 15px;
font-weight: 700;
font-size: 42px;
line-height: 53px;
color: #ffffff;

}
.ser-card{
  margin-top: 25px;
}
.ser-card .card{
  border: 0;
   min-height: 500px; 
  background-color: #292929;
  border-right: 1px solid #fffaee22;
  border-radius: 0;
  padding-top: 10px;
    padding-bottom: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ser-card h3{
  color: #fff;
  padding: 25px 0;
}
.ser-card p{
  color: #fff;
}
.icons img{
    transition:0.5s all;
}
.ser-card:hover .icons img{
    transform: scaleX(-1); 
}
.card-img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  transition: 0.5s all;
  transform: translateX(25px);
}
.ser-card:hover .card-img{
  opacity: 1;
  transform: translateX(0);
}
.card-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-img::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.58);
  width: 100%;
  height: 100%;
}
.active-card-img{
  opacity: 1;
  transform: translateX(0px);
}

.icons{
    width:60px;
    height:60px;
}

.icons img{
   width:100%;
    height:100%; 
    object-fit:cover;
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(12, 13, 14, 0.8), rgba(12, 13, 14, 0.8)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family:  "Lustria", serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 35px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 20px;
  background: #A68F5B;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #BDA672;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f7f8f8;
  min-height: 40px;
  margin-top: 70px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 58px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #505a63;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  /* background: #474733; */
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
  /* background-image: url('../img/new/footer-bg.png'); */
}
.footer-top{
  background: #292929;
  background-size: cover;


}

#footer .footer-top {
  background: #394047;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.561);
  border-bottom: 1px solid rgba(255, 255, 255, 0.708);
  /* padding: 60px 0 30px 0; */
  background-position: center;
  background-image: url(../img/new/footer-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}
#footer .footer-top::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #292929ed;
  z-index: -1;
}

#footer .footer-top .footer-info {
  margin-bottom: 0px;
}

#footer .footer-top .footer-info h3 {
  font-size: 18px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family:  "Lustria", serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 16px;
  display: inline-block;
  /* background: #a68f5b; */
  color: #fff;
  line-height: 1;
  padding: 10px 0;
  margin-right: 4px;
  border-radius: 1px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #cda274;
  text-decoration: none;
}

#footer .footer-top .social-links a:hover {
  background: #cda274;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 0px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
    color: #f8f8f8;
    font-size: 9px;
    line-height: 1;
    display: inline-block;
    padding-right: 7px;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: baseline;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 20px;
}

#footer .footer-top .footer-links ul a:hover {
  color: #BDA672;
}

#footer .footer-top .footer-contact {
  margin-bottom: 0px;
}

.footer-con{
  border-right:1px solid #fffaee22;
  padding: 60px 25px 30px;
}
.footer-con:last-child{
  border: 0;
}
#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}




/*==================Process=============*/
.process{
  background-color: #474733;
}

.pro-icons{
  padding-bottom: 2px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  margin-bottom: 20px;
}
.pro-icons i{
 font-size: 55px;
 color: #fff;
}

.pro-content h3{
  font-size: 27px;
  padding: 2px 0;
  color: #fff;
}
.pro-content p{
  color: #fff;
  line-height: 28px;
}

/*--------------------------------------------------------------
# Frequently Asked Questions Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.faq .content p {
  font-size: 15px;
  color: #6c757d;
}

.faq .accordion-item {
  border: 0;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
}

.faq .accordion-item:last-child {
  margin-bottom: 0;
}

.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button {
  padding: 20px 50px 20px 20px;
  font-weight: 500;
  border: 0;
  font-size: 17px;
  line-height: 25px;
  color: var(--color-default);
  text-align: left;
  background: #fff;
  box-shadow: none;
  border-radius: 10px;
}

.faq .accordion-button .num {
  padding-right: 10px;
  font-size: 20px;
  line-height: 0;
  color: var(--color-primary);
}

.faq .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  border-bottom: 0;
  box-shadow: none;
}

.faq .accordion-button:after {
  position: absolute;
  right: 20px;
  top: 20px;
}

.faq .accordion-body {
  padding: 15px 40px 30px 45px;
  border: 0;
  border-radius: 4px;
  background: #f2edeb;
  box-shadow: none;
  border-top: 1px solid #ccc;
  line-height: 25px;
}
.accordion-flush>.accordion-item>.accordion-header .accordion-button, .accordion-flush>.accordion-item>.accordion-header .accordion-button.collapsed {
  background-color: #f4efed;
}

/*==========FAQ============*/
.faq{
 padding-top: 150px;
}
.heading-top{
  text-align: center;
}
.heading-top h3{
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: #cda274;
  display: inline-block !important;
  padding-bottom: 5px;
}
.heading-top h3::after{
  content: '';
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  height: 1px;
  width: 30px;
  background-color: #cda274;
}

.heading-top h3::before{
  content: '';
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  height: 1px;
  width: 30px;
  background-color: #cda274;
}
.heading-top h2{
  font-size: 35px;
  font-weight: 700;
  padding-top: 5px;
  color: #fff;
}


.faq-content{
  padding: 15px 25px;
  border-radius: 1px;
  background-color: transparent;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  margin-top: 25px;
  /* text-align: center; */
  border: 1px solid  #fffaee22;
  position: relative;
  min-height: 282px;
}
.faq-content h3{
  color: #ddd;
  font-size: 25px;
  font-weight: 600;
  border-bottom: 1px solid  #fffaee22;
  padding: 15px 0;
  padding-top: 0;
}

.faq-content p{
  color: #ddd;
  line-height: 30px;
}

.faq-content::after{
  position: absolute;
      bottom: -7px;
      right: -7px;
      content: "";
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      border: solid;
      border-width: 1px 0px 0px 1px;
      display: inline-block;
      padding: 3px;
      -webkit-transition: all .5s ease-out;
      -moz-transition: all .5s ease-out;
      transition: all .7s ease-out;
      border-color: inherit;
      /* background-color: #cda274; */
    }
    .faq-content:hover::after{
      right: 100%;
      transform: rotate(90deg);
    }
  
    .faq-content::before{
      position: absolute;
          top: -7px;
          left: -7px;
          content: "";
          transform: rotate(180deg);
          -webkit-transform: rotate(180deg);
          border: solid;
          border-width: 1px 0px 0px 1px;
          display: inline-block;
          padding: 3px;
          -webkit-transition: all .5s ease-out;
          -moz-transition: all .5s ease-out;
          transition: all .7s ease-out;
          border-color: inherit;
          /* background-color: #cda274; */
        }
      
        .faq-content:hover::before{
          left: 100%;
          transform: rotate(-90deg);
        }

/*===========Before After Slider*/



.after-before-box{
  position: relative;
  z-index: 1;
}
.bg-after-before {
  position: absolute;
  width: 50%;
  height: 95%;
  background-color: #323232;
  top: 0;
  right: 0;
  z-index: -1;
}
/* .beforeAfter img{
  opacity: 1;
}
.beforeAfter img:hover{
  opacity: 0.5;
} */



/*=============Why Us==========*/
.why-us{
  background-color: #292929;
  padding: 0;
  margin: 70px 0;
}

.why-content {
  padding-top: 20px;
  padding-left: 20px;
}
.why-content h3{
  font-size: 35px;
}

.why-content ul{
  padding: 0;
  margin: 0;
  margin-top: 25px;
}

.why-content ul li{
  list-style: none;
  margin-top: 15px;
  font-size: 17px;
}

.scrolled{
  background-color: #323232;
}



@media (min-width: 992px) {
  .cus_design {
      column-gap: 20%;
      position: relative;
  }
}
.cus_design{
  position: relative;
  z-index: 99;
}

.ball-box {
  position: absolute;
  left:0;
  top: 50%;
  transform: translateY(-20%);
  text-align: center;
  z-index: -1;
}
.ball-box img{
  width: 28%;
  margin: auto;
}

.card-ser .card{
  border: 0;
}

.card-icon i{
  font-size: 45px;
  color: #474733;
}

.card-content h3{
  color: #474733;
}

a.btn{
  font-size: 14px;
  color: #474733;
  padding: 0;
}
a.btn i{
  padding-right: 10px;
}
.copyright p {
  font-size: 16px;
  font-weight: 500;
}
#footer {
  background: #292929;
  padding: 0 0 15px 0;
}
.footer-contact ul{
  padding: 0;
  margin: 0;
}
.footer-contact ul li {
  list-style: none;
  margin-top: 15px;
  font-size: 15px;
  display: flex;
  color: #fff;
  flex-direction: column;
}
.footer-contact ul li span {
  display: flex;
  padding-right: 10px;
}
.footer-contact ul li a {
     color: #b3b3b3;
    display: inline-block;
    padding-left: 25px;
    font-size: 15px;
}
.footer-contact ul li p{
   padding-left: 25px;  
    color: #b3b3b3;
    font-size:14px;
}

.footer-contact ul li span i{
    color:#a68f5b;
        font-size: 16px;
}
.footer-contact ul li span h5{
    padding-right:15px;
}
.footer-bottom{
background-color: #292929;
}
.footer-contact ul li span{
    display:flex;
}
.footer-contact ul li span h5{
     font-size: 15px;
    font-weight: 700;
    display: inline-block;
    margin-left: 13px;
}
.footer-links ul li i{
  font-size: 15px;  
}


#footer{
  padding: 0;
  margin:0;
}
#footer .copyright {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 10px;
}

.testimonial {
  text-align: center;
}
.testimonial p{
  margin: 0 0 25px;
  font-size: 18px;
  line-height: 35px;
}

.testimonial h4{
  font-size: 20px;
  font-weight: 700;
  padding-top: 0px;
}

.section-title h3{
  font-size: 35px;
  color: #A68F5B;
}

svg {
  color:  #A68F5B;
}

/* .swiper-pagination {
  top: 100% !important;
} */

.testimonial .swiper {
  padding-bottom: 40px;
}


.swiper-pagination-clickable .swiper-pagination-bullet{
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background-image: linear-gradient(#A68F5B,#3f3316);
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background-color:#A68F5B;
}

.about-content h2{
font-size: 17px;
font-weight: 600;
padding-bottom: 15px;
}
.about-img {
 text-align: center;

}
.about-img img{
  border-radius: 1px;
  border-width: 2px 2px 2px 2px;
  border-color: #404040;
  border-style: solid;
  padding: 15px;
}
.carousel-control-next, .carousel-control-prev {
    width: 5%;
    opacity: 1;
}

.link-box {
    display: flex;
    flex-wrap: wrap;
}
.link-box ul:first-child{
    width:40%;
}
.link-box ul:last-child{
    width:60%;
}

.ser-text{
    z-index:99;
}
.ser-text h3{
    color:#fff;
    font-weight:700;
}
.ser-text p{
    color:#fff;
}

.about ul li{
    color:#fff;
    margin-top:15px;
}

.about h3{
    font-size:30px;
}
.faq {
    padding-top: 15px !important;
}


/*=====================Responsive ==================*/
@media only screen and (min-width:1400px) {
  h4.top-heading::after {
    left: -15px;
  }
}
@media only screen and (max-width:991px) {
  #header{
         height: 75px; 
  }
  
  #header.header-scrolled, #header.header-inner-pages {
    background: rgb(23 26 29);
    height: 70px;
    padding-top: 17px;
}
#hero h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 45px;
}
.second-banner-heading h2 {
    font-size: 33px !important;
}
#hero p{
max-width: 100%; 
}
}

@media only screen and (max-width: 768px) {
#hero p {
  max-width: 100%;
}
.pro-box {
  margin-bottom: 43px;
}
.why-content {
  padding-bottom: 33px;
}
.container, .container-sm {
  max-width: 100%;
}
}


@media only screen and (max-width: 450px) {
  #hero p {
    max-width: 100%;
  }
  .about .icon-boxes h3 {
    font-size: 26px;
    line-height: 35px;
  }
  .about-content h2 {
    padding-bottom: 10px;
    padding-top: 15px;
}
.pro-box {
  margin-bottom: 43px;
}
.why-content h3 {
  font-size: 30px;
}
.why-content ul li {
  display: flex;
}
.why-content ul li span{
  padding-right: 10px;
}

section {
  padding: 50px 0;
}
#hero .carousel-container {
  top: 70px;
  left: 10px;
  right: 10px;
}
#hero h2 {
  font-size: 30px;
}
.section-title h3 {
  font-size: 24px;
}
.container, .container-sm {
  max-width: 100% !important;
}
.heading3 {
    font-size: 32px;
}
.ser-card .card {
    border: 0;
    min-height: 400px;
}
.second-banner {
    display: block;
}
.second-banner-para {
    display: none;
}
.second-banner-heading {
    max-width: 100%;
}

}