.at-hero {
    position: relative;
    margin-bottom: -1px;
    overflow: hidden;
    background-color: #0081ab;
}

.at-hero__picture,
.at-hero__video {
    display: block;
    width: 100%;
    height: 100%;
}

.at-hero__video {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
}

.has-js .at-hero__pictureWrapper,
.at-hero__contentWrapper {
    opacity: 0;
}

.has-js .at-hero .at-hero__pictureWrapper {
    -webkit-animation: at-hero-imageTween 1s 1s forwards;
    animation: at-hero-imageTween 1s 1s forwards;
}

.at-hero .at-hero__contentWrapper {
    -webkit-animation: at-hero-textTween 1s 1s forwards;
    animation: at-hero-textTween 1s 1s forwards;
}

.at-hero__pictureWrapper iframe {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border: 0;
}

.at-hero__contentWrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    height: 100%;
    vertical-align: middle;
    display: table;
}

.at-hero__content {
    display: table-cell;
    vertical-align: middle;
    padding: 1em 2em 1em 15%;
    text-align: right;
}

.at-hero__title {
    margin: 0;
    line-height: .8;
    font-size: 5em;
    font-size: 8vw;
    text-transform: uppercase;
    color: #f9a702;
}

.at-hero__title em {
    font-family: inherit;
    font-size: inherit;
    color: #d9ecf3;
}

.at-hero__link {
    margin-top: 1em;
    color: #fff;
}

.at-hero__link:before{
    content: '\27a1';
    color: #f9a702;
}

.at-hero__more,
.at-hero__moreBackground {
    position: absolute;
    bottom: 0;
}

.at-hero__more {
    left: 0;
    width: 100%;
    height: 40px;
}

.at-hero__moreBackground {
    height: 100%;
    left: 50%;
    margin-left: -1542px;
}

@media screen and (min-width: 1200px) {
    .at-hero__more {
        height: 89px;
    }

    .at-hero__link {
        font-size: 1.5vw;
    }
}

@media screen and (min-width: 1280px) {
    .at-hero__title {
        max-width: 10em;
    }

    .at-hero__title {
        font-size: 5em;
    }
}

@-webkit-keyframes at-hero-imageTween {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes at-hero-imageTween {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes at-hero-textTween {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes at-hero-textTween {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
