@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/roboto-v47-latin-300.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto-v47-latin-regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/roboto-v47-latin-500.woff2") format("woff2");
}

html,
body {
  background: url("../images/site-bg.webp") center/cover no-repeat;
  background-color: #000;
  height: 100%;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  color: white;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 100%;
}

.overlay {
  padding: 40px 0 20px;
  border-radius: 12px;
  max-width: 460px;
  text-align: center;
  width: 90%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  margin: 20px 0 10px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
}

.section-title {
  font-weight: 500;
  font-size: 18px;
}

.title-decorator {
  width: 31px;
  height: 2px;
  background-color: #f56b2a;
  margin: 0 10px;
}

p {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 20px;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.cta-heading {
  font-weight: 500;
  margin-bottom: 18px;
  margin-top: 24px;
  font-size: 18px;
}

.cta-button {
  background-color: transparent;
  border: 2px solid #ff5a1f;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: background-color 0.3s, color 0.3s;
  -o-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
  background-color: #ff5a1f;
  color: #fff;
}

.footer {
  margin-top: 20px;
  font-size: 12px;
  opacity: 0.6;
  border-top: 1px solid #464a4f;
  width: 100%;
  text-align: center;
  padding: 20px 0;
  font-weight: 400;
}

.links {
  width: 100%;
  display: flex;
  justify-content: center;
  background: rgba(0, 0, 0, 0.1);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-transform: uppercase;
}

.links ul {
  display: flex;
}

.links li {
  list-style: none;
  margin: 0;
  padding: 8px 10px;
}

.links li a {
  color: #fff;
  text-decoration: none;
  transition: all 0.1s linear;
  border: 1px solid #ff5a1f;
  padding: 3px 10px;
  border-radius: 4px;
}

.links li a:hover {
  background: #ff5a1f;
  color: #fff;
}

.links li a.active-link {
  background: rgba(0, 0, 0, 0.3);
  color: #ff5a1f;
}

.links li a.active-link:hover {
    background: #ff5a1f;
    color: #fff;
}

@media (max-width: 480px) {
  .cta-button {
    font-size: 13px;
  }

  .cta-heading {
    font-size: 17px;
  }

  p {
    font-size: 16px;
  }

  .logo {
    max-width: 300px;
  }

  .section-title {
    font-size: 17px;
  }
}

@media (max-width: 400px) {
  .links ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
