.z-index-up {
  z-index: 1;
}

* {
  box-sizing: border-box;
}

.bg--blue {
  background-color: #405D93;
}

.bg--gradient {
  background-color: linear-gradient(135deg, #405D93 0%, #3A80C2 100%);
}

.bg--gray {
  background-color: #A1A3A9;
}

.bg--white {
  background-color: #FFFFFF;
}

.block--banner-image {
  padding: 0;
  height: 400px;
  position: relative;
}
.block--banner-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 768px) {
  .block--banner-image {
    height: 500px;
  }
}
