/*@font-face {
    font-family: Myriad-Bold;
    src: url('../fonts/MyriadPro-Bold.otf');
}

@font-face {
    font-family: Myriad-Regular;
    src: url('../fonts/MyriadPro-Regular.otf');
}

@font-face {
    font-family: Myriad-Semi;
    src: url('../fonts/MyriadPro-Semibold.otf');
}*/

.about img {
    animation-name: moveInBottom;
    animation-duration: 4s;
}

.about .container {
    text-align: center;
    margin-top: 150px;
}

.about h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin: 25px 0 25px 0;
    font-size: 37px;
    animation-name: moveInRight;
    animation-duration: 2s;
}

.banner {
    background: #3B469F;
    text-align: center;
}

.about h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    padding: 55px 0 0 0;
    margin: 25px 0 0 0;
    font-size: 28px;
    animation-name: moveInBottom;
    animation-duration: 4s;
    color: #ffffff;
}

.about .btn-link {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    padding: 0 0 35px 0;
    margin: 0 0 35px 0;
    font-size: 20px;
    animation-name: moveInBottom;
    animation-duration: 4s;
    color: #ffffff;
}


@keyframes moveInRight{
    0% {
        opacity: 0;
        transform: translateX(-150px);
    }

    80% {
        transform: translateX(0px);
    }

    100% {
        opacity: 1;
        transform: translate(0);
    }
}

@keyframes moveInBottom{
    0% {
        opacity: 0;
        transform: translateZ(-150px);
    }

    80% {
        transform: translateZ(0px);
    }

    100% {
        opacity: 1;
        transform: translate(0);
    }
}