.partners-section {
	padding: 44px 0 47px;
	position: relative;
}

@media (min-width: 768px) {
	.partners-section {
		padding: 62px 0 66px;
	}
}

.partners-section-bg {
	background: url('img/partners-section-bg.jpg') center no-repeat;
	background-size: cover;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.partners-section-bg::before {
	background: linear-gradient(0deg, rgba(9, 10, 26, 0.75) 0%, rgba(9, 10, 26, 0.75) 100%);
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.partners-container {
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 40px;
	max-width: 100%;
	padding: 0 16px;
}

@media (min-width: 992px) {
	.partners-container {
		margin-bottom: 65px;
		max-width: 1440px;
		padding: 0 77px;
	}
}

.partners-title {
	color: #ffffff;
	font-size: 34px;
	font-weight: 400;
	letter-spacing: -1px;
	line-height: 40px;
	text-align: center;
}

@media (min-width: 768px) {
	.partners-title {
		font-size: 53px;
		line-height: 53px;
	}
}

.partners-title-gradient {
	background: linear-gradient(to right, #5560f6, #da99fd);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

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

@media (min-width: 992px) {
	.slider-container {
		max-width: 1285px;
	}
}

.slider {
	align-items: flex-start;
	display: flex;
	transition: transform 0.75s ease-in-out;
	width: 100%;
}

.slide {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	flex-shrink: 0;
}

.slide .slide-img-wrapper {
	align-items: center;
	background-color: #ecf1f9;
	border-radius: 6px;
	display: flex;
	height: 87px;
	justify-content: center;
	margin: 7.5px;
	transition: all 0.3s ease;
	width: 253px;
}

.slide-img-wrapper:hover {
    background-color: #ffffff;
}

.slide .slide-img-wrapper img {
	filter: grayscale(100%);
	transition: filter 0.3s ease;
}
  
.slide .slide-img-wrapper:hover img {
	filter: grayscale(0%);
}

.dots {
	display: flex;
	justify-content: center;
	margin-top: 42px;
}

.dot {
	cursor: pointer;
	background: rgba(217, 217, 217, 0.46);
	border-radius: 3px;
	height: 13px;
	margin: 6px;
	position: relative;
	width: 12px;
}

.dot.active {
	background: transparent;
}

.dot.active:before {
	background: url('img/bullet-active-border.png') center no-repeat;
	background-size: cover;
	content: "";
	height: 21px;
	left: -4px;
	position: absolute;
	top: -4px;
	width: 20px;
	z-index: -1;
}

.dot.active:after {
	background: url('img/bullet-active.png') center no-repeat;
	background-size: cover;
	content: "";
	height: 13px;
	left: 0px;
	position: absolute;
	top: 0px;
	width: 12px;
	z-index: -1;
}
