/* ----- S:Common -----*/
.sec {
  padding: 150px 0;  
}

.container {
  max-width: 1430px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.sec-title {
  margin-top: -20px;
  font-size: 6.2rem;
  font-weight: 700;
  font-family: "Open Sans";
}

@media(max-width:1200px){
  .sec {
    padding: 130px 0;  
  }
  
  .sec-title {
    margin-top: -18px;
    font-size: 5.4rem;
  }
}

@media(max-width:1024px){
  .sec {
    padding: 110px 0;  
  }
  
  .sec-title {
    margin-top: -15px;
    font-size: 4.8rem;
  }
}

@media(max-width:768px){
  .sec {
    padding: 90px 0;  
  }
  
  .sec-title {
    margin-top: -13px;
    font-size: 4rem;
  }
}

@media(max-width:500px){
  .sec {
    padding: 80px 0;  
  }
  
  .sec-title {
    margin-top: -11px;
    font-size: 3.2rem;
  }
}
/* ----- E:Common -----*/

/* ----- S:Sec01 -----*/
.sec01 {
  width:100%;
  height:100vh;
  padding:0px;
  background-color:#000;
}

.sec01 .visual {
  position: relative;
  width:100%;
  height:100%;
}


.sec01 .text-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 1430px;
  width: 100%;
  padding: 0 15px;
}

.sec01 .text-box  span {
  display: block;
}

.sec01 .text-box h3 {
  margin-bottom: 18px;
  font-size: 6.2rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  font-family: "Open Sans";
}

.sec01 .text-box p {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.42;
  color: #fff;
}

.sec01 .background {
  position: absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  width:100%;
  height:100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size:cover;
  z-index:1;
}

.sec01 .swiper-container {
  height:100%;
}

.sec01 .swiper-wrapper {
  height:100%;
}

.sec01 .swiper-slide {
  height:100%;
  overflow: hidden;
}

.sec01 .swiper-controls {
  position: absolute;
  bottom: 91px;
  left: 0;
  z-index: 9;
  width: 100%;
}

.sec01 .swiper-controls .controls-nav {
  max-width: 1430px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.sec01 .controls-nav .swiper-pagination {
  display: flex;
  align-items: center;
  gap: 0 25px;
  position: relative;
  /* height: 100%; */
  padding-left: 85px;
  font-size:1.8rem;
  /* font-weight: 600; */
  color:#fff;
}

.sec01 .controls-nav .swiper-pagination::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #fff;
}

.sec01 .controls-nav .swiper-pagination-bullet {
  /* display: flex; */
  padding: 0 2px;
  width: auto;
  height: auto;
  /* height: fit-content; */
  background: inherit;
  opacity: 1;
}

.sec01 .controls-nav .swiper-pagination-bullet .number {
  display: block;
  width: fit-content;
  height: fit-content;
  padding: 0 0 5px;
  text-align: center;
  line-height: 1;
}

.sec01 .controls-nav .fp-arc-loader {
  position: absolute;
  top:50%;
  left: 0;
  transform: translateY(-50%);
}

.sec01  .path {
	display: none;
}

.sec01 .swiper-pagination-bullet-active .number {
  border-bottom: 1px solid #fff;
}

.sec01 .swiper-pagination-bullet-active  {
  font-weight: 600;
}

.sec01 .swiper-pagination-bullet-active .path {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
	display: inline-block !important;
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
  animation: dash linear 22s;
  animation-iteration-count: unset;
}

.sec01 .swiper-pagination-bullet-active .path.stop {
  animation: none;
}

.sec01 .swiper-pagination-bullet-active .path.start {
  animation: dash linear 22s;
}

@keyframes dash {
  from {
    stroke-dashoffset: 1000;
  }

  to {
    stroke-dashoffset: 0;
  }
}

.sec01 .swiper-controls .box {
  max-width: 1430px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  z-index: 999;
  width: 100%;
}

.sec01 .swiper-controls .box .con {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  z-index: 999;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
}

.sec01 .swiper-controls .stop {
  display: inline-block;
  width: 9px;
  height: 13px;
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
  cursor: pointer;
}

.sec01 .swiper-controls .play {
  display: inline-block;
  width: 9px;
  height: 13px;
  background-repeat: no-repeat;
  background-position: center;
  background-size:cover;
  cursor: pointer;
  background-image: url('/en/img/main/visual_play.svg');
}

.sec01 .swiper-controls .stop.on {
  display: none;
}

.sec01 .swiper-controls .play.on {
  display: none;
}


@media(max-width:1200px) {
  .sec01 {
    height:calc(100vh - 70px);
  }
  
  .sec01 .text-box h3 {
    margin-bottom: 15px;
    font-size: 5.4rem;
  }
  
  .sec01 .text-box p {
    font-size: 2.4rem;
  }
  
  .sec01 .swiper-controls {
    bottom: 91px;
  }
  
  .sec01 .controls-nav .swiper-pagination {
    gap: 0 20px;
    font-size:1.6rem;
  }
  
  .sec01 .swiper-controls .box .con {
    width: 60px;
    height: 60px;
  }
  
  .sec01 .swiper-controls .stop {
    width: 9px;
    height: 13px;
  }
  
  .sec01 .swiper-controls .play {
    width: 9px;
    height: 13px;
  }
}

@media(max-width:1024px) {
  .sec01 .text-box h3 {
    margin-bottom: 15px;
    font-size: 4.8rem;
  }
  
  .sec01 .text-box p {
    font-size: 2.2rem;
  }
  
  .sec01 .swiper-controls {
    bottom: 91px;
  }
  
  .sec01 .controls-nav .swiper-pagination {
    gap: 0 15px;
    padding-left: 65px;
    font-size:1.5rem;
  }
  
  .sec01 .controls-nav .swiper-pagination::after {
    width: 50px;
    height: 50px;
  }
  
  
  .sec01 .controls-nav .fp-arc-loader {
    width: 49px;
    height: 49px;
  }
  
  .sec01 .swiper-controls .box .con {
    width: 50px;
    height: 50px;
  }
  
  .sec01 .swiper-controls .stop {
    width: 9px;
    height: 13px;
  }
  
  .sec01 .swiper-controls .play {
    width: 9px;
    height: 13px;
  }
}

@media(max-width:768px) {
  .sec01 {
    height:750px;
  }
  
  .sec01 .text-box h3 {
    margin-bottom: 15px;
    font-size: 4rem;
  }
  
  .sec01 .text-box {
    top: 45%;
  }
  
  .sec01 .text-box p {
    font-size: 2rem;
  }

  .sec01 .text-box p br {
    display: none;
  }
  
  .sec01 .swiper-controls {
    bottom: 91px;
  }
  
  .sec01 .controls-nav .swiper-pagination {
    gap: 0 15px;
    padding-left: 65px;
    font-size:1.4rem;
  }
  
  .sec01 .controls-nav .swiper-pagination::after {
    width: 45px;
    height: 45px;
    border: 1px solid #fff;
  }
  
  .sec01 .controls-nav .fp-arc-loader {
    width: 45px;
    height: 45px;
  }
  
  .sec01 .swiper-controls .box .con {
    width: 45px;
    height: 45px;
  }
  
  .sec01 .swiper-controls .stop {
    width: 9px;
    height: 13px;
  }
  
  .sec01 .swiper-controls .play {
    width: 9px;
    height: 13px;
  }
}

@media(max-width:500px) {
  .sec01 {
    height:670px;
  }
  
  .sec01 .text-box h3 {
    margin-bottom: 10px;
    font-size: 3.2rem;
  }
  
  .sec01 .text-box p {
    font-size: 1.8rem;
  }
  
  .sec01 .swiper-controls {
    bottom: 91px;
  }
  
  .sec01 .controls-nav .swiper-pagination {
    gap: 0 15px;
    padding-left: 65px;
    font-size:1.3rem;
  }
  
  .sec01 .controls-nav .swiper-pagination::after {
    width: 40px;
    height: 40px;
  }
  
  
  .sec01 .controls-nav .fp-arc-loader {
    width: 40px;
    height: 40px;
  }
  
  .sec01 .swiper-controls .box .con {
    width: 40px;
    height: 40px;
  }
  
  .sec01 .swiper-controls .stop {
    width: 9px;
    height: 13px;
  }
  
  .sec01 .swiper-controls .play {
    width: 9px;
    height: 13px;
  }
}
/* ----- S:Sec01 -----*/

/* ----- S:Sec02 -----*/
.sec02 {
  position: relative;
  padding-top: 135px;
}

.sec02 .lt-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 630px;
  aspect-ratio: 0.656 / 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/en/img/main/sec02_bg01.png');
}


.sec02 .rt-bg {
  position: absolute;
  right: 0;
  bottom: 175px;
  z-index: -1;
  width: 699px;
  aspect-ratio: 0.735 / 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/en/img/main/sec02_bg02.png');
}

.sec02 .sec-title {
  margin-bottom: 51px;
}

.sec02 .area {
  margin-bottom: 283px;
}

.sec02 .swiper-container {
  position: relative;
  margin: 0;
}

.sec02 .swiper-slide {
  display: flex;
  position: relative;
  justify-content: space-between;
  gap: 0 20px;
  width: 100%;
}

.sec02 .swiper-slide .thumb {
  position: relative;
  max-width: 685px;
  width: 49%;
  aspect-ratio: 1.181 / 1;
  overflow: hidden;
  border-radius: 20px;
}

.sec02 .swiper-slide .thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sec02 .swiper-slide .txt-box {
  max-width: 595px;
  width: 42.5%;
  margin-top: 49px;
}

.sec02 .swiper-slide .txt-box .category {
  transform: translateX(-30%);
  opacity: 0;
  margin-bottom: 13px;
  font-size: 2.2rem;
  font-weight: 700;
  color: #036eb8;
  font-family: "Open Sans";
  transition: all .3s ease-in;
}

.sec02 .swiper-slide .txt-box .title {
  transform: translateX(-30%);
  opacity: 0;
  margin-bottom: 16px;
  font-size: 4.2rem;
  font-weight: 700;
  transition: all .3s ease-in;
}

.sec02 .swiper-slide .txt-box .text {
  margin-bottom: 40px;
}

.sec02 .swiper-slide .txt-box .text p {
  transform: translateX(-30%);
  opacity: 0;
  font-size: 2.2rem;
  line-height: 1.63;
  transition: all .3s ease-in;
}

.sec02 .swiper-slide .txt-box .more-btn {
  width: 220px;
  height: 60px;
  font-size: 2rem;
}

.sec02 .swiper-slide .txt-box .more-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background-color: #006934;
  font-size: inherit;
  color: #fff;
}

.sec02 .swiper-pagination {
  display: flex;
  align-items: start;
  position: absolute;
  gap: 0 20px;
  max-width: 595px;
  width: 42.5%;
  left: auto;
  right: 4px; /*box shadow 영역*/
  bottom: 28px;
  
}

.sec02 .swiper-pagination-bullet {
  display: block;
  width: 200px;
  height: 160px;
  padding: 23px 10px;
  border-radius: 5px;
  background-color: #f5f5f5;
  opacity: 1;
}

.sec02 .swiper-pagination-bullet span {
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 500;
  text-align: center;
  color: #b2b2b2;
}

.sec02 .swiper-pagination-bullet .icon {
  display: block;
  position: relative;
  width: 80px;
  height: 80px;
  margin: 17px auto 0;
}

.sec02 .swiper-pagination-bullet .icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sec02 .swiper-pagination-bullet .icon-on {
  display: none;
  opacity: 0;
}


.sec02 .swiper-slide-active .txt-box .category {
  transform: translateX(0);
  opacity: 1;
}

.sec02 .swiper-slide-active .txt-box .title {
  transform: translateX(0);
  opacity: 1;
  margin-bottom: 16px;
  font-size: 4.2rem;
  font-weight: 700;
}

.sec02 .swiper-slide-active .txt-box .text p {
  transform: translateX(0);
  opacity: 1;
}

.sec02 .swiper-pagination-bullet-active {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 105, 52, 0.3);
}

.sec02 .swiper-pagination-bullet-active span {
  font-weight: 700;
  color: #006934;
}

.sec02 .swiper-pagination-bullet-active .icon-default {
  display: none;
  opacity: 0;
}

.sec02 .swiper-pagination-bullet-active .icon-on {
  display: block;
  opacity: 1;
}

.sec02 .banner {
  display: flex;
  /* align-items: center; */
  position: relative;
  width: 100%;
  /* height: 400px; */
  /* height: 600px; */
  aspect-ratio: 2 / 1;
  border-radius: 20px;
  overflow: hidden;
}

.sec02 .banner .bg {
  position: absolute;
  top: 50%;
  left: 50%;
  /* transform: translate(-50%, -50%) scale(1.3); */
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  /* background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/child/img/main/sec02_banner.png');
  transition: all .5s linear; */
}

.sec02 .banner .bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}

.sec02 .banner .text-box {
  position: relative;
  z-index: 1;
  /* max-width: 1162px; */
  max-width: 1300px;
  width: 100%;
  padding: 0 15px;
  margin: 50px auto 0;
  /* margin: 0 auto 4px; */
  transform: translateX(-10%);
  opacity: 0;
  transition: all .3s linear;
  transition-delay: .5s;
}

.sec02 .banner .text-box .title {
  margin-bottom: 19px;
  font-size: 5rem;
  font-weight: 700;
  color: #fff;
}

.sec02 .banner .text-box .txt {
  margin-bottom: 47px;
  font-size: 2.2rem;
  color: #fff;
}

.sec02 .banner .text-box .more-btn {
  width: 220px;
  height: 60px;
  font-size: 2rem;
}

.sec02 .banner .text-box .more-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  border: 2px solid #fff;
  font-size: inherit;
  color: #fff;
}

/* .sec02 .banner.aos-animate .bg {
  transform: translate(-50%, -50%) scale(1);
} */

.sec02 .banner.aos-animate .text-box  {
  transform: translateX(0);
  opacity: 1;
}

@media(max-width:1300px) {
  .sec02 .swiper-slide .txt-box {
    margin-top: 0;
  }

  .sec02 .swiper-pagination {
    bottom: 4px;
  }
  
}

@media(max-width:1200px){
  .sec02 {
    padding-top: 115px;
  }
  
  .sec02 .lt-bg {
    width: 430px;
  }
  
  
  .sec02 .rt-bg {
    bottom: 130px;
    width: 500px;
  }
  
  .sec02 .sec-title {
    margin-bottom: 45px;
  }
  
  .sec02 .area {
    margin-bottom: 230px;
  }
  
  .sec02 .swiper-slide {
    gap: 0 15px;
  }
  
  .sec02 .swiper-slide .thumb {
    width: 49%;
  }
  
  .sec02 .swiper-slide .txt-box {
    width: 42.5%;
  }
  
  .sec02 .swiper-slide .txt-box .category {
    /* margin-bottom: 13px; */
    font-size: 2rem;
  }
  
  .sec02 .swiper-slide .txt-box .title {
    /* margin-bottom: 16px; */
    font-size: 3.6rem;
  }
  
  .sec02 .swiper-slide .txt-box .text {
    max-width: 60%;
    margin-bottom: 35px;
  }
  
  .sec02 .swiper-slide .txt-box .text p {
    font-size: 2rem;
  }
  
  .sec02 .swiper-slide .txt-box .more-btn {
    width: 200px;
    height: 50px;
    font-size: 1.8rem;
  }
  
  .sec02 .swiper-pagination {
    gap: 0 15px;
    width: 42.5%;
    right: 4px; /*box shadow 영역*/
  }
  
  .sec02 .swiper-pagination-bullet {
    width: 180px;
    height: 120px;
    padding: 18px 10px;
  }
  
  .sec02 .swiper-pagination-bullet span {
    font-size: 1.6rem;
  }
  
  .sec02 .swiper-pagination-bullet .icon {
    width: 65px;
    height: 65px;
    margin: 5px auto 0;
  }
  
  .sec02 .swiper-slide-active .txt-box .title {
    /* margin-bottom: 16px; */
    font-size: 3.6rem;
  }
  
  /* .sec02 .banner {
    height: 350px;
  } */
   
  .sec02 .banner .text-box {
    margin: 45px auto 0;
  }
  
  .sec02 .banner .text-box .title {
    /* margin-bottom: 19px; */
    font-size: 4.4rem;
  }
  
  .sec02 .banner .text-box .txt {
    margin-bottom: 40px;
    font-size: 2rem;
  }
  
  .sec02 .banner .text-box .more-btn {
    width: 200px;
    height: 50px;
    font-size: 1.8rem;
  }
}

@media(max-width:1024px){
  .sec02 {
    padding-top: 95px;
  }
  
  .sec02 .lt-bg {
    width: 350px;
  }
  
  .sec02 .rt-bg {
    bottom: 100px;
    width: 400px;
  }
  
  .sec02 .sec-title {
    margin-bottom: 40px;
  }
  
  .sec02 .area {
    margin-bottom: 190px;
  }
  
  .sec02 .swiper-slide {
    /* flex-direction: column;
    align-items: start; */
    gap: 0 15px;
  }
  
  .sec02 .swiper-slide .thumb {
    /* width: 100%; */
    /* max-width: 100%; */
  }
  
  .sec02 .swiper-slide .txt-box {
    /* width: 100%; */
    /* max-width: 100%; */
    margin-top: 30px;
  }
  
  .sec02 .swiper-slide .txt-box .category {
    /* margin-bottom: 13px; */
    font-size: 1.8rem;
  }
  
  .sec02 .swiper-slide .txt-box .title {
    /* margin-bottom: 16px; */
    font-size: 3.2rem;
  }
  
  .sec02 .swiper-slide .txt-box .text {
    margin-bottom: 30px;
  }
  
  .sec02 .swiper-slide .txt-box .text p {
    font-size: 1.8rem;
  }
  
  .sec02 .swiper-slide .txt-box .text p br {
    display: none;
  }
  
  .sec02 .swiper-slide .txt-box .more-btn {
    width: 180px;
    height: 45px;
    font-size: 1.6rem;
  }
  
  .sec02 .swiper-pagination {
    position: unset;
    gap: 0 10px;
    width: 100%;
    margin-top: 25px;
    padding: 10px 0;
  }
  
  .sec02 .swiper-pagination-bullet {
    width: 170px;
    height: 110px;
    padding: 15px;
  }
  
  .sec02 .swiper-pagination-bullet span {
    font-size: 1.5rem;
  }
  
  .sec02 .swiper-pagination-bullet .icon {
    width: 60px;
    height: 60px;
    /* margin: 17px auto 0; */
  }
  
  .sec02 .swiper-slide-active .txt-box .title {
    /* margin-bottom: 16px; */
    font-size: 3.2rem;
  }
  
  /* .sec02 .banner {
    height: 300px;
  } */
  
  .sec02 .banner .text-box {
    margin: 40px auto 0;
  }
  
  .sec02 .banner .text-box .title {
    margin-bottom: 15px;
    font-size: 4rem;
  }
  
  .sec02 .banner .text-box .txt {
    margin-bottom: 35px;
    font-size: 1.8rem;
  }
  
  .sec02 .banner .text-box .more-btn {
    width: 180px;
    height: 45px;
    font-size: 1.6rem;
  }
}

@media(max-width:768px){
  .sec02 {
    padding-top: 85px;
  }
  
  .sec02 .lt-bg {
    width: 350px;
  }
  
  .sec02 .rt-bg {
    bottom: 70px;
    width: 250px;
  }
  
  .sec02 .sec-title {
    margin-bottom: 35px;
  }
  
  .sec02 .area {
    margin-bottom: 150px;
  }
  
  .sec02 .swiper-slide {
    flex-direction: column;
    align-items: start;
    gap: 25px 0;
  }
  
  .sec02 .swiper-slide .thumb {
    width: 100%;
    max-width: 100%;
  }
  
  .sec02 .swiper-slide .txt-box {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
  }
  
  .sec02 .swiper-slide .txt-box .category {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
  
  .sec02 .swiper-slide .txt-box .title {
    /* margin-bottom: 16px; */
    font-size: 2.8rem;
  }
  
  .sec02 .swiper-slide .txt-box .text {
    margin-bottom: 25px;
  }
  
  .sec02 .swiper-slide .txt-box .text p {
    font-size: 1.6rem;
  }
  
  .sec02 .swiper-slide .txt-box .more-btn {
    width: 160px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .sec02 .swiper-pagination {
    gap: 0 10px;
    margin-top: 20px;
    padding: 10px 0;
  }
  
  .sec02 .swiper-pagination-bullet {
    width: 33.333%;
    height: auto;
    padding: 10px;
  }
  
  .sec02 .swiper-pagination-bullet span {
    font-size: 1.4rem;
  }
  
  .sec02 .swiper-pagination-bullet .icon {
    width: 50px;
    height: 50px;
    margin: 8px auto 0;
  }
  
  .sec02 .swiper-slide-active .txt-box .title {
    /* margin-bottom: 16px; */
    font-size: 2.8rem;
  }
  
  .sec02 .banner {
    /* height: 250px; */
    aspect-ratio: 1.6 / 1;
  }
  
  .sec02 .banner .bg video {
    width: auto;
    height: 100%;
  }
  
  .sec02 .banner .text-box {
    margin: 35px auto 0;
  }
  
  .sec02 .banner .text-box .title {
    /* margin-bottom: 15px; */
    font-size: 3.6rem;
  }
  
  .sec02 .banner .text-box .txt {
    margin-bottom: 30px;
    font-size: 1.6rem;
  }
  
  .sec02 .banner .text-box .more-btn {
    width: 160px;
    height: 40px;
    font-size: 1.5rem;
  }
}

@media(max-width:500px){
  .sec02 {
    padding-top: 75px;
  }
  
  .sec02 .lt-bg {
    width: 300px;
  }
  
  .sec02 .rt-bg {
    bottom: 50px;
    width: 250px;
  }
  
  .sec02 .sec-title {
    margin-bottom: 30px;
  }
  
  .sec02 .area {
    margin-bottom: 90px;
  }
  
  .sec02 .swiper-slide {
    gap: 20px 0;
  }
  
  .sec02 .swiper-slide .txt-box .category {
    margin-bottom: 8px;
    font-size: 1.5rem;
  }
  
  .sec02 .swiper-slide .txt-box .title {
    margin-bottom: 10px;
    font-size: 2.4rem;
  }
  
  .sec02 .swiper-slide .txt-box .text {
    max-width: 100%;
    margin-bottom: 20px;
  }
  
  .sec02 .swiper-slide .txt-box .text p {
    font-size: 1.5rem;
  }
  
  .sec02 .swiper-slide .txt-box .more-btn {
    width: 140px;
    height: 35px;
    font-size: 1.4rem;
  }
  
  .sec02 .swiper-pagination {
    gap: 0 5px;
    margin-top: 15px;
    padding: 10px 0;
  }
  
  .sec02 .swiper-pagination-bullet {
    width: 33.333%;
    height: auto;
    min-height: 89px;
    padding: 10px;
  }
  
  .sec02 .swiper-pagination-bullet span {
    font-size: 1.3rem;
  }
  
  .sec02 .swiper-pagination-bullet .icon {
    width: 45px;
    height: 45px;
    margin: 5px auto 0;
  }
  
  .sec02 .swiper-slide-active .txt-box .title {
    margin-bottom: 10px;
    font-size: 2.4rem;
  }
  
  
  /* .sec02 .banner {
    height: 200px;
  } */
  
  .sec02 .banner .text-box {
    margin: 30px auto 0;
  }
  
  
  .sec02 .banner .text-box .title {
    margin-bottom: 12px;
    font-size: 3rem;
  }
  
  .sec02 .banner .text-box .txt {
    margin-bottom: 25px;
    font-size: 1.5rem;
  }
  
  .sec02 .banner .text-box .more-btn {
    width: 140px;
    height: 35px;
    font-size: 1.4rem;
  }
}

@media(max-width:410px) {
  .sec02 .swiper-pagination-bullet {
    width: 41%;
  }
}
/* ----- E:Sec02 -----*/

/* ----- S:Sec03 -----*/
.sec03 {
  background-color: #ebf4f9;
}

.sec03 .heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 52px;
}

.sec03 .heading .tab {
  vertical-align: middle;
}

.sec03 .heading .tab span {
  display: inline-block;
  width: 1px;
  height: 19px;
  margin: 0 16px;
  background-color: #191919;
}

.sec03 .heading .tab .button-item {
  display: inline-block;
  line-height: 1;
  font-size: 2rem;
}

.sec03 .area {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0 15px;
}

.sec03 .area .thumb {
  max-width: 567px;
  width: 40.5%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/en/img/main/sec03_thumb.png');
}

.sec03 .area .rt {
  max-width: 714px;
  width: 51%;
}

@media(max-width:1200px) {
  .sec03 .heading {
    margin-bottom: 45px;
  }
  
  .sec03 .heading .tab span {
    height: 19px;
    margin: 0 16px;
  }
  
  .sec03 .heading .tab .button-item {
    font-size: 1.8rem;
  }
  
  .sec03 .area {
    gap: 0 15px;
  }
  
  .sec03 .area .thumb {
    width: 42%;
  }
}

@media(max-width:1024px) {
  .sec03 .heading {
    margin-bottom: 40px;
  }
  
  .sec03 .heading .tab span {
    height: 15px;
    margin: 0 12px;
  }
  
  .sec03 .heading .tab .button-item {
    font-size: 1.6rem;
  }
  
  .sec03 .area {
    gap: 0 15px;
  }
  
}

@media(max-width:768px) {
  .sec03 .heading {
    margin-bottom: 35px;
  }
  
  .sec03 .heading .tab span {
    height: 12px;
    margin: 0 10px;
  }
  
  .sec03 .heading .tab .button-item {
    font-size: 1.5rem;
  }
  
  .sec03 .area {
    flex-direction: column;
    align-items: start;
    gap: 15px 0;
  }
  
    
  .sec03 .area .thumb {
    max-width: 100%;
    width: 100%;
    aspect-ratio: auto;
    height: 200px;
  }

  .sec03 .area .rt {
    max-width: 100%;
    width: 100%;
  }
  
}

@media(max-width:500px) {
  .sec03 .heading {
    margin-bottom: 30px;
  }
  
  .sec03 .heading .tab span {
    height: 10px;
    margin: 0 3px;
  }
  
  .sec03 .heading .tab .button-item {
    font-size: 1.4rem;
  }
  
  .sec03 .area .thumb {
    height: 150px;
  }
}
/* ----- E:Sec03 -----*/

/* ----- S:Sec04 -----*/
.sec04 {
  padding: 140px 0 170px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url('/en/img/main/sec04_bg.png');
}

.sec04 .logo .img {
  width: 79px;
  height: 79px;
  margin: 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/en/img/main/sec04_logo.png');
}

.sec04 .logo p {
  margin-top: 5px;
  font-size: 3.8rem;
  font-weight: 700;
  text-align: center;
  color: #036eb8;
  font-family: "Open Sans";
}

.sec04 .text {
  margin-top: 26px;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.sec04 .more-btn {
  width: 250px;
  height: 60px;
  margin: 48px auto 0;
  font-size: 2rem;
}

.sec04 .more-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #006934;
  border-radius: 30px;
  font-size: inherit;
  color: #fff;
}

@media(max-width:1200px) {
  .sec04 {
    padding: 120px 0 150px;
  }
  
  .sec04 .logo .img {
    width: 70px;
    height: 70px;
  }
  
  .sec04 .logo p {
    margin-top: 5px;
    font-size: 3.2rem;
  }
  
  .sec04 .text {
    margin-top: 20px;
    font-size: 4.4rem;
  }
  
  .sec04 .more-btn {
    width: 230px;
    height: 50px;
    margin: 40px auto 0;
    font-size: 1.8rem;
  }
}

@media(max-width:1024px) {
  .sec04 {
    padding: 100px 0 130px;
  }
  
  .sec04 .logo .img {
    width: 60px;
    height: 60px;
  }
  
  .sec04 .logo p {
    margin-top: 5px;
    font-size: 2.8rem;
  }
  
  .sec04 .text {
    margin-top: 15px;
    font-size: 3.8rem;
  }
  
  .sec04 .more-btn {
    width: 210px;
    height: 45px;
    margin: 35px auto 0;
    font-size: 1.6rem;
  }
}

@media(max-width:768px) {
  .sec04 {
    padding: 90px 0 110px;
  }
  
  .sec04 .logo .img {
    width: 50px;
    height: 50px;
  }
  
  .sec04 .logo p {
    margin-top: 5px;
    font-size: 2.4rem;
  }
  
  .sec04 .text {
    margin-top: 12px;
    font-size: 3.4rem;
  }
  
  .sec04 .more-btn {
    width: 190px;
    height: 40px;
    margin: 30px auto 0;
    font-size: 1.5rem;
  }
}

@media(max-width:500px) {
  .sec04 {
    padding: 80px 0 90px;
  }
  
  .sec04 .logo .img {
    width: 45px;
    height: 45px;
  }
  
  .sec04 .logo p {
    font-size: 2.2rem;
  }
  
  .sec04 .text {
    margin-top: 10px;
    font-size: 2.6rem;
  }
  
  .sec04 .more-btn {
    width: 170px;
    height: 35px;
    margin: 25px auto 0;
    font-size: 1.4rem;
  }
}
/* ----- E:Sec04 -----*/

/* Popup */
#popup {
  position: relative;
}

.popup-layer {
  z-index: 10000;
  position: absolute;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,.25);
  animation: popup-fade .65s ease-in-out .35s forwards;
  opacity: 0;
  max-width:800px;
}

@keyframes popup-fade {
  0% { opacity: 0;
    -webkit-transform: translateY(25px);
    -ms-transform: translateY(25px);
    transform: translateY(25px); }
  100% { opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
}
.popup-layer__body {
  background: #fff;
}

.popup-layer__body img {
  display: block;
  margin: 0 auto;
  border: none;
  max-width: 100%;
}

.popup-layer__foot {
  background: #424242;
}

.popup-layer__foot ul {
  display:flex;
  flex-wrap: wrap;
}

.popup-layer__foot li {
  width:50%;
  padding:10px;
}

.popup-layer__foot li:first-child {
  padding-right:0;
}

.popup-layer__foot li:last-child {
  text-align: right;
}

.popup-layer__foot span {
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
  transition:all 0.3s ease;
}

.popup-layer__foot label:hover span { opacity: .7; }

/* .popup-layer-foot { background: #424242; }
.popup-layer-foot span { font-size: 15px; color: #fff; }
.popup-layer-foot label:hover span { opacity: .7; }
.popup-layer-foot li:first-child { padding-right: 0; }
.popup-layer-foot li:last-child { text-align: right; } */


@media (max-width: 1024px){
  /* .popup-layer { z-index: 999; } */
  .popup-layer { top: 95px !important; left: 0 !important; margin: 0 5px; }
}
@media (max-width: 768px){

  .popup-layer {
    width:calc(100% - 10px);
  }

  .popup-layer img {
    max-width: none;
    width:100%;
    height: auto !important;
  }
  .popup-layer-foot span { font-size: 14px; }

}
@media (max-width: 375px){
  .popup-layer-foot li { width: 100%; }
  .popup-layer-foot li:last-child { text-align: left; }
}