{#---------GENERAL STYLES---------#}
.image-slider {
	position: relative;
	z-index: 2;
}

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


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

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

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


{#---------ARROW---------#}
.swiper-control-prev,
.swiper-control-next {
	cursor: pointer;
	position: absolute;
}

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

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

.image-slider .swiper-button-disabled svg path {
	fill: #E7DCD6 !important;
}

@media only screen and (max-width: 1040px) {
	.swiper-control-prev {
		left: -35px;
	}

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

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

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

	.image-slider-arrow svg {
		width: 25px;
	}
}


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