﻿* {
    padding: 0px;
    margin: 0px
}

html {
    scroll-behavior: smooth
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Poppins",sans-serif;
    font-size: 16px;
    background-color: rgba(0,0,0,0.07);
    color: #343434;
    overflow-x: hidden;
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

a, a:hover {
    text-decoration: none
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto Slab",serif !important;
    font-weight: bold
}

.box-formulario {
    float: left;
    width: 100%;
    margin-top: 20px;
    background-color: #fbfbfb;
    color: #343434;
    border: solid 1px rgba(0,0,0,0.1);
    height: auto;
    margin-bottom: 40px;
}

    .box-formulario .inside {
        float: left;
        width: 100%;
        padding: 40px
    }

        .box-formulario .inside h2 {
            color: #004c75;
        }

        .box-formulario .inside b {
            color: #004c75;
        }
