.carousel-wrap {
    width: 100% !important;
    min-height: 100vh;
    position: absolute;
    top: 0;
}

.carousel-container {
    width: 100% !important;
    max-width: 100% !important;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    max-height: 100vh;
}

.carousel-full-height {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.carousel-full-height .arrow.up,
.carousel-full-height .arrow.down {
    display: none !important;
}

.arrow {
    position: absolute;
    width: 105px;
    height: 105px;
    opacity: 0.3;
    cursor: none;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../images/arrow.png");
    top: 50%;
    z-index: 9;
}

.arrow:hover {
    opacity: 1;
}

.arrow.arrow-left-screen {
    transform: translateY(-50%) rotate(-90deg);
    left: calc(3% - -10px);
}

.arrow.arrow-right-screen {
    transform: translateY(-50%) rotate(180deg);
    right: calc(3% - -10px);
}

.carousel-full-height label.arrow[data-direction="up"],
.carousel-full-height label.arrow[data-direction="down"] {
    display: none !important;
}

.slide {
    position: absolute;
    top: 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.slide1 {
    background-image: url("../images/bg_1.jpg");
}
.slide2 {
    background-image: url("../images/bg_2.jpg");
}
.slide3 {
    background-image: url("../images/bg_3.jpg");
}
.slide4 {
    background-image: url("../images/bg_4.jpg");
}

.content-slide img {
    width: 100%;
    height: 100%;
    position: absolute;
}

.content-slide .animate__animated {
    animation-delay: 0.5s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    opacity: 0;
}

.animate__desktop {
    display: block;
}
.animate__mobile {
    display: none;
}

@media screen and (max-width: 767px) {
    .animate__desktop {
        display: none;
    }
    .animate__mobile {
        display: block;
    }
    .slide1 {
        background-image: url("../images/bg_mb_1.jpg");
    }
    .slide2 {
        background-image: url("../images/bg_mb_2.jpg");
    }
    .slide3 {
        background-image: url("../images/bg_mb_3.jpg");
    }
    .slide4 {
        background-image: url("../images/bg_mb_4.jpg");
    }

    .arrow {
        width: 60px;
        height: 60px;
    }
    .carousel-wrap {
        position: fixed;
    }
}