.header {
  margin-bottom: 50px;
  padding: 0;

  &__banner {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;

    &--small {
      max-height: 250px;
    }
  }
  
  &__img {
    min-width: 450px;
  }
}

@include min($smallScreen) {
  .header {
    &__img {
      min-width: 900px;
    }
  }
}