header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 86px;
  padding: 27px 140px 0 25px;
  font-family: 'Montserrat', sans-serif;
}

header div#logo {
  padding-bottom: 28px;
}

header div img {
  width: 220px;
  height: 60px;
}

header div.menu {
  display: flex;
  flex-direction: row;
  height: 100%;
}

header div.menu ul {
  display: flex;
  font-size: 18px;
  font-weight: bold;
  height: 100%;
  align-items: flex-end;
  padding-bottom: 15px;
}

@media (max-width: 1205px) {
  header div.menu ul {
    font-size: 17px;
  } 
}

@media (max-width: 1175px) {
  header div.menu ul {
    font-size: 16px;
  }
}

@media (max-width: 1145px) {
  header div.menu ul {
    font-size: 15px;
  }
}

@media (max-width: 1110px) {
  header div.menu ul {
    font-size: 14px;
  }
}

@media (max-width: 1070px) {
  header {
    justify-content: space-between;
    padding: 26px 0px 0 25px;
  }

  header div.menu ul {
    display: none;
  }

  header a.menu-burger {
    color: #d80010;
    text-decoration: none;
    font-size: 22px;
    background-color: transparent;
    margin-left: 64%;
    margin-bottom: 3%;
  }

  header a.menu-burger.open {
    margin-right: 6%;
    z-index: 2;
  }

  header a.menu-burger.open + div.menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    z-index: 1;
  }

  header a.menu-burger.open + div.menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  div.actions {
    display: none;
  }
}

@media (min-width: 1070px) {
  header a.menu-burger {
    display: none;
  }
}

@media (max-width: 795px) {
  header a.menu-burger {
    margin-left: 50%;
  }
}

@media (max-width: 795px) {
  header a.menu-burger {
    margin-left: 30%;
  }
}

header div ul li {
  list-style: none;
  padding: 0 20px;
}

header div ul li a {
  text-decoration: none;
  color: #000;
}

header div ul li a:hover {
  color:  #d80010;
  transition: all 0.3s;
  text-decoration: none;
}

div.actions {
  right: 0;
  top: 12px;
  position: absolute;
  background-color: #d80010;
  height: 40px;
  border-radius: 12px 0 0 12px;
  max-width: 188px;
}

div.actions ul {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}

div.actions ul li {
  padding: 0px 13px !important;
}

div.actions ul li img {
  width: 30px;
  height: 25px;
}

@media (max-width: 1255px) {
  div.actions {
    height: 30px;
  }

  div.actions ul li img {
    width: 20px;
    height: 20px;
  }
}
