@font-face {
    font-family: "Univers";
    src: url("assets/Univers-Light-Normal.woff") format("woff"), /* Modern Browsers */
    url("assets/Univers-Light-Normal.woff2") format("woff2"); /* Modern Browsers */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Baskerville";
    src: url("assets/BaskervilleRegular.woff") format("woff"), /* Modern Browsers */
    url("assets/BaskervilleRegular.woff2") format("woff2"); /* Modern Browsers */
    font-weight: normal;
    font-style: normal;
}
html, body{
    font-family: Univers, SansSerif, Serif;
    font-size: 16px;
    color: #000;
    background: #fff;
    margin: 0;
    padding: 0;
}
*{
    box-sizing: border-box;
}
a{
    text-decoration: none;
    color: #000;
}


.banner{
    border: 1px solid #000;
    display: block;
    width: 300px;
    height: 600px;
    margin: auto;
    position: relative;
    text-align: center;
    overflow: hidden;
    z-index: 0;
}
.banner__top{
    position: relative;
    height: 350px;
    overflow: hidden;
    z-index: 0;
}
.banner__body{
    position: relative;
    height: 250px;
    background: #1f2d3a;
    z-index: 10;
    padding: 8px;
}
.banner__body-inner{
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 10;
    padding: 10px;
}
.background{
    display: block;
}
.background--01{
    animation: zoomOut 5000ms forwards, fadeDown 2000ms 4000ms forwards;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 1;
}
.background--02{
    opacity: 0;
    animation: zoomOut 5000ms 4000ms forwards, fadeUp 2000ms 4000ms forwards;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 1;
}
.logo{
    width: 100%;
    height: auto;
    max-width: 155px;
    background-size: 100%;
}
.logo--animated{
    opacity: 0;
    animation: fadeUp 1000ms forwards;
}
.tagline{
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}
.tagline--animated{
    opacity: 0;
    animation: slideUp 1500ms 500ms forwards;
}
.tagline__title{
    color: #ccd4df;
    font-size: 14px;
    line-height: 16px;
    font-family: Univers;
}
.tagline__content{
    display: inline-block;
    font-family: Univers;
    font-size: 16px;
    line-height: 19px;
    color: #f1f4f8;
}
.footer{
    position: absolute;
    display: block;
    margin: auto;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 1;
    padding: 12px;
}
.button{
    display: block;
    padding: 10px 0 8px;
    background: #ccd4df;
    color: #1f2d3a;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}
.button--animated{
    opacity: 0;
    display: block;
    margin: auto;
    width: 150px;
    animation: fadeUp 1000ms 8000ms forwards;
}
















@keyframes zoomOut{
    0% {
        transform: scale(1.7,1.7);
    }
    100% {
        transform: scale(1,1);
    }
}

@keyframes fadeDown{
    0%   {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeUp{
    0%   {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes slideUp{
    0%   {
        bottom: 25px;
        opacity: 0;
    }
    100% {
        bottom: 73px;
        opacity: 1;
    }
}