.usp .be-container {
    width: min(calc(100% - 160px), 1300px);
    padding-inline: 0;
}

@media (max-width: 1500px) and (min-width: 1201px) {
.usp .be-container {
    width: min(calc(100% - 160px), 1300px);
    padding-inline: 0;
}
}

@media (max-width: 1200px) and (min-width: 1025px) {
.usp .be-container {
    width: min(calc(100% - 120px), 1300px);
    padding-inline: 0;
}
}

@media (max-width: 1024px) and (min-width: 768px) {
.usp .be-container {
    width: min(calc(100% - 80px), 1300px);
    padding-inline: 0;
}
}

@media (max-width: 767px) { 
.usp .be-container {
    width: min(calc(100% - 40px), 1300px);
    padding-inline: 0;
}
}



.usp {
  padding: 60px 0 30px;
  background: var(--be-white);
}

.usp__panel {
  align-items: stretch;
  border-radius: var(--be-radius-panel);
  background: #8f2c4b;
  color: var(--be-white);
  box-shadow: var(--be-shadow-soft);
  overflow: hidden;
}

.usp__item {
  position: relative;
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 24px;
}

.usp__item::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 0;
  bottom: 24px;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.usp__item:last-child::after {
  display: none;
}

.usp__item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 7px;
}

.usp__item:nth-child(3) img {
  width: 48px;
  height: 48px;
}

.usp__item h3 {
  margin: 0;
  color: var(--be-white);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.08;
}

.usp__item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.22;
}

@media (max-width: 991.98px) {
  .usp__item::after,
  .usp__item:nth-child(3)::after {
    display: block;
  }

  .usp__item:nth-child(even)::after,
  .usp__item:last-child::after {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .usp {
    padding-bottom: 48px;
  }

  .usp__item::after,
  .usp__item:nth-child(3)::after {
    top: auto;
    right: 24px;
    bottom: 0;
    left: 24px;
    display: block;
    width: auto;
    height: 1px;
  }

  .usp__item:nth-child(even)::after {
    display: block;
  }

  .usp__item:last-child::after {
    display: none;
  }
}
