/*
(주)파이브센스_FIVESENSES.Corp.
파이브프로_FIVEPro_웹솔루션.
본 라이브러리(소스코드 및 디자인 포함)는 (주)파이브센스의 자산이며, 저작권법 및 부정경쟁방지법에 의해 보호됩니다.
무단 사용, 외부 유출, 복제, 배포, 변형을 금지합니다.
위반 시 민·형사상 법적 책임 및 손해배상 청구 대상이 됩니다.
작성일: 2025-03-18 | 저작권자: (주)파이브센스(520-86-01244) | All Rights Reserved.
*/
/* 타이틀 */
.main_b3_1 .main_cont_title {
    font-size: 72px;
    color: #0c0c0c;
    margin-bottom: 38px;
}

.main_b3_1 .main_cont_title h2 {
    font-weight: bold;
}

/* 메인 배너 */
.main_b3_1 .main_b3_1_banner {
    /* widget-wrap before보다 위로 올라오게 결정 */
    z-index: 2;
    display:flex;
    flex-wrap: wrap;
}

.main_b3_1 .main_b3_1_banner .more-wrap {
    width: 33.3%;
    aspect-ratio: 467 / 645;
}


.main_b3_1 .main_b3_1_banner a {
    display: block;
    width: 100%;
    height: 100%;
}

.main_b3_1 .main_b3_1_banner a > img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.main_b3_1 .main_b3_1_banner .txt_container {
    position: absolute;
    bottom: 43px;
    left: 50%;
    transform: translate(-50%, 0px);
    width: 100%;
    padding: 40px 40px 0 40px;
    overflow: hidden;
}

.main_b3_1 .main_b3_1_banner .txt_container_inner {
    background: #fff;
    padding: 35px 40px 33px;
    transition: transform 0.5s ease;
    position: relative;
}

/* visible_txt */
.main_b3_1 .main_b3_1_banner .visible_txt {
    width: 90%;
}

.main_b3_1 .main_b3_1_banner h2.widget_froala {
    font-weight: bold;
    font-size: 28px;
    color: #0c0c0c;
    position: relative;
    z-index: 10;
}

.main_b3_1 .main_b3_1_banner h3.widget_froala {
    font-weight: 500;
    color: #5d5d5d;
    font-size: 16px;
    position: relative;
    z-index: 10;
	line-height:24px;
}

/* hidden_txt */
.main_b3_1 .main_b3_1_banner .hidden_txt {
    width: 90%;
    padding-top: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.main_b3_1 .main_b3_1_banner .hidden_txt.on {
    opacity: 1;
}

.main_b3_1 .main_b3_1_banner .move_arr {
    position: absolute;
    right: 38px;
    transition: top 0.5s ease;
}
/* 모달창 */
.B3_1_modal {
    position: fixed;
    background: rgba(0,0,0,0.85);
    top:0;
    left:0;
    width: 100%;
    height:100%;
    z-index: 50000;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.B3_1_modal.on {
    opacity: 1;
    visibility: visible;
}

.B3_1_modal .count {
    color:#a8a8a8;
    font-size: 16px;
    font-family: 'SUIT';
    padding:30px;
    letter-spacing: 1px;
    z-index: 5;
    position: relative;
}

.B3_1_modal .count span {
    color:#fff;
}

.B3_1_modal .top_btn {
    position: absolute;
    top: 0;
    right:0;
    display: flex;
    padding:30px;
    gap:30px;
    transition: .3s;
    z-index: 5;
}

.B3_1_modal .top_btn div {
    cursor: pointer;
    user-select: none;
}

.B3_1_modal .top_btn div:hover img {
    filter: brightness(100);
}

.B3_1_modal img.mod_img {
    max-width: none;
    max-height: none;
    position: absolute;
    top:50%; 
    left:50%;
    transform: translate(-50%, -50%) scale(1);
    transition: none;
    transform-origin: center center;
    user-select: none;
    width: auto;
    height: auto;
}


.B3_1_modal .bot_btn {
    position: absolute;
    top:50%;
    transform: translate(-50%, -50%);
    left:50%;
    width: calc(100% - 60px);
    display: flex;
    justify-content: space-between;
    user-select: none;
}

.B3_1_modal .bot_btn > div {
    cursor: pointer;
    user-select: none;
}

.B3_1_modal .bot_btn > div img {
    transition: .3s;
}

.B3_1_modal .bot_btn > div:hover img {
    filter: brightness(100);
}
.B3_1_modal .img_loader{
    position:absolute;
    top:50%;
    left:50%;
    width:50px;
    height:50px;
    margin:-25px 0 0 -25px;
    border:4px solid rgba(255,255,255,0.3);
    border-top:4px solid #fff;
    border-radius:50%;
    animation: spin 0.8s linear infinite;
    display:none;
    z-index:5;
}

@keyframes spin{
    0%{ transform: rotate(0deg); }
    100%{ transform: rotate(360deg); }
}
@media (max-width: 991px) {
    .main_b3_1 .main_b3_1_banner {
        max-height:1500px;
        overflow: hidden;
    }
    .main_b3_1 .main_b3_1_banner * {
        outline: none;
    }
    .main_b3_1 .main_b3_1_banner.on {
        max-height: none;
    }
    .main_b3_1 .main_b3_1_banner .more-wrap {
        width: 100%;
    }
    .main_b3_1 .main_b3_1_banner .more_btn {
        width: 100%;
        line-height: 50px;
        background-color: #fff;
        color:#111;
        font-size: 15px;
        text-align: center;
        position: absolute;
        bottom:0;
        cursor: pointer;
    }
    .B3_1_modal .count {
        padding:22px 15px;
        font-size: 15px;
    }
    .B3_1_modal .top_btn {
        padding:22px 15px;
    }
}



.btn-wset {
	position:absolute;
	left:0;
	top:40px;
}
.widget_btns {
	display:flex;
}