body{
    font-family: 'Roboto', sans-serif;
}

.logo-text{
    color:#d32f2f !important;
    font-weight:700;
}

.hero{
    background:
    linear-gradient(
    rgba(0,0,0,.70),
    rgba(0,0,0,.70)),
    url('../img/hero.jpg');

    background-size:cover;
    background-position:center;
    min-height:700px;

    display:flex;
    align-items:center;
}

.hero h1{
    font-size:4rem;
    font-weight:700;
}

.formulario-card{
    margin-top:40px;
    border-radius:12px;
}

.full-width{
    width:100%;
}

.disclaimer{
    margin-top:20px;
}

.service-box{
    padding:30px;
    border:1px solid #eee;
    border-radius:10px;
    margin-bottom:20px;
    transition:.3s;
}

.service-box:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}

.service-box i{
    font-size:50px;
}

.page-footer{
    margin-top:0;
}

@media(max-width:768px){

    .hero{
        min-height:auto;
        padding:60px 0;
    }

    .hero h1{
        font-size:2.5rem;
    }

}