@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@328&display=swap");
@font-face {
  font-family: "Sabon-Roman";
  src: url("../public/assets/fonts/Sabon-Roman.woff2") format("woff2"), url("../public/assets/fonts/Sabon-Roman.woff") format("woff");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
/* elements */
/* Breakpoints */
/* Container */
.container {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .container {
    width: 680px;
  }
}
@media screen and (min-width: 992px) {
  .container {
    width: 900px;
  }
}
@media screen and (min-width: 1199px) {
  .container {
    width: 1140px;
  }
}
@media screen and (min-width: 1499px) {
  .container {
    width: 1390px;
  }
}
.container {
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (min-width: 768px) {
  .container {
    padding-left: 0;
    padding-right: 0;
  }
}

.hidden-title {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.title {
  font-family: "Sabon-Roman", sans-serif;
  letter-spacing: 0.5px;
}

.sub-title {
  font-family: "Roboto", sans-serif;
  letter-spacing: 3.5px;
  font-weight: 300;
  font-size: 14px;
}

body {
  margin: 0;
  padding: 0;
  height: auto;
}
body * {
  font-family: "Roboto", sans-serif;
  box-sizing: border-box;
}

.hero {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero--content .logo-wrapper {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .hero--content .logo-wrapper {
    width: 340px;
  }
}
@media screen and (min-width: 992px) {
  .hero--content .logo-wrapper {
    width: 450px;
  }
}
@media screen and (min-width: 1199px) {
  .hero--content .logo-wrapper {
    width: 380px;
  }
}
@media screen and (min-width: 1499px) {
  .hero--content .logo-wrapper {
    width: 463.3333333333px;
  }
}
.hero--content .logo-wrapper {
  margin: 0 auto;
}
.hero--content .logo-wrapper .logo {
  width: 100%;
  height: 100%;
  display: flex;
}
@media screen and (max-width: 575px) {
  .hero {
    min-height: 60vh;
  }
  .hero--content .logo-wrapper .logo {
    max-width: 270px;
  }
}

.footer {
  border-top: 1px solid #1D1D1B;
  padding: 60px 0;
}
.footer--wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer--wrapper {
  gap: 45px 0;
}
.footer--wrapper__left .sub-title,
.footer--wrapper__left .title {
  margin: 0;
}
.custom-wysiwyg ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5px;
}
.custom-wysiwyg ul li {
  font-size: 14px;
  color: #1D1D1B;
  line-height: 1.2em;
  letter-spacing: 1.75px;
  padding-left: 20px;
  position: relative;
}
.custom-wysiwyg ul li::before {
  width: 10px;
  height: 1px;
  display: block;
  position: absolute;
  content: "";
}
.custom-wysiwyg ul li::before {
  background: #1D1D1B;
  left: 0;
  top: 8px;
}
.custom-wysiwyg ul li a {
  text-decoration: none;
  line-height: 1.2em;
  transition: all 0.25s;
}
.custom-wysiwyg ul li a:hover {
  text-decoration: underline;
}
.custom-wysiwyg ul li * {
  font-size: 14px;
  color: #1D1D1B;
}

/* animations */
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.hero .logo-wrapper {
  opacity: 0;
}
.hero.is-visible .logo-wrapper {
  animation: fadein 1.5s 0.5s 1 ease-in forwards;
}

.footer {
  opacity: 0;
}
.footer--wrapper__left, .footer--wrapper__right {
  opacity: 0;
}
.footer.is-visible {
  animation: fadein 1.5s 0.75s 1 ease-in forwards;
}
.footer.is-visible .footer--wrapper__left {
  animation: fadein 1.5s 1s 1 ease-in forwards;
}
.footer.is-visible .footer--wrapper__right {
  animation: fadein 1.5s 1.25s 1 ease-in forwards;
}

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