@font-face {
  font-family: "noir";
  src:
    url("../fonts/noir.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "canela";
  src:
    url("../fonts/Canela-Regular-Web.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

html,
body {
  min-height: 100vh;
  min-height: 100dvh;
}

body {
  background-color: #002639;
  background-image:
    linear-gradient(30deg, #000, transparent 60%), url("../images/bg.jpg");
  background-size: cover, cover;
  background-position: center bottom;
  background-repeat: no-repeat, no-repeat;

  @media only screen and (max-width: 900px) {
    background-image:
      linear-gradient(90deg, #000000bf, transparent 60%), url(../images/bg.jpg);
  }
}

.content-main {
  position: relative;
  padding: 90px 0;
  min-height: 100vh;
  min-height: 100dvh;
  z-index: 1;
  font-family: "Apercu-regular";
}
.content-main .grid {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  display: block;
  padding: 0 4vw;
}
.content-main .coming-soon {
  color: white;
  font-family: "canela", serif;
  font-weight: 400;
  font-size: 40px;
  margin-bottom: 30px;
  line-height: 100%;
}
@media only screen and (min-width: 1200px) {
  .content-main .coming-soon {
    font-size: 65px;
  }
}
.content-main__upper__wording,
.content-main__lower__wording {
  color: #fff;
}
.content-main__upper {
  overflow: hidden;
}
.content-main__upper__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100vh - 10vw);
}

.content-main__upper__wording__title {
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 1.2px;
}
@media only screen and (min-width: 1200px) {
  .content-main__upper__wording__title {
    font-size: 30px;
  }
}
.content-main__upper__wording__subtitle {
  margin-top: 30px;
  font-size: 18px;
  max-width: 900px;
  font-family: 'noir', sans-serif;
  font-weight: 400;
}
.content-main__upper__inner .logo {
  margin-bottom: 30px;
}
.content-main__upper__inner .logo img,
.content-main__upper__inner .logo svg {
  width: 210px;
  height: auto;
}
.content-main__upper__inner .logo svg * {
  fill: #fff;
  stroke: #fff;
  stroke-width: 0.7px;
}
.content-main__upper__inner a.btn {
  display: inline-block;
  color: #fff;
  border: 1px solid #fff;
  font-family: 'noir', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  padding: 15px 20px;
  transition: all 0.3s ease-in-out;
  margin-top: 20px;
  max-width: 250px;
  width: 100%;
  text-align: center;
}
.content-main__upper__inner a.btn:hover {
  color: #fff;
  background-color: #a76a25;
  border-color: #a76a25;
}
.content-main__lower {
  overflow: hidden;
}
.content-main__lower__wording {
  font-size: 15px;
    font-family: 'noir', sans-serif;
  font-weight: 400;
}
.content-main__lower__wording ul {
  padding-left: 10px;
}
.content-main__lower__wording li {
  line-height: 1.6;
}
@media only screen and (min-width: 1200px) {
  .content-main__lower__wording {
    font-size: 20px;
  }
}
.content-main__lower__contact {
  margin-top: 20px;
}
.content-main__lower__contact > div {
  display: flex;
  align-items: center;
  gap: 3px;
  padding-top: 7px;
  font-size: 16px;
}
.content-main__lower__contact > div:first-child {
  padding-top: 0;
}
.content-main__lower__contact a {
  display: block;
  color: #fff;
  width: -moz-max-content;
  width: max-content;
  position: relative;
}
.content-main__lower__contact a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}
.content-main__lower__contact a:hover::after {
  transform: scale(1);
} /*# sourceMappingURL=style.css.map */
