section, section *{ 
    box-sizing:border-box; 
}
*{ 
    box-sizing:border-box; 
}
section{ 
    overflow:hidden; 
}
.mc-con{ 
    width:100%; 
    margin:0 auto; 
    padding: 0 15px;
    position: relative;
    z-index: 3;
    max-width: 1350px;
}

.main_sc{
    width: 100%; 
    position: relative; 
    background-repeat: no-repeat; 
    background-position: center; 
    background-size: cover;
}

.mb-0{
    margin-bottom: 0 !important;
}

.sect-tit{
    color: #E6EAEE;
    width: 100%;
    text-align: center;
}
.sect-tit > h3{
    font-size: 45px;
    font-weight: 800;
    margin-bottom: 1rem;
}
.sect-tit > p{
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 30px;
    padding-bottom: 25px;
    position: relative;
}
.sect-tit > p::after{
    content: "";
    width: 50px;
    height: 1px;
    background-color: #E6EAEE;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.morebtn{
    display: inline-block;
    color: #E6EAEE;
    font-size: 16px;
    font-weight: 600;
    padding: 1rem;
    min-width: 250px;
    border-radius: 16px;
    transition: .3s;
}
.morebtn.find{
    border: 1px solid rgba(62, 58, 57, 0.08);
    background: linear-gradient(0deg, #3E3A39 0%, #3E3A39 100%), linear-gradient(90deg, rgba(253, 210, 43, 0.03) 0%, rgba(253, 210, 43, 0.01) 50%, rgba(253, 210, 43, 0.02) 100%);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.15), 0 2px 8px 0 rgba(253, 210, 43, 0.05), 0 1px 0 1px rgba(253, 210, 43, 0.05) inset, 0 -1px 0 1px rgba(253, 210, 43, 0.02) inset;
    backdrop-filter: blur(3px);
}
.morebtn:hover{
    border-radius: 0;
}

/* 메인 섹션 */
#sc01{
    height: 100vh;
    position: relative;
    overflow: hidden;
}
#sc01::after{
    content: ""; 
    width: 100%; 
    height: 100%; 
    position: absolute; 
    top: 0; 
    left: 0; 
    z-index: 2;
    pointer-events: none;
}
#player{
    z-index: -1;
}
.sc01-vimeo{
    width: 100%;
    padding-top: 56.25%;
    position: absolute;
    z-index: 1;
}
.sc01-vimeo iframe {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sc01-vimeo iframe {
    position: absolute; 
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%; 
}

.main-caption{
    width: 100%;
    color: #E6EAEE;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 3;
    padding: 0 15px;
    text-align: center;
}
.main-caption > h2{
    font-size: 75px;
    font-weight: 800;
    margin-bottom: 20px;
}
.main-caption > p{
    font-size: 25px;
    font-weight: 300;
    line-height: 1.6;
}
.count-wrap{
    width: 100%;
    max-width: 830px;
    display: flex;
    justify-content: space-between;
    margin: 80px auto 0;
}
.count-box{
    width: 32%;
    text-align: center;
}
.count-box > h5{
    color: #E6EAEE;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 1rem;
}
.count-box > h5 > span{
    font-size: 40px;
    display: inline-block;
    margin-right: 2px;
}
.count-box > p{
    color: #E6EAEE;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    text-align: center;
    padding: 15px;
    border-radius: 16px;
    border: 1px solid rgba(253, 210, 43, 0.08);
    background: linear-gradient(0deg, rgba(253, 210, 43, 0.60) 0%, rgba(253, 210, 43, 0.60) 100%), linear-gradient(90deg, rgba(253, 210, 43, 0.03) 0%, rgba(253, 210, 43, 0.01) 50%, rgba(253, 210, 43, 0.02) 100%);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.15), 0 2px 8px 0 rgba(253, 210, 43, 0.05), 0 1px 0 1px rgba(253, 210, 43, 0.05) inset, 0 -1px 0 1px rgba(253, 210, 43, 0.02) inset;
    backdrop-filter: blur(3px);
}

/* mouse-s */
.mouse-s{
    width: 100%; 
    text-align: center; 
    z-index: 8; 
    color: #E6EAEE; 
    position: absolute; 
    left: 0; 
    bottom: 3rem;
}
.mouse{
    position: relative; 
    border: 2px solid rgba(255, 255, 255, 0.8); 
    width: 20px; 
    height: 32px; 
    border-radius: 30px; 
    margin: 0 auto;
}
.mouse .wheel{
    position: absolute; 
    left: 50%; 
    margin-left: -1px; 
    width: 2px; 
    height: 5px; 
    background-color: rgba(255, 255, 255, 0.9); 
    border-radius: 3px; 
    animation: wheel 1.5s ease infinite;
}
.mouse-s > p{
    font-size: 16px;
    font-weight: 300;
    margin-top: 10px;
}

@keyframes wheel{
	0%{
        opacity: 0; 
        top: 2px;
    }
	100%{
        opacity: 1; 
        top: 10px;
    }
}

/* sc02 */
.sc02-swiper{
    width: 100%;
}
.swiper-button-next:after, .swiper-button-prev:after{
    display: none;
}
.swiper-button-next, .swiper-button-prev{
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    margin-top: 0;
    transform: translateY(-50%);
}
.swiper-button-next > span, .swiper-button-prev > span{
    font-size: 30px;
    color: #fff;
}
.swiper-button-next:hover, .swiper-button-prev:hover{
    background-color: rgba(0, 0, 0, 0.2);
}
.swiper-button-next{
    right: 0;
}
.swiper-button-prev{
    left: 0;
}

/* sc03 */
#sc03{
    padding: 100px 0;
    background-color: #E6EAEE;
}
#sc03 .sect-tit{
    color: #3E3A39;
}
#sc03 .sect-tit > p::after{
    background-color: #3E3A39;
}
.sc03-wrap{
    width: 100%;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 60px;
}
.sc03-box{
    width: calc((100% - 60px) / 4);
}
.sc03-img{
    width: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
}
.sc03-img img{
    width: 100%;
    display: block;
    transition: .5s;
}
.sc03-img > h5{
    width: 100%;
    padding: 1rem;
    font-size: 16px;
    text-align: center;
    font-weight: 600;
    color: #E6EAEE;
    border: 1px solid rgba(62, 58, 57, 0.08);
    background-color: rgba(62, 58, 57, 0.8);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.15), 0 2px 8px 0 rgba(253, 210, 43, 0.05), 0 1px 0 1px rgba(253, 210, 43, 0.05) inset, 0 -1px 0 1px rgba(253, 210, 43, 0.02) inset;
    backdrop-filter: blur(3px);
    position: absolute;
    left: 0;
    bottom: 0;
}
.sc03-img:hover img{
    transform: scale(1.1);
}

/* sc04 */
#sc04{
    width: 100%;
    padding: 100px 0;
    position: relative;
}
#sc04::after{
    content: ""; 
    width: 100%; 
    height: 100%; 
    position: absolute; 
    top: 0; 
    left: 0; 
    z-index: 2;
    pointer-events: none;
}
#sc04 .sect-tit{
    padding: 150px 0;
    z-index: 3;
}

/* sc05 */
.sc05-wrap{
    width: 100%;
    display: flex;
}
.sc05-lt{
    width: 40%;
}
.sc05-rt{
    width: 60%;
}
.sc05-img{
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 800px;
    position: relative;
    background-color: #797979;
    overflow: hidden;
}
.sc05-img::before{
    content: "";
    width: 100%;
    z-index: 1;
    height: 15%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, #000000), linear-gradient(transparent, #000000);
    transition: .3s;
}
.sc05-img.half::before{
    height: 30%;
}
.sc05-img.half{
    height: 400px;
}
.sc05-caption{
    width: 100%;
    padding: 25px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
}
.sc05-caption > p{
    font-size: 16px;
    color: #fdd22b;
    font-weight: 300;
    margin-bottom: 10px;
}
.sc05-caption > h5{
    font-size: 35px;
    color: #E6EAEE;
    font-weight: 600;
}

/* sc06 */
#sc06{
    width: 100%;
    padding: 100px 0;
    position: relative;
}
#sc06::after{
    content: ""; 
    width: 100%; 
    height: 100%; 
    position: absolute; 
    top: 0; 
    left: 0; 
    z-index: 2;
    pointer-events: none;
}
#sc06 .sect-tit{
    z-index: 3;
    margin-bottom: 50px;
}
.kso_rwdList{
    flex-wrap: wrap;
    gap: 30px;
}
.kso_rwdList > li{
    width: calc((100% - 90px) / 4);
}
.kso_rwdContainer a.title{
    font-size: 17px;
    color: #3E3A39 !important;
    font-weight: 500;
    margin-bottom: 20px;
    transition: .2s;
}
.kso_rwdList .summary{
    margin-bottom: 20px;
}

@media(min-width:1200px){
    .d-lg-none{ 
        display:none; 
    }
    .d-lg-block{ 
        display:block; 
    }

	.ani.up.delay{
        transition: 1s opacity 0.2s, 1s transform 0.2s;
    }
    .ani.up.delay2{
        transition: 1s opacity 0.5s, 1s transform 0.5s;
    }
    .ani.up.delay3{
        transition: 1s opacity 0.8s, 1s transform 0.8s;
    }

    .sc02-img{
        display: flex;
    }
    .sc02-img img{
        width: 100%;
    }
    .sc02-img-mo{
        display: none;
    }
    
}
@media(max-width:1399px){
    .mc-con{
        padding: 0 30px;
    }
    .main-caption > h2{
        font-size: 65px;
        margin-bottom: 1rem;
    }
    .main-caption > p{
        font-size: 21px;
    }
    .count-box > h5 > span{
        font-size: 32px;
    }
    .sect-tit > h3{
        font-size: 40px;
    }
    .sc03-wrap{
        gap: 1rem;
    }
    .sc03-box{
        width: calc((100% - 3rem) / 4);
    }
    .sc05-caption > h5{
        font-size: 30px;
    }
}
@media(max-width:1199px){

    .mc-con{
        padding: 0 15px;
    }

    .mouse-s{
        display: none;
    }

    .main-caption{
        padding: 0 15px;
    }
    .main-caption > h2{
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 5px;
    }
    .main-caption > p{
        font-size: 15px;
        line-height: 1.4;
    }
    .count-wrap{
        flex-wrap: wrap;
        margin: 20px auto 0;
    }
    .count-box{
        width: 100%;
        margin-bottom: 10px;
    }
    .count-box > h5{
        font-size: 13px;
        margin-bottom: 5px;
    }
    .count-box > h5 > span{
        font-size: 24px;
    }
    .count-box > p{
        font-size: 14px;
        padding: 10px;
        border-radius: 6px;
        display: inline-block;
        width: auto;
        min-width: 200px;
    }

    .mc-con{
        padding: 0 15px;
    }

    .sc01-vimeo{
        width: 100vw; 
        padding-top: 0; 
        height: 100vh;
        border-radius: 0;
    }
	.sc01-vimeo iframe{
        top: 50%; 
        left: 50%; 
        transform: translate(-50%,-50%); 
        width: 177.777vh; 
        height: calc(100vh + 3px);
    }

    .sc02-img{
        display: none;
    }
    .sc02-img-mo{
        display: flex;
    }
    .sc02-img-mo img{
        width: 100%;
    }

    .swiper-button-next, .swiper-button-prev{
        width: 50px;
        height: 50px;
        background-color: rgba(0, 0, 0, 0.2);
    }
    .swiper-button-next > span, .swiper-button-prev > span{
        font-size: 20px;
    }

    #sc03{
        padding: 50px 0;
    }

    .sect-tit > h3{
        font-size: 28px;
        margin-bottom: 5px;
    }
    .sect-tit > p{
        font-size: 15px;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    .morebtn{
        font-size: 14px;
        padding: 12px;
        border-radius: 5px;
        min-width: 170px;
    }
    .sc03-wrap{
        margin-top: 30px;
        gap: 10px;
    }
    .sc03-box{
        width: calc((100% - 10px) / 2);
    }
    .sc03-img > h5{
        font-size: 14px;
        padding: 5px;
        background-color: #3E3A39;
    }
    .sc03-img{
        padding-bottom: 28px;
    }

    #sc04{
        padding: 50px 0;
    }
    #sc04 .sect-tit{
        padding: 100px 0;
    }

    .sc05-wrap{
        flex-wrap: wrap;
    }
    .sc05-lt, .sc05-rt{
        width: 100%;
    }
    .sc05-img{
        height: 400px;
    }
    .sc05-img.half{
        height: 200px;
    }
    .sc05-caption{
        padding: 1rem;
    }
    .sc05-caption > p{
        font-size: 14px;
        margin-bottom: 5px;
    }
    .sc05-caption > h5{
        font-size: 18px;
    }

    #sc06{
        padding: 50px 0;
    }
    #sc06 .sect-tit{
        margin-bottom: 30px;
    }
    .kso_rwdList{
        display: flex;
        gap: 10px;
    }
    .kso_rwdList > li{
        width: calc((100% - 10px) / 2);
    }
    .kso_rwdContainer .kso_rwdList .column{
        min-height: 250px !important;
    }
    .kso_rwdContainer a.title{
        font-size: 16px;
        margin-bottom: 10px;
    }
    .kso_rwdList .summary{
        font-size: 13px;
        margin-bottom: 10px;
    }
    
}

/* animation */

.ani.up{
    transform: translateY(100px);
    opacity: 0;
    transition: 1s;
}

.ani.up.act{
    transform: translateY(0);
    opacity: 1;
}

@keyframes blink{
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

@keyframes rotate{
    0% {
      transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
