.slideshow-block {
    background: #fff;
    padding: 1px 0px 1px 0px;
}

/* SLIDESHOW CSS */

.slide-info {
    box-sizing: border-box
}

.mySlides {
    display: none;
}

/* Slideshow container */
.slideshow-container {
    position: relative;
    margin: auto;
}

.contain-slide {
    background: #ddd;
    color: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    font-family: 'Segoe UI', sans-serif;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 70%;
    margin: 64px auto;
    border-radius: 12px;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

/* Slideshow Text Info */

.slide-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: justify;
    height: 100%;
    z-index: 1;
    padding: 20px 30px 20px 30px;
}

.slide-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 500px;
    width: 100%;
    z-index: 1;
}

.slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media screen and (max-width:853px) {
    .contain-slide {
        grid-template-columns: 1fr;
    }
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    text-shadow: 0px 0px 10px #000;
}

.prev {
    left: 50;
}

/* Position the "next button" to the right */
.next {
    right: 50;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 10 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot-background {
    background: #fff;
    padding: 10px;
}

.active,
.dot:hover {
    background-color: #717171;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {

    .prev,
    .next,
    .text {
        font-size: 11px
    }
}