*{
    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: 0px 0 10px 0px rgb(239, 156, 156);
    
}

.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;
}







.conteiner1{
    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;

}

.conteiner1 h2{
    padding-top: 190px;
    font-size: 55px;
    text-align: center;
    color: white;
    letter-spacing: 2px;
}



.conteiner2{
    width: 100%;
    height: auto;
    padding: 20px 80px;
    margin-top: 50px;
}

.content{
    display: flex;
    margin: 0 0 60px 0;

}

.content .box{
    width: 50%;
    margin: 0 30px;
}


.box img{
    width: 100%;
    border-radius: 30px 0 30px 0; 
}


.second{
    display: none;
}

.box h3{
    font-size: 35px;
    padding: 0 0 20px 0;
}

.box P{
    font-size: 18px;
    line-height: 1.5;
    font-family: 'calibri light';
}














.conteiner3{
    width: 100%;
    height: auto;
    margin-bottom: 80px;
    border-top: 2px solid gray;

}


.conteiner3 h2{
    text-align: center;
    font-size: 40px;
    text-transform: uppercase;
    margin-top: 20px;
}


.our_staffs{
    width: 100%;
    max-width: 1100;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 10px;
    padding: 10px 15px;
}

.team{
    margin-top: 50px;
    height: auto;
    text-align: center;
    padding: 10px;
}

.team img{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    text-align: center;
    transition: 1.3s;
    box-shadow: 0px 0 10px 0px rgb(239, 156, 156);

}

.team img:hover{
    transform: scale(1.1);
}


.team h3{
    margin: 10px 0;
    font-size: 20px;
}















.conteiner5{
    width: 100%;
    height: auto;
    background: rgb(249, 2, 2);
    color: white;
    padding: 20px 70px;
}

.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) {
    
   .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;
    }

    .conteiner1{
        height: 45vh;
    }



    .conteiner1 h2{
        padding: 150px 0;
        font-size: 35px;
    }

    .conteiner2{
        padding: 10px 10px;
    }

    h3{
        font-size: 35px;
        margin: 15px 0;
    }


    .box h3{
        display: none;
    }

    .second{
        display: block;
    }

    .content{
        display: block;
        margin: 0;
        
    }


    .content .box{
        width: 100%;
        margin: 0;
    }
    
    
    .box img{
        width: 100%;
        border-radius: 0;
        margin: 10px 0;
    }
    
    .content h3{
        font-size: 30px;
        padding: 0;
    }
    
    .box P{
        font-size: 17px;
        line-height: 1.5;
        color: gray;
    }
    










}}  