.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--list-media {
  padding: 0;
  min-height: 420px;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #405D93 0%, #3A80C2 100%);
}
@media only screen and (min-width: 768px) {
  .block--list-media {
    background: none;
  }
}
.block--list-media .text {
  color: #FFFFFF;
  padding: 35px 0;
}
.block--list-media .text ul {
  margin-bottom: 0;
  list-style: none;
  padding-left: 0;
}
.block--list-media .text ul li {
  font-size: 24px;
  margin-bottom: 30px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
}
.block--list-media .text ul li:last-child {
  margin-bottom: 0;
}
.block--list-media .text ul li:before {
  content: "";
  width: 36px;
  height: 36px;
  display: block;
  flex: 0 0 auto;
  margin-right: 15px;
  background-image: url(../../../assets/images/svg/icon-list-item.svg);
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (min-width: 768px) {
  .block--list-media .text {
    padding: 70px 0;
  }
}
.block--list-media .media {
  overflow: hidden;
  aspect-ratio: 1.5;
  position: relative;
}
.block--list-media .media img,
.block--list-media .media video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.block--list-media .background {
  position: relative;
  width: 100%;
}
.block--list-media .background .gradient {
  display: none;
}
.block--list-media .background .media {
  flex: 1 1 auto;
  width: 100%;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .block--list-media .background {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: row nowrap;
  }
  .block--list-media .background .gradient {
    flex: 1 1 auto;
    width: 50%;
    background: linear-gradient(90deg, #405D93 0%, #3A80C2 90%);
    position: relative;
    overflow: visible;
    z-index: 2;
    display: block;
  }
  .block--list-media .background .gradient:after {
    content: "";
    width: 33px;
    height: 100%;
    position: absolute;
    right: -33px;
    top: 0;
    background: url(../../../assets/images/svg/cutout-reversed-right.svg) no-repeat center;
    background-size: 100% auto;
  }
  .block--list-media .background .media {
    width: 50%;
  }
}
@media only screen and (min-width: 768px) {
  .block--list-media.layout--reverse .row {
    justify-content: flex-end;
  }
  .block--list-media.layout--reverse .background {
    flex-direction: row-reverse;
  }
  .block--list-media.layout--reverse .background .gradient:after {
    left: -33px;
    right: auto;
    background-image: url(../../../assets/images/svg/cutout-reversed-left.svg);
  }
}
