*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: #ffffff;
    font-family: 'open sans';
}

.contenedor{
    width: 90%;
    max-width:900px;
    margin: auto;
    height:100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.tabla{
    width: 33%;
    height: 550px;
    margin: auto;
    border:1px solid #ffffff;
    border-radius: 4px;
    box-shadow: 0px 0px 4px 0px  #ffffff;
    padding: 60px;
    text-align: center;
    flex-grow: 1;
    color: #ffffff;
}

.tabla>h2{
    font-size:30px;
    margin-bottom:35px;
}

.tabla img{
    width: 64px;
    margin-bottom:35px;
}

.tabla > h3{
    font-size:30px;
    margin-bottom: 20px;
}

.tabla > p{
    display: block;
    margin-bottom:20px;
}

.boton{
    display:inline-block;
    width: 150px;
    padding:12px;
    background: #008B8B;
    text-decoration: none;
    color: #ffffff;
    border-radius: 100px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    margin: auto;
}

.tabla:hover{
    background: #cccbcb;
    color: #008B8B;
    transition: .5s all;
    transform: scale(1.1);
    cursor: pointer;
}

@media screen and (max-width: 1000px){
    .tabla{
        width: 45%;
        max-width:none;
        margin-bottom: 40px;
        flex-grow: initial;
    }
}

@media screen and (max-width: 700px){
    .tabla{
        width: 45%;
        padding:30px;
    }
    .tabla > h2{
        margin-top:40px;
    }
}

@media screen and (max-width:550px){
    .tabla{
        width: 85%;
        padding: 20px;
    }
}

.form-check{
    text-align: justify;
    /*background-color: red;*/
    padding-left: 0px;
    
  }

.section-headline h4{
    font-size:30px;
    padding-bottom: 0px;
}  

.btnEnviar {
    background: #3EC1D5 none repeat scroll 0 0;
    border: 2px solid #3EC1D5;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    margin-left: 20px;
    padding: 10px 20px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 30px;
    margin-top:  15px;
}
  
.btnEnviar:hover {
    background: #fff none repeat scroll 0 0;
    border: 2px solid #3EC1D5;
    color: #3EC1D5;
}


