* {
    box-sizing: border-box;
}

body {
    margin: 0;
}

/* Position the image container (needed to position the left and right arrows) */
.olt-slider-container {
    position: relative;
}

/* Hide the images by default */
/* .mySlides {
    display: none;
} */
.olt-slider-mySlides{
    /* width: 100%; */
    background-color: #cccccc; /* Used if the image is unavailable */
    height: 560px; /* You must set a specified height */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    /* background-image: url('images/AGCO1.jpg'); */
}

/* Add a pointer when hovering over the thumbnail images */
.olt-slider-cursor {
    cursor: pointer;
}

/* Next & previous buttons */
.olt-slider-prev,
.olt-slider-next {
    cursor: pointer;
    position: absolute;
    top: 40%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 40px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;

}

/* Position the "next button" to the right */
.olt-slider-next {
    right: 40px;
    transition: right 0.3s ease;

    /* border-radius: 3px 0 0 3px; */
}
.olt-slider-prev {
    left: 40px;
    transition: left 0.3s ease;
}

/* On hover, add a black background color with a little bit see-through */
.olt-slider-prev:hover
{
    background:rgb(68, 84, 107, 1);
    left: 60px;
    color:white;
}
.olt-slider-next:hover
 {
    background:rgb(68, 84, 107, 1);
    right: 60px;
    color: white;
}



/* Number text (1/3 etc) */
.olt-slider-numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}


/* Container for image text */
.olt-slider-caption-container {
    text-align: center;
    background-color: #222;
    padding: 2px 16px;
    color: white;
}

.olt-slider-row:after {
    content: "";
    display: table;
    clear: both;
}

/* Six columns side by side */
.olt-slider-column {
    float: left;
    width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.olt-slider-demo {
    opacity: 0.6;
}

.olt-slider-active,
.olt-slider-demo:hover {
    opacity: 1;
}


.olt-slider-overlay {
    position: absolute;
    bottom: 0;
    left: 0%;
    width:100%;
    height: 170px;
    display: block;
    /* transform: translate(-50%, -50%); */
    background:rgb(68, 84, 107, .8);
    opacity: 100%;
    padding: 25px;
    text-align: center;
    filter: contrast(100%) brightness(100%);
    z-index: 0;
}

.olt-slider-overlay-inner{
    position: absolute;
    top:50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
}
.olt-slider-caption-title {
    color: white;
    font-size: 28px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    display: block;

   
}

.olt-slider-caption-description {
    color: white;
    font:bolder;
    font-size: 16px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.olt-slider-overlay a{
    color:white;
}

.olt-slider-overlay p{
    margin-bottom: 0;
    padding-bottom: 0px;
}

.olt-slider-btn {
    background-color: white;
    border: none;
    color: black;
    padding: 12px 16px;
    font-size: 16px;
    cursor: pointer;
  }
  
/* Play pause button */
.olt-slider-playPause {
    color: #222;
    font-size: 24px;
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 200;
    width: 60px;
    height: 52px;

}