/* font */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

/* reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat";
  font-style: normal;
  word-break: keep-all;
}

ul,
li {
  list-style: none;
}

a {
  color: #333;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

section {
  overflow: hidden;
}

/* main */
body.main::-webkit-scrollbar {
  display: none;
}

body.main .circle {
  border-radius: 100px;
  will-change: transform;
  position: absolute;
  z-index: 99999;
  pointer-events: none;
}

body.main .circle--1 {
  height: 40px;
  width: 40px;
  border: solid white 1px;
  mix-blend-mode: difference;
  z-index: 99999;
}

body.main .circle--2 {
  background: black;
  height: 5px;
  width: 5px;
  z-index: 2;
  background: #ffffff;
  mix-blend-mode: difference;
  z-index: 99999;
}

body.main section {
  overflow: hidden;
}

/* header start */
body.main section .header {
  position: fixed;
  z-index: 99999;
  width: 100%;
  transition: all 0.5s;
}

body.main section .header .wrap {
  /* max-width: 1680px; */
  width: 80%;
  height: 120px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.main section .header .wrap .left .menu-btn {
  position: relative;
  cursor: pointer;
  width: 36px;
  height: 24px;
}

body.main section .header .wrap .left .menu-btn span {
  position: absolute;
  display: block;
  width: 36px;
  height: 3px;
  background: #ffffff;
  border-radius: 36px;
  transition: all 0.5s;
}

body.main section .header .wrap .left .menu-btn span:nth-child(1) {
  top: 0;
}

body.main section .header .wrap .left .menu-btn span:nth-child(2) {
  top: 10px;
}

body.main section .header .wrap .left .menu-btn span:nth-child(3) {
  top: 20px;
}

body.main section .header .wrap .left .menu-btn.open span:nth-child(1) {
  animation: open01-01 0.5s forwards;
}

@keyframes open01-01 {
  0% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(10px) rotate(0);
  }

  100% {
    transform: translateY(10px) rotate(45deg);
  }
}

body.main section .header .wrap .left .menu-btn.open span:nth-child(2) {
  display: none;
}

body.main section .header .wrap .left .menu-btn.open span:nth-child(3) {
  animation: open01-02 0.5s forwards;
}

@keyframes open01-02 {
  0% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-10px) rotate(0);
  }

  100% {
    transform: translateY(-10px) rotate(-45deg);
  }
}

body.main section .header .wrap .right {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s;
}

body.main section .header .wrap .right.hidden {
  visibility: hidden;
  opacity: 0;
}

body.main section .header .wrap .right ul {
  display: flex;
  align-items: center;
  gap: 80px;
}

body.main section .header .wrap .right ul li a {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  text-shadow: 2px 2px rgba(0,0,0,0.3);
}

body.main section .header .wrap .right ul li a::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 1px;
  background: #ffffff;
  bottom: -4px;
  left: 0;
  transition: all 0.3s;
}

body.main section .header .wrap .right ul li a:hover::after {
  width: 100%;
}

body.main section .header .wrap .right ul li:first-child a::after {
  width: 100%;
}

body.main section .left-menu-open {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  max-width: 500px;
  width: 100%;
  height: 100vh;
  border-right: 1px solid #ffffff;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  display: flex;
  align-items: center;
  padding-left: 120px;
  transform: translateX(-100%);
  transition: all 0.5s;
}

body.main section .left-menu-open.active {
  transform: translateX(0px);
}

body.main section .left-menu-open ul {
  display: flex;
  flex-direction: column;
  gap: 3vw;
}

body.main section .left-menu-open ul li a {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 35px;
  color: #ffffff;
}

body.main section .left-menu-open ul li a svg {
  transition: all 0.3s;
  opacity: 0;
  height: 20px;
}

body.main section .left-menu-open ul li a:hover svg {
  margin-left: 40px;
  opacity: 1;
}

body.main .left-menu-open .lang {
  font-weight: 500;
  font-size: 16px;
  position: absolute;
  top: 144px;
  right: 15px;
  width: 178px;
  height: 32px;
  border: 2px solid #ffffff;
  border-radius: 16px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

body.main .left-menu-open .lang a {
  color: #ffffff;
  transition: 0.3s;
  width: 100%;
  height: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
}

body.main .left-menu-open .lang a.on {
  font-weight: 600;
  color: #000000;
}

body.main section .header.scrollOn {
  background: #fff;
  border-bottom: 1px solid #3f3f3f;
}

body.main section .header.hidden {
  background: transparent;
  border-bottom: 0px;
}

body.main section .header.scrollOn .wrap .left .menu-btn span {
  background: #3f3f3f;
}

body.main section .header.scrollOn .wrap .right ul li a {
  color: #3f3f3f;
  text-shadow: 0px 0px rgba(0, 0, 0, 0);
}

body.main section .header.scrollOn .wrap .right ul li a:after {
  background: #3f3f3f;
}

body.main section .left-menu-open.scrollOn {
  border-right: #3f3f3f;
  background: rgba(255, 255, 255, 0.5);
}

body.main section .left-menu-open.scrollOn ul li a {
  color: #3f3f3f;
}

body.main section .left-menu-open.scrollOn ul li a svg line {
  stroke: #3f3f3f;
}

body.main section .left-menu-open.scrollOn ul li a svg path {
  stroke: #3f3f3f;
}

body.main .left-menu-open.scrollOn .lang {
  border-color: #686868;
}

body.main .left-menu-open.scrollOn .lang span {
  color: #3f3f3f;
}

body.main .left-menu-open.scrollOn .lang a {
  color: #3f3f3f;
}

body.main .left-menu-open.scrollOn .lang a.on {
  font-weight: 800;
  color: #000000;
}

/* main_banner */
.main_banner {
  height: 100vh;
  z-index: 9;
}
.main_banner .swiper-wrapper{
  z-index: 9;
}
.main_banner .swiper-wrapper .slide_1 {
  background: url(/img/main/main_1_01.jpg) no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.main_banner .swiper-wrapper .slide_2 {
  background: url(/img/main/main_1_02.jpg) no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.main_banner .swiper-wrapper .slide_3 {
  background: url(/img/main/main_1_03.jpg) no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.main_banner .swiper-wrapper .swiper-slide {
  /* display: flex;
  justify-content: center;
  align-items: center; */
}
.main_banner .swiper-wrapper .swiper-slide .txt_box {
  width: 83.3%;
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.main_banner .swiper-wrapper .swiper-slide .txt_box span {
  font-weight: 700;
  font-size: 102px;
  line-height: 1.3em;
  color: #fff;
  display: inline-block;
  letter-spacing: -.04em;
  position: relative;
  top: 50px;
  opacity: 0;
  transition: 1s ease;
}
.main_banner .swiper-wrapper .swiper-slide .txt_box span:nth-of-type(2) {
  transition-delay: .2s;
}
.main_banner .swiper-wrapper .swiper-slide.swiper-slide-active .txt_box span {
  top: 0;
  opacity: 1;
}
.main_banner .swiper-button-next{
  z-index: 99;
  color: #fff;
  right: 3%;
}
.main_banner .swiper-button-prev{
  left: 3%;
  z-index: 99;
  color: #fff;
}
.main_banner .scroll-wrap {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  margin: auto;
  width: 30px;
  height: 50px;
  border-radius: 15px;
  border: 3px solid #ffffff;
  z-index: 9;
}

.main_banner .scroll-wrap .scroll-icon span {
  position: relative;
  top: 5px;
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 16px;
  background: #ffffff;
  margin: auto;
  animation: scroll 1.2s infinite ease-in-out;
}

@keyframes scroll {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(18px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* header end */

body.main section .bg {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);

}

/* 
@media (min-height: 1080px) {
  body.main section video {
    width: 200%;
    left: -47%;
    position: relative;
    z-index: -1;
  }
} */

body.main section video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

body.main section .main {
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  color: transparent;
  visibility: hidden;
  opacity: 0;
  transition: all 0.8s;
}

body.main section .main.active {
  visibility: visible;
  opacity: 1;
}

body.main section .main.main02 {
  padding: 170px 0px 160px;
  background: url("../img/main/main_swiper_bg.png") center/cover no-repeat
    #f5f3f0;
}

body.main section .main.main02 .content-wrap {
  width: 100%;
}

body.main section .main.main02 .content-wrap .tab-content {
  display: inline-block;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 40px;
  margin-bottom: 20px;
}

body.main section .main.main02 .content-wrap .tab-content a {
  display: inline-block;
  font-family: "SUIT";
  font-style: normal;
  font-weight: 500;
  font-size: 82px;
  line-height: 112px;
  color: #ffffff;
  opacity: 0.5;
  transition: all 0.3s;
}

body.main section .main.main02 .content-wrap .tab-content a:first-child {
  margin-right: 80px;
}

body.main section .main.main02 .content-wrap .tab-content a.active {
  opacity: 1;
}

body.main section .main.main02 .content-wrap .tab-content a:hover {
  opacity: 1;
}

body.main section .main.main02 .content-wrap .slide-wrap {
  display: none;
  position: relative;
}

body.main section .main.main02 .content-wrap .slide-wrap.active {
  display: block;
}

body.main
  section
  .main.main02
  .content-wrap
  .slide-wrap
  .mySwiper
  .swiper-wrapper
  .swiper-slide {
  display: flex;
  align-items: center;
  width: 720px;
  height: 400px;
  background: #ffffff;
  border: 2px solid #151515;
  overflow: hidden;
}

body.main
  section
  .main.main02
  .content-wrap
  .slide-wrap
  .mySwiper
  .swiper-wrapper
  .swiper-slide
  .left {
  width: 50%;
  height: 50%;
  background: #f3f1f2;
  display: flex;
  justify-content: center;
  align-items: center;
}

body.main
  section
  .main.main02
  .content-wrap
  .slide-wrap
  .mySwiper
  .swiper-wrapper
  .swiper-slide
  .left {
  height: 100%;
}

body.main
  section
  .main.main02
  .content-wrap
  .slide-wrap
  .mySwiper
  .swiper-wrapper
  .swiper-slide
  .left
  img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body.main
  section
  .main.main02
  .content-wrap
  .slide-wrap
  .mySwiper
  .swiper-wrapper
  .swiper-slide
  .right {
  width: 50%;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

body.main
  section
  .main.main02
  .content-wrap
  .slide-wrap
  .mySwiper
  .swiper-wrapper
  .swiper-slide
  .right
  .text_box
  h3 {
  font-family: "SUIT";
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 34px;
  color: #151515;
  margin-bottom: 10px;
}

body.main
  section
  .main.main02
  .content-wrap
  .slide-wrap
  .mySwiper
  .swiper-wrapper
  .swiper-slide
  .right
  .text_box
  p {
  line-height: 26px;
  color: #454545;
}

body.main
  section
  .main.main02
  .content-wrap
  .slide-wrap
  .mySwiper
  .swiper-wrapper
  .swiper-slide
  .right
  a {
  font-family: "SUIT";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  color: #ffffff;
  display: inline-block;
  width: fit-content;
  padding: 12px 24px;
  background: #81040c;
}

body.main section .main.main02 .content-wrap .slide-wrap .button-wrap {
  position: absolute;
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 720px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

body.main
  section
  .main.main02
  .content-wrap
  .slide-wrap
  .button-wrap
  .button-next,
body.main
  section
  .main.main02
  .content-wrap
  .slide-wrap
  .button-wrap
  .button-prev {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  width: auto;
  height: auto;
  margin-top: unset;
  z-index: 9999;
  cursor: pointer;
  display: block;
  color: unset;
}

body.main
  section
  .main.main02
  .content-wrap
  .slide-wrap
  .button-wrap
  .button-next {
  transform: translate(50%);
}

body.main
  section
  .main.main02
  .content-wrap
  .slide-wrap
  .button-wrap
  .button-prev {
  transform: translate(-50%);
}

body.main section .main.main03 {
  background: #fdfcfa;
  visibility: visible;
  opacity: 1;
}
body.main section .main.main03 .con_box {
  display: flex;
  align-items: flex-end;
  gap: 60px;
  max-width: 1380px;
  padding: 182px 0;
  margin: 0 auto;
}
body.main section .main.main03 .con_box .left {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 838px;
}
body.main section .main.main03 .con_box .left .left_inbox {
  display: flex;
  align-items: center;
  gap: 60px;
}
body.main section .main.main03 .con_box .left .left_inbox h2 {
  font-size: 62px;
  font-weight: 700;
  line-height: 80px;
  color: #81040c;
}
body.main section .main.main03 .con_box .left .left_inbox .line {
  display: block;
  border: 1px solid rgba(129, 4, 12, 0.15);
  width: 582px;
}
body.main section .main.main03 .con_box .left .left_inbox_2 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
body.main section .main.main03 .con_box .left .left_inbox_2 p b {
  font-family: "SUIT";
  font-size: 24px;
  color: #C55A11;
}
body.main section .main.main03 .con_box .left .left_inbox_2 p {
  font-family: "SUIT";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #686868;
}
body.main section .main.main03 .con_box .left .left_inbox_2 p span {
  font-family: "SUIT";
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
  color: #151515;
}
body.main section .main.main03 .con_box .right {
  max-width: 482px;
  max-height: 618px;
}

body.main section .main.main04{
  width: 100%;
  visibility: visible;
  opacity: 1;
}
body.main section .main.main04 .sec_box h2{
  font-size: 62px;
  font-weight: 700;
  line-height: 80px;
  padding: 16px 0 60px 0;
  color: #81040C;
}
body.main section .main.main04 .sec_box{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 160px 0;
}
body.main section .main.main04 .sec_box .con_box{
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
body.main section .main.main04 .sec_box .con_box .con {
  width: 30%;
  max-width: 440px;
}
body.main section .main.main04 .sec_box .con_box .con a{
  display: flex;
  flex-direction: column;
  gap: 32px;
}
body.main section .main.main04 .sec_box .con_box .con .img{
  width: 100%;
}
body.main section .main.main04 .sec_box .con_box .con .img img {
  width: 100%;
}
body.main section .main.main04 .sec_box .con_box .con .img.bi{
}
body.main section .main.main04 .sec_box .con_box .con .txt{
  display: flex;
  flex-direction: column;
  gap: 24px;
}
body.main section .main.main04 .sec_box .con_box .con .txt .top{
  display: flex;
  align-items: center;
  gap: 12px;
}
body.main section .main.main04 .sec_box .con_box .con .txt .top span{
  width: 28px;
  height: 0;
  border: 1px solid #81040C;
}
body.main section .main.main04 .sec_box .con_box .con .txt .top h4{
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0;
  color: #171D21;
}
body.main section .main.main04 .sec_box .con_box .con .txt .top p{
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #959595;
  display: flex;
  align-items: center;
  gap: 12px;
}
body.main section .main.main04 .sec_box .con_box .con .txt .top p::before{
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #959595;
  display: inline-block;
}
body.main section .main.main04 .sec_box .con_box .con .bottom{
  margin-left: 40px;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  color: #171D21;
  font-family: 'Pretendard';
  display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.mySwiper {
  max-width: 720px;
  overflow: visible;
}
.swiper-pagination {
  position: relative;
  margin-top: 35px;
}

.swiper-pagination-bullet {
  width: 30px;
  height: 6px;
  border-radius: 3px;
  background: rgba(21, 21, 21, 0.1);
  opacity: initial;
  transition: 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #81040c;
}

body.main footer {
  position: relative;
  width: 100%;
  height: unset;
  background: #151515;
  z-index: 9999;
}

body.main footer.active {
  display: block;
}

body.main footer .footer-wrap {
  /* max-width: 1600px; */
  width: 80%;
  margin: auto;
  padding: 50px 10px;
}

body.main footer .footer-wrap .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.main footer .footer-wrap .top .left h3 {
  font-weight: 700;
  font-size: 32px;
  line-height: 32px;
  color: #ffffff;
}
body.main footer .footer-wrap .top .left a p {
  color: #fff;
}
body.main footer .footer-wrap .top .right ul {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
}

body.main footer .footer-wrap .top .right ul li a {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #f7f7f7;
}
body.main footer .footer-wrap .top .right ul li a span {
  color: #a4a4a4;
}
body.main footer .footer-wrap .top .right ul li a span:after {
  content: "|";
  display: inline-block;
  color: #f7f7f7;
  margin-left: 16px;
  margin-right: 16px;
}
body.main footer .footer-wrap .top .right ul li a:last-of-type span:after {
  display: none;
}

/* body.main footer .footer-wrap .top .right ul li a::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 1px;
  background: #ffffff;
  bottom: -4px;
  left: 0;
  transition: all 0.3s;
}

body.main footer .footer-wrap .top .right ul li a:hover::after {
  width: 100%;
} */

body.main footer .footer-wrap .bottom p {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #eeeeee;
  text-align: center;
}

body>section>div.header>div>div.left {
  display: block;
}

@media (max-width: 900px) {
  body.main
  section
  .main.main02
  .content-wrap
  .slide-wrap.tab01.active
  .button-wrap {
  width: 100px;
  margin-left: 0;
  margin-top: 30px;
}

.main
  .main.main02
  .content-wrap
  .slide-wrap.slide-wrap.tab01.active
  .button-wrap {
  display: none !important;
}

  .site {
    display: none;
    opacity: 0;
  }

  body.main section {
    overflow: unset;
  }

  body.main section .header .wrap {
    max-width: unset;
    width: 80%;
    height: 80px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  body.main section .header .wrap .right {
    display: none;
  }

  body.main section .header .wrap .left {
    display: block !important;
    z-index: 99999 !important;
  }

  body.main section .main.main02 .content-wrap .slide-wrap .mySwiper .swiper-wrapper .swiper-slide .left {
    height: 50%;
    width: 100%;
  }

  body.main section .left-menu-open {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    max-width: unset;
    width: 100%;
    height: 100vh;
    border-right: 1px solid #ffffff;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0px 4px 20px black;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    display: flex;
    align-items: center;
    padding-left: 10%;
    transform: translateX(-100%);
    transition: all 0.5s;
  }

  body.main section .left-menu-open ul {
    gap: 30px;
  }

  body.main section .left-menu-open ul li a {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 50px;
    line-height: 55px;
    color: #ffffff;
  }

  body.main section .left-menu-open ul li a svg {
    display: none;
  }

  body.main section .bg {
    z-index: 1;
  }

  body.main section video {
    position: fixed;
  }

  body.main section .main {
    width: 100%;
    height: unset;
    position: relative;
    z-index: 999;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: flex;
    align-items: center;
    color: transparent;
    visibility: visible;
    opacity: 1;
    transition: all 0.8s;
  }

  .main_banner .swiper-wrapper .swiper-slide .txt_box {
    width: 66%;
    top: 65%;
  }
  .main_banner .swiper-wrapper .swiper-slide .txt_box span {
    font-size: 40px;
  }
  .main_banner .scroll-wrap {
    display: none;
  }


  body.main section .main.main02 .content-wrap {
    width: 100%;
    margin: auto;
  }

  body.main section .main.main02 .content-wrap .tab-content {
    display: flex;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  body.main section .main.main02 .content-wrap .tab-content a {
    font-size: 30px;
    line-height: 40px;
  }

  body.main section .main.main02 .content-wrap .tab-content a:first-child {
    margin-right: 24px;
  }

  body.main section .main.main02 .content-wrap .slide-wrap .button-wrap {
    width: 100px;
    margin-left: 0;
    margin-top: 30px;
  }

  body.main section .main.main02 {
    padding: 0;
    padding: 100px 0;
    display: block;
  }

  body.main section .main.main02 .content-wrap .slide-wrap .mySwiper .swiper-wrapper .swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 450px;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid black;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s;
  }

  body.main section .main.main02 .content-wrap .slide-wrap .mySwiper .swiper-wrapper .swiper-slide div.right {
    width: 100%;
    padding: 20px;
    text-align: center;
    align-items: center;
  }

  body.main section .main.main02 .content-wrap .slide-wrap .mySwiper .swiper-wrapper .swiper-slide:hover {
    transform: unset;
  }

  body.main section .main.main02 .content-wrap .slide-wrap .mySwiper .swiper-wrapper .swiper-slide .img-box {
    margin-bottom: 20px;
  }

  body.main section .main.main02 .content-wrap .slide-wrap .mySwiper .swiper-wrapper .swiper-slide .text-box h3 {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 8px;
  }

  body.main section .main.main02 .content-wrap .slide-wrap .mySwiper .swiper-wrapper .swiper-slide .text-box a {
    font-size: 20px;
    line-height: 30px;
  }

  body.main section .main.main03 .con_box {
    width: 90%;
    padding: 100px 0;
  }
  body.main section .main.main03 .con_box .left {
    width: 100%;
  }
  body.main section .main.main03 .con_box .right {
    display: none;
  }
  
body.main section .main.main03 .con_box .left .left_inbox_2 p br { 
  display: none;
}

  body.main section .main.main04 .sec_box {
    padding: 80px 0;
  }
  body.main section .main.main04 .sec_box .con_box {
    width: 90%;
    gap: unset;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 4%;
  }
  body.main section .main.main04 .sec_box .con_box .con {
    width: 48%;
  }
  body.main section .main.main04 .sec_box .con_box .con a {
    gap: 12px;
  }
  body.main section .main.main04 .sec_box .con_box .con .txt {
    gap: 8px;
  }
  body.main section .main.main04 .sec_box .con_box .con .txt .top {
    flex-wrap: wrap;
    row-gap: 0;
  }
  body.main section .main.main04 .sec_box .con_box .con .txt .top p {
    width: 100%;
    justify-content: flex-end;
  }
  body.main section .main.main04 .sec_box .con_box .con .bottom {
    width: 100%;
    margin: 0 auto;
  }

  body.main #footer {
    display: block;
    position: relative;
    z-index: 9999;
    width: 100%;
    background: #151515;
  }

  body.main #footer .footer-wrap {
    max-width: unset;
    width: 90%;
    margin: auto;
    padding: 20px 0;
  }

  body.main #footer .footer-wrap .top {
    display: flex;
    align-items: flex-start;
    justify-content: unset;
    margin-bottom: 24px;
    flex-direction: column;
    gap: 24px;
  }

  body.main #footer .footer-wrap .top .right ul {
    display: flex;
    align-items: center;
    gap: 12px 20px;
    flex-wrap: wrap;
  }

  body.main #footer .footer-wrap .bottom p {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: #eeeeee;
    text-align: center;
  }
}