section, section *{ 
    box-sizing:border-box; 
}
*{ 
    box-sizing:border-box; 
}
section{ 
    overflow:hidden; 
}
.mc-con{ 
    width:100%; 
    margin:0 auto; 
    padding: 0 120px;
    position: relative;
    z-index: 3;
}

.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: #0d0d0d;
}
.sect-tit.flex{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-end;
}
.sect-tit > h3{
    font-size: 40px;
    font-weight: 100;
    margin-bottom: 30px;
    line-height: 1.3;
}
.sect-tit > h3 > span{
    font-weight: 800;
}
.sect-tit > p{
    font-size: 23px;
    font-weight: 100;
    line-height: 1.6;
}
.sect-tit > p > span{
    font-weight: 700;
}
.sect-tit > h5{
    font-size: 18px;
    font-weight: 100;
    line-height: 1.6;
    margin-top: 10px;
}
.sect-tit > h5 > span{
    font-weight: 700;
}
.sect-tit.flex > h3{
    margin-bottom: 0;
}
.sect-tit.flex > p{
    text-align: right;
}

/* 메인 섹션 */
#sc01{ 
    background-color:#fff; 
    height: 100vh; 
    position: relative; 
    overflow: hidden;
    padding: 50px;
}
.sc01-vimeo {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    z-index: 1;
}
.sc01-vimeo::after{
    content: ""; 
    width: 100%; 
    height: 100%; 
    position: absolute; 
    top: 0; 
    left: 0; 
    z-index: 2;
    pointer-events: none;
}
.video-area{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.sc01-vimeo iframe {
    position: absolute; 
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%; 
}

.main-caption{
    width: 100%;
    padding: 70px;
    color: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 3;
}
.main-caption > h2{
    font-size: 60px;
    font-weight: 100;
    margin-bottom: 30px;
}
.main-caption > h2 > span{
    font-weight: 800;
}
.main-caption > h5{
    font-size: 30px;
    font-weight: 100;
    margin-bottom: 10px;
}
.main-caption > h5 > span{
    font-weight: 700;
}
.main-caption > p{
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

/* sc02 */
#sc02{
    padding: 200px 0;
}
#sc02 .sect-tit > h3{
    font-size: 40px;
}
.sc02-wrap{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.sc02-caption{
    width: 55%;
}
.sc02-cont{
    display: flex;
    margin: 65px 0 0;
}
.sc02-cont > li{
    min-width: 205px;
    padding: 20px 0;
    border-radius: 16px;
    background-color: #fff;
    transition: .3s;
    color: #0d0d0d;
    text-align: center;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    border: 1px solid #fff;
    margin-right: 10px;
}
.sc02-cont > li > span{
    font-weight: 300;
}
.sc02-cont > li:hover{
    color: #fff;
    background-color: #ea002c;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.25);
    border: 1px solid #eee;
}
.sc02-caption > p{
    font-size: 16px;
    color: #0d0d0d;
    font-weight: 700;
}
.sc02-box{
    width: 44%;
}
.sc02-yt{
    position:relative;
    height:0;
    padding-bottom:56.25%;
}
.sc02-yt iframe {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

/* sc03 */
#sc03{
    padding: 0 0 200px 0;
}
.sc03-wrap{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 60px;
}
.sc03-box{
    width: calc((100% - 60px) / 4);
    position: relative;
}
.sc03-box::after{
    content: "";
    inset: 0;
    border-radius: 16px;
    padding: 3px;
    background: linear-gradient(90deg, #FFD700 0%, #ff6b35 25%, #ff1744 50%, #ffa726 75%, #ffd700 100%);
    background-size: 200% 100%;
    animation: borderMove 4s linear infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: exclude;
    mask-composite: exclude;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.sc03-box:hover::after{
    opacity: 1;
}
@keyframes borderMove{
    0%{background-position: 0% 50%;}
    100%{background-position: 200% 50%;}
}
.sc03-cont{
    width: 100%;
    transition: .3s;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px -4px rgba(0, 0, 0, 0.25);
}
.sc03-img{
    width: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
}
.sc03-img img{
    width: 100%;
    display: block;
}
.sc03-thum{
    position: relative;
    z-index: 1;
}
.sc03-hover{
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: .3s;
    z-index: 2;
}
.sc03-caption{
    width: 100%;
    padding: 1rem;
    background-color: #fff;
    transition: .3s;
}
.sc03-caption > p{
    font-size: 13px;
    color: #000;
    font-weight: 400;
    line-height: 1.6;
    transition: .3s;
}
.sc03-caption > p > span{
    font-weight: 700;
}
.sc03-cont:hover .sc03-hover{
    opacity: 1;
}
.sc03-cont:hover{
    box-shadow: 0 2px 10px -4px rgba(0, 0, 0, 0.25);
    transform: translateY(-10px);
}
.sc03-cont:hover .sc03-caption{
    background-color: #EA002C;
}
.sc03-cont:hover .sc03-caption > p{
    color: #fff;
}

/* sc04 */
#sc04{
    padding: 0 0 200px 0;
}
.sc04-wrap{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sc04-caption{
    width: 44%;
}
.sc04-caption > ul{
    padding-left: 14px;
    margin-bottom: 50px;
}
.sc04-caption > ul > li{
    font-size: 23px;
    color: #000;
    font-weight: 100;
    margin-bottom: 5px;
    line-height: 1.4;
    padding-left: 14px;
    position: relative;
}
.sc04-caption > ul > li::before{
    content: "";
    width: 4px;
    height: 4px;
    background-color: #0d0d0d;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.sc04-caption > ul > li:last-child{
    margin-bottom: 0;
}
.sc04-caption > ul > li > span{
    font-weight: 700;
}
.sc04-caption > a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    color: #000;
    font-weight: 400;
    padding: 16px 40px;
    border-radius: 30px;
    border: 1px solid #000;
    transition: .3s;
    max-width: 200px;
}
.sc04-caption > a > span{
    display: inline-block;
    transition: .3s;
}
.sc04-caption > a:hover{
    background-color: #d72739;
    border-color: #d72739;
    color: #fff;
}
.sc04-caption > a:hover > span{
    transform: rotate(180deg);
}
.sc04-box{
    width: 55%;
}
.sc04-img{
    display: flex;
    width: 100%;
    margin-bottom: 1rem;
}
.sc04-img img{
    width: 100%;
}
.sc04-box > p{
    font-size: 13px;
    color: #0d0d0d;
    font-weight: 400;
    line-height: 1.6;
}

/* sc05 */
#sc05{
    padding: 0 0 200px 0;
}
.sc05-wrap{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 100px;
}
.sc05-box{
    width: calc((100% - 50px) / 3);
    transition: .4s;
    transition-delay: 1s;
}
.sc05-box.ani{
    padding-top: 40px;
}
.sc05-box.ani.act{
    padding-top: 0;
}
.sc05-cont{
    width: 100%;
    margin-bottom: 35px;
}
.sc05-img{
    display: flex;
    width: 100%;
    margin-bottom: 1rem;
}
.sc05-img img{
    width: 100%;
}
.sc05-cont > h5{
    font-size: 16px;
    text-align: center;
    color: #000;
    font-weight: 400;
}
.sc05-cont > h5 > span{
    font-weight: 700;
}

@media(min-width:1200px){
    .d-lg-none{ 
        display:none; 
    }
    .d-lg-block{ 
        display:block; 
    }
    .d-lg-ib{ 
        display: inline-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;
    }

    
}
@media(max-width:1600px){
    .mc-con{
        padding: 0 60px;
    }
    #sc01{
        padding: 30px;
    }
    .main-caption{
        padding: 30px;
    }
    .main-caption > h2{
        font-size: 55px;
    }
    .main-caption > h5{
        font-size: 28px;
    }

    .sect-tit > h3{
        font-size: 36px;
    }
    #sc02 .sect-tit > h3{
        font-size: 40px;
    }
    .sect-tit > p{
        font-size: 20px;
    }
    .sc02-cont{
        flex-wrap: wrap;
        gap: 10px;
    }
    .sc02-cont > li{
        min-width: 250px;
        margin-right: 0;
    }

    .sc04-caption > ul > li{
        font-size: 20px;
    }
    .sc04-caption{
        width: 49%;
    }
    .sc04-box{
        width: 50%;
    }

    .sc05-wrap{
        gap: 1rem;
        margin-top: 50px;
    }
    .sc05-box{
        width: calc((100% - 3rem) / 3);
    }
    .sc05-cont > h5{
        font-size: 14px;
    }
    .sc05-cont{
        margin-bottom: 30px;
    }


}

@media(max-width:1400px){
    .mc-con{
        padding: 0 40px;
    }
    #sc01{
        padding: 20px;
    }
    .main-caption{
        padding: 20px;
    }
    .sc01-vimeo{
        border-radius: 16px;
    }
    .main-caption > h2{
        font-size: 45px;
    }
    .main-caption > h5{
        font-size: 26px;
    }
    .main-caption > p{
        font-size: 14px;
    }
    .sect-tit > h3{
        font-size: 32px;
    }
    #sc02 .sect-tit > h3{
        font-size: 36px;
    }
    .sect-tit > p{
        font-size: 18px;
    }
    #sc02{
        padding: 150px 0;
    }
    #sc03, #sc04, #sc05{
        padding: 0 0 150px 0;
    }
    .sc03-wrap{
        margin-top: 40px;
        gap: 10px;
    }
    .sc03-box{
        width: calc((100% - 30px) / 4);
    }
    .sc04-caption > ul > li{
        font-size: 18px;
    }
    .sc05-wrap{
        gap: 10px;
        margin-top: 40px;
    }
    .sc05-box{
        width: calc((100% - 30px) / 3);
    }
}

@media(max-width:1199px){
    .mc-con{
        padding: 0 15px;
    }

    #sc01{
        padding: 0;
    }
	.sc01-vimeo{
        width: 100vw; 
        padding-top: 0; 
        height: calc(100vh + 3px);
        border-radius: 0;
    }
	.sc01-vimeo iframe{
        top: 50%; 
        left: 50%; 
        transform: translate(-50%,-50%); 
        width: 177.777vh; 
        height: calc(100vh + 3px);
    }

    .main-caption{
        padding: 0 15px 90px;
    }
    .main-caption > h2{
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 20px;
    }
    .main-caption > h5{
        font-size: 22px;
        margin-bottom: 10px;
    }
    .main-caption > p{
        line-height: 1.4;
    }

    .mc-con{
        padding: 0 15px;
    }

    #sc02{
        padding: 100px 0;
    }
    #sc02 .sect-tit > h3{
        font-size: 30px;
    }
    .sc02-wrap{
        flex-direction: column;
    }
    .sc02-caption{
        width: 100%;
        margin-bottom: 30px;
    }
    .sect-tit > h3{
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    .sect-tit > p{
        font-size: 18px;
        line-height: 1.4;
    }
    .sc02-box{
        width: 100%;
    }
    .sc02-cont{
        margin: 30px 0 0;
    }
    .sc02-cont > li{
        width: calc((100% - 10px) / 2);
        padding: 1rem;
        border-radius: 8px;
    }
    .sc02-caption > p{
        text-align: center;
    }
    .sect-tit.flex{
        flex-direction: column;
        align-items: flex-start;
    }
    .sect-tit.flex > p{
        text-align: left;
        margin-top: 1rem;
    }
    .sc03-wrap{
        margin-top: 30px;
    }
    .sc03-box{
        width: calc((100% - 10px) / 2);
        margin-bottom: 10px;
    }
    #sc03, #sc04, #sc05{
        padding: 0 0 100px 0;
    }
    .sc04-wrap{
        flex-direction: column;
        align-items: flex-start;
    }
    .sc04-caption{
        width: 100%;
        margin-bottom: 40px;
    }
    .sc04-box{
        width: 100%;
    }
    .sc04-caption > ul{
        padding-left: 12px;
        margin-bottom: 30px;
    }
    .sc04-caption > ul > li{
        font-size: 16px;
    }
    .sc04-caption > a{
        font-size: 15px;
        padding: 14px 30px;
        max-width: 170px;
    }
    .sc05-cont > h5{
        line-height: 1.4;
    }
    .sc05-img{
        margin-bottom: 10px;
    }
    .sc05-cont{
        margin-bottom: 20px;
    }
    
}

@media(max-width:599px){
    .main-caption > h2{
        font-size: 30px;
    }
    .main-caption > h5{
        font-size: 20px;
    }
    #sc02 .sect-tit > h3{
        font-size: 24px;
    }
    .sect-tit > h3{
        font-size: 24px;
        margin-bottom: 1rem;
    }
    .sect-tit > p{
        font-size: 16px;
    }
    .sc02-cont > li{
        min-width: auto;
    }
    .sc02-cont > li{
        font-size: 14px;
        padding: 14px 0;
    }
    .sc02-cont > li > span{
        font-size: 13px;
    }
    .sc03-box{
        width: 100%;
    }
    .sc04-caption > ul{
        padding-left: 5px;
        margin-bottom: 25px;
    }
    .sc04-caption > ul > li{
        font-size: 14px;
        padding-left: 10px;
    }
    .sc04-caption > ul > li::before{
        width: 3px;
        height: 3px;
        transform: translateY(0);
        top: 7px;
    }
    .sc04-caption > a{
        font-size: 14px;
        padding: 12px 24px;
        max-width: 150px;
    }
    .sc04-caption{
        margin-bottom: 30px;
    }
    .sc04-box > p{
        font-size: 12px;
    }
    .sc05-wrap{
        display: none;
    }
    .sc05-slide{
        width: 100%;
        position: relative;
    }
    .sc05Swiper{
        position: relative;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .swiper-pagination{
        bottom: 0 !important;
    }
    .sc05-cont{
        width: 100%;
        margin-bottom: 0;
    }
    .swiper-pagination-bullet-active{
        background-color: #d72739;
    }
}
@media(min-width:600px){
    .sc05-slide{
        display: none;
    }
}

/* 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);
    }
}
