
/* 이펙트 */

.gall-list > .img-box {
    overflow: hidden;
}

.gall-list > .img-box > .linebg {
    position: absolute;
    width: 100%;
    height: 100%;
}


.gall-list > .img-box > .linebg::after {
    width: 100%;
    height: 7px;
    bottom: 0;
    left: 0;
    background-color: rgb(116, 206, 212);

    transform: translateX(-100%);
    transition: all 0.2s ease 0s;
}

.gall-list > .img-box > .linebg::before {
    width: 7px;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgb(116, 206, 212);

    transform: translateY(-100%);
    transition: all 0.2s ease 0.2s;
}

.gall-list > .img-box::after {
    width: 100%;
    height: 7px;
    top: 0;
    right: 0;
    background-color: rgb(116, 206, 212);

    transform: translateX(100%);
    transition: all 0.2s ease 0.4s;
}

.gall-list > .img-box::before {
    width: 7px;
    height: 100%;
    bottom: 0;
    right: 0;
    background-color: rgb(116, 206, 212);

    transform: translateY(100%);
    transition: all 0.2s ease 0.6s;
}



.gall-list > .img-box:hover > .linebg::after {
    width: 100%;
    height: 7px;
    bottom: 0;
    left: 0;
    background-color: rgb(116, 206, 212);

    transform: translateX(0);
    transition: all 0.2s ease 0.6s;
}

.gall-list > .img-box:hover > .linebg::before {
    width: 7px;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgb(116, 206, 212);

    transform: translateY(0);
    transition: all 0.2s ease 0.4s;
}

.gall-list > .img-box:hover::after {
    transform: translateY(0);
    transition: all 0.2s ease 0.2s;
}

.gall-list > .img-box:hover::before {
    transform: translateY(0);
    transition: all 0.2s ease 0s;
}



/* 끝 */

.con-gall {
    display: flex;
    flex-flow: column nowrap;
    padding: 30px 0;
}

.con-gall1 {
    display: flex;
    flex-flow: column nowrap;
    padding: 30px 0;
}

.gall-tit {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.gall-tit > h2 {
    font-size: 34px;
    font-weight: 700;
    line-height: 70px;
    font-family: 'Noto Sans KR', sans-serif;
    color: rgb(29, 29, 29);
}

.gall-tit > p {
    width: 100%;
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    font-family: 'Noto Sans KR', sans-serif;
    color: rgb(119, 119, 119);
    text-align: left;
    
}

.gall-tit > h1 {
    font-size: 34px;
    font-weight: 700;
    line-height: 50px;
    font-family: 'Noto Sans KR', sans-serif;
    color: rgb(29, 29, 29);
    text-align: center;
}

.gall-tit > p > span{
    font-weight: 600;
    color: #333333;
}

.gall-list {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    width: 100%;
}

.gall-list > .img-box {
    position: relative;
    display: flex;
    flex-flow: column nowrap;

    margin: 10px auto;

    width: 32%;
    height: auto;
    background-color: rgb(247, 247, 247);
}

.gall-list > .img-box1 {
    position: relative;
    display: flex;
    flex-flow: column nowrap;

    margin: 10px auto;

    width: 32%;
    height: auto;
    background-color: #ffffff;
}

.gall-list > .img-box > .imgbx {
    width: 100%;
    height: 200px;
}

.gall-list > .img-box > .texbx {
    position: relative;
    display: flex;
    flex-flow: column wrap;
    align-items: center;

    padding: 30px 20px;

    text-align: center;
}

.gall-list > .img-box > .texbx > h5 {
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    font-family: 'Noto Sans KR', sans-serif;
    color: rgb(29, 29, 29);

    transition: all 0.5s ease;
}

.gall-list > .img-box > .texbx > a > h5:hover {
    color: rgb(228, 122, 60);
}

.gall-list > .img-box > .texbx > p {
    width: 90%;
    font-size: 13px;
    font-weight: 300;
    line-height: 21px;
    
    margin-top: 10px;

    font-family: 'Noto Sans KR', sans-serif;
    color: rgb(119, 119, 119);
}

/* list-nav */

.list-nav {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;

    margin-top: 50px;
}

.list-nav > ul {
    display: flex;
    flex-flow: row nowrap;
}

.list-nav > ul > a > li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: #333333;

    margin: 1px;

    font-size: 13px;
    font-weight: 300;
    line-height: 0;
    font-family: 'Noto Sans KR', sans-serif;
    color: #ffffff;

    transition: all 0.5s ease;
}

.list-nav > ul > a > li.active {
    border: 1px solid #333333;
    background-color: #ffffff;
    color: #333333;
}

.list-nav > ul > a > li:not(.active):hover {
    background-color: #707070;
}



@media (max-width: 1199.99px) and (min-width: 992px) {
    
.con-gall {
    display: flex;
    flex-flow: column nowrap;
    padding: 80px 20px 60px 20px;
}

.con-gall1 {
    display: flex;
    flex-flow: column nowrap;
    padding: 0px 20px;
}

.gall-tit {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.gall-tit > h2 {
    font-size: 34px;
    font-weight: 700;
    line-height: 70px;
}

.gall-tit > p {
    width: 60%;
    font-size: 13px;
}

.gall-tit > h1 {
    font-size: 34px;
    font-weight: 700;
    line-height: 50px;
    font-family: 'Noto Sans KR', sans-serif;
    color: rgb(29, 29, 29);
    text-align: center;
}

.gall-list {
    flex-flow: row wrap;
    justify-content: space-between;
    width: 100%;
}

.gall-list > .img-box {
    margin: 10px auto;

    width: 32%;
    height: auto;
}

.gall-list > .img-box > .imgbx {
    width: 100%;
    height: 180px;
}

.gall-list > .img-box > .texbx {
    align-items: center;
    padding: 30px 20px;
    text-align: center;
}

.gall-list > .img-box > .texbx > a > h5 {
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
}

.gall-list > .img-box > .texbx > p {
    width: 90%;
    font-size: 13px;
    font-weight: 300;
    line-height: 21px;
    
    margin-top: 20px;
}

}


@media (max-width: 991.99px) and (min-width: 768px) {
    
    .con-gall {
        display: flex;
        flex-flow: column nowrap;
        padding: 100px 20px 0px 20px;
    }

    .con-gall1 {
        display: flex;
        flex-flow: column nowrap;
        padding: 60px 20px;
    }
    
    .gall-tit {
        position: relative;
        display: flex;
        flex-flow: column nowrap;
        align-items: center;
        text-align: center;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .gall-tit > h2 {
        font-size: 34px;
        font-weight: 700;
        line-height: 70px;
    }
    
    .gall-tit > p {
        width: 60%;
        font-size: 13px;
    }
    
    .gall-tit > h1 {
        font-size: 34px;
        font-weight: 700;
        line-height: 50px;
        font-family: 'Noto Sans KR', sans-serif;
        color: rgb(29, 29, 29);
        text-align: center;
    }

    .gall-list {
        flex-flow: row wrap;
        justify-content: space-between;
        width: 100%;
    }
    
    .gall-list > .img-box {
        margin: 10px auto;
    
        width: 49%;
        height: auto;
    }
    .gall-list > .img-box1 {
        display: none;
    }
    
    .gall-list > .img-box > .imgbx {
        width: 100%;
        height: 180px;
    }
    
    .gall-list > .img-box > .texbx {
        align-items: center;
        padding: 30px 20px;
        text-align: center;
    }
    
    .gall-list > .img-box > .texbx > a > h5 {
        font-size: 18px;
        font-weight: 700;
        line-height: 20px;
    }
    
    .gall-list > .img-box > .texbx > p {
        width: 90%;
        font-size: 13px;
        font-weight: 300;
        line-height: 21px;
        
        margin-top: 20px;
    }
    
    }



    @media (max-width: 767.99px) and (min-width: 576px) {
    
        .con-gall {
            display: flex;
            flex-flow: column nowrap;
            padding: 400px 20px 0 20px;
        }

        .con-gall1 {
            display: flex;
            flex-flow: column nowrap;
            padding: 80px 20px 0 20px;
        }
        
        .gall-tit {
            position: relative;
            display: flex;
            flex-flow: column nowrap;
            align-items: center;
            text-align: center;
            width: 100%;
            margin-bottom: 30px;
        }
        
        .gall-tit > h2 {
            font-size: 34px;
            font-weight: 700;
            line-height: 50px;
        }
        
        .gall-tit > p {
            width: 80%;
            font-size: 13px;
            text-align: left;
        }

        .gall-tit > h1 {
            font-size: 34px;
            font-weight: 700;
            line-height: 50px;
            font-family: 'Noto Sans KR', sans-serif;
            color: rgb(29, 29, 29);
            text-align: center;
        }
        
        .gall-list {
            flex-flow: row wrap;
            justify-content: space-between;
            width: 100%;
        }
        
        .gall-list > .img-box {
            margin: 10px auto;
        
            width: 49%;
            height: auto;
        }

        .gall-list > .img-box1 {
            display: none;
        }
        
        .gall-list > .img-box > .imgbx {
            width: 100%;
            height: 160px;
        }
        
        .gall-list > .img-box > .texbx {
            align-items: center;
            padding: 30px 20px;
            text-align: center;
        }
        
        .gall-list > .img-box > .texbx > a > h5 {
            font-size: 15px;
            font-weight: 700;
            line-height: 20px;
        }
        
        .gall-list > .img-box > .texbx > p {
            width: 100%;
            font-size: 12px;
            font-weight: 300;
            line-height: 18px;
            
            margin-top: 10px;
        }

        .list-nav {
        
            margin-top: 30px;
        }
        
        }


        @media (max-width: 575.99px) {
    
            .con-gall {
                display: flex;
                flex-flow: column nowrap;
                padding: 30px 20px 0px 20px;
            }

            .con-gall1 {
                display: flex;
                flex-flow: column nowrap;
                padding: 60px 20px 0 20px;
            }
            
            .gall-tit {
                position: relative;
                display: flex;
                flex-flow: column nowrap;
                align-items: center;
                text-align: center;
                width: 100%;
                margin-bottom: 30px;
            }
            
            .gall-tit > h2 {
                font-size: 26px;
                font-weight: 700;
                line-height: 50px;
            }
            
            .gall-tit > p {
                width: 100%;
                font-size: 12px;
                text-align: left;
            }

            .gall-tit > h1 {
                font-size: 26px;
                font-weight: 700;
                line-height: 50px;
                font-family: 'Noto Sans KR', sans-serif;
                color: rgb(29, 29, 29);
                text-align: center;
            }
            
            .gall-list {
                flex-flow: row wrap;
                justify-content: space-between;
                width: 100%;
            }
            
            .gall-list > .img-box {
                margin: 10px auto;
            
                width: 100%;
                height: auto;
            }

            .gall-list > .img-box1 {
                display: none;
            }
            
            .gall-list > .img-box > .imgbx {
                width: 100%;
                height: 160px;
            }
            
            .gall-list > .img-box > .texbx {
                align-items: center;
                padding: 30px 20px;
                text-align: center;
            }
            
            .gall-list > .img-box > .texbx > a > h5 {
                font-size: 15px;
                font-weight: 700;
                line-height: 20px;
            }
            
            .gall-list > .img-box > .texbx > p {
                width: 100%;
                font-size: 12px;
                font-weight: 300;
                line-height: 18px;
                
                margin-top: 10px;
            }
    
            .list-nav {
            
                margin-top: 30px;
            }
            
            }
    