/** variables */
/* fonts */
@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Bokd.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
/** styles */
body {
  background-color: #000;
  color: #fff;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

div#hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

h1 {
  font-style: normal;
  font-weight: 900;
  font-size: 3.75rem;
  line-height: 100%;
  margin: 0;
}

h1 mark.heading-color {
  color: #ee7f00;
  background: transparent;
}

.hero-footer {
  position: absolute;
  bottom: clamp(80px, 20vw, 150px);
}

.hero-footer p {
  margin: 0;
  font-size: 0.94rem;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.hero-footer img {
  margin-top: clamp(10px, 2.66vw, 15px);
  width: 20px;
  height: 10px;
  stroke-width: 3px;
  stroke: #ee7f00;
}

main {
  display: flex;
  justify-content: center;
  max-width: 340px;
  margin: 0 auto;
  gap: calc(5 * clamp(40px, 9.33vw, 50px));
  flex-direction: column;
}

.content-block h2 {
  color: #ee7f00;
  font-size: 1.87rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: calc(clamp(20px, 5.33vw, 30px) + clamp(40px, 9.33vw, 50px));
}

.gf {
  margin-bottom: calc(clamp(20px, 5.33vw, 30px) + clamp(40px, 9.33vw, 50px));
}

.gf img {
  height: 340px;
  align-self: stretch;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: clamp(20px, 5.33vw, 30px);
}

.gf p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.gf p .name {
  font-weight: 700;
}

p a {
  text-decoration: underline;
  color: #fff;
}

.btn-primary {
  display: flex;
  padding: 10px 45px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  max-width: 45%;
  border-radius: 100px;
  background: #d8d9d9;
  border: none;
  cursor: pointer;
  color: #000;
  text-decoration: none;
  font-family: sans-serif;
  transition: all 0.5s ease;
}

.website-link:hover {
  background-color: #ee7f00;
}

.company {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.company p {
  line-height: 30px;
}

.company span.company-name {
  font-weight: 900;
}

#companies-container {
  display: flex;
  flex-direction: column;
  gap: calc(5 * clamp(40px, 9.33vw, 50px));
  margin-bottom: calc(5 * clamp(40px, 9.33vw, 50px));
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
}/*# sourceMappingURL=styles.css.map */