@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scroll-margin-top: 66px;
}

body {
  font-family: "Inter", sans-serif;
}

/* ------------------------- HEADER TOP ------------------------- */
.header-top {
  background-color: black;
}
.header-top .header-top-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
  font-size: 14px;
}

/* ------------------------- HEADER ------------------------- */
header {
  position: sticky;
  top: 0;
  background-color: white;
  -webkit-box-shadow: 0px 0px 5px rgba(3, 3, 3, 0.466);
          box-shadow: 0px 0px 5px rgba(3, 3, 3, 0.466);
  z-index: 1000;
  height: 66px;
}
header .h-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
header .h-logo img {
  width: 140px;
}
header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header nav a {
  text-decoration: none;
  color: black;
  font-size: 14px;
}
header nav #separator {
  opacity: 0.2;
}
header nav .social {
  font-size: 0;
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 15px;
}

#open-menu,
#close-menu {
  display: none;
}

/* ------------------------- HERO ------------------------- */
.hero {
  width: 100%;
  height: 70vh;
  background-color: black;
  background-image: url("../assets/images/Main-Liquor-Wall.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero .hero-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
  height: 100%;
  padding: 20px 40px;
  color: white;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  opacity: 0;
  -webkit-animation: 1s fadeIn ease-in-out forwards;
          animation: 1s fadeIn ease-in-out forwards;
}
.hero .hero-content p {
  max-width: 600px;
}
.hero .hero-content .hero-logo {
  max-width: 650px;
  height: auto;
  width: 100%;
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(137deg) brightness(103%) contrast(101%);
          filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(137deg) brightness(103%) contrast(101%);
}
.hero .swiper {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mySwiper2 img {
  aspect-ratio: 1/1;
}

/* ------------------------- TYPOGRAPHY ------------------------- */
h1 {
  position: relative;
  font-weight: 500;
  font-size: 105px;
  /* &::after {
    position: absolute;
    content: "Text";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;

    top: -30px;
    font-size: 16px;
    font-weight: bolder;
    background-color: yellow;
    color: black;
    padding: 8px;
    right: -10%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    box-shadow: 0px 0px 10px black;
    transform: rotate(-10deg);
    animation: 1s pulse linear infinite;
  } */
}
h1.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

h2 {
  font-size: 34px;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/* ------------------------- GRID ------------------------- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
.grid-2 .grid-2-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.grid-2 .grid-2-item h3 {
  margin-bottom: 10px;
}
.grid-2 img {
  aspect-ratio: 1/1;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.grid-2 .swiper {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.grid-2.location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.grid-2.location img {
  aspect-ratio: 16/11;
  width: 100%;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}
.grid-2.location .swiper {
  width: 65%;
  margin: 0;
}

/* ------------------------- CONTAINER ------------------------- */
.title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  text-align: center;
  margin-bottom: 40px;
}
.title p {
  max-width: 700px;
  opacity: 0.8;
}

hr {
  width: 80px;
  background-color: black;
  border: none;
  height: 3px;
}

.container-full {
  padding: 20px 0;
  border-top: 2px solid rgba(24, 24, 24, 0.0784313725);
}
.container-full.dark-bg {
  background-color: whitesmoke;
}
.container-full#rewards {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgb(0, 0, 0))), url("../assets/images/jason-leung-Xaanw0s0pMk-unsplash.jpg");
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgb(0, 0, 0)), url("../assets/images/jason-leung-Xaanw0s0pMk-unsplash.jpg");
  background-size: cover;
  background-position: center;
}
.container-full#rewards .title * {
  color: white;
}
.container-full#rewards .title hr {
  background-color: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* ------------------------- FORM ------------------------- */
form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  width: 100%;
  padding: 25px;
  gap: 10px;
  background-color: black;
  background: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(#ebebeb), to(white));
  background: linear-gradient(white, #ebebeb, white);
  -webkit-box-shadow: 0px 0px 10px rgba(94, 94, 94, 0.418);
          box-shadow: 0px 0px 10px rgba(94, 94, 94, 0.418);
  border-radius: 10px;
  margin: 0 auto;
  margin-top: 20px;
  max-width: 800px;
}
form#reward {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
form .form-group {
  width: 100%;
}
form label {
  display: block;
  padding-bottom: 10px;
  font-weight: bold;
  font-size: 14px;
}
form input,
form textarea {
  width: 100%;
  font-family: inherit;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  border: none;
  -webkit-box-shadow: 0px 0px 10px rgba(94, 94, 94, 0.24);
          box-shadow: 0px 0px 10px rgba(94, 94, 94, 0.24);
}
form button {
  width: auto;
  padding: 10px 20px;
  background-color: yellow;
  border: none;
  font-weight: bold;
  color: black;
  -webkit-box-shadow: 0px 0px 10px rgba(94, 94, 94, 0.24);
          box-shadow: 0px 0px 10px rgba(94, 94, 94, 0.24);
  font-size: 15px;
  border-radius: 10px;
  cursor: pointer;
  margin: 0 auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
form button:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-box-shadow: 0px 0px 10px rgba(94, 94, 94, 0.5);
          box-shadow: 0px 0px 10px rgba(94, 94, 94, 0.5);
}
form button.success {
  background-color: lime;
  color: black;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

/* ------------------------- LOGOS ------------------------- */
.logos {
  overflow: hidden;
  padding: 20px 0;
  white-space: nowrap;
  position: relative;
  opacity: 0;
  -webkit-animation: 1s fadeIn forwards;
          animation: 1s fadeIn forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.logo_items {
  /*   display: inline-block;
  animation: 40s slides infinite linear; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  animation: slides 45s linear infinite;
  -webkit-animation: slides 45s linear infinite;
  will-change: transform;
}
.logo_items img {
  height: 50px;
  margin: 0 20px;
  /*   &.zoom {
    transform: scale(1.6);
  } */
}

@-webkit-keyframes slides {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes slides {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
/* ------------------------- FOOTER ------------------------- */
footer {
  background-color: black;
}
footer .footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  color: white;
  padding: 60px 20px;
}
footer .footer-content .footer-content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 500px;
  gap: 5px;
}
footer .footer-content .footer-content-item h3 {
  margin-bottom: 10px;
}
footer .footer-content .footer-content-item a {
  color: white;
  text-decoration: none;
}
footer .footer-content .footer-logo {
  max-width: 300px;
  margin-bottom: 10px;
  -webkit-filter: invert(1);
          filter: invert(1);
}
footer .footer-content .socials {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}
footer .footer-content .socials img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
footer .copyright {
  text-align: center;
  background-color: rgb(15, 15, 15);
  color: white;
  padding: 15px 0;
  margin-top: 50px;
}
footer .copyright p {
  font-size: 14px !important;
}

/* ------------------------- LEGAL ------------------------- */
.banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: black;
  color: white;
  padding: 20px;
  text-align: center;
  min-height: 250px;
}

.legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  max-width: 900px;
}
.legal ul {
  margin-left: 25px;
}
.legal ul li:has(br) {
  margin-bottom: 20px;
}
.legal ul li:has(br):last-child {
  margin-bottom: 0;
}

/* ------------------------- MEDIA QUERIES ------------------------- */
@media only screen and (max-width: 1200px) {
  .container {
    padding: 0;
  }
  .container-full {
    padding: 20px;
  }
  .grid-2 {
    gap: 30px;
  }
  footer .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px;
  }
  footer .footer-content .footer-logo {
    max-width: 200px;
  }
  footer .copyright {
    margin-top: 0;
  }
}
@media only screen and (max-width: 992px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .grid-2.location {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .grid-2.location .swiper {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  header nav {
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: white;
    -webkit-transition: 0.3s opacity;
    transition: 0.3s opacity;
  }
  header nav #separator {
    display: none;
  }
  header nav.active {
    opacity: 1;
    pointer-events: all;
  }
  h2 {
    font-size: 28px;
  }
  #open-menu,
  #close-menu {
    display: block;
  }
  #close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
  }
  .grid-2 .grid-2-item {
    width: 100%;
    text-align: center;
  }
  h2 {
    text-align: center;
  }
  hr {
    margin: 0 auto;
  }
  .logo_items img {
    height: 40px;
    margin: 0 15px;
  }
  .banner {
    min-height: 200px;
  }
}
@media only screen and (max-width: 600px) {
  .header-top .header-top-content {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .hero {
    height: auto;
  }
  .hero .hero-content {
    padding: 80px 20px;
  }
  h2 {
    font-size: 22px;
  }
  p,
  a {
    font-size: 15px;
  }
  form#reward {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (max-width: 500px) {
  .header-top .header-top-content p {
    font-size: 13px;
  }
  .banner {
    min-height: 150px;
  }
}/*# sourceMappingURL=styles.css.map */