header {
  width: 100%;
  background-color: #f3f6f9;
  font-size: 20px;
}

header a {
  color: #1b314d;
}

header a:hover {
  color: #1b314d;
}

.header-items {
  max-width: 1400px;
  padding: 10px 20px;
  margin: auto;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
}

.header-items-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
}

.header-items-right {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 20px;
}



@media (max-width: 570px) {
  .header-items-left {
    grid-template-columns: 1fr;
    gap: 0px;
  }
  .header-items-right {
    grid-template-columns: 1fr 1fr;
    gap: 0px;
  }
  .ml-s{
    margin-left: 5px;
  }
}

@media (max-width: 360px) {

}
