header {
  position: relative;
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
}

.header__logo img {
  max-height: 60px;
  display: flex;
  align-items: center;
}

.header__menu-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__menu-list li a {
  text-decoration: none;
  color: var(--main-color);
  font-size: 17px;
  font-weight: 400;
  line-height: 27.2px;
  white-space: nowrap;
  transition: all 0.2s;
}
.header__menu-list li a:hover {
  color: #BF0C10;
}
.header__burger {
  background: url('../assets/img/icons/burger-menu.svg');
  min-width: 30px;
  height: 30px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 1200px) {
  .header__burger {
    display: block;
  }
  .header__menu {
    display: none;
    position: absolute;
    top: 103px;
    left: 0;
    width: 100%;
  }
  .header__menu.show {
    display: flex;
  }
  .header__menu-list {
    width: 100%;
    flex-direction: column;
    background-color: #FFFFFF;
    padding-bottom: 20px;
    border-radius: 0 0 22px 22px;
  }
  .header .animated-button {
    margin-left: auto;
  }
}

@media screen and (max-width: 560px) {
  .header .animated-button {
    display: none;
  }
}
