.nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffb030;
  background: linear-gradient(90deg,rgba(255, 133, 0, 1) 0%, rgba(255, 201, 0, 1) 50%, rgba(255, 133, 0, 1) 100%);
  border-bottom: 5px solid  #943400;
  position: relative;
  min-height: 100px;
}
.nav__link_top_images {
  text-decoration: none;
}
.nav__logo-img{
  max-width: 250px;
  max-height: 50px;
  margin-left: 10px;
}
.nav__list{
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  transition: 0.5s;
}
.active.nav__list{
  right: 0;
}
.nav__list-item{
  list-style: none;
}
.nav__item-link{
  text-decoration: none;
  color: #fff;
  font-size: 24px;
  text-transform: uppercase;
  padding: 20px;
  transition: 0.2s;
}
.nav__item-link:hover{
  border-radius: 50px;
  background: #942c00;
  background: linear-gradient(90deg,rgba(148, 44, 0, 1) 0%, rgb(177, 60, 11) 50%, rgba(148, 44, 0, 1) 100%);
}

.nav__btn{
  display: none;
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: none;
  right: 2%;
  cursor: pointer;
  outline: none;
}
.nav__btn span{
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #fff;
  top: 0;
  left: 0;
}
.nav__btn::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #fff;
  top: 10px;
  left: 0;
  transition: 0.5s;
}
.nav__btn::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #fff;
  top: 20px;
  left: 0;
  transition: 0.5s;
}

.close.nav__btn::before {
  transform: rotate(45deg);
}
.close.nav__btn::after {
  transform: translate(0px,-9px) rotate(-45deg);
}
.close.nav__btn span{
  display: none;
}
@media(max-width: 890px) {
  .nav__btn{
    display: block;
  }
  .nav__list {
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: 105%;
    right: 100%;
    width: 100%;
    min-height: 300px;
    background: #ffda85;
    background: linear-gradient(90deg,rgba(255, 221, 99, 1) 0%, rgba(255, 241, 163, 1) 50%, rgba(255, 221, 99, 1) 100%);
  }
  .nav__item-link{
    color: #9e2d00;
    display: block;
    text-align: center;
  }
  .nav__list-item{
    width: 100%;
  }
  .nav__item-link:hover{
    border-radius: 50px;
    background-color: #ffb642;
  }
}