@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");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  position: relative;
}

html,
body {
  overflow-x: hidden;
  height: 100%;
  scroll-behavior: smooth;
}

img {
  width: 100%;
  height: auto;
}

.gap-3 {
  gap: 0.3em;
}

.bg-main-color {
  background-color: #e6c744;
}

.bg-black {
  background-color: #000;
}

.title {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 1px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.title::before {
  content: "";
  position: absolute;
  left: 68%;
  top: 13px;
  width: 68px;
  height: 20px;
  /* transform: rotate(-11deg); */
  background-color: #e6c744;
  border-radius: 57px 10px;
  z-index: -1;
}

.gap-10 {
  gap: 10px;
}

.padding-50 {
  padding: 50px 0;
}

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

.mobile_sidebar {
  display: none;
}

.overlay-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #353232;
  opacity: 0.9;
  z-index: 9;
  display: none;
}
.overlay-bg.active {
  display: block;
}

.preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader .loader {
  width: 48px;
  height: 48px;
  margin: auto;
  position: relative;
}
.preloader .loader:before {
  content: "";
  width: 48px;
  height: 5px;
  background: #000;
  opacity: 0.25;
  position: absolute;
  top: 60px;
  left: 0;
  border-radius: 50%;
  animation: shadow 0.5s linear infinite;
}
.preloader .loader:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #e6c744;
  animation: bxSpin 0.5s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
}
@keyframes bxSpin {
  17% {
    border-bottom-right-radius: 3px;
  }
  25% {
    transform: translateY(9px) rotate(22.5deg);
  }
  50% {
    transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }
  75% {
    transform: translateY(9px) rotate(67.5deg);
  }
  100% {
    transform: translateY(0) rotate(90deg);
  }
}
@keyframes shadow {
  0%, 100% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.2, 1);
  }
}

nav {
  background-color: #fff;
}
nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
}
nav .container .bar_icon {
  display: none;
}
nav .container .nav-items {
  margin: 0 !important;
}
nav .container .nav-items .nav-item {
  display: inline-block;
  cursor: pointer;
  list-style: none;
  padding-right: 10px;
  text-transform: capitalize;
}
nav .container .nav-items .nav-item a {
  color: #000;
}

.hero {
  position: relative;
}
.hero .slide-caption {
  position: absolute;
  left: 8%;
  transform: translateY(-116%);
  z-index: 999;
}
.hero .slide-caption h1 {
  font-size: 60px;
  font-weight: 800;
  color: #000;
  width: 20%;
}
.hero .slide-caption h1 .mark-white {
  position: relative;
}
.hero .slide-caption h1 .mark-white::before {
  content: "";
  position: absolute;
  left: -23px;
  top: -2px;
  transform: rotate(-2deg);
  width: 147%;
  height: 79px;
  background-color: #fff;
  z-index: -1;
}
.hero .slide-caption h1 .mark-yellow {
  position: relative;
}
.hero .slide-caption h1 .mark-yellow::after {
  content: "";
  position: absolute;
  left: -15px;
  top: 0;
  transform: rotate(-2deg);
  width: 115%;
  height: 75px;
  background-color: #ebd96b;
  z-index: -1;
}
.hero .slide-caption .hero-subtitle {
  font-size: 18px;
  color: #000;
  font-weight: 500;
}
.hero .slide-caption .btn-dark {
  background-color: #000;
}

.partners .owl-stage {
  display: flex;
  align-items: center;
}
.partners .owl-stage .item {
  width: 200px;
}

.card {
  border: none;
}
.card .card-body {
  display: flex;
  justify-content: space-between;
}
.card .card-body a i {
  color: #797979;
  font-size: 18px;
}

.banner {
  position: relative;
  height: 100dvh;
  background-image: url(../img/banner.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.banner .position-relative {
  height: 500px;
  position: relative !important;
}
.banner .star {
  width: 45px;
}
.banner .star:first-child {
  position: absolute;
  top: 59px;
  right: 90px;
  transform: rotate(-14deg);
}
.banner .star:nth-child(2) {
  position: absolute;
  top: 90px;
  left: 56px;
  transform: rotate(-20deg);
}
.banner .star:nth-child(3) {
  position: absolute;
  bottom: 25%;
  left: 0;
  transform: rotate(-20deg);
}
.banner .star:nth-child(4) {
  position: absolute;
  bottom: 31px;
  right: 6%;
  transform: rotate(-20deg);
}
.banner h2 {
  font-size: 97px;
  font-weight: 800;
  position: relative;
  z-index: 1;
  letter-spacing: 7px;
}
.banner h2::after {
  content: "";
  position: absolute;
  top: 0;
  left: -29px;
  width: 78%;
  height: 108px;
  background-color: #fff;
  z-index: -1;
  transform: rotate(-1deg);
}
.banner p {
  font-size: 20px;
}
.banner p.fw-bold {
  font-weight: 800;
}
.banner .col-md-6:nth-child(2) {
  position: absolute;
  top: 50%;
  right: -26%;
  transform: translate(-50%, -50%);
}

.vouchers {
  height: 80vh;
  position: relative;
}
.vouchers h2 {
  font-weight: 700;
  font-size: 62px;
}
.vouchers p {
  font-size: 20px;
  font-weight: 200;
  color: #797979;
}
.vouchers .app {
  width: 380px;
}
.vouchers .stores img {
  border-radius: 10px;
  width: 150px;
}

.community h2 {
  font-weight: 800;
  font-size: 42px;
  width: 72%;
  margin: auto;
}
.community p {
  font-weight: 500;
  font-size: 20px;
}
.community form {
  position: relative;
  width: 43%;
  margin: auto;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
.community form .form-input {
  border: none !important;
  width: 100%;
  background-color: #fff;
  padding: 20px;
  outline: none;
}
.community form .form-input::-moz-placeholder {
  color: #797979;
}
.community form .form-input::placeholder {
  color: #797979;
}
.community form .btn {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translate(0, -50%);
}

footer {
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}
footer h2 {
  font-weight: 800;
  font-size: 3rem;
}
footer p {
  font-size: 23px;
  color: #8e8e8e;
}
footer .icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e6c744;
  border-radius: 10px;
}
footer .icon i {
  color: #000;
  font-size: 20px;
}
footer ul {
  margin-top: 30px;
}
footer ul li {
  font-size: 18px;
  color: #797979;
  line-height: 3em;
  list-style: none;
}
footer .copyright {
  position: absolute;
  width: 100%;
  background-color: #fff;
  padding: 30px;
  font-size: 20px;
  color: #fff;
  bottom: 0;
  left: 0;
}
footer .copyright > p {
  font-size: 15px !important;
  text-align: center;
}/*# sourceMappingURL=style.css.map */