@charset "utf-8";

/* S :  연제센터 메인 소개 */
    .intro {
        height: 100vh;
        position: relative;
        background: url(/img/main01.jpg) no-repeat top center / cover;
    }

    .intro .main-tit {
        text-shadow: 0 0 6px #3f3a35;
    }

    .intro .main-tit h2 {
        font-family: 'Dongle-Regular';
        line-height: 1;
    }
    @media (max-width: 476px) {
        .intro .main-tit {
            text-align: center;
        }
        .intro .main-tit p {
            font-size: 0.96em;
            margin-bottom: 10px;
        }
        .intro .main-tit span.block {
            display: block;
        }
    }


    /* S : 공지사항 노출 */
    .intro .main-carousel {
        position: absolute;
        bottom: 0;
        color: #fff;
        background-color: rgba(0, 0, 0, 0.7);
    }

    .intro .main-carousel .carousel-item {
        margin-left: 5%;
        width: 90%;
    }

        /* S : 이전 버튼, 다음 버튼 */
        .intro .main-carousel .carousel-control-next,
        .intro .main-carousel .carousel-control-prev {
            width: 5%;
            opacity: 0.3;
        }

        .intro .main-carousel .carousel-control-next-icon,
        .intro .main-carousel .carousel-control-prev-icon {
            width: 1.5rem;
            height: 1.5rem;
        }
        /* E : 이전 버튼, 다음 버튼 */
    /* E : 공지사항 노출 */
/* E :  연제센터 메인 소개 */
