body {
    margin: 0;
}
*{
	box-sizing: border-box;
}
.bodywrapp{
	margin:0;
	font-family: sans-serif;
	overflow-x: hidden;
}

.classSection{
	height: calc(100vh - 96px);
	overflow:hidden;
	position: relative;
}

.classSection .slideItem{
	position: absolute;
	left:0;
	top:0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	z-index:1; 
	display:none;
	padding:0 15px;
	animation: slide 2s ease;
}
.classSection .slideItem.active{
	display: flex;
}
@keyframes slide{
	0%{
		transform:scale(1.1);
	}
	100%{
		transform: scale(1);
	}
}
.container-rw{
    max-width: 1170px;
    margin:0 auto;
    display: flex;
    align-items: flex-end;
    padding-bottom: 50px;
    text-align: center;
}

.classSection .container-rw{
	 flex-grow: 1;
}
.classSection .caption{
	width:100%;
}
.classSection .caption h1{
	font-size:42px;
	color:#000000;
	margin:0;
	
}
.classSection .slideItem.active .caption h1{
	opacity:0;
	animation: captionText .5s ease forwards;
	animation-delay:1s;
}
.classSection .caption p{
	font-size: 18px;
	margin:15px 0 30px;
	color:#222222;
}
.classSection .slideItem.active .caption p{
	opacity:0;
	animation: captionText .5s ease forwards;
	animation-delay:1.2s;
}
.classSection .caption a{
	display: inline-block;
	padding:10px 30px;
	background-color: transparent;
	text-decoration: none;
	color:#ffffff;
	font-family: ManropeLight;
}

.classSection .slideItem.active .caption a{
	opacity:0;
	animation: captionText .5s ease forwards;
	animation-delay:1.4s;
}

@keyframes captionText{
	0%{
		opacity:0; transform: translateX(-100px);
	}
	100%{
	 opacity:1; transform: translateX(0px);	
	}
}

.classSection .controls .prev,
.classSection .controls .next{
	position: absolute;
	z-index:2;
	top:50%;
	height:40px;
	width: 40px;
	margin-top: -20px;
	color:#ffffff;
	background-color: #df2e29;
	text-align: center;
	line-height: 40px;
	font-size:20px;
	cursor:pointer;
	transition: all .5s ease;
}
.classSection .controls .prev:hover,
.classSection .controls .next:hover{
	background-color: #000000;
}
.classSection .controls .prev{
 left:0;
}
.classSection .controls .next{
 right:0;
}

.classSection .indicator{
	position: absolute;
	left:50%;
	bottom:30px;
	z-index: 2;
    transform: translateX(-50%);
    display: none;
}

.classSection .indicator div{
	display: inline-block;
	width:25px;
	height: 25px;
	color:#ffffff;
	background-color: #df2e29;
	border-radius:50%;
	text-align: center;
	line-height: 25px;
	margin:0 3px;
}

.classSection .indicator div.active{
 background-color: #000;
}


/*responsive*/
@media(max-width: 767px){
	/* .controls{
		display: none;
	} */
	.classSection {
	height: 350px !important;
	}
}

