@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 {
  width: 40%;
  height: 100%;
  background-color: #fff;
  position: fixed;
  left: -100%;
  top: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  box-shadow: 0 0 40px 10px rgba(205, 205, 205, 0.8039215686);
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.mobile_sidebar.active {
  left: 0;
}

.overlay-bg {
  position: fixed;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #353232;
  opacity: 0.9;
  z-index: 9999;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.overlay-bg.active {
  left: 0;
  opacity: 1;
}

.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;
  z-index: 99999;
}
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 {
  padding: 30px 0;
}
.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;
}

.vouchers {
  height: 100%;
  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;
}

@media screen and (max-width: 767px) {
  .nav-items {
    width: 100%;
    text-align: center;
    padding: 20px 0;
  }
  .nav-items .nav-item {
    list-style: none;
    font-size: 20px;
    color: #000;
    padding-top: 20px;
  }
  .nav-items .nav-item.btn.btn-dark {
    padding: 10px !important;
    margin-top: 20px;
    font-size: 19px;
  }
}
@media screen and (max-width: 780px) {
  .mobile_sidebar {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  nav .nav-items {
    display: none;
  }
  nav .bar_icon {
    display: block !important;
  }
}
@media screen and (max-width: 800px) {
  .hero .slide-caption h1 {
    font-size: 49px;
  }
}
@media screen and (max-width: 1024px) {
  .hero .slide-caption h1 {
    font-size: 35px;
  }
}
@media screen and (max-width: 767px) {
  .hero .slide-caption h1 {
    width: 60%;
    font-size: 24px;
  }
  .hero .slide-caption h1 .mark-white::before {
    display: none;
  }
  .hero .slide-caption h1 .mark-yellow::after {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .hero .slide-caption .hero-subtitle {
    width: 38%;
  }
}
@media screen and (max-width: 767px) {
  .hero .slide-caption .hero-subtitle {
    width: 55%;
    font-size: 15px;
  }
}

@media screen and (max-width: 800px) {
  .banner {
    background-image: url(../img/mobile_banner.jpg);
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media screen and (max-width: 800px) {
  .banner .col-lg-6:first-child {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .banner h2::after {
    left: 21px;
    width: 57%;
  }
}
@media screen and (max-width: 800px) {
  .banner .banner-text {
    text-align: center;
  }
}
@media screen and (max-width: 800px) {
  .banner .star {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .banner h2 {
    font-size: 79px;
  }
}
@media screen and (max-width: 800px) {
  .banner .col-md-6:nth-child(2) {
    right: -20%;
  }
}

@media screen and (max-width: 800px) {
  .vouchers {
    height: -moz-fit-content;
    height: fit-content;
  }
}

@media screen and (max-width: 991px) {
  footer {
    text-align: center;
  }
  footer .socialMedia {
    justify-content: center;
  }
}
@media screen and (max-width: 800px) {
  footer .col-lg-6:nth-child(1) {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 800px) {
  footer .socialMedia {
    justify-content: center;
  }
}

@media screen and (max-width: 780px) {
  .community form {
    width: 80%;
  }
}
@media screen and (max-width: 300px) {
  .community form {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .community h2 {
    width: 100%;
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .community h2 {
    width: 100%;
    font-size: 25px;
  }
}
@media screen and (max-width: 800px) {
  .community p {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .community p {
    font-size: 14px;
  }
}

.hero_area {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.sub_page .hero_area {
  min-height: auto;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
}

.header_section {
  padding: 15px 0;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.navbar-brand {
  font-family: "Playfair Display", serif;
}

.navbar-brand span {
  font-weight: bold;
  font-size: 32px;
  color: #000000;
}

.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  margin-left: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 5px 20px;
  color: #131313;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  transition: all 0.3s;
  font-weight: 700;
}

.custom_nav-container .navbar-nav .nav-item .nav-link svg {
  width: 17px;
  height: auto;
  fill: #000000;
  margin-bottom: 2px;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link,
.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #f7444e;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link svg,
.custom_nav-container .navbar-nav .nav-item.active .nav-link svg {
  fill: #f7444e;
}

.custom_nav-container .nav_search-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
  color: #000000;
}

.custom_nav-container .nav_search-btn:hover {
  color: #f7444e;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #000000;
  margin: 7px 0;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before,
.custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000000;
  top: -10px;
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded=true] {
  transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded=true] span {
  transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded=true] span::before,
.custom_nav-container .navbar-toggler[aria-expanded=true] span::after {
  transform: rotate(90deg);
  top: 0;
}/*# sourceMappingURL=style.css.map */