/* CSS Document */

body {
	color:#fff;
	font-family: 'Montserrat';
	
}
.slick-slide {
	width:100%;
	height:100vh;
	background-size:cover;
}
.slide-overlay {
	position:absolute;
	top:0;
	width:100%;
	height:100vh;
	display: flex;
  align-items: center;
}
.overlay-box {
	display: flex;
	margin-bottom: 200px;
}
.logo-box img {
	width:280px;
}
.content-box {
	background-color:#000;
	padding:30px;
	display: flex;
  align-items: center;
	position: relative;
}
h1 {
	font-size: 55px;
  font-weight: 900;
  line-height: 1;
	margin-top:0;
}
h2 {
	font-size: 19px;
  margin: 0;
	line-height: 1.3;
}
.slick-arrow {
	top: auto;
  bottom: 30px;
}
.slick-arrow::before {
font-weight: 700;
	font-size: 36px;
	font-family: "Font Awesome 6 Pro";
}
.slick-prev {
 left:auto;
	right:50px;
}
.slick-next {
  right: 30px;
  
}
.slick-prev::before {
  content: '\f0d9';
	
}
.slick-next::before {
  content: '\f0da';
}

@media (max-width:991px) {
	.overlay-box {
		display:block;
		margin-bottom: 0;
	}
	.logo-box img {
  width: 100%;
	}
}
@media (max-width:500px) {
	h1 {
	font-size: 35px;
}
h2 {
	font-size: 15px;
}
}