.swiper-container {
    width: 100%;
    height: 500px;
}

.swiper-slide {
    position: relative;
}

.slide-text {
    position: absolute;
	font-size:30px;
    bottom: 50px;
    left: 10%;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1s ease-in-out both;
	font-family: Roboto;
}
.slide-text h2{
	margin: 8px 0px;
	font-family: Roboto;
}
.slide-text p{
	margin: 12px 0px;
	font-family: Roboto;
	font-size: 18px;
	font-weight: 500;
}
.sbbtn{
	background: transparent;
	color: #fff;
	border-radius: 50px;
	border: 1px solid #fff;
	font-size:16px;
	padding: 8px 16px;
	text-decoration: none;
	font-family: Roboto;
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
