#section0{
    width: 100%;
    height: 100vh;
}

.main_slide{
    width: 100%;
    height: 100vh;
}

.slidebox{
    width: 100%;
    height: 100vh;
    padding-top: 100px;
    box-sizing: border-box;
    overflow: hidden;
}

.slidebox img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slidebox.slick-active img{
    animation: zoom 5.5s linear forwards;
}

@keyframes zoom{
    0%{
        transform: scale(1);
    }

    100%{
        transform: scale(1.1);
    }
}

.slidebox .center{
    height: 100%;
    position: relative;
}

.slidebox .center p{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 10%;
    right: 0;
    font-size: 70px;
    color: #1b75bb;
    font-family: 'KoPubDotumBold', sans-serif;
    font-weight: bold !important;
}

.slidebox .center p span{
    color: #6dcff6;
}

.fix_text{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 90;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.fix_text .center{
    text-align: right;
    margin-top: 6%;
}

.italic{
    font-size: 40px;
    color: #111;
    font-family: 'Allura-Regular', sans-serif;
    font-style: italic;
}

.fix_text p{
    font-size: 34px;
    font-family: 'KoPubDotumMedium', sans-serif;
    margin-top: 30px;
}

.fix_text p span{
    font-size: 36px;
    font-family: 'KoPubDotumBold', sans-serif;
}