.mySlides {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.mySlides > img {
    width: 100%;
    height: auto;
    max-height: 321px;
    object-fit: cover;
}

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    overflow: hidden;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: black;
    font-weight: bold;
    font-size: 25px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    opacity: 0.5;
    z-index: 2;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    opacity: 1;
    color: #FFA626;
}

/* Square indicators */
.square {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 20px 5px;
    background-color: #000;
	border-radius:25px;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.square:hover {
    background-color: #c99449!important;
}

.active.square {
    background-color: #c99449!important;
}

/* Fade animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: 0.4}
    to {opacity: 1}
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

.squareLocate{
    position: absolute;
    margin-top: -50px;
}

@media (max-width:1400px) {
    .square {
        height: 4px !important;
    }

    .squareLocate{
        position: absolute;
        margin-top: -40px;
    }
    
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {

    .prev,
    .next,
    .text {
        font-size: 11px;
        color: #FFA626 !important;
    }
}