.slider-container {
	position: relative;
	max-width: 100%;
	overflow: hidden;
}

.slide.active::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--filter-color, rgba(0, 0, 0, 0.5));
	opacity: var(--filter-opacity, 0.5);
	z-index: 1;
}
  
.slider {
	display: flex;
	transition: transform 0.5s ease-in-out;
	height: 260px;
}

.slide {
	min-width: 100%;
	transition: opacity 1s ease-in-out;
	opacity: 0;
	display: none;
	margin: 0;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 25px;
	align-items: center;
	background-image: url('../../img/coverimg.jpg');
	height: 100%;
	width: 100%;
	justify-content: center;
}

.slide h2 {
	color: rgb(255, 255, 255);
	font-size: 19px;
	margin: 0;
	margin-bottom: 10px;
}

.slide.active {
	opacity: 1;
	display: flex;
}

.slide__content {
	color: white;
	text-align: center;
}

.arrows {
	position: absolute;
	width: 100%;
	top: 50%;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	z-index: 10;
}

.arrow {
	cursor: pointer;
	font-size: 1.5rem;
	color: #bcbbbb;
	padding: 2px;
	border-radius: 50%;
}

.slide__desc {
	z-index: 10;
	color: white;
	text-align: center;
	margin-bottom: 15px;
}

.text-left .slide__content {
	text-align: left;
}

.text-left .slide__desc {
	text-align: left;
}

.text-left {
	background-color: #454e68;
	position: relative;
	justify-content: left;
}

.slide__img-right {
	background-size: contain;
	width: 250px;
	height: auto;
	background-repeat: no-repeat;
	background-position: center;
	right: 6%;
	position: absolute;
	border-radius: 25px;
	height: 85%;
	border: 1px solid #ccc;
	background-color: white;
	display: none;
}

.text-left .slide__content,
.text-left h2,
.text-left .slide__desc,
.text-left .arrow,
.text-left .button--cover {
	color: #0C1737!important;
}

.arrows__img {
	width: 17px;
}

@media (min-width: 600px) {
	.slide h2 {
		font-size: 26px;
	}

	.text-left .slide__content .slide__content-inner {
		max-width: 330px;
	}

	.slide__img-right {
		display: block;
	}
}

@media (min-width: 768px) {
	.text-left .slide__content .slide__content-inner {
    	max-width: 450px;
    }

	.slider {
		height: 300px;
	}
}

@media (min-width: 1024px) {
	.slide {
		padding: 40px 0;
	}

	.slide h2 {
		font-size: 38px;
	}

	.slider {
		height: 350px;
	}

	.slide__desc {
		margin-bottom: 20px;
	}

	.text-left .slide__content .slide__content-inner {
    	max-width: 600px;
    }
	
	.text-left .slide__content {
		width: 1280px;
		padding: 0 25px;
		margin: auto;
	}

	.slide__img-right {
		width: 320px;
	}

	.arrows__img {
		width: 22px;
	}
}

@media (min-width: 1200px) {
	.slide h2 {
		margin-bottom: 30px;
	}

	.slide__desc {
		margin-bottom: 40px;
		font-size: 18px;
	}

	.text-left .slide__content .slide__content-inner {
    	max-width: 700px;
    }

	.slider {
		height: 400px;
	}
	
	.slide__img-right {
		width: 390px;
	}
}

@media (min-width: 1600px) {
	.slide h2 {
		font-size: 44px;
	}

	.text-left .slide__content {
		margin: auto;
		width: 1490px;
		max-width: 1490px;
		padding: 0 25px;
	}

	.slider {
		height: 500px;
	}

	.text-left .slide__content .slide__content-inner {
    	max-width: 900px;
    }

	.slide__img-right {
		width: 450px;
	}

	.slide__desc {
		font-size: 18px;
	}
}

@media (min-width: 1900px) {
	.slider {
		height: 600px;
	}

	.slide h2 {
		font-size: 60px;
	}

	.slide__img-right {
		width: 550px;
	}

	.text-left .slide__content .slide__content-inner {
    	max-width: 1000px;
    }

	.slide__desc {
		font-size: 20px;
	}
}
  
  
