@-webkit-keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@font-face {
  font-family: Satoshi-Light;
  src: url(../fonts/Satoshi-Light.woff2) format("woff2"),
    url(../fonts/Satoshi-Light.woff) format("woff"),
    url(../fonts/Satoshi-Light.ttf) format("truetype");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: Satoshi-LightItalic;
  src: url(../fonts/Satoshi-LightItalic.woff2) format("woff2"),
    url(../fonts/Satoshi-LightItalic.woff) format("woff"),
    url(../fonts/Satoshi-LightItalic.ttf) format("truetype");
  font-weight: 300;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: Satoshi-Regular;
  src: url(../fonts/Satoshi-Regular.woff2) format("woff2"),
    url(../fonts/Satoshi-Regular.woff) format("woff"),
    url(../fonts/Satoshi-Regular.ttf) format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: Satoshi-Italic;
  src: url(../fonts/Satoshi-Italic.woff2) format("woff2"),
    url(../fonts/Satoshi-Italic.woff) format("woff"),
    url(../fonts/Satoshi-Italic.ttf) format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: Satoshi-Medium;
  src: url(../fonts/Satoshi-Medium.woff2) format("woff2"),
    url(../fonts/Satoshi-Medium.woff) format("woff"),
    url(../fonts/Satoshi-Medium.ttf) format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: Satoshi-MediumItalic;
  src: url(../fonts/Satoshi-MediumItalic.woff2) format("woff2"),
    url(../fonts/Satoshi-MediumItalic.woff) format("woff"),
    url(../fonts/Satoshi-MediumItalic.ttf) format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: Satoshi-Bold;
  src: url(../fonts/Satoshi-Bold.woff2) format("woff2"),
    url(../fonts/Satoshi-Bold.woff) format("woff"),
    url(../fonts/Satoshi-Bold.ttf) format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: Satoshi-BoldItalic;
  src: url(../fonts/Satoshi-BoldItalic.woff2) format("woff2"),
    url(../fonts/Satoshi-BoldItalic.woff) format("woff"),
    url(../fonts/Satoshi-BoldItalic.ttf) format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: Satoshi-Black;
  src: url(../fonts/Satoshi-Black.woff2) format("woff2"),
    url(../fonts/Satoshi-Black.woff) format("woff"),
    url(../fonts/Satoshi-Black.ttf) format("truetype");
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: Satoshi-BlackItalic;
  src: url(../fonts/Satoshi-BlackItalic.woff2) format("woff2"),
    url(../fonts/Satoshi-BlackItalic.woff) format("woff"),
    url(../fonts/Satoshi-BlackItalic.ttf) format("truetype");
  font-weight: 900;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: Satoshi-Variable;
  src: url(../fonts/Satoshi-Variable.woff2) format("woff2"),
    url(../fonts/Satoshi-Variable.woff) format("woff"),
    url(../fonts/Satoshi-Variable.ttf) format("truetype");
  font-weight: 300 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: Satoshi-VariableItalic;
  src: url(../fonts/Satoshi-VariableItalic.woff2) format("woff2"),
    url(../fonts/Satoshi-VariableItalic.woff) format("woff"),
    url(../fonts/Satoshi-VariableItalic.ttf) format("truetype");
  font-weight: 300 900;
  font-display: swap;
  font-style: italic;
}
* {
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-smooth: always;
  text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.004);
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
}
html {
  font-size: 16px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  scroll-behavior: inherit;
}
body,
html {
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
  overflow-x: hidden;
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes zoom-in {
  0% {
    -webkit-transform: scale(0.8) opacity(0);
    transform: scale(0.8) opacity(0);
  }
  100% {
    -webkit-transform: scale(1) opacity(0.7);
    transform: scale(1) opacity(0.7);
  }
}
@keyframes zoom-in {
  0% {
    -webkit-transform: scale(0.8) opacity(0);
    transform: scale(0.8) opacity(0);
  }
  100% {
    -webkit-transform: scale(1) opacity(0.7);
    transform: scale(1) opacity(0.7);
  }
}
::-moz-selection {
  background-color: #7f1518;
  color: #fff;
}
::selection {
  background-color: #7f1518;
  color: #fff;
}
.desktop {
  display: flex;
}
.mobile {
  display: none;
}
.comingSoon {
  min-height: 95vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
.comingSoon__logo {
  margin-top: 8rem;
  margin-bottom: 29%;
}
.comingSoon__logo img {
  width: 20rem;
}
/* .comingSoon:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 0)),
    to(rgba(0, 0, 0, 0.78))
  );
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0,
    rgba(0, 0, 0, 0.78) 100%
  );
} */
.comingSoon__container {
  min-height: 75%;
  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;
  position: relative;
  z-index: 1;
}
.comingSoon__subscribe {
  position: relative;
  z-index: 1;
}
.comingSoon__subscribe-input {
  width: 30%;
}
.comingSoon__subscribe form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #d9d9d9;
}
.comingSoon__subscribe form .form-control {
  color: white;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  border-bottom: 2px solid #d9d9d9;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
  padding-left: 0;
}
.comingSoon__subscribe form button {
  background-color: #fff;
  color: #1e1e1e;
  border: 1px solid #fff;
  border-radius: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
  width: fit-content;
}
.comingSoon__subscribe form button:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
}
.comingSoon__subscribe form button span {
  display: block;
  padding-left: 3rem;
}
.mobileModal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  backdrop-filter: blur(11px);
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.mobileModal__open {
  outline: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-decoration: none;
  border: 1px solid #fff;
  border-radius: 0;
  line-height: 100%;
  background-color: #fff;
  font-family: Satoshi-Bold, Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  color: #1e1e1e;
  padding: 0.8rem;
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
  text-transform: uppercase;
  position: absolute;
  bottom: 8%;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  width: max-content;
  font-weight: 500;
}
.mobileModal__open span {
  display: block;
  margin-left: 2rem;
}
.mobileModal__open span img {
  min-height: 1rem;
}
.mobileModal.active {
  display: flex;
}
.mobileModal__inner {
  background-color: #fff;
  padding: 2rem;
  position: relative;
  padding-top: 4rem;
}

.mobileModal__subscribe h1 {
  font-size: 1.5rem;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #1e1e1e;
  margin-bottom: 2.5rem;
}
.mobileModal__close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  cursor: pointer;
}
.mobileModal__subscribe form .form-control {
  color: #7b7374;
  border: 0;
  border-radius: 0;
  background-color: white;
  border-bottom: 1px solid #7b7374;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
  padding-left: 0;
  font-family: santoshi, Verdana, Geneva, Tahoma, sans-serif;
  line-height: 150%;
  font-size: 1rem;
}
.mobileModal__subscribe form button {
  outline: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-decoration: none;
  border: 1px solid #1e1e1e;
  border-radius: 0;
  line-height: 100%;
  background-color: #1e1e1e;
  font-family: santoshi, Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  color: #fff;
  padding: 0.8rem;
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
  text-transform: uppercase;
  margin: 2rem auto 0;
  width: fit-content;
}
.mobileModal__subscribe form button:hover {
  color: #fff;
}
.mobileModal__subscribe form button span {
  display: block;
  margin-left: 2rem;
}
.mobileModal__subscribe form button span img {
  min-height: 0.8rem;
  filter: invert(1);
}
.comingSoon__subscribe-input {
  margin-bottom: 1rem;
}
.footer {
  background: rgba(81, 81, 81, 0.51);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  min-height: 5vh;
}
.footer p {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer ul {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  list-style: none;
}
.footer ul li {
  margin-left: 1rem;
}
.footer ul li a {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
@media only screen and (max-width: 1350px) {
  html {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1024px) {
  html {
    font-size: 14px;
  }
  .comingSoon__subscribe form button span {
    padding-left: 1rem;
  }
  body {
    background-size: 100% !important;
  }
}
@media only screen and (max-width: 991px) {
  html {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 15px;
  }
  body {
    background: #121a46 url("/assets/images/mobile-banner.jpg") no-repeat center
      center !important;
    background-size: cover !important;
  }
  .desktop {
    display: none;
  }
  .mobile {
    display: flex;
  }
  .footer {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    height: 5vh;
  }
  .footer p {
    text-align: center;
  }
  .footer ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 0.5rem;
  }
  .comingSoon {
    min-height: 95vh;
  }
  .comingSoon__container {
    min-height: 25%;
  }
  .comingSoon__subscribe-input {
    width: 100%;
  }
  .comingSoon__subscribe form .form-control {
    border: 1px solid #fff;
    padding-left: 1rem;
  }
  .comingSoon__subscribe form {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .comingSoon__subscribe form button {
    margin-top: 0rem;
  }
}
