*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}

body{ 
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
}

header{
    width: 100%;
    height:70px;
    position: fixed;
    overflow: hidden;
    color:#fff;
    text-align: center;
    z-index: 10;
}


header .textos{
    margin-top: 152px;
}

header .titulo{
    font-size: 85px;
    font-weight: 700;
}

header .subtitulo{
    font-size:42px;
    font-weight: 300;
    margin-bottom: 32px;
}

header .boton{
    display: inline-block;
    padding: 6px;
    width: 128px;
    border:1px solid #fff;
    color:#fff;
    font-size: 19px;
    text-align: center;
    text-decoration: none;
    border-radius:16px;
}

.nav{
    background-color: #293241;
    height: 70px;
    color: #fff;
    position: fixed;
    width: 100vw;
    z-index: 10;
    transition: width 0.3s;
}

.nav_bg{
    background: #293241;
}

.nav_container{
    display: flex;
    height: 100%;
    width: 90%;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
}

.nav_menu{
    display: grid;
    grid-auto-flow: column;
    gap:3em;
}

.nav_item{
    color:#fff;
    text-decoration: none;
    --clippy: polygon(0 0, 0 0, 0 100%, 0% 100%);
    font-size: 20px;
    font-weight: 400;
}

.nav_item::after{
    content: "";
    display: block;
    background: #fff;
    width:99%;
    margin-top:3px;
    height: 3px;
    clip-path: var(--clippy) ;
    transition: clip-path .4s;
}

.efectReduce{
    transform: scale(.5, .5);
}

.nav_item:hover{
    --clippy: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.nav_input:checked + .nav_menu{
    background-image: linear-gradient(to top, #00c6fb 0%, #005bea 100%);
}

#menuIcon{
    transition: all .5s ease;
}

.nav_label,
.nav_input{
    display: none;
}

.nav_logo{
    width: 45px;
    height: 45px;
    object-fit: cover;
}

.active{
    color:#a5f059;
}

.contenedor{
    margin: auto;
    width: 90%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap:10px;
    overflow-y:auto;
    overflow-x: hidden;
    flex-wrap: wrap;
    padding:0px 20px;
}


.tabla{
    width: 31%;
    height: 510px;
    background: #fff;
    border:1px solid #003049;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0px 0px 4px 0px #003049;
    padding:15px;
    flex-grow: 1;
    color:#003049;
}

.tabla > h2{
    margin-bottom: 25px;
    font-size: 30px;
    color: #f77f00;
}

.tabla:hover >h2{
    color: #fcbf49;
}

.tabla img{
    width: 64px;
    margin-bottom: 20px;
}

.tabla > h3{
    margin-bottom: 25px;
    font-size: 30px;    
}

.tabla span{
    font-size: 12px;
}

.tabla > p:nth-child(11){
    display: block;
    margin-bottom: 20px;
}

.boton{
    display: inline-block;
    width: 150px;
    padding: 12px;
    background: #d62828;
    text-decoration: none;
    color:#fff;
    border-radius: 100px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    margin: auto;
}

.tabla:hover{
    background: #003049;
    
    color: #f1f1f2;
    transition: 0.4s all;
    transform: scale(1.08);
    cursor: pointer;
}

.waves{
    position: fixed;
    bottom: -20px;
    width: 100%;
    transition: width  0.3s;
    background: transparent;
    z-index: 200;
}


@media screen and (max-width:1205px){
    .contenedor{
        padding:110px 20px;
    }

    .tabla{
        width: 39%;
    }
}

@media screen and (max-width:965px){
    .tabla{
        width: 50%;
    }
}

@media screen and (max-width:660px){
    .tabla{
        width: 80%;
    }

    .none{
        display: none;
    }

    .nav_label{
        display: block;
        cursor:pointer;
        align-items: center;
        padding-top:30px;
    }

    .nav_menu{
        position: fixed;
        top:70px;
        bottom:0;
        background-image: linear-gradient(to top, #00c6fb 0%, #005bea 100%);
        width: 100%;
        left: 0px;
        display: flex;
        justify-content: start;
        flex-direction: column;
        align-items: center;
        clip-path: circle(0 at center);
        transition: clip-path 0.5s;
        padding-top: 30px;
    }

    .nav_input:checked + .nav_menu{
        clip-path: circle(100% at center);
    }

    .nav_img{
        width: 60px;
        height: 60px;
    }

    .nav_logo{
        width: 35px;
        height: 35px;
        object-fit: cover;
    }

    .waves{
        bottom:-60px;
    }
}