html{
    font-size: 100%;
    overflow-x: clip;
}

body:not(.ourWorkBox){
    background-color: #060B29;
    background-image: url("/Resources/path.png");
    background-repeat: no-repeat;
    background-size: auto-fit;
    background-position: 60% 5%;
    color: white;
    font-family:'helvetica' ;
    display: flex;
    flex-direction: column;
    width: auto;
    height: auto;
    overflow-x: clip;
    margin: 0;
}


a{
    color: inherit;
    text-decoration: none;
}
.hum{
    display: flex;
    justify-content:  flex-start;
    align-items: flex-start;
    margin-left: 10%;
}

.hum.active{
    position: fixed;
    z-index: 2;
}

.humburger-Menu{
    height: 40px;
    width: 40px;
    position: relative;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}


.humburger-Menu span{
   background-color: white;
   position:absolute;
   height: 6px;
   border-radius: 20px;
   width: 100%;
   top: 50%;
   left: 0% ;
   transform:translate(-50%, -50%);
   transition: .3s ease;
   z-index: 2;
   -webkit-tap-highlight-color: transparent;

}
.humburger-Menu span:nth-child(1){
    top: 25%;
}

.humburger-Menu span:nth-child(3){
    top: 75%;
}

.humburger-Menu.active span:nth-child(1){
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);


}
.humburger-Menu.active span:nth-child(2){
    opacity: 0;
}
.humburger-Menu.active span:nth-child(3){
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
   


}



.hidden-Menu{
    display: flex;
    flex-direction: column;
    position:fixed;
    align-items: center;
    justify-content: center;
    top:0;
    margin-top: 0cap;
    margin-left: 0;
    margin-right: 0;
    list-style: none;
    right: 100%;
    height: 100vh;
    width: 100%;
    font-size: 3rem;
    z-index: 2;
    background-color: #060B29;
   
    
}
.hidden-Menu.active{
    right: 0%;

}
.navbar{
    display: flex;
    align-items: center;
    justify-content: space-between; 
    max-width: 1920px;
    margin-left:auto;
    margin-right: auto;
    
 }
 
.list{
    list-style: none;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-family: 'helvetica';
    margin-right: 3rem;
    
}

.list li{
    margin-right: 4rem;
    text-underline-offset: 10px;
    text-decoration: none;
    position: relative;

    
}


.list li:hover{
    cursor: pointer;
}

.list li:not(.contact)::after{
    content:"";
    background-color: white;
    position: absolute;
    width: 100%;
    height: 3px;
    border-radius: 9px;
    z-index: 1;
    left: 0;
    margin-top: 1.8rem;
    transition: transform 600ms;


}

.list li:not(.contact):hover::after{
    transform: scale(0.8,1);
}


.contact{
    text-decoration: none !important;
    background-color: #0C7EEF;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    width: 120px;
    height: 50px;
}

.logo{
    margin-left: 4rem;
    height:70px;
    width:160px;
}

.top10Microphones{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 60%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.WriteComment{
    font-size: 1.3rem;
}

#name{
    margin-top: 10px;
    width: 1000px;
    height: 30px;
    border-radius:6px ;
    border: none;
    font-family: 'helvetica';
}

input:focus{
    outline: none;
    border: none;

}
.message{
    margin-top: 20px;
}
#message{
    margin-top: 10px;
    width: 1000px;
    height: 150px;
    border-radius:10px ;
    outline: none;
    border: none;
    font-family: 'helvetica';
    
}

#message::placeholder{
    font-family: 'helvetica';
}

#message:focus{
    outline: none;
    border: none;
}

#submit{
    color: white;
    background-color: #0C7EEF;
    border: none;
    font-family: 'helvetica';
    font-size: 1.3rem;
    border-radius: 20px;
    height: 40px;
    width: 100px;
    margin-top: 20px;
    cursor: pointer;
}
.comments{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.individualComment{
    
}

@media(min-width:1501px){
    .humburger-Menu,.hidden-Menu{
        display: none;
    }
}

@media(min-width:1461px) and (max-width:1500px){
    .humburger-Menu,.hidden-Menu{
        display:none;
      
    }
 
    
} 

@media(min-width:1301px) and (max-width:1460px){
    .humburger-Menu,.hidden-Menu{
        display:none;
      
    }
     
} 
@media (min-width:1171px) and (max-width:1300px){
    
    .navbar{
        display: none;
    }

    .humburger-Menu{
        margin-left: 0rem;
    }
    
}

@media (min-width:951px) and (max-width:1170px){
    .navbar{
        display: none;
    }
  
    
    .logo{
        display: none;
    }
    #name{
        width: 700px;
        
    }
    
    
    #message{
        width: 700px;
}
}
@media (min-width:741px ) and (max-width:950px){
    .navbar{
        display: none;
    }
   
    
    .logo{
        display: none;
    }

    #name{
        width: 700px;
        
    }
    
    
    #message{
        width: 700px;
    }


    .top10Microphones{
        width: 90%;
        
    }

}


@media (min-width:585px)and (max-width:740px){
 
    .navbar{
        display: none;
    }

    .logo{
        display: none;
    }

    #name{
        width: 500px;
        
    }
    
    
    #message{
        width: 500px;
    }

    img{
        height: 300px;
    }

    .top10Microphones{
        width: 90%;
        
    }

    
}
 

@media (max-width:584px){
    .navbar{
        display: none;
    }

    .logo{
        display: none;
    }

    #name{
        width: 300px;
        
    }
    
    
    #message{
        width:300px;
    }
    img{
        height: 200px;
    }

    .top10Microphones{
        width: 90%;
        
    }

}