.infobanners {
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--blackColor);
}

.infobanners-wrapper {
  display: flex;
  align-items: center;
  gap: 25px;
}

.infobanners-cards {
  display: flex;
  gap: 25px;
}

.infobanner-card {
  position: relative;
  max-width: 255px;
  width: 100%;
  min-height: 135px;
  border-radius: 12px;
  overflow: hidden;
}
.infobanner-card__inner {
  position: absolute;
  padding: 12px 14px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  z-index: 1;
}
.infobanner-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #fff;
}
.infobanner-card__icon span {
  font-family: "icons";
}
.infobanner-card__text {
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
}
.infobanner-card__image {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.infobanner-card__image::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(24, 24, 24, 0.35) 0%, rgba(24, 24, 24, 0.35) 100%);
  z-index: 0;
}

.infobanners-desc {
  max-width: 385px;
}
.infobanners-desc p {
  color: var(--textColor);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.infobanners-desc__logo {
  display: flex;
  width: 92px;
  height: 55px;
  margin-bottom: 10px;
}

@media screen and (max-width: 992px) {
  .infobanners-wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .infobanners-desc {
    max-width: initial;
  }
  .infobanners-cards {
    flex-wrap: wrap;
    width: 100%;
  }
  .infobanner-card {
    flex: 1 200px;
    max-width: initial;
  }
  .infobanner-card__image {
    max-height: 135px;
  }
  .infobanner-card__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}