@import "reset.css";
@import "fonts.css";
* {
  box-sizing: border-box;
}

*,
body {
  font-family: "GT America Extended", -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 30px;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  color: #000000;
}
@media screen and (max-width: 1000px) {
  *,
body {
    line-height: 28px;
  }
}

h1 {
  font-size: 30px;
  line-height: 38px;
}
@media screen and (max-width: 1000px) {
  h1 {
    font-size: 28px;
    line-height: 36px;
  }
}

.btn {
  width: fit-content;
  padding: 12px 40px;
  display: block;
  border: solid 1px #000000;
  font-family: "GT America Expanded", -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
}
.btn-bg {
  width: 0;
  height: 100%;
  background: #000000;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
}
.btn-label {
  position: relative;
  transition: 0.3s;
}
.btn:hover .btn-bg {
  width: 100%;
}
.btn:hover .btn-label {
  color: #ffffff;
}

.content {
  width: 100%;
  height: 100vh;
}
@media screen and (min-width: 1000px) {
  .content {
    position: fixed;
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 1000px) {
  .content {
    position: relative;
  }
}
.content-bg {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.content-bg.first {
  background-image: url("../../assets/images/gradients/bg-1.jpg");
}
.content-bg.second {
  background-image: url("../../assets/images/gradients/bg-2.jpg");
}
.content-border {
  width: 100%;
  height: 10px;
  position: fixed;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.content-border.first {
  background-image: url("../../assets/images/gradients/border-1.jpg");
}
.content-border.second {
  background-image: url("../../assets/images/gradients/border-2.jpg");
}
.content-box {
  position: absolute;
  top: 70px;
  left: 70px;
}
@media screen and (max-width: 1000px) {
  .content-box {
    padding: 30px;
    top: 0;
    left: 0;
  }
}
.content-box--border {
  width: 85vw;
  max-width: 1250px;
  height: 3px;
  margin-bottom: 40px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../../assets/images/gradients/border-2.jpg");
}
@media screen and (max-width: 1000px) {
  .content-box--border {
    width: 100%;
  }
}
.content-box--border-inside {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../../assets/images/gradients/border-1.jpg");
}
.content-box--logo {
  width: 75vw;
  max-width: 900px;
  margin-bottom: 50px;
  display: block;
}
@media screen and (max-width: 1000px) {
  .content-box--logo {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .content-box--logo:not(.stacked) {
    display: none;
  }
}
@media screen and (min-width: 1000px) {
  .content-box--logo.stacked {
    display: none;
  }
}
.content-box h1 {
  margin-bottom: 20px;
}
.content-box p {
  max-width: 590px;
}
.content-box p:not(:last-child) {
  margin-bottom: 15px;
}
.content-box .btn {
  margin-top: 40px;
}

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