.c-banner {
  // padding-bottom: 0;
  .za-carousel__items {
    height: 91.467vw; /* 343/375 */
    max-height: 343px;
  }

  .banner-item {
    position: relative;
    // height: 343px;
    min-height: 150px;
    img,
    video {
      width: 100%;
      // height: 100%;
      // object-fit: cover;
      display: block;
    }

    video {
      background-color: #333;
    }
  }

  .banner-item:empty {
    height: 343px;
    background: url(../../assets/images/banner-default.png) no-repeat;
    background-size: cover;
  }

  .play {
    position: absolute;
    width: 90px;
    height: 90px;
    top: 50%;
    left: 50%;
    margin-left: -45px;
    margin-top: -45px;
    border-radius: 100%;
    background: #fff url(../../assets/images/play.png) no-repeat;
    background-size: contain;
  }
}

.c-banner {
  &.button-banner {
    position: relative;
    marign-bottom: 0 !important;
    padding: 0;

    .banner-item {
      height: auto;

      img {
        object-fit: initial;
      }
    }

    .banner-button {
      position: absolute;
      height: 70px;
      bottom: 10vw;
      left: 20px;
      right: 20px;
      animation: breath 1.2s infinite linear;

      .img {
        width: 100%;
        height: 100%;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
      }
    }
  }
}

.banner {
  .features {
    display: flex;
    font-size: 13px;
    justify-content: flex-start;
    flex-wrap: wrap;
    line-height: 18px;
    padding: 30px 12px 16px;
    margin-bottom: -14px;
    list-style: none;
    background: #fff;

    & > li {
      line-height: 24px;
      margin-right: 8px;
    }

    .za-icon {
      margin-right: 6px;
      color: var(--theme-secondary);
    }
  }

  .features--single {
    justify-content: space-around;
  }
}

@keyframes breath {
  0%,
  100% {
    transform: scale(0.96);
  }

  50% {
    transform: scale(1);
  }
}
