@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(.95)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@media screen and (max-width: 768px) {
    input {
        font-size:16px!important
    }
}

@media (max-width: 850px) {
    .navbar {
        width:100vw!important
    }

    nav {
        width: 100vw!important
    }

    .row {
        width: 94vw!important
    }

    .col-sm-3 {
        width: 90vw!important
    }
}

@keyframes fpFadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0,-20px,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}
