{#---------GENERAL STYLES---------#}
.image-slider {
	position: relative;
	z-index: 2;
	max-width: 1210px;
	margin: 0 auto;
	background: #FFFFFF;
}

.image-slider-wrapper {
	box-shadow: 0 0 20px rgba(0,0,0,.2);
	padding: 0 40px;
}

.image-slider .swiper-pagination {
	position: static;
}

.swiper-control-next svg {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.swiper-slide {
	padding: 40px 10px;
	position: relative;
	text-decoration: none;
}

.swiper-slide img {
	transition: transform 200ms linear;
}

.swiper-slide:hover img {
	transform: scale(1.1);
}


.swiper-slide:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 40px; /* Adjust this value to set the distance from the top */
	bottom: 40px; /* Adjust this value to set the distance from the bottom */
	right: 0;
	width: 1px;
}

@media (max-width: 768px) {
	.swiper-slide:not(:last-child)::after {
		width: 0px;
	}
}

.swiper-slide:hover a,
.swiper-slide:focus a {
	text-decoration: none;
}

.swiper-slide img {
	display: inline-block;
	vertical-align: top;
	margin-bottom: 5px;
	max-width: 120px;
	transition: transform 0.4s linear;
}

{#-------LOGO IMAGE--------#}
.swiper-slide{
	align-self: center;
}


{#---------ARROW---------#}
.swiper-control-prev,
.swiper-control-next {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	background-color: #eeb11e;
	cursor: pointer;
	display: grid;
	place-items: center;
	height: 48px;
	width: 46px;
	position: absolute;
	transform: translateY(-50%);
}

.swiper-control-prev:hover,
.swiper-control-next:hover {
	background-color: #607d8b;
	user-select: none;
}

.swiper-control-prev span,
.swiper-control-next span {
	display: block;
	height: 17px;
}

.swiper-control-prev {
	left: 0;
	z-index: 1;
}

.swiper-control-next {
	right: 0;
	z-index: 1;
}

@media (max-width: 767px) {
	.swiper-control-prev {
		left: 20px;
	}

	.swiper-control-next {
		right: 20px;
	}
}

{#---------ARROW IMAGE---------#}
.swiper-control-prev img{
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

{# ----- SLIDE LINK ----- #}
.swiper-slide__link {
	display: block;
}