.block-trust {
  background: #fff;
  padding: 0 0 clamp(48px,9vh,96px)
}
.block-trust__inner {
  width: 100%;
  padding-inline: var(--layout-inline)
}
.block-trust__head {
  margin-bottom: clamp(24px,4vw,36px)
}
.block-trust__head-row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: clamp(16px,3vw,32px)
}
.block-trust__head-main {
  flex: 1;
  min-width: 0
}
.block-trust__grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 10px;
  align-items: stretch
}
.block-trust__card {
  box-sizing: border-box;
  min-width: 0;
  min-height: 140px;
  height: auto;
  padding: 20px;
  background: rgba(122,83,140,.2);
  border-radius: 0;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start
}
.block-trust__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 0;
  width: 50px;
  height: 50px;
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
  order: 0;
  align-self: flex-start;
  font-family: Roboto,var(--font);
  font-size: .75rem;
  font-weight: 700;
  color: #513172;
  border: 0;
  border-radius: 0;
  position: relative;
  box-sizing: border-box;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40' fill='none' stroke='%23513172' stroke-width='0.65' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 11L5 5L11 5'/%3E%3Cpath d='M29 5L35 5L35 11'/%3E%3Cpath d='M5 29L5 35L11 35'/%3E%3Cpath d='M35 29L35 35L29 35'/%3E%3C/svg%3E") center/100% 100% no-repeat
}
.block-trust__icon-svg {
  width: clamp(20px,3.2vw,26px);
  height: clamp(20px,3.2vw,26px);
  flex: none
}
.block-trust__card-title {
  box-sizing: border-box;
  margin: 0;
  margin-top: auto;
  width: 80%;
  max-width: 100%;
  font-family: Roboto,var(--font);
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  color: #252529;
  flex: 0 1 auto;
  order: 1;
  align-self: flex-start;
  text-align: left
}
.block-trust__card-text {
  margin: 0;
  max-width: 34rem;
  font-family: Roboto,var(--font);
  font-size: clamp(16px, 1.65vw, 18px);
  font-weight: 400;
  line-height: 1.22;
  color: #575757
}
@media (max-width:720px) {
  .block-trust__card-title {
    width: 100%
  }
  .block-trust__card {
    padding-bottom: 24px
  }
}
@media (max-width:520px) {
  .block-trust__head-top {
    gap: clamp(8px,2vw,16px)
  }
  .block-trust__grid {
    grid-template-columns: 1fr
  }
  .block-trust__card {
    padding: 20px 20px 24px
  }
}