@keyframes fadeInUp {
    from {
        transform: translate3d(0,40px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}

@-webkit-keyframes fadeInUp {
    from {
        transform: translate3d(0,40px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}

.jfade {
    animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}

.jfade-ext-1 {
    animation-delay: 1s;
    animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}

@keyframes fadeInDown {
    from {
        transform: translate3d(0,-100px,0);
    }

    to {
        transform: translate3d(0,0,0)
    }
}

@-webkit-keyframes fadeInDown {
    from {
        transform: translate3d(0,-100px,0);
    }

    to {
        transform: translate3d(0,0,0)

    }
}

.jfade-down {
    animation-duration: 1.5s;
    animation-fill-mode: both;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    opacity: 1;
    animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
}

.tamanho-botao {
    padding: -1.75rem !important;
  }
  
  /* On screens that are 992px or less, set the background color to blue */
  @media screen and (max-width: 992px) {
    .tamanho-botao {
        padding: 0.75rem !important;
    }
  }