@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

* {
    margin:0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #215696;
}

.container{
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    background-image: url(imagenes/FrenteLABAC.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.header1 {

    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.menu{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    background-color: #180757;
    border-bottom: 1px solid #FFFFFF29;
}

.logo{
    color: #0aa788;
    font-size: 25px;
    font-weight: 800;
}

.menu .navbar ul li {
    position: relative;
    float: left;

}

.menu .navbar ul li a {
    font-size: 18px;
    padding: 20px;
    color: #FFFFFF;
    display: block;
}

.menu .navbar ul li a:hover {
    color: #E1160d ;
}

#menu {
    display: none;
}

.menu-icono {
    width: 25px;
}

.menu label {
    display: none;
    cursor: pointer;
}

.header-info h1 {
    color: #e1160d;
    text-transform: uppercase;
    font-size: 70px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.header-info p {
    color: #ffffff;
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 35px;
}

.bt-1 {
    display: inline-block;
    padding: 10px 35px;
    border-radius: 10px;
    background-color: #e1160D;
    font-size: 20px;
    color: #ffffff;
    text-transform: uppercase;
}

.btn-1:hover {
    background-color: #A70A15;
}

.gym {
    padding: 100px 0;
    display: flex;
    align-items: center;
}

.gym-1 {
    width: 50%;
    padding-right: 150px;
}

.gym-1 h2 {
    font-size: 40px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 35px;
}

.gym-1 p {
    font-size: 16px;
    color: #f9f5f5;
    margin-bottom: 35px;
}

.gym-1 span {
    color: #A70A15;
}

.btn-2 {
    display: inline-block;
    padding: 8px 45px;
    border-radius: 20px;
    background-color: #E1160D;
    font-size: 18px;
    color: #ffffff;
    text-transform: uppercase;
}

.btn-2:hover {
    background-color: #A70A15;
}

.img-1, .img-2 {
    width: 250px;
    margin-right: 30px;
}

.footer {
    border-top: 1px solid #FFFFFF29;
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
    background-color: #180757;
}

.footer h3 {
    color: #0aa788;
    font-size: 25px;
    font-weight: 800;
}

.link ul {
    display: flex;
}

.link ul li {
    margin-right: 35px;
}

.link ul li a {
    color: #818181;
}

@media(max-width:991px) {

    .menu {
        padding: 20px;
    }

    .menu label {
        display: initial;
    }

    .menu .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #303030;
        display: none;
    }

    .menu .navbar ul li {
        width: 100;
    }

    #menu:checked ~ .navbar {
        display: initial;
    }

    .header-content {
        padding: 30px;
    }

    .header-info h1 {
        font-size: 50px;
        margin-bottom: 5px;
    }

    .gym {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px;
    }

    .gym-1 {
        width: 100%;
        padding: 0;
        order: 1;
    }

    .gym-1 h2 {
        margin-bottom: 15px;
    }

    .btn-2 {
        margin-bottom: 35px;
    }

    .gym-2 {
        order: 2;
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .img-1, .img-2 {
        margin: 0 0 20px 0;
    }

    .footer {
        flex-direction: column;
        align-items: center;
    }

    .footer h3 {
        margin-bottom: 15px;
    }

    .link ul li {
        margin: 0 10px;
    }


}