.slider {
width: 100%;
max-width: 1440px;
overflow: hidden;
position: relative;
max-height: 500px;
margin: 20px auto 0 auto; }
.slides-wrapper {
position: relative;
}
.slide {
width: 100%;
display: none; position: absolute; top: 0;
left: 0;
}
.slide img {
width: 100%;
height: auto;
max-height: 500px; display: block;
}
.slide.active {
display: block; position: relative;
}
.caption {
position: absolute;
bottom: 50%;
right: 120px;
color: black;
font-size: 28px;
max-width: 500px;
text-wrap: wrap; padding: 10px;
}
.slider-navigation .prev,
.slider-navigation .next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
padding: 16px;
margin-top: -22px;
color: white;
font-weight: bold;
font-size: 22px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
user-select: none;
}
.slider-navigation .prev {
left: 0;
border-radius: 3px 0 0 3px;
color: #000;
}
.slider-navigation .next {
right: 0;
border-radius: 0 3px 3px 0;
color: #000;
}
.slider-navigation .prev:hover,
.slider-navigation .next:hover {
color: #FFF;
background-color: rgba(0,0,0,0.8);
}
.slider-dots {
text-align: center;
position: absolute;
bottom: 10px;
width: 100%;
}
.slider-dots .dot {
cursor: pointer;
height: 12px;
width: 12px;
margin: 0 2px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}
.slider-dots .dot.active,
.slider-dots .dot:hover {
background-color: #717171;
}