* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.5s;
  z-index: 9999;
}
#header .inner {
  max-width: 1760px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .m-inner {
  display: none;
}
#header .logo a {
  display: block;
  height: 36px;
  color: #000;
  font-size: 30px;
  font-weight: 500;
}
#header .logo img {
  height: 100%;
  width: auto;
  vertical-align: text-top;
}
#header .logo span {
  padding-left: 10px;
}
#header .gnb {
  display: flex;
}
#header .gnb > li > a {
  display: block;
  font-size: 24px;
  font-weight: 500;
  padding: 30px 30px;
  position: relative;
}
#header .gnb > li.active > a {
  color: var(--point-color2);
  font-weight: 700;
}
#header .gnb > li:not(.active) > a {
  opacity: 0;
}
#header:hover .gnb > li:not(.active) > a {
  color: #000;
  opacity: 1;
}
#header .gnb > li:not(.active):hover > a {
  color: var(--point-color1);
}
#header .gnb > li > a::after {
  content: '';
  bottom: 0;
  left: 50%;
  margin-left: -10px;
  width: 20px;
  height: 20px;
  background: url(../images/circle20.png) no-repeat;
  transform: scale(0);
  transition: all 0.5s;
  position: absolute;
}
#header .gnb > li:hover > a::after {
  transform: scale(1);
}
#header .lang a {
  color: var(--gray-color5);
}
#header .lang a.active {
  color: #000;
}
#header .lang .vertical-bar {
  padding: 0 5px;
  color: var(--gray-color5);
}

.sub-section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.sub-section .back-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sub-section .txt-group {
  max-width: 1760px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 50px;
  position: absolute;
  z-index: 9999;
}
.sub-section .txt-group p {
  color: #fff;
  font-size: 32px;
  font-weight: 400;
}
.sub-section .dropdown-menu {
  position: absolute;
  top: 140px;
  max-width: 1760px;
  width: 100%;
  padding: 0 20px;
  z-index: 9999;
}
.sub-section .dropdown-list {
  width: 340px;
}
.sub-section .dropdown-list li {
  border-bottom: 1px solid var(--gray-color5);
}
.sub-section .dropdown-list li:not(.menu-title) {
  visibility: hidden;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.sub-section .dropdown-list.active li:not(.menu-title) {
  visibility: visible;
  opacity: 1;
  height: auto;
}
.sub-section .dropdown-list.active .menu-title .arrow-btn {
  transform: rotate(180deg);
}
.sub-section .menu-title button {
  all: unset;
  width: calc(100% - 20px);
  padding: 10px;
  border-radius: 5px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}
.sub-section .menu-title button:hover {
  color: #000;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}
.sub-section .menu-title button {
  display: flex;
  justify-content: space-between;
}
.sub-section .dropdown-list li a {
  display: block;
  color: #fff;
  word-break: keep-all;
  padding: 10px;
  transition: all 0.2s;
}
.sub-section .dropdown-menu li a:hover {
  color: #000;
  background: rgba(255, 255, 255, 0.8);
}
.sub-section .mouse-cursor {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 30px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 35%;
  z-index: 9999;
}
.sub-section .mouse-cursor::after {
  position: absolute;
  content: '';
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 8px;
  background: rgba(0, 0, 0, 0.5);
  animation: wheeldown 1s infinite;
}
@keyframes wheeldown {
  50% {
    transform: translateX(-50%) translateY(60%);
  }
}
.sub-section::after {
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
}
.sub-section .swiper,
.sub-section .swiper-wrapper {
  width: 100%;
  height: 100%;
  z-index: auto;
}
.sub-section .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
.sub-section .swiper-pagination-bullet-active {
  background: #fff;
}
.sub-section .contact-box {
  position: absolute;
  bottom: 50px;
  max-width: 1760px;
  width: 100%;
  padding: 0 20px;
  text-align: right;
  z-index: 9999;
}
.sub-section .contact-box span {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url(../images/edit-w.png) no-repeat center center / 90% 90%;
  margin-right: 10px;
}
.sub-section .contact-box a {
  display: inline-block;
  border-radius: 5px;
  padding: 10px;
  font-size: 24px;
  color: #fff;
  vertical-align: text-bottom;
}
.sub-section .contact-box a:hover {
  color: #000;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}

.sub-section.culture-one .swiper-slide.slide1 {
  background: url(../images/newyork-square-fhd.jpg) no-repeat center center /
    cover;
}
.sub-section.culture-one .swiper-slide.slide2 {
  background: url(../images/eiffel-tower-fhd.jpg) no-repeat center center /
    cover;
}
.sub-section.culture-one .swiper-slide.slide3 {
  background: url(../images/tokyo-japan-fhd.jpg) no-repeat center center / cover;
}
.sub-section.culture-two .swiper-slide.slide1 {
  background: url(../images/music-crowd-fhd.jpg) no-repeat center center / cover;
}
.sub-section.culture-two .swiper-slide.slide2 {
  background: url(../images/germany-beer-fhd.jpg) no-repeat center center /
    cover;
}
.sub-section.culture-two .swiper-slide.slide3 {
  background: url(../images/carnival-death-fhd.jpg) no-repeat center center /
    cover;
}

.sub-section.nature-one .swiper-slide.slide1 {
  background: url(../images/nature-waterfall-fhd.jpg) no-repeat center center /
    cover;
}
.sub-section.nature-one .swiper-slide.slide2 {
  background: url(../images/northern-lights-fhd.jpg) no-repeat center center /
    cover;
}
.sub-section.nature-one .swiper-slide.slide3 {
  background: url(../images/alps-mountain-fhd.jpg) no-repeat center center /
    cover;
}
.sub-section.nature-two .swiper-slide.slide1 {
  background: url(../images/africa-mammal-fhd.jpg) no-repeat center center /
    cover;
}
.sub-section.nature-two .swiper-slide.slide2 {
  background: url(../images/water-bird-fhd.jpg) no-repeat center center / cover;
}
.sub-section.nature-two .swiper-slide.slide3 {
  background: url(../images/ocean-mammal-fhd.jpg) no-repeat center center /
    cover;
}

.sub-section.relaxation-one .swiper-slide.slide1 {
  background: url(../images/beach-sand-fhd.jpg) no-repeat center center / cover;
}
.sub-section.relaxation-one .swiper-slide.slide2 {
  background: url(../images/water-mountain-fhd.jpg) no-repeat center center /
    cover;
}
.sub-section.relaxation-one .swiper-slide.slide3 {
  background: url(../images/sun-ship-fhd.jpg) no-repeat center center / cover;
}

.sub-section.activities-one .swiper-slide.slide1 {
  background: url(../images/golf-andrews-fhd.jpg) no-repeat center center /
    cover;
}
.sub-section.activities-one .swiper-slide.slide2 {
  background: url(../images/mountain-hiking-fhd.jpg) no-repeat center center /
    cover;
}
.sub-section.activities-one .swiper-slide.slide3 {
  background: url(../images/landscape-balloon-fhd.jpg) no-repeat center center /
    cover;
}

.sub-section.mindful-travel-one .swiper-slide.slide1 {
  background: url(../images/bangkok-buddha-fhd.jpg) no-repeat center center /
    cover;
}
.sub-section.mindful-travel-one .swiper-slide.slide2 {
  background: url(../images/rome-vatican-fhd.jpg) no-repeat center center /
    cover;
}
.sub-section.mindful-travel-one .swiper-slide.slide3 {
  background: url(../images/mecca-islam-fhd.jpg) no-repeat center center / cover;
}

.sub-section.local-living-one .swiper-slide.slide1 {
  background: url(../images/field-farm-fhd.jpg) no-repeat center center / cover;
}
.sub-section.local-living-one .swiper-slide.slide2 {
  background: url(../images/food-market-fhd.jpg) no-repeat center center / cover;
}
.sub-section.local-living-one .swiper-slide.slide3 {
  background: url(../images/water-market-fhd.jpg) no-repeat center center /
    cover;
}

/* 테블릿 분기점 */
@media (max-width: 1200px) {
  #header .logo a {
    height: 24px;
    font-size: 20px;
  }
  #header .logo span {
    padding-left: 8px;
  }
  #header .gnb > li > a {
    font-size: 16px;
    padding: 20px 20px;
  }
  #header .gnb > li > a::after {
    width: 16px;
    height: 16px;
    margin-left: -8px;
    background: url(../images/circle16.png) no-repeat;
  }
  #header .lang a {
    font-size: 14px;
  }
  #header .lang .vertical-bar {
    font-size: 14px;
  }
  .sub-section .txt-group p {
    font-size: calc(100vw * 22 / 768);
  }
  .sub-section .dropdown-menu {
    top: 110px;
  }
  .sub-section .dropdown-list {
    width: 240px;
  }
  .sub-section .menu-title button {
    font-size: calc(100vw * 16 / 768);
  }
  .sub-section .dropdown-list li a {
    font-size: calc(100vw * 12 / 768);
  }
  .sub-section .contact-box span {
    width: calc(100vw * 26 / 768);
    height: calc(100vw * 26 / 768);
  }
  .sub-section .contact-box a {
    font-size: calc(100vw * 16 / 768);
  }
  .sub-section .mouse-cursor {
    top: 65%;
  }
}

/* 모바일 분기점 */
@media (max-width: 767px) {
  #header .inner {
    padding: 10px 10px 0 10px;
  }
  #header .logo a {
    height: 18px;
    font-size: 14px;
  }
  #header .logo span {
    padding-left: 5px;
  }
  #header .gnb-wrap {
    display: none;
  }
  #header .lang a {
    font-size: 12px;
  }
  #header .lang .vertical-bar {
    font-size: 12px;
    padding: 0 1px;
  }
  #header .m-inner {
    display: block;
    margin: 0 auto;
    max-width: 1760px;
    padding: 0 10px;
  }
  #header .m-gnb {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #header .m-gnb > li {
    flex: 1;
    min-width: 0;
  }
  #header .m-gnb > li > a {
    display: block;
    font-size: 14px;
    font-weight: 500;
    padding: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: center;
    position: relative;
  }
  #header .m-gnb > li.active > a {
    color: var(--point-color2);
    font-weight: 700;
  }
  #header .m-gnb > li:not(.active) > a {
    opacity: 0;
  }
  #header:hover .m-gnb > li:not(.active) > a {
    color: #000;
    opacity: 1;
  }
  #header .m-gnb > li:not(.active):hover > a {
    color: var(--point-color1);
  }
  #header .m-gnb > li > a::after {
    content: '';
    bottom: 0;
    left: 50%;
    width: 12px;
    height: 12px;
    margin-left: -6px;
    background: url(../images/circle12.png) no-repeat;
    transform: scale(0);
    transition: all 0.5s;
    position: absolute;
  }
  #header .m-gnb > li:hover > a::after {
    transform: scale(1);
  }
  .sub-section .txt-group {
    padding: 0 10px;
  }
  .sub-section .txt-group p {
    font-size: 22px;
    word-break: keep-all;
  }
  .sub-section .dropdown-menu {
    top: 90px;
    padding: 0 10px;
  }
  .sub-section .dropdown-list {
    width: 220px;
  }
  .sub-section .menu-title button {
    font-size: 16px;
  }
  .sub-section .dropdown-list li a {
    font-size: 14px;
  }
  .sub-section .contact-box {
    padding: 0 10px;
    bottom: 20px;
  }
  .sub-section .contact-box span {
    width: 26px;
    height: 26px;
  }
  .sub-section .contact-box a {
    font-size: 16px;
  }
  .sub-section .mouse-cursor {
    top: 60%;
  }
}
