.services-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 0;
  width: 100%;
  background-color: #18383C;
  gap: 30px;
}

.services-trust__heading {
  font-size: 40px;
  font-weight: 500;
  line-height: 100%;
  text-align: center;
  color: #E8E6D4;
  margin-bottom: 0;
}

.services-trust__heading span {
  color: var(--color-orange);
  font-style: italic;
}

.services-trust__wrapper {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.services-trust__column {
  display: flex;
  width: 380px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1 0 0;
  align-self: stretch;
}

.trust-card {
  display: flex;
  padding: 20px 20px 30px 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  align-self: stretch;
  border-radius: 8px;
  border: 1px solid rgba(232, 230, 212, 0.20);
  background: rgba(132, 168, 172, 0.20);
  box-sizing: border-box;
}

.trust-card__icon {
  display: flex;
  width: 40px;
  height: 40px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1px solid #E8E6D4;
  background: var(--color-orange);
  box-sizing: border-box;
}

.trust-card__icon svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.trust-card-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-card__name {
  align-self: stretch;
  color: #E8E6D4;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 600;
  line-height: normal;
}

.trust-card__desc {
  align-self: stretch;
  color: #E8E6D4;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.trust-image {
  border-radius: 8px;
  background: lightgray center / cover no-repeat;
  background-size: cover;
  background-position: center;
  flex: 1 0 0;
  align-self: stretch;
}