.navbar{
    display: flex;
 flex-direction: row;
 justify-content: center;
 align-items: center;
  margin-top: -32px;
  margin-left: -15px;
  background-color: var(--bg-color);
  overflow: hidden;
  height: 72px;
}
  .navbar-nav{
display: flex;
 flex-direction: row;
 justify-content: center;
 align-items: center;
flex-wrap: wrap;
}
.navbar a{
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  margin-top: -8px;
  padding: 6px 6px;
  text-decoration: none;
  font-size: 0px;
  border-radius: .5rem;
}
.navbar a img{
  width: 78px;
  height: 52px;
  border-radius: .3rem;
}
.navbar ul{
  margin: 4px 4px 4px 4px;
  list-style: none;
}
.navbar a:hover{
  background-color: var(--first-color);
  color: #f2f2f2;
}
@media (min-width:1045px) and (max-width:1912px) {
    .navbar{
      height: 72px;
    }
    }
    @media (min-width:701px) and (max-width:1044px) {
      .navbar{
        height: 124px;
      }
      }
    @media (min-width:501px) and (max-width:700px) {
      .navbar{
        height: 182px;
      }
      }
    @media only screen and (max-width:500px) {
      .navbar{
        height: 240px;
      }
      }