.section-slider .hero-img img {
    width: 100%;
}

.section-slider .sw-navigation.sw-between .swiper-nav-next {
    right: 2rem;
}

.section-slider .sw-navigation.sw-between .swiper-nav-prev {
    left: 2rem;
}

.section-slider .sw-navigation .swiper-pagination {
    bottom: 2rem;
}

/* type2 video */
.video--wrap {
    position: relative;
}

.video__inner {
    position: relative;
    width: 100%;
}

.video__poster {
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 2;
}

.video__abs {
    position: absolute;
    inset: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    z-index: 1;
}

.content--video-btn {
    position: absolute;
    color: #fff;
    font-size: 3.75rem;
    top: 50%;
    left: 50%;
    background-color: transparent;
    border: none;
    transition: opacity 0.3s ease;
    z-index: 3;
    transform: translate(-50%, -50%);
    transition: 0.3s;
}

.content--video-btn:hover {
    color: var(--color2);
}

.video--action.play .video__poster {
    opacity: 0;
    visibility: hidden;
}

.video--action.play .content--video-btn {
    opacity: 0;
    visibility: hidden;
}

.video--action.play .video__abs {
    opacity: 1;
    z-index: 2;
}

.video--action:not(.play) .video__poster {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}