.slides {
    padding: 0;
    width: 90%;
    height: 500px;
    display: block;
    margin: 0 auto;
    position: relative;
}
.slides * {
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}
.slides input { display: none; }
.slide-container { display: block; }
.slide {
    top: 0;
    opacity: 0;
    width: 100%;
    height: 500px;
    display: block;
    position: absolute;
    transform: scale(1);
}

.slide img {
    width: 100%;
    height: 100%;
}
        .slide p{ bottom:30px;
            position:absolute;
    left: 25px;
    font-size: 18px;
    color: #000;
    font-weight: bold;
    text-align: justify;}

input:checked + .slide-container  .slide {
    opacity: 1;
    transform: scale(1);
    transition:all .25s ease;
}
input:checked + .slide-container .nav label { display: block; }
.nav-dots {
	width: 100%;
	bottom: 9px;
    height: 20px;
    left: 20px;
	display: block;
	position: absolute;
	text-align: left;

}

.nav-dots .nav-dot {
	top: -5px;
	width: 20px;
	height: 20px;
	margin: 0 4px;
	position: relative;
	border-radius: 100%;
	display: inline-block;
	background-color: rgba(0, 0, 0, 0.6);
}

.nav-dots .nav-dot:hover {
	cursor: pointer;


}
#img-dot-1{
    background-color: #b82934;

}
#img-dot-2{
    background-color: #7d7968
}
#img-dot-3{
    background-color: #b9bec4
}
#img-dot-4{
    background-color: #7d7d7d
}
#img-dot-5{
    background-color: #2e2e2e
}
#img-dot-6{
    background-color: #564d4a
}
input#img-1:checked ~ .nav-dots label#img-dot-1,
input#img-2:checked ~ .nav-dots label#img-dot-2,
input#img-3:checked ~ .nav-dots label#img-dot-3,
input#img-4:checked ~ .nav-dots label#img-dot-4,
input#img-5:checked ~ .nav-dots label#img-dot-5,
input#img-6:checked ~ .nav-dots label#img-dot-6 {
  border: 3px solid #FFF;
  box-shadow: 0 2px #888;

}