@charset "utf-8";
#gnb{
    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(8px);
}


.catal{
    display: flex;
    align-items: center;
    height: 100%;
}
.catal .left{
    width: 29%;
    height: 100%;
    animation: left .6s ease-in-out both;
}
.catal .left ul{
    position: relative;
    height: 100%;
}
.bg_img{
    width: 100%;
    height: 100%;
    transform: translateX(-70%);
}

.bg_1{
    background: url(../img/sub04-Catalogue/catalogue_bg_1.jpg) no-repeat;
}
.bg_2{
    background: url(../img/sub04-Catalogue/catalogue_bg_2.jpg) no-repeat;
}
.bg_3{
    background: url(../img/sub04-Catalogue/catalogue_bg_3.jpg) no-repeat;
}
/* .bg_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
} */
.catal .left .pdf_img{
    position: absolute;
    right: 59%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 3px 3px 5px rgba(0, 0, 0, .1);
}


.catal .left .pdf_img img{
    max-width: 100%;
}
.catal .left .pdf_img p{
    position: absolute;
    bottom: 0;
    left: -100%;
    text-align: right;
    color: #fff;
    font: 16px "Noto Sans KR", sans-serif;
    text-shadow: 0px 0px 5px #000;
}
#main_wrap > div:first-child .right *{
    animation: right .6s ease-in-out both;
}
.catal .right{
    width: 60%;
    max-width: 1155px;
    /* margin: 140px auto 4%; */
    margin-left: 90px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@keyframes right {
    0%{
        opacity: 0;
        transform: translateX(20%);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes left {
    0%{
        opacity: 0;
        transform: translateX(-20%);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}

.right_top{
    display: flex;
    justify-content: space-between;
    color: #142e34;
    letter-spacing: -1.5px;
    padding-bottom: 5%;
    margin-bottom: 10%;
    border-bottom: 1px solid #142e34;
}
.right_top h1{
    font-size: 32px;
    font-weight: 400;
    margin-right: 30px;
}
.right_top .c_title{
    text-align: right;
}
.right_top div h2{
    font-size: 48px;
    font-weight: 400;
}
.right_top div p{
    font-size: 24px;
    text-align: right;

}

.right_bot{
    display: flex;
    justify-content: space-between;
}
.right_bot .bot_left{
    margin-right: 30px;
}
.right_bot .bot_left p{
    font: 18px "Noto Sans KR", sans-serif;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: -1px;
}
.bot_left p span{
    display: block;
}


.right_bot .bot_left p:last-child{
    margin-bottom: 0;
}

.right_bot .bot_right{
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.right_bot .bot_right a{
    font: 16px "Noto Sans KR", sans-serif;
    color: #142e34;
    align-items: center;
    display: flex;
    justify-content: flex-end;
}
.right_bot .bot_right a span{
    font-size: 20px;
    color: #142e34;
    font-weight: bold;
    padding-right: 5px;
}
.right_bot .bot_right p{
    font: 16px "Noto Sans KR", sans-serif;
    font-weight: 300;
    color: #666;
    margin-bottom: 30px;
}
.right_bot .bot_right p:last-child{
    margin-bottom: 0;
}


.vol_1, .vol_2, .vol_3{
    display: inline-block;
    padding-right: 10px;
    overflow: hidden;
}
.vol_1{
    background: #EB9C71;
}
.vol_2{
    background: #87B5D2;
}
.vol_3{
    background: #211614;
    color: #fff;
}

/* footer 블릿네비 숨김 */
#fp-nav ul li:last-child{
    display: none;
}


/* 반응형 */
@media screen and (max-width:1690px) {
    .right_bot{
        flex-direction: column;
    }
    .right_bot .bot_right{
        text-align: left;
        margin-top: 50px;
    }
    .right_bot .bot_right a{
        justify-content: start;
    }
}/* PC */

@media screen and (max-width:1155px){
    .bot_left p span{
        display: inline;
    }
}


@media screen and (max-width:1470px) {
    .right_top{
        flex-direction: column;
    }
    .right_top .c_title{
        text-align: left;
    }
    .right_top div h2{
        margin-right: 20px;
    }
    .right_top div h2, .right_top div p{
        display: inline;
    }

    .catal .left .pdf_img p{
        bottom: -75px;
        left: 0;
        text-align: left;
        width: 170px;
        text-shadow: 0px 0px 5px #000, 0px 0px 5px #000;
    }
}


@media screen and (min-width:971px) {
    .bg_img{
        transform: translateX(-70%);
        opacity: 0;
        transition: .8s .3s;
    }
    #catal_1_sec.active .bg_img, #catal_2_sec.active .bg_img, #catal_3_sec.active .bg_img, #catal_3_sec.on .bg_img{
        transform: translateX(0);
        opacity: 1;
    }

    .catal .left .pdf_img{
        opacity: 0;
        transition:  .8s .4s;
    }
    #catal_1_sec.active .pdf_img, #catal_2_sec.active .pdf_img, #catal_3_sec.active .pdf_img, #catal_3_sec.on .pdf_img{
        right: -9%;
        opacity: 1;
    }

    .catal .right{
        transform: translateX(30%);
        opacity: 0;
        transition: 1s .3s;    
    }
    #catal_1_sec.active .catal .right, #catal_2_sec.active .catal .right, #catal_3_sec.active .catal .right, #catal_3_sec.on .catal .right{
        transform: translateX(0%);
        opacity: 1;
    }

    .vol_1, .vol_2, .vol_3{
        width: 0;
        opacity: 0;
        overflow: hidden;
        transition: .8s .3s;
    }
    #catal_1_sec.active .vol_1, #catal_2_sec.active .vol_2, #catal_3_sec.active .vol_3, #catal_3_sec.on .vol_3{
        width: 65px;
        opacity: 1;
    }
}/* PC */



@media screen and (max-width:970px) {
    #main_wrap{
        overflow: hidden;
    }
    .section, .fp-tableCell{
        height: auto !important;
        padding-bottom: 10px;
    }
    

    .catal{
        align-items: start;
    }
    .catal .left{
        display: none;
    }

    .catal .right{
        width: 100%;
        margin-left: 0;
        padding: 0;
        transform: translateX(30%);
        opacity: 0;
        transition: .8s .1s;    
    }
    #catal_1_sec.active .catal .right, #catal_2_sec.active .catal .right, #catal_3_sec.active .catal .right{
        transform: translateX(0%);
        opacity: 1;
    }
    .right_top{
        padding: 130px 0 20px;
        margin: 0 0 25px;
        border-bottom: none;
    }
    
    .right_top h1, .c_title{
        padding: 0 20px;
        color: #fff;
        text-shadow: 0px 0px 10px #000;
    }
    .c_title p{
        text-shadow: none;
    }
    .right_bot .bot_left{
        margin-right: 0;
    }
    .rt_1{
        background: url(../img/sub04-Catalogue/catalogue_bg_1.jpg);
        background-size: cover;
    }
    .rt_2{
        background: url(../img/sub04-Catalogue/catalogue_bg_2.jpg) center;
        background-size: cover;
    }
    .rt_3{
        background: url(../img/sub04-Catalogue/catalogue_bg_3.jpg) center;
        background-size: cover;
    }

    .right_bot{
        border-top: 1px solid #124331;
        padding-top: 25px;
        margin: 0 20px;
    }
    .br_bg_1{
        background: url(../img/sub04-Catalogue/catalogue_pdf_1.jpg) no-repeat 100%;
        background-size: contain;   
    }
    .br_bg_2{
        background: url(../img/sub04-Catalogue/catalogue_pdf_2.jpg) no-repeat 100%;
        background-size: contain;   
    }
    .br_bg_3{
        background: url(../img/sub04-Catalogue/catalogue_pdf_3.jpg) no-repeat 100%;
        background-size: contain;   
    }
}/* 970 */

@media screen and (max-width:635px){
    .br_bg_1, .br_bg_2, .br_bg_3{
        background: none;
    }
}

@media screen and (max-width:490px) {
    .right_top h1{
        font-size: 20px;
    }
    .right_top div h2{
        font-size: 30px;
    }
    .right_top div p{
        font-size: 16px;
    }
    .right_bot .bot_right{
        margin-top: 30px;
    }
    .right_bot .bot_left p, .right_bot .bot_right a{
        font-size: 14px;
    }
    .right_bot .bot_right a{
        justify-content: center;
        margin-bottom: 30px;
    }
    .right_bot .bot_right p{
        font-size: 12px;
    }
}