@font-face {
    font-family: 'opun_mairegular';
    src: url('./fonts/opun_mai_regular-webfont.eot');
    src: url('./fonts/opun_mai_regular-webfont.eot?#iefix') format('embedded-opentype'),
        url('./fonts/opun_mai_regular-webfont.woff2') format('woff2'),
        url('./fonts/opun_mai_regular-webfont.woff') format('woff'),
        url('./fonts/opun_mai_regular-webfont.ttf') format('truetype'),
        url('./fonts/opun_mai_regular-webfont.svg#opun_mairegular') format('svg');
    font-weight: normal;
    font-style: normal;

}

* {
    margin: 0;
    padding: 0;
}

.main-content {
    background-color: #F8AD2C;
    width: 1468px;
    height: 253px;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -2;
    overflow: hidden;
}

.logo {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
    animation: scale-in-tl 1.1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.texto {
    font-family: 'opun_mairegular';
    font-size: 60px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    position: absolute;
    top: 97px;
    left: 405px;
    animation: zoom-in-zoom-out 30s ease;
}

.container-texto {
    animation: tracking-in-expand-fwd 1.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    animation-delay: 1s;
}



/* logo----------------------------------------------*/
@keyframes slide-in-elliptic-top-fwd {
    0% {
        -webkit-transform: translateY(-600px) rotateX(-30deg) scale(0);
        transform: translateY(-600px) rotateX(-30deg) scale(0);
        -webkit-transform-origin: 50% 100%;
        transform-origin: 50% 100%;
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0) rotateX(0) scale(1);
        transform: translateY(0) rotateX(0) scale(1);
        -webkit-transform-origin: 50% 1400px;
        transform-origin: 50% 1400px;
        opacity: 1;
    }
}

/* logo2 ----------------------------------------------*/
@keyframes scale-in-tl {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        -webkit-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        opacity: 1;
    }
}



/* zoom-out---------------------*/
@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(0.8, 0.8);
    }

    100% {
        transform: scale(1.1, 1.1);
    }

}

/*Texto-----------------------*/

@-webkit-keyframes scale-in-ver-center {
    0% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        opacity: 1;
    }
}

@keyframes scale-in-ver-center {
    0% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        opacity: 1;
    }
}

/*container-texto-----------------------*/

@keyframes tracking-in-expand-fwd {
    0% {
        letter-spacing: -1em;
        -webkit-transform: translateZ(10px);
        transform: translateZ(10px);
        opacity: 0;
    }

    80% {
        opacity: 0.6;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}