@keyframes rotate {
  from {
    transform: rotate(0)
  }

  to {
    transform: rotate(360deg)
  }
}

.small {
  background: #fff;
  padding: 1rem 0 9.44rem
}

@media (max-width:767px) {
  .small {
    padding: 1rem 0 4.66rem
  }
}

.small .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.25rem
}

@media (max-width:767px) {
  .small .container {
    gap: 1.69rem
  }
}

.small .container img {
  max-height: 7rem;
  height: 100%;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center
}

@media (max-width:767px) {
  .small .container img {
    max-height: 5rem
  }
}

.small__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem
}

@media (max-width:767px) {
  .small__logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr)
  }
}

.small__logo {
  display: block
}

.small__text {
  max-width: 70.5rem
}

@media (max-width:767px) {
  .small__text {
    max-width: 100%
  }
}

.small__text * {
  color: #16322d;
  text-align: center;
  font-family: "DM Sans";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.375rem
}

@media (max-width:767px) {
  .small__text * {
    font-size: 1rem;
    line-height: 1.375rem
  }
}

.small__text a {
  text-decoration: underline
}

.small__text em {
  font-style: italic
}

.small__text strong {
  font-weight: 700
}