#prev-btn {
    margin-right: 15px;
}

.new-container {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}


.new-container::-webkit-scrollbar {
    display: none;
}

.new-card:hover img {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.new-card img {
    transition: transform 0.3s ease;
}

.content {
    overflow: hidden;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    line-clamp: 3;
    -webkit-line-clamp: 3;
}

.mission-img {
    width: 90%;
    margin: 0 auto;
    border-radius: 10px;
}

@media screen and (min-width : 767px) {
    .swiper {
        width: 100%;
        height: 400px;
    }

    .swiper-slide {
        width: 100%;
        height: 400px;
        position: relative;
    }

    .swiper-slide img {
        width: 100%;
        height: 400px;
    }

    .swiper-text {
        position: absolute;
        left: 50%;
        top: 0;
        width: 100%;
        height: 100%;
        transform: translateX(-50%);
    }

}

@media screen and (max-width : 767px) {
    .swiper {
        width: 100%;
        height: 200px;
    }

    .swiper-slide {
        width: 100%;
        height: 200px;

        position: relative;
    }

    .swiper-slide img {
        width: 100%;
        height: 200px;
    }

    .swiper-text {
        position: absolute;
        left: 50%;
        top: 0;
        width: 100%;
        height: 100%;
        transform: translateX(-50%);
    }

}