/* Slideshow container */

.slideshow-container {
    max-height: 700px;
    position: relative;
    margin: auto;
}


/* Hide the images by default */

.mySlides {
    display: none;
    min-height: 600px;
    background-position: center;
    background-size: cover;
}


/* Next & previous buttons */

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}


/* Position the "next button" to the right */

.next {
    right: 0;
    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.3);
}


/* The dots/bullets/indicators */

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #F7A331;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dotactive,
.dot:hover {
    background-color: #B33A2B;
}


/* Fading animation */

.slidefade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

.textover {
    min-height: 600px;
    background-color: rgba(247, 163, 49, 0.9);
    margin: 0 0 0 auto;
    padding: 1em;
}

.textover p,
.textover li {
    color: #ffffff;
    font-size: 17px;
}

.textover hr {
    border-color: #B33A2B;
}

.textover h4 span {
    font-size: 16px;
    background-color: #ffffff;
    /* color: #F7A331; */
    color: #B33A2B;
    border-radius: 3px;
    padding: 0 .3rem .3rem .3rem;
    white-space: nowrap;
}

.textover .redbullet-ul {
    padding-left: 1em;
}

@media (max-width: 768px) {
    .textover {
        min-height: 240px;
        position: absolute;
        bottom: 0;
    }
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}