*{
    margin: 0;
   
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: Arial, Helvetica, sans-serif;
}
.navbar{
    background: #015cab;
     height: 80px;
     display: flex;
     justify-content: center;
     align-items: center;
     font-size: 1.3rem;
     position: sticky;
     top: 0;
     z-index: 999;
}
.navbar_container{
    display: flex;
    justify-content: space-between;
    height:80px;
    z-index: 1;
    width:100%;
    max-width: 1300px;
    margin: 0 auto;
   /*  padding: 0 0 0 50px; */
}
.navbar_menu{
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}
.active{
    display: flex;
}
.navbar_item{
    height: 80px;
}
.navbar_links{
    color:#1b1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
    font-weight: 600;
}
.navbar_links:hover{
    color: #ed210b;
    transition: all 0.3 ease;
}
#navbar_logo{
    background-color: #5a3431;
    background-image: linear-gradient(to top, #d8afb9 0%, #c5421a 100%) ;
    background-size: 100%;
   -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
   -moz-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 3rem;
    font-weight: bold;
}
.footer_contaner{
    background: #1e1e1f;
     display: flex;
     justify-content:space-between;
     align-items: center;
     font-size: 1.3rem;
     position: sticky;
}
.footer_item{
    display: grid;
    list-style: none;
    text-align: justify;
    padding-right: 2rem; 
}
.footer_item h2{
    font-size: 2rem;
    color:white ;
}
.ft1{
    display: flex;
    padding-left: 10rem; 
}
.ft2{
    display: flex;
    justify-content: space-between;
}
.webright{
    color: white;
}
#footer-logo{
    background-color: #5a3431;
    background-image: linear-gradient(to top, #d8afb9 0%, #c5421a 100%) ;
    background-size: 100%;
   -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
   -moz-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 3rem;
    font-weight: bold;
}
.about{
    min-height:100%;
    width: fit-content;
    background-color: #b2b1b1;

}
.container { 
    width: 80%; 
    margin: 0 auto;
    padding: 0 5rem;
    background-color: #e0e0e0;
 }
 .container h1{
    text-align: center;
     color: #a57a0c;
     padding-top: 2rem;
     padding-bottom: 1rem;
     font-size: 3rem;  
}
.about-item h2{
    color: #b69806;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 2rem;  
}
.about-item p{
    text-align:justify;
    color: #080808;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 1.2rem; 
    font-weight: 600;
}
.team{
    display:grid;
    grid-auto-columns: 2;
    justify-content: space-between;
}
.team-member { 
    margin-bottom: 20px; 
}
.team-member img { 
width: 100px; height: 100px; border-radius: 50%; 
}
.client{
    display: flex;
    padding: 1rem;
    justify-content: space-between;
}
.client h3{
    justify-content: center;
    padding: 2rem;
}
.partimg{
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
.real{
    width: 250px;
    height: 300px;
    border-radius: 2rem;
}

/* --------screen 960px----------- */

@media screen and (max-width: 960px){

    .navbar_container{
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width:100%;
        max-width: 1300px;
        padding: 0;
    }
    .navbar_menu  {
        display: grid;
        grid-template-columns: max-content;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 0;
        transition: all 0.5s ease;
        height: 70vh;
        z-index: -1;
        background: #090909;
     }
     .active{
        display: grid;
        background: #fbf9f9;
        top: 100%;
        opacity:1;
        transition:all 0.3s ease;
        z-index: 99;
        height: 90vh;
        font-size: 1.6rem;
        padding-left: 10rem;
        overflow-x: hidden;
     }
     #navbar_logo{
        padding-left: 25px;
    }
    .navbar_toggle .bar{
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #fff;
    }
    .navbar_item{
        width: 100%;

    }
    .navbar_links{
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: table;
    }

    #mobile-menu{
        position: absolute;
        top:20%;
        right: 5%;
        transform: translate(5%, 20%);
    }
    

    .navbar_toggle .bar{
        display: block;
        cursor: pointer;
    }
    #mobile-menu.is-active .bar:nth-child(2){
        opacity: 0;
    }
    
    #mobile-menu.is-active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .about{
        min-height:100%;
        width: 100%;
        background-color: #b2b1b1;
    
    }
    .container { 
        width: 90%; 
        margin: 0 auto;
        padding: 0 5rem;
        background-color: #e0e0e0;
     }
 .container h1{
    text-align: center;
     color: #a57a0c;
     padding-top: 2rem;
     padding-bottom: 1rem;
     font-size: 2.5rem;  
}
.about-item h2{
    color: #b69806;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 2rem;  
}
.about-item p{
    text-align:justify;
    color: #080808;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 1rem; 
    font-weight: 600;
}
.team{
    display: grid;
    grid-template-columns: max-content;
    justify-content: space-between;
    align-items: center;
    
}
.team-member { 
    margin-bottom: 20px; 
   width: 400px;
   align-items: justify;
}
.team-member img { 
width: 100px; height: 100px; border-radius: 50%; 
}
.client{
    display: grid;
    padding: 1rem;
    justify-content: space-between;
}
.client h3{
    justify-content: center;
    padding: 2rem;
}

.partimg{
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
.real{
    padding: 1rem;
    width: 200px;
    height: 250px;
    border-radius: 2rem;
}

}
@media screen and (max-width: 460px){
    .navbar_menu  {
        display: grid;
        grid-template-columns: max-content;
        margin: 0;
        width: auto;
        position: absolute;
        top: -1000px;
        opacity: 0;
        transition: all 0.5s ease;
        height: 70vh;
        z-index: -1;
        background: #090909;
    }
    .navbar_container{
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width:auto;
        max-width:auto;
        padding: 0;
    }
    .navbar_menu  {
        display: grid;
        grid-template-columns: max-content;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 0;
        transition: all 0.5s ease;
        height: 70vh;
        z-index: -1;
        background: #090909;  
    }
     .active{
        display: grid;
        background: #fbf9f9;
        top: 100%;
        opacity:1;
        transition:all 0.3s ease;
        z-index: 99;
        height: 90vh;
        font-size: 1.6rem;
        padding-left: 10rem;
        overflow-x: hidden;
     }
     #navbar_logo{
        padding-left: 25px;
    }
    .navbar_toggle .bar{
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #fff;
    }
    .navbar_item{
        width:auto;

    }
    .navbar_links{
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: table;
    }

    #mobile-menu{
        position: absolute;
        top:20%;
        right: 5%;
        transform: translate(5%, 20%);
    }
    

    .navbar_toggle .bar{
        display: block;
        cursor: pointer;
    }
    #mobile-menu.is-active .bar:nth-child(2){
        opacity: 0;
    }
    
    #mobile-menu.is-active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }
    .team-member { 
        margin-bottom: 20px; 
       width: 200px;
}    

}
