.header {
  background-color: transparent;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
}
.header-btn-wrap {
  background-color: #fff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  padding: 0.3rem 2.4rem;
  gap: 0 2.4rem;
}
.header-btn-wrap a {
  font-size: 1.6rem;
  color: #4d4d4d;
}
.header-btn-wrap .youtube-link {
  display: block;
  background: url(../assets/imgs/header_youtube_logo.png) no-repeat;
  width: 6.0rem;
  height: 1.6rem;
}
.header-btn-wrap .header-lang {
  margin: 0;
}
.header-menu {
  position: relative;
  width: 4.5rem;
  height: 4.5rem;
}
.header-menu button {
  width: 4rem;
  height: 4rem;
  padding: 1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.header-menu span {
  height: 0.4rem;
  background: #000;
  position: absolute;
  right: 0.5rem;
  top: 50%;
  width: calc(100% - 1rem);
}
.header-menu span::before, .header-menu span::after {
  content: "";
  display: block;
  width: calc(100% + 1rem);
  height: 100%;
  position: absolute;
  right: 0;
  top: -1rem;
  background-color: #000;
}
.header-menu span::after {
  top: auto;
  bottom: -1rem;
}
.header-nav-wrap {
  background-color: #fff;
  width: 100%;
  max-width: 86.7rem;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: all 0.3s ease-in-out;
  padding: 5rem 0;
}
.header-nav-wrap .nav-close {
  width: 2.4rem;
  height: 2.4rem;
  position: relative;
}
.header-nav-wrap .nav-close .bar {
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: #000;
  transform: rotate(45deg);
  top: 0.1rem;
}
.header-nav-wrap .nav-close .bar:nth-of-type(2) {
  transform: rotate(-45deg);
}
.header-nav-wrap.active {
  transform: translateX(0);
}
.header-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 3rem 0;
}
.header-nav > ul {
  display: flex;
  flex-direction: column;
  gap: 7rem 0;
}
.header-mo-nav-wrap {
  display: none;
}
.header-mo-menu {
  display: none;
}
.header-mo-nav {
  width: 100%;
}
.header-mo-nav ul {
  display: flex;
  flex-direction: column;
}
.header-mo-nav ul > li {
  display: flex;
  flex-direction: column;
  border-bottom: 2px solid #e5e6e8;
  padding: 2rem 1.5rem;
  background-image: url(../assets/imgs/mo_gnb_arrow_normal.png);
  background-repeat: no-repeat;
  background-position-x: calc(100% - 1.5rem);
  background-position-y: 3.5rem;
}
.header-mo-nav ul > li > a {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2e2e2e;
}
.header-mo-nav ul > li.active {
  background-image: url(../assets/imgs/mo_gnb_arrow.png);
}
.header-mo-nav ul > li:nth-child(2), .header-mo-nav ul > li:nth-child(3), .header-mo-nav ul > li:nth-child(4), .header-mo-nav ul > li:nth-child(5) {
  background: none;
}
.header-mo-nav span {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2e2e2e;
}
.header-mo-nav .depth2 {
  display: none;
  flex-direction: column;
  margin-top: 3rem;
}
.header-mo-nav .depth2 li {
  padding: 0 1.7rem;
  border: none;
  background: none;
}
.header-mo-nav .depth2 li + li {
  margin-top: 2rem;
}
.header-mo-nav .depth2 a {
  font-size: 2rem;
  font-weight: 400;
  position: relative;
  padding-left: 1rem;
}
.header-mo-nav .depth2 a::before {
  content: "";
  width: 2px;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 1080px) {
  .header {
    height: 5rem;
  }
  .header .logo a {
    width: 12rem;
    height: 3.2rem;
  }
  .header-btn-wrap {
    display: none;
  }
  .header-menu {
    display: none;
  }
  .header-nav-wrap {
    display: none;
  }
  .header-mo-nav-wrap {
    display: flex;
    background-color: #fff;
    width: 100%;
    max-width: 45rem;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: all 0.3s ease-in-out;
    padding: 3rem 2rem 7rem;
    border-top: 4px solid #ff0000;
    border-bottom: 4px solid #ff0000;
    overflow-y: auto;
  }
  .header-mo-nav-wrap .nav-close {
    width: 3rem;
    height: 3rem;
    position: relative;
  }
  .header-mo-nav-wrap .nav-close .bar {
    position: absolute;
    width: 2px;
    height: 100%;
    background-color: #000;
    transform: rotate(45deg);
    top: 0.1rem;
  }
  .header-mo-nav-wrap .nav-close .bar:nth-of-type(2) {
    transform: rotate(-45deg);
  }
  .header-mo-nav-wrap.active {
    transform: translateX(0);
  }
  .header-mo-nav-btn-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0 3rem;
  }
  .header-mo-nav-btn-wrap .youtube-link {
    background: url(../assets/imgs/youtube_logo.png) no-repeat center/contain;
    width: 11.6rem;
    height: 2.6rem;
  }
  .header-mo-menu {
    display: flex;
    position: relative;
    width: 4.5rem;
    height: 4.5rem;
  }
  .header-mo-menu button {
    width: 4rem;
    height: 4rem;
    padding: 1rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
  }
  .header-mo-menu span {
    height: 0.3rem;
    background: #000;
    position: absolute;
    right: 0.5rem;
    top: 50%;
    width: calc(100% - 1rem);
  }
  .header-mo-menu span::before, .header-mo-menu span::after {
    content: "";
    display: block;
    width: calc(100% + 1rem);
    height: 100%;
    position: absolute;
    right: 0;
    top: -1rem;
    background-color: #000;
  }
  .header-mo-menu span::after {
    top: auto;
    bottom: -1rem;
  }
}
@media screen and (max-width: 768px) {
  .header {
    height: 6rem;
    padding: 0 2rem;
  }
  .header-mo-nav-wrap {
    width: calc(100% - 5rem);
  }
}
.main {
  height: 100vh;
  position: relative;
}
.main .swiper-container {
  width: 100%;
  height: 100%;
}
.main .swiper-container .img-box {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.main .swiper-container .txt-wrap {
  position: absolute;
  left: 50%;
  top: calc(50% - 10rem);
  transform: translate(-50%, -50%);
  background-color: transparent;
  color: #fff;
  text-align: center;
  width: 100%;
}
.main .swiper-container .txt-wrap p {
  font-size: 6rem;
  font-weight: 500;
}
.main .swiper-container .txt-wrap h3 {
  font-size: 11.6rem;
  font-weight: 700;
}
.main-slide {
  overflow: hidden;
}
.main-tab-wrap {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.main-tab-wrap ul {
  display: flex;
  align-items: flex-end;
  gap: 0 6px;
  text-align: center;
}
.main-tab-wrap li {
  background-color: rgba(0, 0, 0, 0.8);
  width: 26rem;
  height: 15.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.3s all ease-in-out;
}
.main-tab-wrap li .img-box {
  background-image: url(../assets/imgs/main_tab_img_1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 7.3rem;
  height: 5.7rem;
  margin: 0 auto;
}
.main-tab-wrap li:hover {
  background-color: rgba(255, 58, 58, 0.7);
  height: 44rem;
  cursor: pointer;
}
.main-tab-wrap li:hover .img-box {
  width: 12.3rem;
  height: 9.7rem;
  background-image: url(../assets/imgs/main_tab_hover_1.png);
}
.main-tab-wrap li:hover .hover-wrap {
  opacity: 1;
  height: 17rem;
  transition-property: opacity height;
  transition-duration: 0.3s;
  transition-delay: 0.15s;
  transition-timing-function: ease-in-out;
  margin-top: 2.6rem;
}
.main-tab-wrap li:hover .hover-wrap p {
  display: block;
}
.main-tab-wrap li:hover .hover-wrap .link-wrap {
  display: flex;
}
.main-tab-wrap li:hover:nth-child(2) .img-box {
  width: 11rem;
  height: 6.7rem;
  background-image: url(../assets/imgs/main_tab_hover_2.png);
}
.main-tab-wrap li:hover:nth-child(3) .img-box {
  width: 7.7rem;
  height: 8.5rem;
  background-image: url(../assets/imgs/main_tab_hover_3.png);
}
.main-tab-wrap li:nth-child(2) .img-box {
  width: 7.6rem;
  height: 4.6rem;
  background-image: url(../assets/imgs/main_tab_img_2.png);
}
.main-tab-wrap li:nth-child(3) .img-box {
  width: 4.9rem;
  height: 5.4rem;
  background-image: url(../assets/imgs/main_tab_img_3.png);
}
.main-tab-wrap h3 {
  color: #fff;
  margin-top: 2rem;
}
.main-tab-wrap .hover-wrap {
  display: flex;
  color: #fff;
  flex-direction: column;
  height: 0;
  opacity: 0;
}
.main-tab-wrap .hover-wrap p {
  font-size: 1.5rem;
  font-weight: 300;
  display: none;
}
.main-tab-wrap .hover-wrap a {
  border: 1px solid #fff;
  text-align: center;
  display: block;
  width: 11.4rem;
  height: 3.2rem;
  line-height: 3rem;
  font-size: 1.4rem;
  font-weight: 300;
}
.main-tab-wrap .hover-wrap a:nth-of-type(2) {
  background-color: #fff;
  color: #000;
}
.main-tab-wrap .link-wrap {
  display: none;
  flex-direction: column;
  align-items: center;
  margin-top: 2.6rem;
  gap: 1.2rem 0;
}
.main .pause-wrap {
  position: absolute;
  right: 5rem;
  bottom: 5rem;
  display: flex;
  align-items: center;
  z-index: 1;
  gap: 0 1rem;
}
.main .pause-wrap .pause-btn {
  width: 0.8rem;
  height: 1.1rem;
  background: url(../assets/imgs/icon_pause.png) no-repeat center/cover;
}
.main .pause-wrap .pause-btn.active {
  background: url(../assets/imgs/icon_play.png) no-repeat center/cover;
}
.main .pause-wrap .swiper-pagination {
  display: flex;
  align-items: center;
  gap: 0 1rem;
  position: static;
}
.main .pause-wrap .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 0.7;
}
.main .pause-wrap .swiper-pagination-bullet-active {
  background-color: #fff;
}
.main-mo-tab-wrap {
  display: none;
}

@media screen and (max-width: 1080px) {
  .main .swiper-container .txt-wrap {
    width: 100%;
    top: calc(50% - 15rem);
  }
  .main .swiper-container .txt-wrap p {
    font-size: 4rem;
  }
  .main .swiper-container .txt-wrap h3 {
    font-size: 8rem;
  }
  .main-tab-wrap {
    display: none;
  }
  .main-mo-tab-wrap {
    display: block;
    position: absolute;
    top: calc(50% + 12rem);
    left: 0;
    transform: translate(0, -50%);
    z-index: 10;
  }
  .main-mo-tab-wrap ul {
    display: flex;
    align-items: flex-start;
    gap: 6px 0;
    text-align: center;
    flex-direction: column;
  }
  .main-mo-tab-wrap li {
    background-color: rgba(0, 0, 0, 0.8);
    width: auto;
    height: auto;
    min-height: 10rem;
    min-width: 20rem;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.3s all ease-in-out;
  }
  .main-mo-tab-wrap li .content {
    display: flex;
    flex-wrap: wrap;
  }
  .main-mo-tab-wrap li .img-box {
    background-image: url(../assets/imgs/main_tab_img_1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 4rem;
    height: 3.1rem;
    margin: 0 auto;
  }
  .main-mo-tab-wrap li.active {
    width: calc(100vw - 10rem);
    height: 10rem;
    background-color: rgba(255, 58, 58, 0.7);
  }
  .main-mo-tab-wrap li.active h3 {
    margin-top: 0;
  }
  .main-mo-tab-wrap li.active .content {
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    gap: 1rem 2rem;
  }
  .main-mo-tab-wrap li.active .default {
    display: flex;
    align-items: center;
    gap: 0 1rem;
  }
  .main-mo-tab-wrap li.active .img-box {
    width: 4rem;
    height: 3.2rem;
    background-image: url(../assets/imgs/main_tab_hover_1.png);
  }
  .main-mo-tab-wrap li.active .hover-wrap {
    opacity: 1;
    height: auto;
    transition-property: opacity;
    transition-duration: 0.3s;
    transition-delay: 0.3s;
    transition-timing-function: ease-in-out;
    margin-top: 0;
  }
  .main-mo-tab-wrap li.active .hover-wrap p {
    display: none;
  }
  .main-mo-tab-wrap li.active .hover-wrap .link-wrap {
    display: flex;
  }
  .main-mo-tab-wrap li.active:nth-child(2) .img-box {
    width: 4rem;
    height: 2.4rem;
    background-image: url(../assets/imgs/main_tab_hover_2.png);
  }
  .main-mo-tab-wrap li.active:nth-child(3) .img-box {
    width: 4rem;
    height: 4.4rem;
    background-image: url(../assets/imgs/main_tab_hover_3.png);
  }
  .main-mo-tab-wrap li:nth-child(2) .img-box {
    width: 4rem;
    height: 2.4rem;
    background-image: url(../assets/imgs/main_tab_img_2.png);
  }
  .main-mo-tab-wrap li:nth-child(3) .img-box {
    width: 2.2rem;
    height: 2.4rem;
    background-image: url(../assets/imgs/main_tab_img_3.png);
  }
  .main-mo-tab-wrap h3 {
    color: #fff;
    margin-top: 1rem;
  }
  .main-mo-tab-wrap .hover-wrap p {
    display: none;
  }
  .main-mo-tab-wrap .link-wrap {
    display: none;
    flex-direction: row;
    align-items: center;
    margin-top: 0;
    gap: 0 1.5rem;
    color: #fff;
  }
  .main-mo-tab-wrap .link-wrap a {
    border: 1px solid #fff;
    text-align: center;
    display: block;
    width: 10rem;
    height: 3.2rem;
    line-height: 3rem;
    font-size: 1.4rem;
    font-weight: 300;
  }
  .main-mo-tab-wrap .link-wrap a:nth-of-type(2) {
    background-color: #fff;
    color: #000;
  }
  .main .pause-wrap {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .main .swiper-container .txt-wrap {
    width: 100%;
    top: calc(50% - 15rem);
  }
  .main .swiper-container .txt-wrap p {
    font-size: 3rem;
  }
  .main .swiper-container .txt-wrap h3 {
    font-size: 6rem;
  }
  .main-mo-tab-wrap {
    top: calc(50% + 10rem);
  }
  .main-mo-tab-wrap li.active:nth-child(3) .img-box {
    width: 3rem;
    height: 3.4rem;
    background-image: url(../assets/imgs/main_tab_hover_3.png);
  }
}
@media screen and (max-width: 420px) {
  .main-mo-tab-wrap {
    top: calc(50% + 14rem);
  }
  .main-mo-tab-wrap li.active {
    width: calc(100% - 3rem);
  }
}
.footer {
  background-color: #202020;
  padding: 1.2rem 0;
}

.nav-abouts {
  display: flex;
  align-items: center;
  gap: 0 5rem;
}
.nav-abouts a {
  font-size: 1.7rem;
  color: #7d7d7d;
}
.nav-abouts li:first-child a {
  font-size: 3rem;
  font-weight: 700;
  color: #000;
}
.nav-main-content {
  display: flex;
  flex-direction: column;
  gap: 7rem 0;
}
.nav-main-content a {
  font-size: 5rem;
  font-weight: 700;
  color: #000;
}
.nav-board {
  display: flex;
  align-items: center;
  gap: 0 7.8rem;
}
.nav-board a {
  font-size: 1.7rem;
  color: #7d7d7d;
}
.nav-board li:first-child a {
  font-size: 3rem;
  font-weight: 700;
  color: #000;
}/*# sourceMappingURL=main.css.map */