@charset "utf-8";

#gnb{
    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(10px);
}


#section_1{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top_left{
    margin: 203px 0 80px 0px;
    display: flex;
    flex-direction: column;
}
.top_left img{
    max-width: 100%;
    min-width: 470px;
    margin-left: 96px;
}
.top_left h1{
    position: absolute;
    top: 135px;
    font-size: 96px;
    font-weight: 100;
    font-style: italic;
    color: #124331;
}

.top_right{
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    padding-bottom: 9%;
}
.top_right h2{
    font: 22px "Noto Sans KR", sans-serif;
    font-weight: 300;
    letter-spacing: -.5px;
    color: #142E34;
}
.top_right > p, .recruit a{
    margin-top: 50px;
    font: 18px "Noto Sans KR", sans-serif;
    font-weight: 300;
    letter-spacing: -.5px;
}
.recruit a{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
    color: #142e34;
}
.recruit a p{
    position: relative;
}
.recruit a p:after{
    content: '';
    position: absolute;
    width: 0%;
    bottom: -10px;
    right: 0;
    border-bottom: 1px solid #124331;
    transition: .3s;
}

.recruit a span{
    padding-top: 3.5px;
    margin-left: 10px;
}
.go_news{
    position: absolute;
    bottom: 70px;
    right: 15px;
}
.go_news span{
    font-size: 42px;
    animation: go-news 1s ease-in-out infinite both;
}

@keyframes go-news {
    0%{
        transform: translateY(5px);
    }
    50%{
        transform: translateY(-5px);
    }
    100%{
        transform: translateY(5px);
    }
}


/* section 2 */
#section_2 h2{
    font: 22px "noto sans KR", sans-serif;
    font-weight: 300;
    text-align: center;
    margin: 150px 0 60px;
    color: #142E34;
}
.grid-sizer, .grid-item{
    width: 33.3%;
}

.grid-item > div{
    background: #fff;  
    margin: 30px 15px;
    padding: 10px;
    /* box-shadow: 0px 0px 5px #eee;
    transform: translate(0px, 0px); */
    transition: .3s;
}
.grid-item > div img{
    width: 100%;
    object-fit: cover;
    transition: .3s;
}

.grid{
    max-width: 100%;
    margin: 20px auto;
}

.grid-item .title{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    color: #fff;
    font: 20px "noto sans KR", sans-serif;
    transition: .3s;
    text-shadow: 0 0 8px #000, 0 0 5px #000;
}
.grid-item .content{
    position: absolute;
    top: 51%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    text-align: center;
    font: 18px "Noto Sans KR", sans-serif;
    font-weight: 300;
    color: #fff;
    transition: .3s;
    padding: 0 20px;
    opacity: 0;
    transition: .3s;
}








/* 반응형 */
@media screen and (max-width:1080px) {
    .grid-item, .grid-sizer{
        width: 50%;
    }
}
@media screen and (max-width:670px) {
    .grid-item, .grid-sizer{
        width: 100%;
    }
    
}
@media screen and (min-width:971px) {
    
    .recruit a:hover p:after{
        width: 100%;
    }

    /* .grid-item:hover > div{
        transform: translate(-5px, -5px);
        box-shadow: 5px 5px 10px rgba(204, 204, 204, 0.522);
    } */
    .grid-item:hover .title{
        top: 45%;
        left: 50%;
        transform: translate(-50%, 0);
        color: #fff;
        text-shadow: 0 0 8px #000, 0 0 5px #000;
    }
    .grid-item:hover .short{
        top: 40%;
    }
    
    .grid-item:hover .content{
        opacity: 1;
        text-shadow: 0 0 8px #000, 0 0 5px #000;
    }

    .grid-item:hover > div img{
        filter: brightness(.3);
    }


}/* PC */



@media screen and (max-width:970px) {
    #section_1{
        flex-direction: column;
    }
    .top_left{
        margin: 125px 0 40px 0px;
        width: 100%;
    }
    .top_right{
        padding: 0;
    }
    .top_left img{
        max-width: 50%;
        min-width: auto;
        margin: 0 auto;
    }
    .top_right h2{
        font-size: 18px;
    }
    .top_right > p, .recruit a{
        font-size: 16px;
        margin-top: 30px;
    }
    .top_left h1{
        top: 80px;
        font-size: 80px;
    }
    .recruit a p:after{
        width: 100%;
    }
    .recruit a{
        justify-content: center;
    }
    .recruit a span {
        display: none;
    }





    #section_2 h2{
        margin: 60px 0 30px;
        font-size: 20px;
        /* position: relative; */
    }
    /* #section_2 h2:after{
        position: absolute;
        content: '';
        width: 30%;
        border-top: 1px solid #000;
        left: 50%;
        transform: translateX(-50%);
        top: -10px;
    } */

    .grid-item .title{
        
        top: 45%;
    }
    .grid-item > div img{
        filter: brightness(.6);
    }
    .grid-item .short{
        top: 40%;
    }
    .grid-item .content{
        opacity: 1;
        text-shadow: 0 0 8px #000, 0 0 5px #000;
        top: 50%;
    }



    .go_news{
        display: none;
    }

}/* 970 */


@media screen and (max-width:450px) {
    .top_right h2{
        font-size: 16px;
    }
    .top_right > p, .recruit a{
        font-size: 14px;
    }
    .top_left h1{
        font-size: 80px;
    }

    #section_2 h2{
        margin: 40px 0 20px;
        font-size: 18px;
    }
    .grid-item > div{
        margin: 5px 15px;
    }

    .grid-item .title{
        font-size: 16px;
    }
    .grid-item .content{
        width: 70%;
        font-size: 12px;
    }
}/* 450 */