/*RESET*/
*{
    margin: 0;
    padding: 0;
    justify-content: space-between;
    align-items: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}


/*HEADER*/

    header{
        height: 80px;
        background:  #000000;
        padding: 0 50px;
        color: #000000;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo{
        text-transform: uppercase;
        color: #fff;
        font-weight: 200;
    }

    .menu a{
        color: #fff;
        text-transform: uppercase;
        text-decoration: none;
        padding: 0 10px;
        /*transition: 0.4s*/
    }

    .mostrar-menu,
    .esconder-menu{
        font-size: 30px;
        cursor: pointer;
        display: none;
        transition: 0.4s;
    }

    .mostrar-menu{
        order: 1;
    }

    .menu a:hover,
    .mostrar-menu:hover,
    .esconder-menu:hover{
        color: #01ADED;
    }

    #check{
        display: none;
    }

    /*BANNER*/
    #banner{
        padding: 0 50px;
        background-image: url(./images/banner.jpg);
        height: 45vh;
        background-size: cover;
        background-position: center;
    }
    #banner::before{
        content: '';
        background: rgba(77, 77, 92 , 0.4);
        position: absolute;
        width: 100%;
        height: 45vh;
        left: 0;
    }
    .contenido-banner{
        position: relative;
        color: #fff;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .contenido-banner h3{
        font-size: 30px;
        font-weight: 600;
        padding: 10px 0px;
    }

    .contenido-banner h3 span{
        font-weight: 600;
    }

    .boton-empezar{
        text-decoration: none;
        color: #fff;
        border: 1px solid #CBD5D8;
        padding: 20px 40px;
        align-self: center;
        transition: all0.4s;
    }

    .boton-empezar:hover{
        background:#000000;

    }

    /*PERSONAS*/
    #personas{
        padding: 30px 30px;
        display: -moz-inline-box;
        justify-content: center;
        text-align: center;
    }

    #personas img{
        height: 100px;
        width: 100px;
        border-radius: 100%;
        border: 1px;
        border-color: #000000;
    }

   
    #personas div h4{
        color: #000000;
        font-size: 20px;
        margin: 15px 0px;
    }
    #personas div p{
        color: #546A71;
        font-size: 18px;
    }
    .boton-saber-mas{
        display: inline-block;
        text-decoration: none;
        color: #49595D;
        padding: 10px 30px;
        border: 1px solid #49595D;
        margin-top: 15px;
        transition: all 0.4s;
        border-radius: 40px;
    }

    .mas{
        display: inline-block;
        text-decoration: none;
        color: #a8b5b8;
        padding: 10px 30px;
        transition: all 0.4s;
    }

    .boton-saber-mas:hover{
        background: #49595D;
        color: #fff;
    }

    /*FOOTER*/

    footer{
        background: #000000;
        color: #cccccc4a;
        text-align: center;
        padding: 10px 0px;
        font-size: 11px;
    }


    /*PAGINA DE DATOS*/

    /*DATOS*/

    #logo{
        height: 70px;
        width: 197.047px;

    }
    #datos{
        padding: 30px 30px;
        display: -moz-inline-box;
        justify-content: center;
        text-align: center;
    }

    #datos img{
        height: 250px;
        width: 250px;
        border-radius: 15%;
        border: 1px;
        border-color: #000000;
    }

   
    #datos div h4{
        color: #000000;
        font-size: 20px;
        margin: 15px 0px;
    }
    #datos div p{
        color: #546A71;
        font-size: 18px;
    }

    /*INFO EMPRESA*/
    #info-empresa{
        padding: 30px 30px;
        display: -moz-inline-box;
        justify-content: center;
        text-align: center;

    }

    #info-empresa img{
        height: 70px;
        width: 197.047px;
        border: 1px;
        border-color: #000000;
    }

   
    #info-empresa div h4{
        color: #000000;
        font-size: 20px;
        margin: 15px 0px;
    }
    #info-empresa div p{
        color: #000000;
        font-size: 16px;
    }



    /*RESPONSIVE*/
    @media(max-width:768px){
        /*HEADER*/
        .mostrar-menu,
        .esconder-menu{
            display: block;
            color: #fff;
        }
        .menu{
            position: fixed;
            width: 100%;
            height: 100vh;
            background:  #000000;
            left: 0;
            right: -100%;
            top: 0;
            text-align: center;
            padding: 100px 0px;
            z-index: 100;
            transition: 0.8s;
        }
        .menu a{
            display: block;
            padding: 20px;
        }
        .esconder-menu{
            position: absolute;
            top: 40px;
            right: 40px;
        }
        #check:checked ~ menu{
            right: 0;
        }

        /*PERSONAS*/
        #personas{
            flex-direction: column;
        }
    }








