.at-hero {
    height: 100vh;
    margin-bottom: var(--articleMarginBottomSmall);
    background-color: var(--baseBlueLight);
}

.at-hero__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: inherit;
    padding: 0 1rem 5rem 1rem;
}

.at-hero__logo {
    width: 100%;
    max-width: 300px;
    max-height: 50vh;
}

.at-hero__scrollWrapper {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    text-align: center;
}

.at-hero__subtitle {
    margin-bottom: .5rem;
    font-size: .9rem;
}

.at-hero__scrollButton {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5em;
    height: 2.5em;
    margin: 0 auto;
    text-decoration: none;
    color: var(--baseWhite);
    background-color: var(--baseBlue);
    border-radius: var(--curves);
}

.at-hero__icon {
    display: inline-block;
    transform: rotate(-90deg);
}

@media (min-width: 950px) {
    .at-hero {
        margin-bottom: var(--articleMarginBottom);
    }

    .at-hero__inner {
        position: relative;
        overflow: hidden;
        z-index: 1;
        padding-bottom: 0;
    }

    .at-hero__inner::before {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 150px;
        height: 252px;
        content: '';
        opacity: .1;
        background: url(circleSmall.svg) no-repeat;
        background-size: contain;
        z-index: -1;
    }

    .at-hero__inner::after {
        position: absolute;
        right: 0;
        bottom: 0;
        display: block;
        width: 250px;
        height: 333px;
        content: '';
        opacity: .1;
        background: url(circleLarge.svg) no-repeat;
        background-size: contain;
        z-index: -1;
    }

    .at-hero__logo {
        max-width: none;
    }
}
