@charset "UTF-8";
.header-inner .logo {
  margin-top: 1rem;
}

.right-menu {
  color: #000;
}
.right-menu .search-open-btn {
  width: 2.5rem;
  height: 2.5rem;
}
.right-menu .search-open-btn i {
  filter: invert(1) !important;
  -webkit-filter: invert(1) !important;
}
.right-menu .search-open-btn i::before {
  font-size: 2.5rem;
  font-weight: 100;
  filter: invert(1);
  -webkit-filter: invert(1);
}

/*
 비주얼 슬라이드  */
.main-visual {
  position: relative;
  width: 100%;
  height: 100vh;
}
.main-visual .video-box {
  width: 100%;
  height: 100%;
}
.main-visual .video-box video {
  position: absolute;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.main-visual .img-box {
  width: 100%;
  height: 100%;
}
.main-visual .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.2);
  transition: transform 4s 4s;
  -webkit-transition: transform 4s, 4s;
  -moz-transition: transform 4s, 4s;
  -ms-transition: transform 4s, 4s;
  -o-transition: transform 4s, 4s;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}
.main-visual .vis-inner {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-end;
  position: absolute;
  left: 0;
  top: 0;
  padding: 0 8rem;
  width: 100%;
  height: 100%;
}
.main-visual .vis-txt-wrap {
  margin-bottom: 4rem;
  font-family: "Montserrat", sans-serif;
  text-align: right;
}
.main-visual .vis-txt-wrap .deco-txt {
  opacity: 0;
  display: block;
  position: relative;
  left: 10%;
  margin-bottom: 0.8rem;
  font-size: var(--sub-tit);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
.main-visual .vis-txt-wrap .vis-tit {
  opacity: 0;
  position: relative;
  left: 15%;
  font-size: var(--vis-f);
  color: #002c5f;
  line-height: 1.222;
}
.main-visual .swiper-slide:nth-of-type(1) .vis-tit {
  color: #fff;
}
.main-visual .swiper-slide.swiper-slide-active .img-box img {
  transform: scale(1);
  transition: transform 4s 4s;
  -webkit-transition: transform 4s, 4s;
  -moz-transition: transform 4s, 4s;
  -ms-transition: transform 4s, 4s;
  -o-transition: transform 4s, 4s;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.main-visual .swiper-slide.swiper-slide-active .vis-txt-wrap .deco-txt {
  opacity: 1;
  left: 0;
  transition: opacity 0.5s 0.3s, left 1.5s 0.1s;
  -webkit-transition: opacity 0.5s 0.3s, left 1.5s 0.1s;
  -moz-transition: opacity 0.5s 0.3s, left 1.5s 0.1s;
  -ms-transition: opacity 0.5s 0.3s, left 1.5s 0.1s;
  -o-transition: opacity 0.5s 0.3s, left 1.5s 0.1s;
}
.main-visual .swiper-slide.swiper-slide-active .vis-txt-wrap .vis-tit {
  opacity: 1;
  left: 0;
  transition: opacity 0.5s 0.3s, left 1.5s 0.1s;
  -webkit-transition: opacity 0.5s 0.3s, left 1.5s 0.1s;
  -moz-transition: opacity 0.5s 0.3s, left 1.5s 0.1s;
  -ms-transition: opacity 0.5s 0.3s, left 1.5s 0.1s;
  -o-transition: opacity 0.5s 0.3s, left 1.5s 0.1s;
}

.control-wrap {
  z-index: 10;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  right: 8rem;
  top: 58%;
}
.control-wrap .play-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 3rem;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #fff;
  border-radius: 3.5rem;
  -webkit-border-radius: 3.5rem;
  -moz-border-radius: 3.5rem;
  -ms-border-radius: 3.5rem;
  -o-border-radius: 3.5rem;
}
.control-wrap .play-btn > .play-icon {
  position: relative;
}
.control-wrap .play-btn > .play-icon::before {
  margin: 0;
  font-size: calc(var(--mm-f) - 0.2rem);
  font-family: "fontello";
  content: "\f00e";
}
.control-wrap .play-btn.active > .play-icon::before {
  content: "\f00f";
}
.control-wrap .progress {
  display: inline-block;
  position: relative;
  width: 20rem;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
}
.control-wrap .progress .bar {
  position: absolute;
  left: 0;
  top: -0.04rem;
  width: 0;
  height: 2px;
  background-color: #fff;
}

@media all and (max-width: 100rem) {
  .main-visual .vis-inner {
    padding: 0 4rem;
  }
}
@media all and (max-width: 63.9375rem) {
  .main-visual .vis-inner {
    justify-content: flex-end;
    padding: 0 2rem 7rem 30%;
  }
  .main-visual .vis-txt-wrap .vis-tit {
    line-height: 1.1;
  }
  .main-visual .control-wrap {
    top: auto;
    right: 2rem;
    bottom: 4rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .main-visual .vis-inner {
    padding: 0 2rem 5rem;
  }
  .main-visual .vis-txt-wrap .vis-tit {
    line-height: 1.1;
  }
}
/*
섹션 공통 */
.sec-tit {
  font-size: calc(var(--sec-t) - 0.2rem);
  font-weight: 800;
  line-height: 1.3;
  color: #002c5f;
}

.sec-desc {
  font-size: var(--lg-f);
  font-weight: 600;
  line-height: 1.59;
  color: #002c5f;
}

.sec-deco-txt {
  font-size: var(--sub-tit);
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #60dfff;
  line-height: 2.6;
}

/*
섹션 1*/
.sec-01 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 58rem;
  text-align: center;
  background-color: #f4f3ef;
}
.sec-01 .sec-tit {
  margin-bottom: 2.5rem;
}
.sec-01 .sec-desc {
  color: #898c90;
}

/*
섹션 2*/
.sec-02 {
  position: relative;
  padding: 22rem 0;
  background: url("https://taeha02.cdn1.cafe24.com/static/img/main/sec-2.jpg") center/cover no-repeat;
  background-attachment: fixed;
}
.sec-02 .over {
  opacity: 0.4;
  position: absolute;
  left: 0;
  top: 0;
  width: 38%;
  height: 100%;
  content: "";
  background-color: #002c5f;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.sec-02 .inner {
  z-index: 10;
  position: relative;
}
.sec-02 .sticky-el {
  position: sticky;
  left: 0;
  top: 0;
  padding-bottom: 12rem;
  width: -moz-fit-content;
  width: fit-content;
}
.sec-02 .sec-txt-wrap {
  position: sticky;
  left: 0;
  top: 12rem;
}
.sec-02 .sec-txt-wrap .sec-tit {
  color: #fff;
}
.sec-02 .sec-desc {
  opacity: 0.6;
  margin-bottom: 14rem;
  padding-left: 2rem;
  padding-top: 6rem;
  color: #fff;
}

.col-grid {
  top: 12rem;
  display: grid;
  grid-template-columns: minmax(35.625%, 57rem) minmax(64.375%, 103rem);
  justify-content: space-between;
}

.scroll-box {
  padding-left: 8rem;
}

.item-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  flex-wrap: wrap;
  gap: 13.5rem 5rem;
  padding-bottom: 12rem;
}
.item-wrap .item {
  position: relative;
  width: 100%;
}
.item-wrap .item:nth-of-type(even) {
  top: 40rem;
}
.item-wrap .item > a {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 4rem 0;
  max-width: 46rem;
}
.item-wrap .item .figure {
  padding: 0 2rem;
}
.item-wrap .item .figure img {
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.3);
}
.item-wrap .item .item-body {
  padding-left: 2rem;
  padding-bottom: 19.5rem;
}
.item-wrap .item .item-tit {
  margin-bottom: 1rem;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1.625;
}
.item-wrap .item .item-desc {
  opacity: 0.6 !important;
  font-weight: 600;
  color: #fff;
  line-height: 1.6;
  font-size: 18px;
}

@media all and (min-width: 120.0625rem) {
  .sec-02 .over {
    width: 40%;
  }
}
@media all and (max-width: 100rem) {
  .sec-02 {
    padding: 16rem 0;
  }
  .sec-02 .over {
    width: 35%;
  }
  .sec-02 .sec-desc {
    margin-bottom: 7rem;
  }
  .sec-02 .sec-desc br {
    display: none;
  }
  .scroll-box {
    padding-left: 6rem;
  }
  .col-grid {
    grid-template-columns: minmax(32%, 57rem) minmax(68%, 103rem);
  }
  .item-wrap {
    gap: 8rem 3rem;
  }
  .item-wrap .item:nth-of-type(even) {
    top: 30rem;
  }
  .item-wrap .item .item-body {
    padding-left: 2rem;
    padding-bottom: 13rem;
  }
}
@media all and (max-width: 79.9375rem) {
  .sec-02 {
    padding: 16rem 0;
  }
  .sec-02 .over {
    width: 30%;
  }
  .scroll-box {
    padding-left: 2rem;
  }
  .col-grid {
    grid-template-columns: minmax(28%, 57rem) minmax(72%, 103rem);
  }
  .item-wrap {
    gap: 8rem 1.5rem;
  }
}
@media all and (max-width: 63.9375rem) {
  .sec-02 .sec-desc {
    padding-left: 1rem;
    padding-top: 4rem;
  }
  .item-wrap {
    gap: 8rem 0;
  }
  .item-wrap .item .figure {
    padding: 0 1rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .sec-02 {
    padding: 10rem 0;
  }
  .sec-02 .over {
    display: none;
  }
  .sec-02 .sticky-el {
    position: relative;
    padding-bottom: 4rem;
  }
  .sec-02 .sec-txt-wrap {
    position: relative;
    top: 0;
  }
  .sec-02 .sec-desc {
    padding-left: 0;
  }
  .col-grid {
    grid-template-columns: 1fr;
  }
  .scroll-box {
    padding-left: 0;
  }
  .item-wrap {
    grid-template-columns: 1fr;
  }
  .item-wrap .item {
    overflow: hidden;
  }
  .item-wrap .item:nth-of-type(even) {
    top: 0;
  }
  .item-wrap .item:nth-of-type(even) a {
    flex-direction: column;
  }
  .item-wrap .item > a {
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    max-width: none;
  }
  .item-wrap .item .item-body {
    padding-left: 0;
    padding-bottom: 0;
  }
}
/*
섹션 3 */
.sec-03 {
  overflow: hidden;
  position: relative;
}
.sec-03 .inner {
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
}
.sec-03 .sec-tit {
  margin-bottom: 1.8rem;
  color: #0d0d0d;
}
.sec-03 .sec-desc {
  opacity: 0.6 !important;
  color: #0d0d0d;
}
.sec-03 .img-bg {
  width: 100%;
  height: 100vh;
}
.sec-03 .img-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(0);
  border-radius: 100rem;
  -webkit-border-radius: 100rem;
  -moz-border-radius: 100rem;
  -ms-border-radius: 100rem;
  -o-border-radius: 100rem;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
}
.sec-03.active .sec-tit {
  color: #fff;
  transition: color 0.2s 0.5s;
  -webkit-transition: color 0.2s, 0.5s;
  -moz-transition: color 0.2s, 0.5s;
  -ms-transition: color 0.2s, 0.5s;
  -o-transition: color 0.2s, 0.5s;
}
.sec-03.active .sec-desc {
  opacity: 0.6 !important;
  color: #fff;
  transition: color 0.2s 0.5s;
  -webkit-transition: color 0.2s, 0.5s;
  -moz-transition: color 0.2s, 0.5s;
  -ms-transition: color 0.2s, 0.5s;
  -o-transition: color 0.2s, 0.5s;
}
.sec-03.active .img-bg img {
  transform: scale(1);
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  transition: transform 1s 0.1s, radius 1s 0.2s;
  -webkit-transition: transform 1s 0.1s, radius 1s 0.2s;
  -moz-transition: transform 1s 0.1s, radius 1s 0.2s;
  -ms-transition: transform 1s 0.1s, radius 1s 0.2s;
  -o-transition: transform 1s 0.1s, radius 1s 0.2s;
}

/*
섹션 4 */
.sec-04 {
  padding: 20rem 0;
  background: url("https://taeha02.cdn1.cafe24.com/static/img/main/sec-4.jpg") right bottom no-repeat #f4f3ef;
}
.sec-04 .bottom-btn-wrap {
  margin: 6rem 0 0;
}

.flow-txt {
  margin-bottom: 20rem;
}
.flow-txt .swiper-wrapper {
  transition-timing-function: linear;
}
.flow-txt .swiper-slide {
  margin: 0 1.5rem;
  width: -moz-fit-content;
  width: fit-content;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.flow-txt .scroll-txt {
  margin-right: 5rem;
  font-size: 13rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #10418c;
  white-space: nowrap;
}
.flow-txt .slide-1 .scroll-txt {
  color: #f4f3ef;
  text-shadow: -1px 0px #002c5f, 0px 1px #002c5f, 1px 0px #002c5f, 0px -1px #100097;
  white-space: nowrap;
}

.thumb-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(30.625%, 49rem));
  gap: 0 4.0625%;
  margin: 10rem 0 5rem;
}
.thumb-list .thumb-card {
  overflow: hidden;
}
.thumb-list .thumb-card .figure {
  overflow: hidden;
  position: relative;
  margin-bottom: 3rem;
  padding-top: 71.43%;
  width: 100%;
  height: 0;
  background-color: #fff;
}
.thumb-list .thumb-card .figure img {
  position: absolute;
  left: 0;
  top: 0;
}
.thumb-list .card-body {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 1.2rem 0;
  color: #002c5f;
}
.thumb-list .date {
  font-size: var(--mm-f);
  font-weight: 700;
  line-height: 1.94;
  letter-spacing: -0.1rem;
}
.thumb-list .tit {
  width: 100%;
  padding-right: 2rem;
  font-size: var(--sub-tit);
  overflow: hidden;
  display: -webkit-box;
  line-height: 1.44;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.thumb-list .desc {
  width: 100%;
  font-size: var(--md-f);
  color: #000;
  line-height: 1.66;
  overflow: hidden;
  display: -webkit-box;
  line-height: 1.66;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.thumb-list .desc > * {
  padding-left: 0 !important;
  text-align: left !important;
}

@media all and (max-width: 100rem) {
  .sec-04 {
    background-size: 50%;
  }
  .flow-txt .scroll-txt {
    font-size: 10rem;
  }
}
@media all and (max-width: 79.9375rem) {
  .sec-04 {
    padding: 16rem 0;
    background-size: 50%;
  }
  .flow-txt {
    margin-bottom: 16rem;
  }
  .flow-txt .scroll-txt {
    font-size: 10rem;
  }
}
@media all and (max-width: 63.9375rem) {
  .sec-04 {
    padding: 14rem 0;
    background-size: 50%;
  }
  .flow-txt {
    margin-bottom: 14rem;
  }
  .flow-txt .scroll-txt {
    font-size: 8rem;
  }
  .thumb-list {
    margin: 6rem 0 5rem;
  }
  .thumb-list .thumb-card .figure {
    margin-bottom: 1.5rem;
  }
  .thumb-list .thumb-card .card-body {
    gap: 0.6rem 0;
  }
}
@media all and (max-width: 47.9375rem) {
  .sec-04 {
    padding: 12rem 0;
  }
  .flow-txt {
    margin-bottom: 10rem;
  }
  .flow-txt .scroll-txt {
    font-size: 6rem;
  }
  .thumb-list {
    grid-template-columns: 1fr;
    gap: 4rem 0;
  }
}
/*
스크롤 이벤트 */
.inner > .sec-txt-wrap > .sec-deco-txt,
.inner > .sec-txt-wrap > .sec-tit,
.inner > .sec-txt-wrap > .sec-desc,
.link-btn,
.item-desc,
.section .item,
.thumb-card {
  opacity: 0;
}/*# sourceMappingURL=main_en.css.map */