/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 18 2026 | 04:31:17 */
/*-----------------------------------------------------*/
/* 메인 비주얼 (단일 이미지) */
/*-----------------------------------------------------*/
#mainSlide {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 750px;
    margin: 0 auto;
}

#mainSlide .visual-con, 
#mainSlide .visual-item {
    width: 100%;
    height: 100%;
}

.visual-item {
    position: relative; 
    width: 100%;
    height: 100%;
}

.visual-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); 
    z-index: 5; 
}

.visual-bg {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    animation: bgZoomOut 6s ease-out forwards; 
}

@keyframes bgZoomOut {
    0% { transform: scale(1.1); }
    100% { transform: scale(1.0); }
}

/* 텍스트 컨테이너 */
.visual-box {
    position: absolute;
    top: 35%;
    width: 100%;
    margin: 0 auto;
    text-align: center !important;
    z-index: 10;
}

.visual-box .visual-tit1,
.visual-box .visual-tit2,
.visual-box .visual-tit3 {
    opacity: 0;
    animation: textFadeDown 1s ease-out forwards;
}

@keyframes textFadeDown {
    0% { opacity: 0; transform: translateY(-50px); }
    100% { opacity: 1; transform: translateY(0); }
}

.visual-box .visual-tit1 {
    display: block;
    font-family: 'Montserrat', 'Noto Sans KR', sans-serif;
    font-size: 56px;
    color: #fff;
    font-weight: 600;
    line-height: 65px;
    text-shadow: 1px 2px rgba(0,0,0,.4);
    letter-spacing: -1px;
    text-transform: uppercase;
    animation-delay: 0.3s; 
}

.visual-box .visual-tit2 {
    font-family: 'Montserrat', 'Noto Sans KR', sans-serif;
    font-size: 28px;
    color: #fff;
    font-weight: 500;
    line-height: 26px;
	margin-top: 25px;
    animation-delay: 0.6s; 
}

.visual-box .visual-tit3 {
    font-family: 'Montserrat', 'Noto Sans KR', sans-serif;
    font-size: 42px;
    color: #fff;
    font-weight: 700;
    line-height: 38px;
    margin-top: 25px;
	letter-spacing: 1px;
    animation-delay: 0.9s; 
}

/*-----------------------------------------------------*/
/* 반응형 (Media Queries) */
/*-----------------------------------------------------*/

@media screen and (max-width: 1199px) {
    #mainSlide { height: 50vw !important; }
    .visual-box .visual-tit1 { font-size: 42px; line-height: 50px; }
    .visual-box .visual-tit2 { font-size: 24px; }
    .visual-box .visual-tit3 { font-size: 36px; }
}

@media screen and (max-width: 767px) {
    #mainSlide { height: 60vw !important; }
    .visual-box .visual-tit1 { font-size: 30px; line-height: 45px; }
    .visual-box .visual-tit2 { font-size: 18px; margin-top: 12px;}
    .visual-box .visual-tit3 { font-size: 30px; margin-top: 12px;}
}

@media screen and (max-width: 560px) {
    #mainSlide { height: 65vw !important; }
    .visual-box .visual-tit1 { font-size: 24px; line-height: 40px; }
    .visual-box .visual-tit2 { font-size: 14px; margin-top: 5px;}
    .visual-box .visual-tit3 { font-size: 22px; margin-top: 5px;}
}

@media screen and (max-width: 480px) {
    #mainSlide { height: 85vw !important; }
	.visual-box {
     top: 32%;
    }
}

