.trusty {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  text-align: center;
}

.trusty .text {
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-size: 10px;
  color: var(--color-lety1);
}

.trusty .text span {
  max-width: 120px;
  margin-left: 0.5em;
}

.trusty-text {
  color: var(--color-lety1);
}

.trusty-text2 {
  color: var(--color-lety1);
  font-weight: 700;
}

.icon img{
  object-fit: contain;
  max-height: 40px;
  width: auto;
}

@media (min-width: 544px) {
  .trusty .text {
    font-size: 10px;
  }

  .icon img {
    max-height: 60px;
  }
}


@media (min-width: 769px){
  .trusty{
    flex-direction: column;
  }
  .trusty .text{
    font-size: 12px;
  }

  .icon img{
    max-height: 100px;
  }
}



@media (min-width: 1201px) {
  .trusty {
    flex-direction: row;
  }

  .trusty .text{
    text-align: left;
  }

  .icon img{
    max-height: 120px;
  }
}

@media (min-width: 1401px) {

  .trusty .text{
    font-size: 17px;
  }
}

}