@font-face {
  font-family: "Snell Roundhand";
  src: url("../fonts/snellroundhand_black.woff2") format("woff2");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Snell Roundhand";
  src: url("../fonts/snellroundhand_bold.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
.for-laptop {
  display: none;
}
@media (min-width: 1024px) {
  .for-laptop {
    display: block;
  }
}

.popup {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: #fff;
  overflow: hidden;
  height: 0;
  transition: height 0.75s linear;
}
.popup__close {
  position: absolute;
  right: 20px;
  top: 30px;
  background: transparent;
  border: none;
  outline: none;
  font-size: 18px;
  line-height: 100%;
  text-transform: uppercase;
  color: #1A1717;
  padding: 0;
  text-decoration: underline;
}
@media (min-width: 767px) {
  .popup__close {
    top: 40px;
    font-size: 26px;
  }
}
@media (min-width: 1024px) {
  .popup__close {
    top: 2.7777777778vw;
    right: 4.1666666667vw;
    font-size: 2.2222222222vw;
    text-decoration: none;
  }
}
@media (min-width: 1920px) {
  .popup__close {
    top: 40px;
    right: 60px;
    font-size: 32px;
  }
}
@media (min-width: 1024px) {
  .popup__close::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    background: #000;
    height: 2px;
    transition: 0.3s;
  }
}
@media (pointer: fine) {
  .popup__close {
    cursor: pointer;
  }
  .popup__close:hover::after {
    width: 0;
  }
}
.popup.opened {
  height: 100%;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.popup.closed.opened {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.form__header {
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: auto;
  flex: 1;
}
.form__header img {
  width: 228px;
  margin-bottom: 67px;
}
@media (min-width: 767px) {
  .form__header img {
    margin-bottom: 205px;
  }
}
@media (min-width: 1024px) {
  .form__header img {
    width: 15.8333333333vw;
    margin-bottom: 0;
  }
}
@media (min-width: 1920px) {
  .form__header img {
    width: 228px;
  }
}
.form__header .h2 {
  margin: auto 0;
}
.form__header h2 {
  font-family: "Snell Roundhand", sans-serif;
  font-weight: 900;
  font-size: 68px;
  line-height: 100%;
  color: #1A1717;
  margin: auto 0;
}
@media (min-width: 767px) {
  .form__header h2 {
    font-size: 100px;
  }
}
@media (min-width: 1024px) {
  .form__header h2 {
    font-size: 6.9444444444vw;
  }
}
@media (min-width: 1920px) {
  .form__header h2 {
    font-size: 100px;
  }
}
.form__header.hidden {
  opacity: 0;
  visibility: hidden;
  transition: 0.6s linear 0s;
}
@media (min-width: 767px) {
  .form__header {
    flex: unset;
    margin-bottom: 60px;
  }
}
@media (min-width: 1024px) {
  .form__header {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    max-width: 56.25vw;
    margin: auto auto 4.6527777778vw;
  }
}
@media (min-width: 1920px) {
  .form__header {
    max-width: 810px;
    margin: auto auto 67px;
  }
}

.popup-form {
  padding: 69px 20px 20px;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  overflow: auto;
}
.popup-form__form {
  flex: 1;
  opacity: 0;
}
.popup-form__form.animated {
  opacity: 1;
  transition: opacity 0.6s linear 1.4s;
}
.popup-form__form.animated.closed {
  opacity: 0;
  transition: opacity 0.6s linear 0.3s;
}
.popup-form__form.hidden {
  opacity: 0;
  visibility: hidden;
  transition: 0.6s linear 0s;
}
@media (min-width: 767px) {
  .popup-form__form {
    margin-bottom: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    flex: unset;
  }
}
@media (min-width: 1024px) {
  .popup-form__form {
    max-width: 55.2083333333vw;
    margin: 0 auto auto;
  }
}
@media (min-width: 1920px) {
  .popup-form__form {
    max-width: 795px;
  }
}
.popup-form__success {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Snell Roundhand", sans-serif;
  font-weight: 900;
  font-size: 68px;
  line-height: 100%;
  text-align: center;
  color: #1A1717;
  opacity: 0;
  visibility: hidden;
  transition: 0.6s linear 0.6s;
}
.popup-form__success.active {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 767px) {
  .popup-form__success {
    font-size: 100px;
    padding-bottom: 80px;
  }
}
@media (min-width: 1024px) {
  .popup-form__success {
    font-size: 6.9444444444vw;
    padding-bottom: 4.8611111111vw;
  }
}
@media (min-width: 1920px) {
  .popup-form__success {
    font-size: 100px;
    padding-bottom: 150px;
  }
}
@media (min-width: 767px) {
  .popup-form {
    padding: 40px 20px;
  }
}

.form-item {
  display: flex;
  flex-direction: column;
  height: 78px;
  border: 1px solid #1A1717;
  border-bottom: none;
  padding: 10px 20px 20px;
  box-sizing: border-box;
}
@media (min-width: 767px) {
  .form-item:first-child {
    border-right: none;
  }
}
@media (min-width: 767px) {
  .form-item:nth-child(3) {
    border-bottom: 1px solid #1A1717;
    width: calc(50% + 1px);
  }
}
.form-item:last-child {
  padding: 0;
}
@media (min-width: 767px) {
  .form-item:last-child {
    border: none;
    width: calc(50% - 1px);
  }
}
.form-item__label {
  font-family: "Snell Roundhand", sans-serif;
  font-weight: bold;
  font-size: 14px;
  line-height: 140%;
  display: flex;
  align-items: flex-end;
  color: #1A1717;
  margin-bottom: 10px;
  cursor: pointer;
}
.error .form-item__label {
  color: #9C2C2C;
}
@media (min-width: 767px) {
  .form-item__label {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
@media (min-width: 1024px) {
  .form-item__label {
    font-size: 1.1111111111vw;
    margin-bottom: 0.6944444444vw;
    line-height: 1.5277777778vw;
  }
}
@media (min-width: 1024px) and (min-width: 1920px) {
  .form-item__label {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 22px;
  }
}
.form-item__input {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: normal;
  font-size: 18px;
  line-height: 100%;
  display: flex;
  align-items: flex-end;
  color: #1A1717;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  cursor: pointer;
  height: auto;
  margin: -2px 0;
}
@media (min-width: 767px) {
  .form-item__input {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .form-item__input {
    font-size: 1.8055555556vw;
    height: 1.8055555556vw;
  }
}
@media (min-width: 1024px) {
  .form-item__input {
    font-size: 26px;
    height: 26px;
  }
}
.form-item__button {
  background: #1A1717;
  font-family: "Snell Roundhand", sans-serif;
  font-weight: 900;
  font-size: 26px;
  line-height: 100%;
  text-align: center;
  color: #FFFFFF;
  padding: 25px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background-color 0.3s, border-bottom-color 0.3s, border-left-color 0.3s, border-right-color 0.3s, border-top-color 0.3s;
}
.form-item__button.error {
  background: #9C2C2C;
}
@media (min-width: 767px) {
  .form-item__button.error {
    border-top: 1px solid #9C2C2C;
    border-bottom: 1px solid #9C2C2C;
    border-right: 1px solid #9C2C2C;
  }
}
@media (min-width: 767px) {
  .form-item__button {
    font-size: 28px;
    padding: 31px 0;
    flex: 1;
    border-top: 1px solid #1A1717;
    border-bottom: 1px solid #1A1717;
    border-right: 1px solid #1A1717;
  }
}
@media (min-width: 1024px) {
  .form-item__button {
    font-size: 2.2222222222vw;
    padding: 2.1527777778vw 0;
  }
}
@media (min-width: 1920px) {
  .form-item__button {
    font-size: 32px;
    padding: 31px 0;
  }
}
@media (pointer: fine) {
  .form-item__button:not(.error):hover {
    background: rgba(26, 23, 23, 0.46);
    border-color: rgba(26, 23, 23, 0.46);
  }
}
@media (min-width: 767px) {
  .form-item {
    width: 50%;
    height: 90px;
    padding: 12px 24px 19px;
  }
}
@media (min-width: 1024px) {
  .form-item {
    height: 6.6666666667vw;
    padding: 0.8333333333vw 1.6666666667vw 1.6666666667vw;
  }
}
@media (min-width: 1920px) {
  .form-item {
    height: 96px;
    padding: 12px 24px 24px;
  }
}

.hide-up {
  overflow: hidden;
}
.hide-up img {
  transform: translateX(-110%);
  opacity: 0;
}
@media (min-width: 1024px) {
  .hide-up img {
    transform: translateY(110%);
  }
}
.hide-up h2 {
  transform: translateY(-110%);
  opacity: 0;
}
@media (min-width: 1024px) {
  .hide-up h2 {
    transform: translateY(110%);
  }
}
@media (min-width: 1024px) {
  .hide-up:not(.h2) {
    display: flex;
    align-items: flex-end;
    padding-bottom: 0.6944444444vw;
  }
}
@media (min-width: 1920px) {
  .hide-up:not(.h2) {
    padding-bottom: 10px;
  }
}
.hide-up.animated img {
  transform: none;
  transition: transform 0.6s linear 1s, opacity 0.6s linear 1s;
  opacity: 1;
}
@media (min-width: 1024px) {
  .hide-up.animated img {
    transition-delay: 1s;
  }
}
.hide-up.animated h2 {
  transform: none;
  transition: transform 0.6s linear 1.1s, opacity 0.6s linear 1.1s;
  opacity: 1;
}
@media (min-width: 1024px) {
  .hide-up.animated h2 {
    transition-delay: 1s;
  }
}
.hide-up.animated.closed img {
  transform: translateX(-110%);
  transition: 0.3s linear 0.5s;
}
@media (min-width: 1024px) {
  .hide-up.animated.closed img {
    transform: translateY(-110%);
  }
}
.hide-up.animated.closed h2 {
  transform: translateY(-110%);
  transition: 0.3s linear 0.6s;
}

@keyframes transition-start {
  0% {
    height: 0;
  }
  50% {
    height: 100%;
    transform-origin: top;
    top: 0;
    bottom: unset;
  }
  51% {
    height: 100%;
    transform-origin: bottom;
    top: unset;
    bottom: 0;
  }
  100% {
    height: 0;
    transform-origin: bottom;
    top: unset;
    bottom: 0;
  }
}
@keyframes transition-end {
  0% {
    height: 0;
    transform-origin: bottom;
    top: unset;
    bottom: 0;
  }
  50% {
    height: 100%;
    transform-origin: bottom;
    top: unset;
    bottom: 0;
  }
  51% {
    height: 100%;
    transform-origin: top;
    top: 0;
    bottom: unset;
  }
  100% {
    height: 0;
  }
}
@keyframes fade-in {
  to {
    opacity: 1;
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-116px);
  }
}
@media (min-width: 767px) {
  @keyframes marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-233px);
    }
  }
}
@media (min-width: 1024px) {
  @keyframes marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-16.1805555556vw);
    }
  }
}
@media (min-width: 1920px) {
  @keyframes marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-233px);
    }
  }
}
.site-wrapper {
  font-family: "Space Mono", sans-serif;
}
.site-wrapper::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 25;
  content: "";
  transition: 1.5s;
}
.site-wrapper.transition-start::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background: #000;
  z-index: 25;
  content: "";
  transform-origin: top;
  animation: 1.5s linear transition-start forwards;
}
.site-wrapper.transition-end::before {
  animation: 1.5s linear transition-end 0.5s forwards;
}

.page-content {
  height: 100vh;
  min-height: 600px;
  text-align: left;
  text-transform: uppercase;
  color: #FFFFFF;
}

.temporary-header {
  padding: 60px 20px;
}
.temporary-header__element {
  opacity: 0;
  font-size: 18px;
  line-height: 100%;
}
@media (min-width: 767px) {
  .temporary-header__element {
    font-size: 34px;
  }
}
@media (min-width: 1024px) {
  .temporary-header__element {
    font-size: 3.4722222222vw;
  }
}
@media (min-width: 1920px) {
  .temporary-header__element {
    font-size: 50px;
  }
}
@media (max-height: 700px) {
  .temporary-header {
    padding-top: 40px;
  }
}
@media (min-width: 1024px) {
  .temporary-header {
    padding: 2.7777777778vw 4.1666666667vw;
  }
}
@media (min-width: 1920px) {
  .temporary-header {
    padding: 40px 60px;
  }
}

.loaded .temporary-header__element {
  animation: fade-in 1.8s linear forwards 1.7s;
}
.loaded .temporary-header__element--1 {
  animation-delay: 1.7s;
}
.loaded .temporary-header__element--2 {
  animation-delay: 2.1s;
}
.loaded .temporary-header__element--3 {
  animation-delay: 2.3s;
}
.loaded .temporary-header__element--4 {
  animation-delay: 1.7s;
}
.loaded .temporary-header__element--5 {
  animation-delay: 1.9s;
}
.loaded .site-wrapper::after {
  height: 0;
}
.loaded .temporary-footer,
.loaded .temporary-line {
  opacity: 1;
  transition: opacity 1s linear 3s;
}

.temporary-video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}

.temporary-line {
  display: flex;
  width: 100%;
  overflow: hidden;
  font-size: 10px;
  line-height: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}
.temporary-line__item {
  animation: marquee 4s linear infinite;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
@media (min-width: 767px) {
  .temporary-line {
    font-size: 20px;
    line-height: 100%;
  }
}
@media (min-width: 1024px) {
  .temporary-line {
    font-size: 1.3888888889vw;
  }
}
@media (min-width: 1920px) {
  .temporary-line {
    font-size: 20px;
  }
}

.temporary-footer {
  position: absolute;
  left: 20px;
  bottom: 100px;
  display: flex;
  width: fit-content;
  font-size: 18px;
  line-height: 100%;
  text-transform: uppercase;
  color: #FFFFFF;
  opacity: 0;
}
@media (max-height: 700px) {
  .temporary-footer {
    bottom: 40px;
  }
}
.temporary-footer__button {
  padding: 0;
  background: transparent;
  border: none;
  outline: none;
  font-size: 18px;
  line-height: 100%;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-left: 7px;
  text-decoration: underline;
}
@media (min-width: 767px) {
  .temporary-footer__button {
    margin-left: 21px;
    font-size: 34px;
  }
}
@media (min-width: 1024px) {
  .temporary-footer__button {
    margin-left: 2.0138888889vw;
    font-size: 3.4722222222vw;
    text-decoration: none;
    position: relative;
  }
}
@media (min-width: 1920px) {
  .temporary-footer__button {
    margin-left: 29px;
    font-size: 50px;
  }
}
@media (min-width: 1024px) {
  .temporary-footer__button::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    height: 2px;
    transition: 0.3s;
  }
}
@media (pointer: fine) {
  .temporary-footer__button {
    cursor: pointer;
  }
  .temporary-footer__button:hover::after {
    width: 0;
  }
}
@media (min-width: 767px) {
  .temporary-footer {
    font-size: 34px;
  }
}
@media (min-width: 1024px) {
  .temporary-footer {
    bottom: 2.7777777778vw;
    left: 4.1666666667vw;
    font-size: 3.4722222222vw;
  }
}
@media (min-width: 1920px) {
  .temporary-footer {
    bottom: 40px;
    left: 60px;
    font-size: 50px;
  }
}

/*# sourceMappingURL=main.css.map */
