/* ==========================================================================
   TRUSTED SECTION ("Trusted Technology for Every Fleet Size")
   Pozadina #242424 (nastavak iz prethodnih sekcija), sa "card" boxom unutra.
   ========================================================================== */

.trusted {
  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 100px 48px;
  background: #242424;
}

.trusted__inner {
  width: 100%;
  max-width: var(--container-width);
}

.trusted__box {
  display: flex;
  padding: 64px 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  align-self: stretch;

  border-radius: 24px;
  border: 1px solid #5A5A5A;
  background: #353535;
}

.trusted__heading {
  margin: 0;
  color: #FFF;
  text-align: center;
  font-family: var(--font-family);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 46px; /* 115% */
  letter-spacing: -0.8px;
}

.trusted__text {
  margin: 0;
  max-width: 908px;
  color: #C4C4C4;
  text-align: center;
  font-family: var(--font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

/* ==========================================================================
   TABLET (768px - 1023px)
   ========================================================================== */
@media (max-width: 1023px) {

  .trusted {
    padding: 80px 24px;
  }
}

/* ==========================================================================
   MOBILE (<= 767px)
   ========================================================================== */
@media (max-width: 767px) {

  .trusted {
    padding: 80px 24px;
  }

  .trusted__heading {
    font-size: 32px;
    line-height: 46px; /* 143.75% */
    letter-spacing: -0.8px;
  }
}
