@import url("https://fonts.googleapis.com/css2?family=Familjen+Grotesk:wght@400;500&display=swap");
.nav {
  width: 100%;
  display: flex;
  padding: 20px;
  justify-content: space-around;
  align-items: center;
  background: transparent;
  gap: 1rem;
}
.nav .nav__logo {
  width: 100%;
  min-width: 100px;
}
.nav .nav__menu {
  display: flex;
  gap: 1.8rem;
  padding: 0;
  margin: 0;
}
.nav .nav__item {
  list-style: none;
}
.nav .nav__link {
  color: white;
  text-decoration: none;
  margin-left: 8px;
  font-size: 1.1em;
}
.nav .bg-link {
  background: #3C096C;
  padding: 8px;
  border-radius: 8px;
  color: white;
  text-shadow: 2px 2px 10px black;
  letter-spacing: 1.8px;
}
.nav .nav__socialM {
  display: flex;
  gap: 1rem;
}
.nav .nav__socialM .nav__social-link {
  margin-top: 10px;
}
.nav .ham {
  cursor: pointer;
  border: none;
  background: none;
  display: none;
}

.nav__social-link:hover {
  transform: scale(1.5);
  transition: all 300ms ease-in-out;
}

.nav__item:hover {
  transform: scale(1.5);
  transition: all 300ms ease-in-out;
}

@media (max-width: 48em) {
  .nav {
    justify-content: space-between;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }
  .nav .nav__menu {
    width: 100%;
    height: calc(100% - 60px);
    position: fixed;
    font-size: 1.5rem;
    left: 100%;
    top: 60px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 2.5rem;
    background: black;
    transition: left 0.3s;
    overflow-y: auto;
    z-index: 50;
  }
  .nav .nav__menu-visible {
    left: 0;
  }
  .nav .nav__socialM {
    position: absolute;
    flex-direction: column;
    right: 1rem;
    top: 8rem;
  }
  .nav .ham {
    display: block;
  }
}
@media (max-width: 37.5em) {
  .nav .nav__link-wrap {
    width: 100px;
    display: flex;
  }
}
html {
  box-sizing: border-box;
  font-family: "Familjen Grotesk", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  background: #000;
  overflow: hidden;
}

.container {
  width: 98%;
  height: 95vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.container .poster__title {
  color: white;
}
.container .poster__title .title {
  width: 18rem;
  margin: 0 auto;
  padding: 20px;
  line-height: 3rem;
  margin-top: 1.5rem;
  font-size: clamp(2.72rem, 2.49rem + 1.18vw, 3.66rem);
  margin-bottom: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.container .poster__title .title .title-bg {
  background: linear-gradient(90deg, #ff3bff 0%, #ecbfbf 38.02%, #5c24ff 75.83%, #d94fd5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media screen and (min-width: 48em) {
  .container .poster__title .title {
    width: 30rem;
  }
}
@media screen and (min-width: 75em) {
  .container .poster__title .title {
    width: 40rem;
    line-height: 3.5rem;
    margin-bottom: 0;
    margin-top: 1.5rem;
  }
}
.container .poster__title .copy {
  width: 18rem;
  margin: 0 auto;
  font-size: clamp(1.09rem, 1.07rem + 0.13vw, 1.2rem);
  font-weight: 400;
  line-height: 2rem;
  word-spacing: 3px;
  padding: 8px;
  margin-bottom: 1rem;
  text-shadow: 1px 2px #1e1e1e;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (min-width: 48em) {
  .container .poster__title .copy {
    width: 28rem;
  }
}
@media screen and (min-width: 75em) {
  .container .poster__title .copy {
    width: 40rem;
    line-height: 2rem;
    margin-top: 0;
    margin-bottom: 1rem;
  }
}
.container .poster__buttons .cta {
  border: 2.8px solid;
  border-radius: 30px;
  padding: 15px 25px;
  margin-left: 5px;
  background: transparent;
  color: white;
  border-color: white;
  cursor: pointer;
  transition: 0.3s;
}
.container .poster__buttons .border-grad {
  padding: 15px 25px;
  border: solid 3px transparent;
  background-image: linear-gradient(90deg, #ff3bff 0%, #ecbfbf 38.02%, #5c24ff 75.83%, #d94fd5 100%);
  background-origin: border-box;
  box-shadow: 2px 1000px 1px #000 inset;
}
.container .poster__buttons .bg-botton__bl {
  background: black;
}
.container .poster__buttons .cta:focus {
  color: #ecbfbf;
  background: #000;
  border-color: white;
  box-shadow: 0px 0px 0px 1px #ff3bff;
  -webkit-animation: anim-shadows 0.3s ease-out forwards;
          animation: anim-shadows 0.3s ease-out forwards;
}
@-webkit-keyframes anim-shadows {
  100% {
    box-shadow: 0px 0px 50px 20px #200120;
  }
}
@keyframes anim-shadows {
  100% {
    box-shadow: 0px 0px 50px 20px #200120;
  }
}
.container .blurs {
  width: 100%;
  min-width: 300px;
  position: absolute;
  display: flex;
  justify-content: center;
  z-index: -20;
  bottom: 6rem;
  padding: 0px 50px 0px 50px;
}
@media screen and (min-width: 75em) {
  .container .blurs {
    justify-content: space-around;
    padding: 0px 200px 0px 200px;
  }
}
.container .blurs .blur {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  filter: blur(80px);
}
@media screen and (min-width: 48em) {
  .container .blurs .blur {
    width: 200px;
    height: 200px;
    filter: blur(100px);
  }
}
.container .blurs .blur-color__1 {
  background-color: #8593e8;
}
.container .blurs .blur-color__2 {
  background-color: #5d6ef3;
}
.container .blurs .blur-color__3 {
  background-color: #fc4ff6;
}
.container .poster__hero {
  width: 85%;
  height: 40vh;
  max-height: 550px;
  left: 1.8em;
  bottom: 0;
  position: absolute;
  background-image: url(/assets/bg-hero-1.png);
  background-position: bottom;
  background-size: 100% 40%;
  background-repeat: no-repeat;
  z-index: -10;
}
@media screen and (min-width: 48em) {
  .container .poster__hero {
    background-size: 100% 70%;
    left: 3.5em;
  }
}
@media screen and (min-width: 75em) {
  .container .poster__hero {
    height: 75vh;
    background-size: 100% 80%;
    left: 7em;
  }
}/*# sourceMappingURL=main.css.map */