@charset "UTF-8";
@font-face {
  font-family: GenesisSans;
  font-style: "normal";
  font-weight: 400;
  src: url(../font/GenesisSans.ttf) format("truetype");
}
* {
  padding: 0;
  margin: 0;
}

body {
  font-family: GenesisSans;
  font-size: 62.5%;
  padding: 3rem;
  cursor: url("../img/mouse.svg"), auto;
}

.nav-checkbox {
  display: none;
}
.nav-button {
  width: 0.1rem;
  height: 0.1rem;
  position: fixed;
  top: 7rem;
  right: 8rem;
  z-index: 2000;
  cursor: pointer;
  border-radius: 2px;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 9;
}
.nav #toggleButton {
  font-size: 50px;
  color: crimson;
  animation: wolrd-action 20s infinite alternate ease-in-out;
  position: relative;
}
@keyframes wolrd-action {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(900deg);
  }
}
.nav #toggleButton::after {
  content: "Go to world";
  position: absolute;
  top: 30px;
  font-size: 15px;
}
.nav-bg {
  background: radial-gradient(#474747, #000000), url(../img/worldmap.webp) left top/cover;
  background-blend-mode: multiply;
  width: 0.1rem;
  height: 0.1rem;
  position: fixed;
  top: 7rem;
  right: 8rem;
  z-index: 1000;
  border-radius: 2px;
  transition: 0.8s;
  opacity: 0.95;
}
.nav-checkbox:checked ~ .nav-bg {
  transform: scale(2500);
}
.nav-icon {
  position: relative;
  margin-left: 20px;
}
.nav-icon::before {
  top: -0.6rem;
}
.nav-icon::after {
  top: 0.6rem;
}
.nav-icon::before, .nav-icon::after {
  content: "";
  position: absolute;
  left: 0;
  transition: 0.2s;
}
.nav-icon, .nav-icon::before, .nav-icon::after {
  width: 2rem;
  height: 2px;
  background: #333;
  display: inline-block;
}
.nav-button:hover .nav-icon::before {
  top: -0.8rem;
}
.nav-button:hover .nav-icon::after {
  top: 0.8rem;
}
.nav-checkbox:checked ~ .nav-button .nav-icon::before {
  top: 0;
  transform: rotate(135deg);
}
.nav-checkbox:checked ~ .nav-button .nav-icon::after {
  top: 0;
  transform: rotate(-135deg);
}
.nav-checkbox:checked ~ .nav-button .nav-icon {
  background-color: transparent;
}
.nav-body {
  position: fixed;
  top: 0;
  left: -120%;
  width: 100vw;
  height: 100vh;
  z-index: 1500;
  opacity: 0;
  transition: 0.8s;
}
.nav-list {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  width: 100%;
  text-align: center;
}
.nav-link {
  display: inline-block;
  font-size: 3rem;
  font-weight: 300;
  padding: 0.5rem 1rem;
  margin-bottom: 10px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.4s;
  background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #fff);
  background-size: 220%;
}
.nav-link:hover {
  color: #285a91;
  background-position: 100%;
  transform: translateX(1rem);
  font-weight: bolder;
  height: 20rem;
  width: 20rem;
}
.nav span {
  display: inline-block;
  margin-right: 1.5rem;
}
.nav-checkbox:checked ~ .nav-body {
  opacity: 1;
  left: 0;
}

.nav-link.hongkong:hover {
  background-image: url(../img/main_hongkong01.jpg);
}

.nav-link.france:hover {
  background-image: url(../img/main_france01.jpg);
}

.nav-link.hawai:hover {
  background-image: url(../img/main_hawai01.jpg);
}

.nav-link.india:hover {
  background-image: url(../img/main_india01.jpg);
}

header {
  width: 100%;
  height: 90vh;
  background-image: linear-gradient(to right, #fff 0%, #3f4a56 100%), url(../img/main_hongkong01.jpg); /* 백그라운드 중첩  */
  background-blend-mode: multiply;
  position: relative;
  animation: slideAnimation 50s infinite;
}
@keyframes slideAnimation {
  0% {
    background-image: url(../img/main_hongkong01.jpg);
  }
  20% {
    background-image: url(../img/main_hongkong02.jpg);
  }
  40% {
    background-image: url(../img/main_hongkong03.jpg);
  }
  60% {
    background-image: url(../img/main_hongkong04.jpg);
  }
  80% {
    background-image: url(../img/main_hongkong05.jpg);
  }
  100% {
    background-image: url(../img/main_hongkong01.jpg);
  }
}
header #logo-text {
  position: relative;
  top: 3rem;
  left: 5rem;
  font-size: 5.6rem;
  color: #fff;
  letter-spacing: -12px;
  opacity: 0.1;
  text-shadow: 5px 5px 10px;
  color: #fff;
  width: 80%;
  animation-name: moveInLeft;
  animation-duration: 7s;
  animation-iteration-count: infinite;
  animation-delay: 1s;
}
@keyframes moveInLeft {
  0% {
    opacity: 0.1;
    transform: translateX(-10rem);
  }
  50% {
    transform: translateX(-1rem);
    letter-spacing: -24px;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    letter-spacing: -12px;
  }
}
header #header-text {
  position: absolute;
  right: 2rem;
  bottom: 4%;
  color: #fff;
  font-weight: bold;
  letter-spacing: -0.1rem;
  margin-bottom: 1rem;
}
header #header-text-main {
  font-size: 3rem;
  line-height: 3rem;
  margin-right: -20px;
  animation-name: moveInRight;
  animation-duration: 3s;
  animation-fill-mode: backwards;
}
@keyframes moveInRight {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}
header #header-text-sub {
  margin-top: 1rem;
  font-size: 1.2rem;
  position: absolute;
  right: 0rem;
  margin-right: -20px;
  font-weight: normal;
  display: flex;
  align-content: center;
  justify-content: center;
}
header #header-text-sub span {
  margin-bottom: 8px;
}

#api-content {
  width: 100%;
  display: flex;
  margin-top: 10rem;
}

#weatherBack {
  width: 50%;
  height: 400px;
  padding: 80px;
  background: url(../img/api_weather.jpg) no-repeat;
  background-size: cover;
}
#weatherBack #weather {
  animation: snow 5s linear infinite;
  background-image: url("https://cdn.discordapp.com/attachments/460145928850898945/515694458633846831/snow.png"), url("https://cdn.discordapp.com/attachments/460145928850898945/515694460668084274/snow3.png"), url("https://cdn.discordapp.com/attachments/460145928850898945/515694462278828073/snow2.png");
}
@keyframes snow {
  0% {
    background-position: 0px 0px, 0px 0px, 0px 0px;
  }
  100% {
    background-position: 500px 1000px, 400px 400px, 300px 300px;
  }
}
#weatherBack .weather-top h1 {
  font-size: 3rem;
  color: #474747;
  font-weight: bold;
  letter-spacing: -1px;
  text-shadow: 5px 5px 10px;
  color: #474747;
  margin-top: -20px;
}
#weatherBack .weather-top h2 {
  letter-spacing: -1px;
  font-weight: bold;
  color: #474747;
  width: 100%;
  height: 30px;
}
#weatherBack .weather-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  margin-top: 100px;
  color: #fff;
}

#worldMap {
  width: 50%;
  height: 400px;
  position: relative;
}
#worldMap::after {
  content: "Find the cheapest flight";
  background: url(../img/skyscanner.png) no-repeat;
  position: absolute;
  top: -281px;
  right: 30px;
  width: 500px;
  height: 281px;
  z-index: 10000;
}

#noticeBox {
  margin-top: 12rem;
  width: 100%;
  height: 5rem;
  font-size: 2.8rem;
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
  text-transform: none;
  color: #d4d1d1;
  font-family: "Josefin Sans", sans-serif;
}

.typed-cursor {
  display: none;
}

.row {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  color: #3f4a56;
  margin-bottom: 50px;
}
.row div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.row svg:hover {
  box-shadow: 5px 5px 30px 30px rgba(115, 134, 173, 0.3);
}
.row .fw-bolder {
  font-size: 45px;
  margin-top: 15px;
  display: flex;
  height: -moz-fit-content;
  height: fit-content;
  align-items: center;
  justify-items: center;
}
.row span {
  font-size: 40px;
  color: #b9b9b9;
  margin-right: 20px;
  margin-bottom: 7px;
  opacity: 0.4;
}
.row p {
  padding: 0 90px;
  font-size: 18px;
  text-transform: none !important;
}

.album {
  width: 100%;
  padding: 0;
  margin: 0;
  margin-top: 50px;
}
.album > .container {
  width: 100%;
  display: flex;
  justify-content: space-around;
}
.album > .container > .row {
  width: 100%;
  margin: 0;
}
.album > .container > .row > .col {
  width: 50%;
}
.album > .container > .row > .col img {
  box-shadow: 5px 5px 5px 5px rgba(115, 134, 173, 0.1);
}
.album .card-text {
  font-weight: bold;
}
.album .btn-group {
  display: flex;
  flex-direction: row;
}
.album button {
  width: 200px;
  font-size: 16px;
}
.album button:nth-child(1):hover {
  background: crimson;
  font-weight: bold;
}
.album button:nth-child(2):hover {
  background: #285a91;
  font-weight: bold;
}
.album .text-muted {
  margin-top: 10px;
  font-size: 12px;
}

.album.py-5.bg-light {
  display: none;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
footer div {
  margin: 0 auto;
}

#gotoThema:hover {
  background: #285a91;
}

.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}/*# sourceMappingURL=style.css.map */