* {
  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 {
  background-color: #240046;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #000814;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #ffd60a;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #ffc300;
}

.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: fixed;
  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;
  margin-bottom: 10rem;
  box-shadow: 0px 0px 10px 5px black;
  z-index: 5;
}
.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;
  margin-top: 9rem;
}
.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;
  }
}
@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%);
}

.padding-vertical {
  padding-top: 9rem;
}

.margin-vertical {
  margin: 9rem 0;
}

.col-2 {
  width: 115rem;
  height: auto;
  margin: 0 auto;
  justify-content: space-around;
  display: flex;
  grid-template-columns: 1fr 1fr;
}
.col-2 .col-1 {
  width: 60rem;
  height: auto;
  padding: 2rem;
}

.info-box {
  width: 100%;
  height: 55rem;
  display: flex;
  flex-direction: column;
  animation: 1s fadeInRight 1s ease-out forwards;
  transform: translateX(50px);
  opacity: 0;
}
.info-box .project-name-box {
  width: 100%;
  height: 20rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.info-box .project-name-box .img-box {
  width: 100%;
  height: 15rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.info-box .project-name-box .img-box img {
  width: 20rem;
  height: 10rem;
}
.info-box .project-name-box h2 {
  font-size: 3rem;
  font-family: "Lilita One";
  font-weight: lighter;
  color: white;
}
.info-box .detail-box {
  width: 100%;
  height: 20rem;
}
.info-box .detail-box h3 {
  font-size: 2.2rem;
  font-family: "Lilita One";
  padding: 1rem 2rem;
  font-weight: lighter;
  color: white;
}
.info-box .detail-box p {
  font-size: 1.6rem;
  font-family: "Inter";
  padding-left: 2rem;
  padding-bottom: 3rem;
  color: white;
  line-height: 1.5;
  letter-spacing: 2;
}
.info-box .detail-box .btn-box {
  width: 100%;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Inter";
}
.info-box .detail-box .btn-box a {
  border-radius: 50px;
  border: 2px solid white;
  padding: 0.5rem 2rem;
  font-size: 2.8rem;
  font-family: "Inter";
  text-decoration: none;
  color: white;
  transition: 0.3s;
}
.info-box .detail-box .btn-box a:hover {
  background-color: #ffc300;
  color: black;
}

.project-img-box {
  width: 100%;
  height: 55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: 2s fadeInBottom 1.5s ease-out forwards;
  transform: translateY(-50px);
  opacity: 0;
}
.project-img-box .img-box {
  width: 100%;
  height: 50rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-img-box .img-box img {
  width: 90%;
}/*# sourceMappingURL=style2.css.map */