/* main-slider */

#main-slider {

	position: relative;
	margin-bottom: 25px;
}

.m-slide {
	background: transparent;
}

.m-slide-item {

	display: block;
	width: 100%;
	height: 400px;
	background-color: #000;
	border-radius: 6px;
	overflow: hidden;
}

.m-slide-image {

	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.m-slider-content {

	position: relative;
}

.m-slider-content:before {

	content: "";
	background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0, rgba(0, 0, 0, 0) 50%);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	border-radius: 6px;
}

.m-slider-title {

	position: absolute;
	top: 44px;
	left: 30px;
	font-size: 80px;
	font-style: italic;
	font-weight: 300;
	color: #fff;
	text-transform: uppercase;
	max-width: 480px;
	z-index: 1;
}

.m-slider-title span {

	font-weight: 500;
}

.m-slider-dots {

	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 60px;
}

.m-slider-dot {

	border-radius: 6px;
	width: 60px;
	height: 5px;
	background-color: #F5F5F5;
	margin: 0px 15.5px;
	cursor: pointer;
}

.slick-active .m-slider-dot {

	background-color: #CCCCCC;
}

.m-slider-logo {

	position: absolute;
	bottom: 90px;
	left: 30px;
	z-index: 1;
}

/* end main-slider*/