@import url('https://fonts.googleapis.com/css2?family=Poppins: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;
    list-style: none;
}

body{
    font-family: 'poppins', sans-serif;
    background-color: rgb(75, 75, 75);
}

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

.header {
    background-image: url(img/bg.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;
}

.menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 1000;
    background-color: black;
    border-bottom: 1px solid #ffffff29;
}

.logo{
    color: brown;
    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: brown;
}

#menu{
    display: none;
}

.menu-icon {
    width: 25px;
}

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

.header-infor h1{
    color: brown;
    text-transform: uppercase;
    font-size: 70px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.header-infor p{
    color: #ffffff;
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 35px;
}

.btn-1 {
    display: inline-block;
    padding: 10px 35px;
    border-radius: 10px;
    background-color: brown;
    font-size: 20px;
    color: #ffffff;
    text-transform: uppercase;
}

.btn-1:hover{
    background-color: #a70a15;
}

.gym {
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: 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;
}

.btn-2:hover{
    background-color: #a70a15;
}

.gym-1 span {
    color: brown;
}

.btn-2{
    display: inline-block;
    padding: 8px 45px;
    background-color: brown;
    font-size: 18px;
    color: #ffffff;
    text-transform: uppercase;
    border-radius: 20px;
}

.gym-1 p {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 35px;
}

.img-1, .img-2 {
    width: 350px;
    margin-right: 30px;
}

/* footer */

.footer{
    border-top: 1px solid #ffffff29;
    padding: 50px 0;
    display: flex;
    justify-content: space-around;
    background-color: #040404;
}

.footer h3{
    color: brown;
    font-size: 25px;
    font-weight: 800;
}

.links ul {
    display: flex;
}

.links ul li{
    margin-right: 35px;
}

.links ul li a {
    color: #ffffff;
}

/* responsibe */

@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-infor 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;
    }

    .links ul li {
        margin: 0 10px;
    }

}