@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;
}

/* 갤러리 박스 */

/* .gallery_box {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 140px 100px;
    margin-top: 100px;
}

.gallery_box li {
    width: 26%;
    flex-grow: 1;
    text-align: center;
    position: relative;
}

.gallery_box li h3 {
    font-weight: normal;
}

.gallery_box li .pagi {
    bottom: -23px;
    position: absolute;
}

.gallery_box li .text {
    margin-top: 35px;
}

.gallery_box li .text .date {
    font-size: 16px;
    color: #777;
    margin-bottom: 10px;
}

.gallery_box li .text h3 {
    font-size: 20px;
    font-weight: 500;
} */

.centerbox {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery_section h1 {
    text-align: center;
    margin: 0 0 28px;
    font-size: 32px;
    position: relative;
    margin-top: 150px;
    margin-bottom: 100px;
}

.gallery_section h1::after {
    content: "";
    display: block;
    width: 120px;
    height: 2px;
    margin: 12px auto 0;
    background: #093E6D;
    opacity: .35;
}

.gallery_box {
    display: grid;
    gap: 48px 48px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
    justify-content: center;
    padding: 0;
    list-style: none;
}

.gallery_box li {
    text-align: center;
}

.gallery_box .thumb {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
}

.gallery_box .thumb .swiper,
.gallery_box .thumb .swiper-wrapper,
.gallery_box .thumb .swiper-slide {
    width: 100%;
    height: 100%;
}

.gallery_box .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.gallery_box .text {
    margin-top: 12px;
}

.gallery_box .text .date {
    font-size: 15px;
    color: #777;
    margin-top: 30px;
    margin-bottom: 6px;
}

.gallery_box .text h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}
.swiper-pagination {bottom: auto !important;}
.swiper-pagination-bullet {
  background: #071C38 !important;
  opacity: 0.3 !important;
}

.swiper-pagination-bullet-active {
  background: #071C38 !important;
  opacity: 1 !important;
}

/* 스와이퍼 */

.swiper {
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}