@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
ul, p {
  padding: 0;
  margin: 0;
}

header {
  display: none;
}

ul li {
  list-style: none;
  padding: 0;
}

.multi_content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  z-index: 10000;
  overflow: hidden;
}

.multi_wrapper {
  overflow: hidden;
  max-width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  width: 100%;
  background-size: contain;
  animation: animBg 500s linear infinite;
}
.multi_wrapper::before {
  z-index: 0;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.75);
}
.multi_container {
  position: relative;
  z-index: 1;
  padding: 20px 16px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.multi_inner {
  font-family: Inter, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  color: #fff;
  max-width: 630px;
  gap: 40px;
}
.multi_inner.two {
  max-width: 700px;
  justify-content: flex-start;
  gap: 15px;
  padding: 30px 0;
}
.multi_one_image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 320px;
  height: auto;
  overflow: hidden;
}
.multi_one_image-img {
  object-fit: cover;
  width: 100%;
  max-height: 100%;
  aspect-ratio: 3/4;
  object-position: center 10%;
}
.multi_title {
  font-size: clamp(22px, 5vw, 34px);
  letter-spacing: normal;
  line-height: normal;
  text-align: center;
  font-weight: 700;
  text-wrap: balance;
}
.multi_button-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
.multi_button-wrapper .multi_button {
  display: inline-flex;
  color: #fff;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 16px 15px 0 rgba(0, 0, 0, 0.1);
  font-size: 22px;
  font-weight: 600;
  line-height: 22px;
  padding: 19px 117px;
}
.multi_button-wrapper .multi_button .arrows {
  width: 32px;
  height: 32px;
  margin-left: 18px;
  transform: rotate(-90deg);
}
.multi_button-wrapper .multi_button .arrows span {
  display: block;
  width: 16px;
  height: 16px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
  animation: styles_animate 2s infinite;
  margin-top: -8px;
  margin-left: 8px;
}
.multi_button-wrapper .multi_button .arrows span:nth-child(2) {
  animation-delay: -0.2s;
}
.multi_button-wrapper .multi_button .arrows span:nth-child(3) {
  animation-delay: -0.4s;
}
.multi_bottom_text {
  text-align: center;
  font-size: calc(1rem + 4px);
}
.multi_bottom_text .accent {
  color: #8ef8f1;
}

@keyframes styles_animate {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-10px, -10px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(10px, 10px);
  }
}
@keyframes animBg {
  0% {
    background-position: -14000px 0;
  }
  to {
    background-position: 0 0;
  }
}
@media (max-width: 767px) {
  .multi_inner {
    justify-content: flex-start;
    gap: 18px;
  }
  .multi_one_image {
    max-width: 270px;
  }
}

/*# sourceMappingURL=multi-common.css.map */
