@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}


body{
     font-family: "Fira Sans", sans-serif;
    background-color: #D9D9D9;

}

header{
    background-color: #D9D9D9;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #0D0D0D;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.menu{
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

.logo{
    width: 250px;
}

.menu .navbar ul{
    list-style-type: none;

}

.menu .navbar ul li{
    position: relative;
    float: left;
}

.menu .navbar ul li a{
    font-size: 30px;
    font-weight: 600;
    padding: 20px;
    color: #FDFDFD;
    display: block;
    text-transform: uppercase;
}

.menu .navbar ul li a:hover{
    color: #53A67F;
}

#menu {
    display: none;
}

.menu-icono {
    width: 25px;
}

.menu label{
    cursor: pointer;
    display: none;
}

.header-content{
    display: flex;
    align-items: center;
    padding: 200px 0 150px 0;
}

.header-text{
    width: 40%;
    padding-right: 25px;

}
.header-text h1{
    font-size: 55px;
    line-height: 70px;
    font-weight: 700;
    color: #53A67F;
    margin-bottom: 25px;
}

.header-text p{
    font-size: 18px;
    color: #0D0D0D;
}

.header-img{
    width: 40%;

}

.imagenpa{
    height: 100%;
    width: 100%;
}

.botones{
    display: flex;
    margin-top: 50px;

}

.boton-1{
    display: inline-block;
    background:linear-gradient(90deg, #10ab51 0%, #038C3E 100%);
    padding: 10px 35px;
    margin-right: 20px;
    color: #FDFDFD;
    border-radius: 25px;
}

.boton-2{
    display: inline-block;
    border: 1px solid #FDFDFD;
    padding: 10px 35px;
    margin-right: 20px;
    color: #FDFDFD;
    border-radius: 25px;
}

.boton-1:hover {
        background:linear-gradient(90deg, #21bb61 0%, #04aa4c 100%);
}