@charset "utf-8";

#sh_mainVisual {
    position: relative;
    z-index: 10
}

/* 텍스트 */
#sh_mainVisual .main_txt {
    opacity: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 101;
    transform: translate(-50%, -50%);
    width: max-content;
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    color: rgba(255, 255, 255, .6);
    font-family: 'Pretendard'
}

#sh_mainVisual .main_txt p {
    margin-bottom: 35px;
    font-size: 55px;
    line-height: 1;
    color: #fff;
    font-family: 'Marcellus'
}

/* 배경이미지 */
.sh_main_slide {
    height: 100vh
}

#sh_mainVisual ul:after {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .35)
}

#sh_mainVisual ul li video {
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto
}

#sh_mainVisual ul li .bg {
    opacity: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: center no-repeat;
    background-size: cover;
    transition: all 1.6s cubic-bezier(0.165, 0.840, 0.440, 1)
}
#sh_mainVisual ul li .bg01 {
    background-image: url(./1.jpg)
}

#sh_mainVisual ul li .bg02 {
    background-image: url(./2.jpg)
}

#sh_mainVisual ul li .bg03 {
    background-image: url(./3.jpg)
}

#sh_mainVisual ul li.on .bg {
    width: 102%;
    height: 102%;
    opacity: 1
}

#sh_mainVisual .pager {
    position: absolute;
    left: 50%;
    bottom: 70px;
    z-index: 101;
    transform: translateX(-50%)
}

#sh_mainVisual .pager span {
    opacity: .3;
    position: relative;
    width: 29px;
    height: 29px;
    margin: 0 5px;
    background-color: transparent;
    transition: all .3s
}

#sh_mainVisual .pager span.on {
    opacity: 1
}

#sh_mainVisual .pager span:before {
    opacity: 0;
    display: block;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    transition: all .3s
}

#sh_mainVisual .pager span.on:before {
    opacity: 1;
    width: 100%;
    height: 100%
}

#sh_mainVisual .pager span:after {
    display: block;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff
}

@media(max-width:768px) {
    #sh_mainVisual .main_txt {
        width: 100%;
        word-break: keep-all;
        font-size: 15px
    }

    #sh_mainVisual .main_txt p {
        margin-bottom: 20px;
        font-size: 45px;
        line-height: 1.15;
        word-break: keep-all
    }

    #sh_mainVisual .pager {
        bottom: 10px
    }

    #sh_mainVisual .pager span {
        width: 20px;
        height: 20px
    }
}

@media(max-width:380px) {
    #sh_mainVisual .main_txt {
        font-size: 14px
    }

    #sh_mainVisual .main_txt p {
        font-size: 35px
    }
}