
.main {
    padding-top: 676px;
}
.section1 {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 0;
}
.section1 .section1-wrap {
    position: relative;
    height: 676px;
}
.section1 .section1-wrap .text-wrap {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.section1 .section1-wrap .text-wrap > h1 {
    font-size: 50px;
    font-weight: 700;
    color: #fff;

}
.section1 .section1-wrap .text-wrap > p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    padding-top: 20px;
}
.section1 .section1-wrap .section1-background-image {
    background-image: url('../../image/news/section1-bg.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
}
.section1 .section1-wrap .section1-opacity {
    /* background-color: #073557; */
    opacity: 0.3;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Section2 */
.section2 {position: relative;z-index: 2; background-color: #fff;}
.section2 .section2-wrap {padding-top: 120px;padding-bottom: 400px;}
.section2 .section2-wrap .text-wrap {text-align: center;}
.section2 .section2-wrap .text-wrap > h1 {font-size: 30px;font-weight: 700;color: #000;}

.section2 .section2-wrap .content {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 58px;
}
.section2 .section2-wrap .content .item {
    border: 1px solid #dedede;
    transition: 0.3s;
    background-color: #fff;
    cursor: pointer;
}
.section2 .section2-wrap .content .item:hover {background-color: #222;transition: 0.3s;}
.section2 .section2-wrap .content .item .text-wrap {color: #000;padding: 28px; padding-bottom: 52px;text-align: left;}
.section2 .section2-wrap .content .item:hover .text-wrap {color: #fff; transition: 0.3s;}
.section2 .section2-wrap .content .item .text-wrap p:nth-child(1) {font-size: 20px;font-weight: 700;}
.section2 .section2-wrap .content .item .text-wrap p:nth-child(2) {font-size: 14px;font-weight: 500;padding-top: 60px;}
/* .section2 .section2-wrap .content .item .img-wrap {width: 428px;height: 240px;} */
.section2 .section2-wrap .content .item .img-wrap img {width: 100%;height: auto;}





/* Mobile */
@media all and (max-width: 1024px) { 
    .main {
        padding-top: 300px;
    }
    .section1 .section1-wrap {height: 300px;}
    .section1 .section1-wrap .section1-background-image {background-image: url('../../image/news/m-news-top-img.jpg');}
    .section1 .section1-wrap .text-wrap {left: 0;transform: translate(0, -50%);padding-left: 24px;}
    .section1 .section1-wrap .text-wrap > h1 {font-size: 30px;}
    .section1 .section1-wrap .text-wrap > p {display: none;}

    .section2 {}
    .section2 .section2-wrap {padding-top: 70px;padding-bottom: 140px;padding-left: 24px;padding-right: 24px;}
    .section2 .section2-wrap .text-wrap {text-align: left;}
    .section2 .section2-wrap .text-wrap > h1 {font-size: 24px;}
    .section2 .section2-wrap .content {
        padding-top: 40px;
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 40px;
    }
    .section2 .section2-wrap .content .item .text-wrap {
        padding: 32px;
        padding-bottom: 60px;
    }

    .section2 .section2-wrap .content .item .text-wrap p:nth-child(2) {padding-top: 88px;}
}