/* --------------------------------------
  Carousel
  -------------------------------------- */
.slide {
	height: 100vh;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}	

.owl-theme .owl-nav {
	width: auto;
	border: 2px solid #e3e3e3;
	bottom: 0;
	right: 0;
}

.owl-dots {
	display: none !important;
}

.owl-prev .fa {
	font-size: 40px !important;
	color: #e3e3e3;
	transition-duration: 0.3s;
}

.owl-prev .fa:hover,.owl-next .fa:hover {
	color: red;
}

.owl-next .fa {
	font-size: 40px !important;
	color: #e3e3e3;
	transition-duration: 0.3s;
}

.owl-carousel .content {
	position: absolute;
	top: 40%;
	width: 100%;
	text-align: right;
	padding-right: 45px;
}

.owl-carousel .content h2 {
	font-size: 25px;
	margin-top: 0px;
	margin-bottom: 5px;
	font-weight: 600;
	color: #fff;
}

.owl-carousel .content button {
	padding: 10px 30px;
	background: #fff;
	color: red;
	font-weight: 600;
	border: none;
	margin-top: 10px;
	transition-duration: 0.5s;
}

.owl-carousel .content button:hover, .owl-carousel .content button:focus {
	background: red;
	color: #fff;
}

@media(max-width: 468px) {
	.slide {
		height: 90.5vh;
	}

	.owl-carousel .content {
		text-align: left;
		padding-right: 0px;
		padding-left: 15px;
	}

	.owl-carousel .content h2 {
		font-size: 18px;
	}

	.owl-carousel .content button {
		font-size: 12px;
	}
}



