* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

.container {
  width: 90%;
  height: auto;
  margin: 0 auto;
}

.selected-list {
  border-bottom: 3px solid black;
}

body {
  overflow: hidden;
  background-color: #240046;
}

.loading-screen {
  width: 100%;
  height: 100%;
  display: block;
  background-color: #240046;
  animation: loadingScreen 4s ease forwards;
  z-index: 100;
}
.loading-screen .container-animate {
  width: 100%;
  height: auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.loading-screen .container-animate .box-animate {
  width: 50rem;
  height: 17rem;
  margin: 0 auto;
  display: flex;
}
.loading-screen .container-animate .box-animate .img-box {
  width: 10rem;
  height: 10rem;
}
.loading-screen .container-animate .box-animate .dot-box {
  position: relative;
  width: 30rem;
  height: 6rem;
  display: flex;
  justify-content: space-around;
  top: 50%;
  transform: translateY(-50%);
}
.loading-screen .container-animate .box-animate .dot-box .dot:nth-child(1) {
  width: 6rem;
  height: 6rem;
  background-color: white;
  border-radius: 100%;
  opacity: 0;
  animation: dot1 0.5s ease 1s infinite;
}
.loading-screen .container-animate .box-animate .dot-box .dot:nth-child(2) {
  width: 6rem;
  height: 6rem;
  background-color: white;
  border-radius: 100%;
  opacity: 0;
  animation: dot2 0.5s ease 1s infinite;
}
.loading-screen .container-animate .box-animate .dot-box .dot:nth-child(3) {
  width: 6rem;
  height: 6rem;
  background-color: white;
  border-radius: 100%;
  opacity: 0;
  animation: dot3 0.5s ease 1s infinite;
}
.loading-screen .container-animate .box-animate .left {
  width: 100px;
  animation: left 4s ease forwards;
}
.loading-screen .container-animate .box-animate .right {
  width: 100px;
  transform: rotate(180deg);
  animation: right 4s ease forwards;
}

@keyframes left {
  0% {
    transform: translateX(-200px);
    opacity: 0;
  }
  20% {
    transform: translateX(0px);
    opacity: 1;
  }
  40% {
    transform: translateX(0px);
    opacity: 1;
  }
  60% {
    transform: translateX(0px);
    opacity: 1;
  }
  80% {
    transform: translateX(0px);
    opacity: 1;
  }
  100% {
    transform: translateX(-200px);
    opacity: 0;
  }
}
@keyframes right {
  0% {
    transform: translateX(200px) rotate(180deg);
    opacity: 0;
  }
  20% {
    transform: translateX(0px) rotate(180deg);
    opacity: 1;
  }
  40% {
    transform: translateX(0px) rotate(180deg);
    opacity: 1;
  }
  60% {
    transform: translateX(0px) rotate(180deg);
    opacity: 1;
  }
  80% {
    transform: translateX(0px) rotate(180deg);
    opacity: 1;
  }
  100% {
    transform: translateX(200px) rotate(180deg);
    opacity: 0;
  }
}
@keyframes dot1 {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes dot2 {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes dot3 {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loadingScreen {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.page {
  width: 100%;
  height: 100%;
  display: none;
  opacity: 0;
  transition: 0.3s;
  background-color: #240046;
}

.header {
  position: relative;
  width: 100%;
  height: 9rem;
  background-color: #ffc300;
  animation: 1s list ease-out forwards;
  padding: 0 3rem;
  display: flex;
  transform: translateY(-45px);
  opacity: 0;
  align-items: center;
}
.header .box-logo {
  width: 10rem;
  height: 9rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .box-logo img {
  width: 5rem;
}
.header .box-list {
  width: 50rem;
  height: 9rem;
  margin: 0 auto;
  transform: translateX(-5rem);
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.header .box-list li {
  list-style-type: none;
  font-size: 2.2rem;
}
.header .box-list li a {
  text-decoration: none;
  color: black;
  border-bottom: 3px solid none;
  padding: 0.5rem 0;
  transition: 0.2s;
  font-family: "Inter";
}
.header .box-list li a:hover {
  border-bottom: 3px solid black;
}
.header .btn-list-box {
  width: 4rem;
  height: 3rem;
  cursor: pointer;
  display: none;
  flex-direction: column;
  justify-content: space-around;
}
.header .btn-list-box .line:nth-child(1) {
  width: 100%;
  height: 0.5rem;
  background-color: black;
  transition: 0.3s;
}
.header .btn-list-box .line:nth-child(2) {
  width: 100%;
  height: 0.5rem;
  background-color: black;
  transition: 0.3s;
}
.header .btn-list-box .line:nth-child(3) {
  width: 100%;
  height: 0.5rem;
  background-color: black;
  transition: 0.3s;
}

.box-list-small {
  position: fixed;
  width: 100%;
  height: 20rem;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 2rem;
  z-index: 5;
  transition: 0.5s;
  opacity: 0;
}
.box-list-small li {
  list-style-type: none;
  background-color: #ffc300;
  padding: 1rem 0;
  text-align: center;
  opacity: 0;
}
.box-list-small li a {
  width: 100%;
  font-size: 1.8rem;
  text-decoration: none;
  color: black;
  padding: 3rem 0;
}

@keyframes listFlip {
  from {
    opacity: 0;
    transform: skew(30deg);
  }
  to {
    opacity: 1;
    transform: skew(0deg);
  }
}
@keyframes listFlipBack {
  from {
    opacity: 1;
    transform: skew(0deg);
  }
  to {
    opacity: 0;
    transform: skew(30deg);
  }
}
@keyframes list {
  0% {
    transform: translateY(-45px);
    opacity: 0;
  }
  50% {
    transform: translateY(-45px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
.welcome-section {
  position: absolute;
  width: 100%;
  height: 85vh;
  z-index: 0;
}
.welcome-section .text-box {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  padding: 15rem 0 0 0;
}
.welcome-section .text-box h1 {
  font-size: 6rem;
  color: white;
  margin-bottom: 2rem;
  font-family: "Lilita One";
  font-weight: lighter;
  transform: translateX(-50px);
  opacity: 0;
  animation: 1s fadeInLeft 1s ease-out forwards;
}
.welcome-section .text-box h2 {
  font-size: 2.6rem;
  color: white;
  font-family: "Inter";
  transform: translateX(50px);
  opacity: 0;
  animation: 1s fadeInRight 1s ease-out forwards;
}
.welcome-section .btn-box {
  padding: 5rem 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.welcome-section .btn-box .triangle:nth-child(1) {
  position: absolute;
  width: 70px;
  height: 70px;
  border: 3px solid #ffd60a;
  opacity: 0;
  animation: 4s tr1 2s ease infinite;
}
.welcome-section .btn-box .triangle:nth-child(2) {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 3px solid #ffd60a;
  opacity: 0;
  z-index: 2;
  animation: 4s tr2 2s ease infinite;
}
.welcome-section .btn-box .triangle:nth-child(3) {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 3px solid #ffd60a;
  opacity: 0;
  z-index: 1;
  animation: 4s tr3 2s ease infinite;
}
.welcome-section .btn-box a {
  font-size: 2.2rem;
  padding: 1rem 3rem;
  border-radius: 20px;
  border: 2px solid white;
  text-decoration: none;
  color: white;
  z-index: 5;
  transition: 0.2s;
  font-family: "Inter";
  transform: translateY(50px);
  opacity: 0;
  animation: 1s fadeInBottom 1s ease-out forwards;
}
.welcome-section .btn-box a:hover {
  background-color: #ffc300;
  color: black;
}

@keyframes tr1 {
  0% {
    opacity: 0;
    transform: translate(-380px, -280px) rotate(0deg);
  }
  25% {
    opacity: 0.5;
    transform: translate(0, -10px) rotate(-300deg);
  }
  50% {
    opacity: 0.5;
    transform: translate(0, -10px) rotate(-500deg);
  }
  75% {
    opacity: 0.5;
    transform: translate(0, -10px) rotate(-600deg);
  }
  85% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: translate(-380px, -280px) rotate(-1000deg);
  }
}
@keyframes tr2 {
  0% {
    opacity: 0;
    transform: translate(380px, -280px) rotate(0deg);
  }
  25% {
    opacity: 0.35;
    transform: translate(0, 0px) rotate(360deg);
  }
  50% {
    opacity: 0.5;
    transform: translate(0, 0px) rotate(500deg);
  }
  75% {
    opacity: 0.5;
    transform: translate(0, 0px) rotate(700deg);
  }
  85% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: translate(380px, -280px) rotate(1000deg);
  }
}
@keyframes tr3 {
  0% {
    opacity: 0;
    transform: translate(0, 280px) rotate(0deg);
  }
  25% {
    opacity: 0.35;
    transform: translate(0, -23px) rotate(-300deg);
  }
  50% {
    opacity: 0.5;
    transform: translate(0, -23px) rotate(-400deg);
  }
  75% {
    opacity: 0.5;
    transform: translate(0, -23px) rotate(-600deg);
  }
  85% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: translate(0, 280px) rotate(-1000deg);
  }
}
@keyframes fadeInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes fadeInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes fadeInBottom {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}
.v-center {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}/*# sourceMappingURL=style.css.map */