@font-face {
  font-family: "Changa";
  src: url("/fonts/Changa-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: "NeueMachina";
  src: url("/fonts/NeueMachina-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "NeueMachina";
  src: url("/fonts/NeueMachina-Ultrabold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "NeueMachina", sans-serif;
  color: white;
  background: #2e2d2d;
  background: linear-gradient(
    135deg,
    rgba(46, 45, 45, 1) 0%,
    rgba(62, 68, 49, 1) 28%
  );
}

header {
  display: none;
}

.main-page {
  min-height: 100vh;
  padding-bottom: 20rem;
}

.logo {
  width: 100%;
  max-width: 184;
}

.first-section {
  display: flex;
}

.first-section > div {
  flex: 1;
}

.first-section > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.first-section > div:first-child svg {
  margin: 3rem;
}

.progress {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 8rem;
}

.progress-container {
  width: 90%;
  height: 20px;
  background-color: #787763;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.progress-bar {
  height: 100%;
  background: #d1ff00;
  width: 90%;
  border-radius: 10px;
  transition: width 0.5s ease-in-out;
}

.first-section > div:first-child svg + div {
  margin-inline-start: 8rem;
}

.contact {
  display: flex;
  gap: 50px;
  margin-inline-start: 8rem;
}

.contact p,
.contact a {
  font-size: 1.3rem;
  line-height: 30px;
}

.contact p:first-of-type {
  max-width: 500px;
}

.first-section p {
  font-size: 1.8rem;
  color: #d1ff00;
}

.divided {
  width: 1px;
  height: 62px;
  background-color: white;
}

.divided + div {
  display: flex;
  flex-direction: column;
}

.divided + div > div {
  font-family: "NeueMachina", sans-serif;
  display: flex;
  gap: 8px;
}

.divided + div > div a {
  font-weight: bold;
  text-decoration: none;
  color: white;
}

.first-section > div:nth-of-type(2) {
  margin-top: -8rem;
}

@media (max-width: 1200px) {
  header {
    display: flex;
    max-width: 184px;
    margin: 5rem 3rem 0;
  }

  .logo {
    display: none;
  }

  .first-section {
    flex-direction: column;
  }

  .first-section > div:nth-of-type(2) {
    order: -1;
  }

  .contact {
    flex-direction: column;
  }

  .progress {
    margin-bottom: 5rem;
  }

  .progress-container {
    width: 50%;
  }

  .contact {
    gap: 28px;
  }
}
