* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}
.tri-qslider-title{
    text-transform: uppercase;
    font-size: 36px;
    font-weight: bold;
}

/* Hide the images by default */
.mySlides {
    display: none;
}
.tri-qslider-img{
    height: 365px;
    padding-bottom: 15px;
}
.tri-qslider-button-min{
    background-color: #5EBABC;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 45%;
    margin-top: -22px;
    padding: 40px;
    color: black;
    font-weight: bold;
    font-size: 30px;
    min-width: 30px;
    line-height: 30px;
    background-color: #d2d5d8;
    transition: 0.6s ease;
    border-radius: 40px;
    user-select: none;
}
.prev{
    left:2%;
}

/* Position the "next button" to the right */
.next {
    right: 6%;
}
.tri-qslider-result{
    padding-top: 25px;
    font-size: 22px;
    display: block;
    visibility: hidden;
}



/* 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);
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}