@charset "utf-8";
/* 기본설정 */
@import "default.css";

.aboutslide{
    position: relative;
}
.aboutslide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.about-sec01 {
    padding: 200px 10vw 100px;
}

/* 전체 레이아웃 */
.about-wrap {
  display: flex;
  gap: 8vw;
}

/* LEFT */
.about-left {
  width: 60%;
}

.about-img {
  margin-bottom: 150px;
  width: 43.23vw;
  max-width: 830px;
}

.about-img img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

/* RIGHT */
.about-right {
  width: 40%;
  position: relative;
}

/* sticky 핵심 */
.about-sticky {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* height: 35.93vw; */
}

/* 로고 */
.about-logo {
  display: block;
  width: 180px;
  margin-top: 4vw;
  margin-bottom: 120px;
  
}
/* 스크롤 감지 후 실행 */
/* .about-logo.on {
  animation: logoRotate 2s ease forwards;
}
@keyframes logoRotate {
    0% {
        transform: rotate(-20deg);
    }
    50% {
        transform: rotate(30deg);
    }
    100% {
        transform: rotate(0deg);
    }
} */

/* @keyframes logoRotate {
    0%   { transform: rotate(-20deg); }
    45%  { transform: rotate(35deg); }
    85%  { transform: rotate(-10deg); }
    100% { transform: rotate(0deg); }
} */



/* 텍스트 */
.about-title {
  font-size: 25px;
  color: #BE9A71;
  margin-bottom: 20px;
}

.about-text {
  line-height: 1.7;
  color: #666;
}




section.aboutmap {
    padding: 60px 0 100px;
    background-color: #F6F5F4;
}



/* 반응형 */
@media (max-width: 1200px) {
    
    
    .mapbox{
        width: 85%;
        margin: 0 auto;
        max-height: 750px;
        margin-bottom: 5%;
    }
    .mapbox img{
        width: 100%;
        max-height: 750px;
    }
}
@media(max-width:768px){
    section.about-sec01 {
        padding: 70px 10vw 0px;
    }
    .about-wrap {
        flex-direction: column-reverse;
    }
    .about-left, .about-right {
        width: 100%;
    }
    .about-img {
        width: 80vw;
        margin-bottom: 50px;
    }
    .about-sticky { 
       position: static;
    }
    .about-logo {
        display: block;
        width: 93px;
        margin-top: 0px;
        margin-bottom: 30px;
    }
    .about-img.last {
        margin-bottom: 130px;
    }
}

@media (max-width: 500px) {
    section.about-sec01 {
        padding: 70px 5vw 0px;
    }
    .about-img {
        width: 90vw;
    }
}
/* about_sec01 끝 */



/*메인 이외 탑슬라이드 */
/* 초기 상태 */
.topslide .swiper-slide:first-child .slide-caption h2,
.topslide .swiper-slide:first-child .slide-caption p,
.topslide .swiper-slide:first-child .slide-caption .view-more-button {
  opacity: 0;
  transform: translateY(45px);
}

/* 애니메이션 클래스 적용 시 */
.topslide .swiper-slide:first-child .slide-caption.animate h2 {
  transition: all 1s ease;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.topslide .swiper-slide:first-child .slide-caption.animate p {
  transition: all 1s ease;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
