.ae-slider {
	font-size: 0;
	position: relative;
	max-width: 760px;
}
.ae-slider__slide {
	border-radius: 30px;
	box-sizing: border-box;
    overflow: hidden;
	position: relative;
}
.ae-slider__link {
	bottom: 0;
	left: 0;
    position: absolute;
	right: 0;
	top: 0;
}

.ae-slider__arrows {
	bottom: 5px;
	left: 20%;
    pointer-events: none;
    position: absolute;
}
.ae-slider__arrow {
    height: 35px;
    opacity: .8;
    pointer-events: auto;
    position: relative;
    transition: .3s;
    width: 35px;
}
.ae-slider__arrow:hover {
    cursor: pointer;
    opacity: 1;
}
.ae-slider__arrow::before {
    background: transparent;
    border-left: 2px solid #FFF;
    border-top: 2px solid #FFF;
    content: '';
    height: 6px;
    left: 12px;
    position: absolute;
    top: 12px;
    width: 6px;
}
.ae-slider__prev::before {
	transform: rotate(-45deg);
}
.ae-slider__next::before {
	transform: rotate(135deg);
}

.ae-slider__dots {
	bottom: 5%;
    box-sizing: border-box;
	left: 50%;
    padding: 0;
    pointer-events: none;
    position: absolute;
    right: auto;
    text-align: left;
	transform: translateX(-50%);
}

.ae-slider__dots > li {
    display: inline-block;
    list-style: none;
    margin: 0 3px;
    pointer-events: auto;
}
.ae-slider__dots > li > button {
    background-color: var(--blue-color-1);
	border: 0;
    border-radius: 20px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, .3);
    cursor: pointer;
    display: inline-block;
    height: 5px;
    outline: none;
    padding: 0;
    transition: .1s linear;
    width: 18px;
    opacity: 0.5;
}
.ae-slider__dots > li.slick-active > button,
.ae-slider__dots > li > button:hover {
	background-color: #FFF;
	box-shadow: 0 0 2px 0 rgba(0, 0, 0, .5);
	opacity: 1;
}

/* DESKTOP first */

@media (max-width: 779px) {
	.ae-slider {
		width: 100%
	}
}

@media (max-width: 576px) {
	.ae-slider__slide {
		border-radius: 20px;
	}
}