.slideContainer {
    width: 100%;
    /* height: 600px; */

    overflow: hidden;
    position: relative;

    background-color: #ebebeb80;
}

.slide {
    width: 100%;
    /* height: 800px; */

    display: none;
}

.slide img{
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.containerDots {
    position: absolute;

    z-index: 55;

    bottom: 15px;

    display: flex;
    justify-content: center;

    width: 100%;
}

.dot {
    background-color: rgba(235, 235, 235, 0.507);

    width: 15px;
    height: 15px;

    border-radius: 50%;

    margin-left: 10px;
}

.dot:first {
    margin: 0;
}

.arrowContainer {
    position: absolute;

    z-index: 55;

    top: 0;

    display: flex;
    justify-content: space-between;

    width: 100%;
    height: 100%;

    padding: 0 100px;
}

.arrowContainer button {
    background-color: transparent;
    color: #ffffffbb;

    font-size: 40px;
}

.containerButtonsSlide {
    display: none;
}

.slideContainer:hover>.containerButtonsSlide {
    display: block;
}

@media(max-width: 800px) {
    .arrowContainer {
        padding: 0 20px;
    }

}

@media(max-width: 1366px) {
    .slideContainer {
        height: 500px;
    }

    .slide {
        height: 500px;
    }

}

@keyframes openSlide {
    from {
        left: 100%;
    }

    to {
        left: 0;
    }
}

@keyframes closeSlide {
    from {
        right: 0;
    }

    to {
        right: 100%;
    }
}