@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
.custom-font {
  font-family: "Nunito", sans-serif;
}

.font-light {
  color: hsl(200, 100%, 98%);
}

.title {
  opacity: 0.8;
}

.subtitle {
  opacity: 0.6;
}

.title-underline {
  border-bottom: 10px solid hsl(201, 72%, 31%);
}

html {
  scroll-behavior: smooth;
}

@media (min-width: 1024px) {
  #navbarMenuHeroB {
    display: none;
  }
}
.navbar-burger span {
  width: 30px;
}

.navbar-menu {
  background-color: hsl(24, 14%, 7%);
}

.mobile-menu {
  color: hsl(200, 100%, 98%);
  animation: menuAnimation 300ms ease;
}

figure {
  position: relative;
  overflow: hidden;
  transition: all ease 300ms;
}
figure span {
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: hsl(200, 100%, 98%);
  display: none;
  text-align: center;
  transition: all ease 300ms;
}

figure,
img {
  overflow: hidden;
  cursor: pointer;
  transition: all ease 300ms;
}

figure:hover img {
  transform: scale(1.03);
  filter: brightness(50%);
}
figure:hover span {
  display: block;
}

.hero-body {
  position: relative;
}

.main-hero {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  background-image: url("illustration-hero.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.3;
}

.form {
  width: 100%;
  max-width: 600px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.standard-radius {
  border-radius: 10px;
}

.w-full {
  width: 100%;
}

.late-gray-bg {
  background-color: hsl(24, 14%, 7%);
}

.light-gray-bg {
  background-color: hsl(200, 100%, 98%);
}

.level-item {
  padding: 1em 0;
}

.is-large {
  padding: 10rem 0;
}

::selection {
  background-color: hsl(201, 72%, 31%);
}

@keyframes menuAnimation {
  0% {
    margin-top: -100px;
  }
  100% {
    margin-top: 0;
  }
}

/*# sourceMappingURL=style.css.map */
