.header {
  background-color: #111;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (min-width: 1024px) {
  .header {
    position: sticky;
    top: 0;
    z-index: 1;
  }
}

.header__content {
  height: 65px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header__title {
  margin: 0;
  font-weight: var(--main-font-weight);
  font-size: 36px;
  line-height: 100%;
}

@media (min-width: 576px) {
  .header__title {
    font-size: 48px;
  }
}

.header__bottom {
  padding-bottom: 40px;
}

@media (min-width: 576px) {
  .header__bottom {
    padding-bottom: 64px;
  }
}
