@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
a,
input,
input::placeholder,
button {
  font-family: "Spartan", sans-serif;
  color: #fff;
}

body {
  overflow-x: hidden;
  height: 100%;
  color: #fff;
  font-family: "Spartan", sans-serif;
  margin-left: auto;
  margin-right: auto;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  transition: scroll-behavior 0.3s ease;
}

@media only screen and (max-width: 65.625em) {
  html {
    font-size: 45%;
  }
}

@media only screen and (max-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

@media only screen and (max-width: 25em) {
  html {
    font-size: 50%;
  }
}

ul {
  list-style: none;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #fff;
}

a:hover {
  cursor: pointer;
}

button {
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
}

input {
  border: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Spartan", sans-serif;
}

img {
  width: 100%;
  object-fit: contain;
}

.container {
  width: 100%;
  min-height: 100vh;

  background-color: #2D2B27;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cdefs%3E%3Cpattern id='p' width='100' height='100' patternUnits='userSpaceOnUse' patternTransform='scale(0.1)'%3E%3Cpath data-color='outline' fill='none' stroke='%231E1B07' stroke-width='6.96' d='M50 0v100M100 50H0'%3E%3C/path%3E%3C/pattern%3E%3C/defs%3E%3Crect fill='url(%23p)' width='100%25' height='100%25'%3E%3C/rect%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
}

.container__up, .container__down {
  position: absolute;
  width: 100%;
  z-index: -1;
}

.container__up {
  top: 0;
  left: 0;
}

.container__down {
  height: 70rem;

  /*background: linear-gradient(180deg, rgba(0, 2, 2, 0) 0%, #000102 100%);*/
  bottom: 0;
  left: 0;
}

.wrap {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 1fr max-content;
  justify-items: center;
  align-items: center;
}

.wrap__box {
  max-width: 55.5rem;
  width: 100%;
  height: 70rem;
  position: relative;
}

.wrap__box--logo {
  margin-bottom: 1rem;
  display: flex;
  align-content: center;
  justify-content: center;
  margin-bottom: 12px;
}

.wrap__box--logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0px 4px 24px #000000);
  max-width: 300px;
}

.wrap__box--video {
  position: relative;
  height: 33.5rem;
  margin-bottom: 3.2rem;
}

.wrap__box--video--frame {
  width: 100%;
  height: 100%;
}

.wrap__box--video--img {
  padding: 1.5rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wrap__box--video--text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}

.wrap__box--video--text h3 {
  font-family: "Spartan", sans-serif;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 2.4rem;
  text-align: center;
  padding: 0 2rem;
  text-transform: uppercase;
  color: #FFFFFF;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.53);
}

.wrap__box--video--text .lines {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.3rem;
  margin-top: 2rem;
  opacity: 0;
}

.wrap__box--video--text .lines button {
  width: 100%;
  height: 2px;
  display: block;
  background-color: rgba(255, 255, 255, 0.5);
}

.wrap__box--video--text .lines button.active {
  background-color: #fff;
}

.wrap__box--form h3 {
  /*background: linear-gradient(90deg, rgba(0, 0, 0, 0) -1.18%, rgba(0, 0, 0, 0) -1.17%, rgba(0, 0, 0, 0.5) 27.15%, rgba(0, 0, 0, 0.179364) 27.16%, rgba(0, 0, 0, 0.5) 77.8%, rgba(0, 0, 0, 0) 100.09%);*/
  /*padding: .6rem 1rem;*/
  font-weight: 500;
  font-size: 1.6rem;
  color: #F8B14D;
  text-align: center;
  text-transform: uppercase;
}

.wrap__box--input {
  border: 2px solid #F8B14D;
  width: 100%;
  height: 5.6rem;
  padding: 4px;
  margin-top: 12rem;
  margin-bottom: 1.2rem;
  border-radius: 18px;
}

.wrap__box--input input {
  background: #00010244;
  border: 2px solid rgba(255, 255, 255, 0.25);
  width: 100%;
  height: 100%;
  /*text-transform: uppercase;*/
  color: #fff;
  padding: 0 1rem;
  text-align: center;
  font-weight: 500;
  transition: all .3s;
  border-radius: 14px;
}

.wrap__box--input input::placeholder {
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  opacity: 1;
  font-size: 110%;
}

.wrap__box--input input:focus {
  border: 2px solid #fff;
  color: #fff;
}

.wrap__box--input input:visited {
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.wrap__box--btn {
  height: 64px;
  width: 383px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  /*transition: background 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);*/
  background: #121212;
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #F8B14D !important;
  position: relative;
  opacity: 0.8;
  border-radius: 24px;
}

.wrap__box--btn--text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 3px;
  color: #F8B14D !important;
}

@media only screen and (max-width: 25em) {
  .wrap__box--btn {
    width: 300px;
    height: 50px;
    background-size: 100%;
    background-repeat: no-repeat;
  }
  .wrap__box--btn:hover {
    background-size: 100% !important;
  }
  .wrap__box--btn:active {
    background-size: cover !important;
  }
}

.wrap__box--btn:hover {
  /*background: url("../img/btn-hover.png");*/
  opacity: 1;
}

.wrap__box--btn:active {
  /*background: url("../img/btn-pressed.png");*/
}

.footer {
  text-align: center;
  margin-bottom: 3.2rem;
}

.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__social a {
  background: #555452;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  display: block;
  margin: 0 .6rem;
  margin-bottom: 1.6rem;
  display: -webkit-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.footer__social a i {
  font-size: 1.8rem;
  color: #fff;
}

.footer__social a.active {
  background: #fff;
}

.footer__social a.active i {
  color: #000;
}

.footer__logo {
  width: 284px;
  height: 26px;
  margin-left: auto;
  margin-right: auto;
}

.footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__copy {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  text-align: center;
  margin-top: 1.2rem;
}

@media only screen and (max-width: 768px) {
  .container {
    height: 100%;
    background-attachment: fixed;
  }
  .wrap {
    padding-top: 8rem;
  }
  .wrap__box {
    width: 38.3rem;
  }
  .wrap__box--video--frame img {
    object-fit: contain;
    transform: scaleY(1.45);
    height: 100%;
  }
  .wrap__box--video--img img {
    height: 100%;
    object-fit: cover;
  }
  .wrap__box--video--text h3 {
    font-size: 1.8rem;
    padding: 0;
  }
  .footer {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */