:root {
  --fs-xl: clamp(3.5rem, 6vw + 1rem, 12rem);
  --fs-600: 2rem;
  --fs-500: 1.8rem;
  --fs-400: 1rem;
}
.hero-section {
  width: 100%;
  display: flex;
  height: max-content;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(/media/images/CBP-HERO-IMG.webp);
}
.main-content-container {
  gap: 5rem;
  width: 85%;
  display: flex;
  padding: 3rem;
  color: white;
  height: min-content;
  min-height: 75vh;
  align-items: center;
  flex-direction: column;
  justify-content: space-evenly;
  background-color: #101010ba;
  position: relative;
}
.hero-logo {
  width: calc(10px + 10rem);
  text-align: center;
}
.logo {
  width: 90px;
}
.white-dots {
  position: absolute;
  z-index: 100000;
  left: -15px;
  top: 15px;
  transform: scale(0.12);
}
.hero-bottom {
  gap: 4rem;
  width: 100%;
  display: flex;
  text-align: center;
  height: min-content;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}
h1 {
  font-size: var(--fs-500);
  font-weight: 300;
  letter-spacing: 15px;
}
h2 {
  letter-spacing: 7px;
  font-size: var(--fs-xl);
  font-family: "Anton", sans-serif;
}
.content-wrapper {
  width: 80%;
  text-align: center;
}
.content {
  width: auto;
  text-align: center;
  font-size: x-large;
}
.link {
  text-decoration: underline;
}
/* MEDIA Q */

@media (max-width: 1100px) {
  h1 {
    letter-spacing: 8px;
  }
}

@media (max-width: 800px) {
  .main-content-container {
    padding: 1.5rem;
  }
  h1 {
    font-size: large;
    letter-spacing: 5px;
  }
  .content-wrapper {
    width: 90%;
  }
}
@media (max-width: 720px) {
  h1 {
    font-size: large;
    letter-spacing: 0;
  }
  .content-wrapper {
    width: 95%;
  }
  .main-content-container::before {
    left: -45%;
    top: -60px;
    transform: scale(0.18);
  }
  .content {
    font-size: medium;
  }
}
@media (max-width: 720px) {
  .main-content-container {
    width: 95%;
  }
}

@media (max-height: 400px) {
  .main-content-container {
    margin: 2rem 0;
  }
}
