@charset "UTF-8";
@import url(font.css);

/* 비주얼 */

#visual {
    position: relative;
    width: 100%;
}

#visual img {
    width: 100%;
    display: block;
}

#visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(7, 28, 56, 0.7);
}

#visual .text_box {
    position: absolute;
    width: 100%;
    display: block;
    align-items: center;
    text-align: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#visual .text_box p {
    font-size: 50px;
    color: #fff;
    font-weight: 600;
}

/* 섹션1 */

#section_box {
    display: flex;
    justify-content: center;
}

#section_box .section1 {
    width: 1400px;
}

#section_box h1 {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 150px;
    margin-bottom: 100px;
}

#section_box h1::before {
    content: "";
    position: absolute;
    opacity: 30%;
    margin-top: 52px;
    border-bottom: 2px solid #093E6D;
    width: 125px;
}

#section_box .section1 .text_box {
    width: 1400px;
}

#section_box .section1 .text_box .title {
    margin-bottom: 50px;
    line-height: 38px;
}

#section_box .section1 .text_box .title .big_tit {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: -5px;
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
}

/* #section_box .section1 .text_box .title .img_box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 90px;
} */

#section_box .section1 .text_box .small_tit {
    font-size: 22px;
    line-height: 35px;
}

#section_box .list_box {
    display: flex;
    justify-content: center;
    background: #000;
    width: 110px;
    height: 45px;
    color: #fff;
    margin: 0 auto;
    margin-top: 80px;
}

#section_box .list_box a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    flex-grow: 1;
    font-size: 18px;
}


