.navbar-container img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-left: 50px;
}
.navbar-container {
  height: 60px;
  background-color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar--elements ul {
  display: flex;
  justify-content: space-between;
  list-style-type: none;
}
.navbar--elements a {
  text-decoration: none;
  color: rgb(146, 139, 139);
  padding: 10px;
  transition: .4s ease;
  margin-right: 15px;
  border-radius: 12px;
  transition: .3s ease;
}
.navbar--elements a:hover {
  background-color: red;
  border: 1px solid red;
  color: white;
}
.dropdown {
  display: none;
}
@media screen and (max-width: 992px) {

}

@media screen and (max-width: 805px) {
  .navbar--elements a {
    display: none;
  }

.dropdown {
  float: right;
  overflow: hidden;
  display: inline-block;
}

.dropdown .dropbtn {
  font-size: 18px;
  border: none;
  outline: none;
  padding: 14px 26px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}


.dropdown-content {
  display: none;
  position: absolute;
  right: 0%;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  font-size: 13px;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}
}
