.at-heroSlider {
    position: relative;
}

.at-heroSlider__slideContainer {
    display: flex;
}

.at-heroSlider__slideInner {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    min-height: 23em;
    background-repeat: no-repeat;
    background-size: cover;
}

.at-heroSlider__contentContainer {
    display: block;
    width: 100%;
    padding: 5vh 0;
}

.at-heroSlider__content {
    width: 80%;
    margin-inline: auto;
    padding: 1.5rem;
}

.at-heroSlider__title {
    margin: 0 0 .5rem;
}

.at-heroSlider__introduction {
    margin: 0;
}

.at-heroSlider__link {
    margin-top: 2rem;
}

.at-heroSlider__link::after {
    margin-left: .3em;
    font-family: 'fjell';
    content: '\27f6';
}

.at-heroSlider__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/**
 *  Slider controls
 */

.at-heroSlider__controlButton {
    position: absolute;
    top: 50%;
    z-index: 1;
    display: inline-block;
    height: 3rem;
    width: 3rem;
    margin-top: -1.5rem;
    padding: 0;
    cursor: pointer;
    font-size: 1.5rem;
    text-indent: -9999em;
}

.at-heroSlider__controlButton,
.at-heroSlider__controlButton:focus,
.at-heroSlider__controlButton:hover {
    border: none;
    background: none;
    box-shadow: none;
}

.at-heroSlider__controlButton::before {
    position: absolute;
    left: 0;
    right: 0;
    display: inline-block;
    font-family: "fjell";
    font-weight: 400;
    line-height: 3rem;
    text-indent: 0;
    opacity: .75;
    content: '';
}

.at-heroSlider__controlButton:hover::before {
    opacity: 1;
}

.at-heroSlider__controlButton--prev {
    left: 0;
}

.at-heroSlider__controlButton--prev::before {
    content: '\27f5';
}

.at-heroSlider__controlButton--next {
    right: 0;
    margin-right: 0;
}

.at-heroSlider__controlButton--next::before {
    content: '\27f6';
}

.tns-nav {
    display: none;
}

@media screen and (min-width: 980px) {
    .at-heroSlider__content {
        width: 60%;
    }
}