/* CSS Document */




.slider2 {
  width: 90%;
  max-width: 800px;
  height: 700px;
  position: relative;
  overflow: hidden;  
}

.slide2 {
  width: 100%;
  max-width: 800px;
  height: 700px;
  position: absolute;
  transition: all 0.5s;
}
.slide2:first-of-type {
  z-index: 2;
}


.slide2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn2 {
	position: absolute;
	width: 40px;
	height: 40px;
	border: none;
	z-index: 10;
	cursor: pointer;
	background-color: transparent;
	font-size: 30px;
	opacity: 0.8;
	color: white;
}

.btn2:active {
  transform: scale(1.1);
}

.btn-prev2 {
  top: 45%;
  left: 10px;
}

.btn-next2 {
  top: 45%;
  right: 10px;
}

@media screen and (max-width:680px){
	.slider2 {
	width: 100%;
	height: 400px;
	margin-bottom: 40px;
}

	.slide2 {
	width: 100%;
	height: 400px;
	transition: all 0.5s;
}
}
