*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Work Sans', sans-serif;
}

.navbar{
    width: 100%;
    display: flex;
    position: fixed;
    justify-content: space-between;
    align-items: center;
    background: rgb(249, 2, 2);
    color: white;
    margin-bottom: 30px 0;
    overflow: hidden;
    box-shadow: 1px 1px 15px rgb(233, 160, 160);
    
}

.brand-name{
    font-size: 2rem;
    margin: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: white;
    text-decoration: none;
    font-family: 'Times New Roman', Times, serif;
}

.navbar a{
    color: white;
    text-decoration: none;
}


.navbar-link ul{
    margin-right: 50px;
    padding: 0;
    display: flex;
}

.navbar-link li{
    list-style: none;
}

.navbar-link li a{
    padding: 1.5rem;
    color: white;
    text-decoration: none;
    display: block;
    font-size: 17px;
}

.navbar-link li:hover{
    background: white;
}

.navbar-link li a:hover{
    color: black;
}

.toggle-button{
    position: absolute;
    top: 1.2rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.toggle-button .bar{
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
}







.conteiner{
    width: 100%;
    height: 55vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), url(about_us_photo.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.conteiner h1{
    padding-top: 190px;
    font-size: 55px;
    text-align: center;
    color: white;
    letter-spacing: 2px;
    font-weight: 200;
}

.conteiner2{
    width: 100%;
    height: auto;
    margin: auto;
    text-align: center;
}

.howitworks{
    margin: 80px auto;
}

.howitworks h1{
    font-size: 50px;
    font-weight: 200;
}

.content{
    width: 100%;
    height: auto;
    display: flex;
    margin: auto;
    padding: 10px;
}

.content .box{
    height: 350px;
    margin: auto 10px;
    padding: 10px;
    box-shadow: 1px 1px 15px rgb(233, 160, 160);
}

.box i{
    font-size: 80px;
    margin: 20px auto;
    color: red;
}

.box h2{
    font-weight: 200;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.box p{
    letter-spacing: normal;
}

.box p span{
    font-weight: bold;
}



.home_alterations{
    text-align: center;
    margin: 60px auto;
    padding: 15px;
}

.home_alterations h1{
    font-size: 16px;
    font-weight: 200;
}
.home_alterations span{
    font-size: 18px;
    font-weight: bold;
}

.home_alterations h2{
    margin: 10px auto;
    font-size: 18px;
}

.locations{
    width: 95%;
    height: auto;
    margin: 30px auto;
    padding: 40px 10px;
    box-shadow: 1px 1px 15px rgb(233, 160, 160);
}

.locations h1{
    font-size: 25px;
    margin: auto auto 30px auto;
    font-weight: 700;
}
.locations p{
    font-size: 16px;
    
}


.booking_items{
    width: 95%;
    margin: 60px auto;
    box-shadow: 1px 1px 15px rgb(233, 160, 160);
    padding: 30px 0;
}

.booking_items h1{
    font-size: 25px;
    font-weight: 700;
    margin: auto auto 30px auto;

}

.booking_items h2{
    font-size: 18px;
    margin: 30px auto 20px auto;
}

.booking_items i{
    font-size: 80px;
    color: red;
    margin: auto auto 20px auto;
}

.booking_items p{
    margin-bottom: 25px;
}

.booking_items a{
    margin: auto;
    padding: 10px 30px;
    background: red;
    text-decoration-line: none;
    color: white;
}


























.conteiner5{
    width: 100%;
    height: auto;
    background: red;
    color: white;
    padding: 20px 70px;
    margin-top: 50px;
}

.conteiner5 .footer{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px , 1fr));
    grid-gap: 10px;
    padding: 50px 0px;
}

.footer .footer_box1{
    height: auto;
    margin-bottom: 35px;
}

.footer_box1 h2{
    text-transform: uppercase;
    margin-bottom: 15px;

}


.footer_box1 a{
    width: 30%;
    color: white;
    margin: 5px 0;
    text-decoration: none;
    display: grid;
    font-size: 15px;
}

.footer_box1 a:hover{
    text-decoration: underline white;
}

.footer_box1 p{
    color: white;
    margin: 5px 0;
    display: grid;
    font-size: 15px;
}

.conteiner5 .all_rights{
    text-align: center;
    font-size: 14px;
}













@media (max-width: 990px) {
    .brand-name{
        font-size: 2rem;
        margin: 1rem;
        font-weight: normal;
        letter-spacing: normal;
    }
    

    .toggle-button{
        display: flex;
    }

    .navbar-link{
        display: none;
        width: 100%;

    }

    .navbar{
        flex-direction: column;
        align-items: flex-start;

    }   

    .navbar-link ul{
        width: 100%;
        flex-direction: column;
    }

    .navbar-link li{
        text-align: center;
    }

    .navbar-link li a{
        padding: .5rem 1rem;
  
    }

    .navbar-link.active{
        display: flex;

    }


@media only screen and (max-width: 450px) {
    .brand-name{
        font-size: 28px;
    }

}

@media only screen and (max-width: 395px) {
    .brand-name{
        font-size: 25px;
    }

}

@media only screen and (max-width: 352px) {
    .brand-name{
        font-size: 22px;
    }

}

@media only screen and (max-width: 320px) {
    .brand-name{
        font-size: 20px;
    }

}












@media only screen and (max-width: 990px) {

    .conteiner h1{
        font-size: 45px;
    }
    .conteiner2{
        height: auto;
    }

    .howitworks h1{
        font-size: 35px;
    }

    .content{
        width: 100%;
        display: grid;
        height: auto;
    }

    .content .box{
        margin: 20px;
        padding: 20px;
    }

    .locations{
        width: 100%;
        padding: 30px 10px;
    }

    .booking_items{
        width: 100%;
        padding: 30px 10px;
    }

}





    
    
@media only screen and (max-width: 990px) {
   .conteiner5{
    width: 100%;
    height: auto;
    margin: 0;
    padding: 15px 10px;
   }


   .conteiner5 .footer{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px , 1fr));
    grid-gap: 10px;
    padding: 0;
    }

    .footer_box1 h2{
        font-size: 18px;
    }

    .footer_box1 a{
        width: auto;
    }

    .footer_box1 p{
        font-size: 15px;
    }

    
}



}













