.partners {
  width: 1170px;
  max-width: calc(100% - 385px);
  margin: 0 35px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.partners__title {
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 50px;
}

.partners__list {
  display: flex;
  gap: 30px;
  text-align: center;
  justify-content: space-between;
}
.partners__item a {
  color: initial;
}

.partner {
  padding: 0 20px;
  padding-top: 40px;
  width: 350px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid rgba(0, 63, 100, 0.20);
}

.partner__name {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}

.parnter__logo {
  height: 135px;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 1169px) {
  .partners {
    max-width: calc(100% - 15px * 2);
    gap: 20px;
  }

  .partners__title {
    font-size: 26px;
    line-height: 35px;
  }

  .partners__list {
    flex-direction: column;
  }

  .partner {
    width: 100%;
    gap: 10px;
  }
}