.ae-slider {
    position: relative;
}
.ae-slider .slick-slide {
	font-size: 0;
}
.ae-slider__slide {
    overflow: hidden;
    position: relative;
}
.ae-slider__image {
	display: block;
	width: 100%;
}
.ae-slider__link {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.ae-slider__arrows {
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.ae-slider__arrow {
    background-color: var(--color-gray-2);
	border: none;
	cursor: pointer;
    height: 25px;
    opacity: .7;
    outline: none;
	padding: 0;
    pointer-events: auto;
    position: relative;
    transition: .3s;
    width: 25px;
}
.ae-slider__arrow:hover {
    opacity: 1;
}
.ae-slider__arrow:focus {
    box-shadow: 0 0 1px 2px #000, 0 0 1px 3px #FFF;
}
.ae-slider__arrow svg {
	fill: #FFF;
	height: 7px;
	width: 15px;
}
.ae-slider__prev {
    float: left;
    left: 0;
	transform: rotate(180deg);
}
.ae-slider__next {
    float: right;
    right: 0;
}

.ae-slider__dots {
    bottom: 10px;
    box-sizing: border-box;
    font-size: 0;
    left: 0;
    padding: 0 10px;
    pointer-events: none;
    position: absolute;
    right: 0;
    text-align: center;
}
.ae-slider__dots > li {
    display: inline-block;
    list-style: none;
    margin: 0 3px;
    pointer-events: auto;
}
.ae-slider__dots > li > button {
    background-color: #FFF;
	border: 0;
    cursor: pointer;
    display: block;
    font-size: 0;
    height: 8px;
    outline: none;
    padding: 0;
    transition: .1s linear;
    width: 8px;
}
.ae-slider__dots > li.slick-active > button,
.ae-slider__dots > li > button:hover {
    background-color: #000;
}

/*MOBILE first*/
@media (min-width: 1121px) {
	.ae-slider__slide {
		height: 700px;
	}
	.ae-slider__image {
		height: 100%;
		object-fit: cover;
		object-position: 50%;
	}

	.ae-slider__arrow {
		height: 40px;
		width: 40px;
	}
	.ae-slider__arrow svg {
		height: 8px;
		width: 18px;
	}

	.ae-slider__dots > li > button {
		height: 10px;
		outline: none;
		padding: 0;
		transition: .1s linear;
		width: 10px;
	}
}