* {
    box-sizing: border-box;
  }
.header-container{
    position: fixed;
    margin: 0px;
    padding: 0px;
    top: 0px;
    left: 0px;
   width: 100%;
   height:85px;
   display: flex;
   flex-direction: row;
   align-items: center;
   background-image: linear-gradient(90deg, rgba(254,152,94,1) 38%, rgba(1,207,255,1) 65%);
   z-index: 10;
  
   
}

.header-row{
    width: 100% !important; 
<<<<<<< HEAD
  
=======
    /* overflow:auto; */
>>>>>>> refs/remotes/origin/production
}
.left{
 display:flex;
 flex-direction: row;
 align-items: center;
}
.left img{
    height:80px;
    width: 80px;
    margin-bottom: 8px;
}
.left p{
    font-size:60px;
    font-weight:bold;
    color: #00DCFF;
    margin-top: 17px;
}
.right{
   
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  margin-top:0px;
  float: right;
}

.right ul{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    list-style: none;

}
.right ul li a{
    width: 80px;
    height:80px;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}
.right  .menu_bar {
    display: none;
}


@media (max-width: 821px){
    .header-container{
       display: flex;
       justify-content:space-between;
        width: 100%;
    }
    .right{
        display:flex;
        flex-direction: column ;
        justify-content: start;
        align-items: flex-end;
        height: 100px;
        
      }
  
    .right ul{
        width: 100px;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: flex-end;
        
    }
    .right ul li {
        display: flex;
        justify-content: center;
        align-items: center;
        border:3px solid transparent;
        border-radius:15px;
        background-image: linear-gradient(90deg, rgba(254,152,94,1) 38%, rgba(1,207,255,1) 65%);
    }
    .right ul li a {
        width: 50px;
    height:50px;
    }
    .right ul li a img{
        width: 130%;
        height:130%;
    }
    .right .menu_bar {
        display:block;
        
    }
}
