@font-face {
  font-family: "GoodSans";
  src: url(./fonts/GoodSans-Regular.otf);
  font-weight: 400;
}

@font-face {
  font-family: "GoodSans";
  font-weight: 300;
  src: url(./fonts/GoodSans-Thin.otf);
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

::-webkit-scrollbar {
  display: none;
}

body {
  max-height: 100vh;
  max-width: 100vw;
  min-height: 640px;
  overflow: hidden;
  font-family: "GoodSans";
  font-weight: 300;
  color: #fff;
  background-color: black;
}

.landing {
  height: 100vh;
  width: 100vw;
  text-align: center;
}

.landing video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  opacity: 0.4;
}

.landing__title {
  text-align: center;
  margin-top: 45px;
  padding-bottom: 450px;
  font-size: 20px;
}

.landing__main-logo {
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.landing__subtitle {
  width: 100%;
  margin: 0 auto;
  position: absolute;
  bottom: 130px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 14px;
}

.landing__subtitle__title {
  font-weight: 400;
}

.landing__subtitle a {
  color: inherit;
  text-decoration: none;
}

.landing__subtitle a:hover {
  text-decoration: underline;
}

.landing__buttons {
  width: 100%;
  position: absolute;
  bottom: 55px;
}

.landing__buttons a {
  font-size: 16px;
  color: #fff;
  text-underline-offset: 2px;
  margin: 0 33px;
  font-weight: 400;
}

.contact {
  position: fixed;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  top: 0;
  right: -40vw;
  height: 100%;
  padding: 0 64px 0 58px;
  width: 40vw;
  background-color: #c4beb2;
  overflow: scroll;
}

.contact__close {
  margin-top: 60px;
  font-size: 14px;
  cursor: pointer;
}

.contact__title {
  margin-top: 116px;
  margin-bottom: 40px;
  font-size: 17px;
}

.contact__form {
  margin-bottom: 50px;
}

.contact__form input {
  width: 100%;
  max-width: 630px;
  display: block;
  height: 35px;
  border: 1.5px solid #ededeb;
  font-size: 12px;
  outline: none;
  color: #fff;
  margin: 8px 0;
  padding: 0 10px;
  background-color: transparent;
}

.contact__form input::-webkit-input-placeholder {
  color: #fff;
}

.contact__form input:-ms-input-placeholder {
  color: #fff;
}

.contact__form input::-ms-input-placeholder {
  color: #fff;
}

.contact__form input::placeholder {
  color: #fff;
}

.contact__form button {
  margin-top: 70px;
  width: 95px;
  padding: 7px 0;
  font-size: 14px;
  color: #c4beb2;
  cursor: pointer;
  border: none;
  background-color: #fff;
}

@media (max-width: 1200px) {
  .landing__subtitle {
    font-size: 14px;
  }
  .landing__buttons a {
    margin: 0 20px;
  }
  .contact {
    width: 100vw;
    right: -100vw;
  }
}
/*# sourceMappingURL=style.css.map */