@import url("https://fonts.googleapis.com/css2?family=Poppins: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=Saira+Stencil+One&display=swap");
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s linear;
  border: none;
  outline: none;
}

html,
body {
  overflow-x: hidden;
}

@keyframes turn360Infinite {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
img {
  width: 100%;
  height: auto;
}

.section-title {
  font-size: 20px;
  text-transform: capitalize;
  color: #181828;
}

.section-sub {
  font-size: 18px;
  color: #868686;
}

.custom-btn {
  background-color: #B4975D;
  color: #fff;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 13px;
  padding-bottom: 13px;
  text-transform: capitalize;
}
.custom-btn:hover {
  border: 1px solid #B4975D;
  color: #B4975D;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

header {
  background-image: url("../img/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
header .navbar {
  z-index: 999;
}
header .navbar.nav-2 {
  backdrop-filter: blur(3px);
}
header .navbar.active {
  position: fixed;
  left: 0;
  width: 100%;
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 10px #cdcdcd;
}
header .navbar .bar_icon {
  width: 50px;
  height: 50px;
  background-color: #B4975D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding: 16px 14px;
  cursor: pointer;
  display: none;
  overflow: hidden;
}
header .navbar .bar_icon span {
  width: 100%;
  height: 3px;
  background-color: #181828;
  border-radius: 50px;
}
header .navbar .bar_icon span:nth-child(2) {
  margin-left: 7px;
}
header .navbar .bar_icon:hover span:nth-child(2) {
  transform: translateX(-100px);
}
header .navbar .bar_icon:hover span:first-child {
  transform: translateY(9px) translateX(2px) rotate(45deg);
}
header .navbar .bar_icon:hover span:last-child {
  transform: translateY(-6px) translateX(2px) rotate(-45deg);
}
header .navbar .bar_icon:hover {
  box-shadow: 2px 2px 0px #181828, 3px 3px 0px #B4975D;
}
header .navbar .brand-logo {
  width: 150px;
}
header .navbar .nav-items {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 25px;
}
header .navbar .nav-items .drop_down_menu {
  width: 200px;
  background-color: #fff;
  top: 28px;
  padding: 30px;
  box-shadow: 7px 8px 0px 0px #B4975D;
  border-radius: 8px;
  display: none;
  list-style: none;
}
header .navbar .nav-items .drop_down_menu a {
  text-decoration: none;
}
header .navbar .nav-items .has-drop-down-menu:hover .drop_down_menu {
  display: block !important;
}
header .navbar .nav-items .nav-item {
  list-style: none;
  text-transform: uppercase;
  position: relative;
}
header .navbar .nav-items .nav-item::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  background-color: #B4975D;
  bottom: 0;
  left: 0;
}
header .navbar .nav-items .nav-item:hover::before {
  width: 100%;
}
header .navbar .nav-items .nav-item a {
  font-size: 18px;
  color: #181828;
  text-transform: capitalize;
}
header .hero {
  color: #fff;
  padding-top: 200px;
  padding-bottom: 200px;
}
header .hero.page-2 {
  background-color: pink;
}
header .hero h1 {
  font-size: 70px;
  font-weight: 800;
  color: #181828;
}
header .hero p {
  font-size: 20px;
  font-weight: 500;
  color: #181828;
}

.sidebar {
  position: fixed;
  overflow: hidden;
  left: -100%;
  top: 0;
  width: 400px;
  height: 100%;
  background-color: #B4975D;
  z-index: 999;
  display: flex;
  justify-content: center;
  flex-direction: column;
  box-shadow: 4px 4px 26px rgba(0, 0, 0, 0.4509803922);
  opacity: 0;
  transition: all 0.5s linear !important;
}
.sidebar.active {
  left: 0;
  opacity: 1;
}
.sidebar .brand-logo {
  width: 200px;
  margin: 20px auto;
}
.sidebar ul li {
  list-style: none;
  text-align: center;
  padding: 10px;
  position: relative;
}
.sidebar ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: #815c12;
  height: 100%;
  z-index: -1;
  width: 0%;
}
.sidebar ul li:hover::before {
  width: 100%;
}
.sidebar ul li:not(:first-child) {
  margin-top: 10px;
}
.sidebar ul li a {
  font-size: 30px;
  font-weight: 500;
  width: 100%;
  height: 100%;
}
.sidebar ul li:hover a {
  letter-spacing: 2px;
}

.features .card {
  gap: 15px;
}
.features .card img {
  width: 80px;
}

.about figure {
  animation: turn360Infinite 10s linear infinite;
  width: 550px;
  margin: auto;
}
.about .about_items {
  margin-top: 20px;
  padding-left: 0;
}
.about .about_items .about_item {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.about .about_items .about_item img {
  width: 60px;
}

.services .section-title {
  width: fit-content;
  background-color: #fff;
  padding-right: 10px;
}
.services .line {
  width: 100%;
  height: 1px;
  background-color: #181828;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
}
.services .services-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 20px;
}
.services .card {
  padding: 40px 20px;
  background-color: #EEEBE6;
  border: none;
  width: 100%;
  height: 400px;
}
.services .card .card-img-top {
  width: 90px;
  margin: auto;
}

.team {
  background-image: url("../img/team-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.team .overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #181828;
  z-index: -1;
}
.team .card {
  background-color: transparent;
}

.pricing .price_box {
  width: 100%;
  height: auto;
  background-color: #fff;
  box-shadow: 3px 7px 10px rgba(180, 151, 93, 0.141);
  padding: 50px 20px;
}
.pricing .price_box .price {
  font-family: "Saira Stencil One", sans-serif;
  font-size: 55px;
  color: #181828;
  text-shadow: 0 0 10px #cdcdcd;
}
.pricing .price_box .pay_type {
  width: fit-content;
  margin: auto;
  padding: 0.2em 0.5em;
  font-size: 15px;
  text-transform: capitalize;
  letter-spacing: 1px;
}
.pricing .price_box .pay_type.main {
  color: #617C97;
}
.pricing .price_box .pay_type.sec {
  color: #D5846E;
}
.pricing .price_box button.main {
  background-color: #617C97;
}
.pricing .price_box button.main:hover {
  background-color: #fff;
}
.pricing .price_box button.sec {
  background-color: #181828;
}
.pricing .price_box button.sec:hover {
  background-color: #fff;
}
.pricing .price_box .price_items {
  list-style-type: none;
}
.pricing .price_box .price_items .price_item {
  font-size: 15px;
  color: #181828;
}
.pricing .price_box .price_items .price_item .fe_check {
  width: 30px;
}
.pricing .price_box .price_items .price_item.unav {
  color: #cdcdcd;
}

footer {
  background-image: url("../img/bg-dark.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
footer .overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(238, 235, 230, 0.5);
  z-index: -1;
}
footer h3 {
  text-transform: uppercase;
  color: #181828;
  font-size: 20px;
}
footer ul li {
  list-style-type: none;
  font-size: 15px;
}
footer .brand-logo {
  width: 150px;
}
footer form .btn {
  background-color: #ba9a63;
}
footer form .btn svg {
  color: #fff;
}
footer form .btn:hover svg {
  color: #181828;
}

.overlay_background {
  position: fixed;
  overflow: hidden;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  z-index: -1;
}
.overlay_background.active {
  opacity: 1;
  display: block;
  z-index: 1;
}

.loading {
  position: fixed;
  left: 0;
  top: 0;
  background-color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.loading .loader {
  position: relative;
  width: 164px;
  height: 164px;
  perspective: 300px;
}
.loading .loader::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: radial-gradient(circle 15px, #B4975D 100%, transparent 0), radial-gradient(circle 15px, #B4975D 100%, transparent 0), linear-gradient(#B4975D 100px, transparent 0), linear-gradient(#B4975D 100px, transparent 0);
  background-repeat: no-repeat;
  background-size: 30px 30px, 30px 30px, 40% 2px, 40% 2px;
  background-position: left center, right center, left center, right center;
  animation: rotateY 1s linear infinite;
}
.loading .loader::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: radial-gradient(circle 15px, #181828 100%, transparent 0), radial-gradient(circle 15px, #181828 100%, transparent 0), linear-gradient(#181828 100px, transparent 0), linear-gradient(#181828 100px, transparent 0);
  background-repeat: no-repeat;
  background-size: 30px 30px, 30px 30px, 2px 40%, 2px 40%;
  background-position: top center, bottom center, top center, bottom center;
  animation: rotateX 1s linear infinite;
}
@keyframes rotateY {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(-180deg);
  }
}
@keyframes rotateX {
  0%, 25% {
    transform: rotateX(0deg);
  }
  75%, 100% {
    transform: rotateX(-180deg);
  }
}

/*# sourceMappingURL=style-1.css.map */
