@font-face {
  font-family: "Quincy CF";
  font-style: normal;
  font-weight: 300;
  src: local("Quincy CF"), local("Quincy CF Light"), url("./fonts/Fontspring-DEMO-quincycf-light.otf");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: local("OpenSans"), local("Open Sans"), url("./fonts/open-sans-v17-latin-regular.woff"), url("./fonts/open-sans-v17-latin-regular.woff2");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: local("OpenSans Bold"), local("Open Sans Bold"), url("./fonts/open-sans-v17-latin-700.woff"), url("./fonts/open-sans-v17-latin-700.woff2");
}
* {
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  font-size: 14px;
  line-height: 1.4;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: 24px;
}

.h-100 {
  height: 100%;
}

.header {
  padding: 9px 48px;
}

.main {
  flex: 1 0 100%;
  background: url("./imgs/main-bg.png") center bottom/cover no-repeat;
  padding-block: 137px;
}
.main-inner {
  text-align: center;
}
.main-inner img {
  margin-bottom: 48px;
}
.main-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px 0;
  color: #FAFAFA;
}
.main-text span:nth-child(1) {
  color: #F9F9F9;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1.2px;
}
.main-text span:nth-child(2) {
  font-family: "Quincy CF", sans-serif;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.96px;
  max-width: 466px;
}
.main-text span:nth-child(4) a {
  font-weight: bold;
  color: #FAFAFA;
}

.footer {
  background-color: #112F35;
  color: rgba(255, 255, 255, 0.8);
  padding-block: 40px;
  font-size: 12px;
}
.footer-copy {
  margin-bottom: 10px;
}
.footer-disclaimer div {
  margin-bottom: 4px;
}

@media (max-width: 575.98px) {
  .main {
    background: url("./imgs/main-bg-sm.png") center bottom/cover no-repeat;
    padding-block: 45px;
  }
  .main-inner img {
    margin-bottom: 32px;
  }
}
@media (min-width: 769px) {
  .container {
    max-width: 704px;
    margin: 0 auto;
  }
}
@media (min-width: 1216px) {
  .container {
    max-width: 992px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1280px;
  }
}
