.partnersList {
  display: grid;
  grid-template-columns: repeat(auto-fill, 270px);
  row-gap: 30px;
  column-gap: 30px;
  justify-content: space-between;
}

@media (max-width: 1104px) {
  .partnersList {
    grid-template-columns: repeat(auto-fill, 300px);
  }
}

@media (max-width: 767px) {
  .partnersList {
    grid-template-columns: repeat(auto-fill, 100%);
  }
}

.partnersList figcaption {
  font-family: 'Oswald', Helvetica, Arial, Lucida, sans-serif;
  font-size: 24px;
  line-height: 1.5;
  color: #004A81;
  font-weight: 600;
  letter-spacing: 1px;
  transition: color .4s linear;
}

.partnersList ul {
  margin-top: 10px;
}

.partnersList li {
  list-style-type: none;
  font-weight: 500;
  margin-bottom: 5px;
  margin-left: -40px;
  transition: color .4s linear;
  text-transform: uppercase;
}

.partnersList figure.scrolledTo figcaption,
.partnersList figure.scrolledTo li {
  color: #fcac00;
}

.becomePartner__applicationLinksList {
  margin: 10px 0 20px;
  padding-inline-start: 20px;
}

.becomePartner__applicationLinksList li:not(:first-child) {
  margin-top: 7px;
}

.becomePartner__contact_list {
  list-style-type: none;
  display: flex;
  margin-top: 25px;
  padding-inline-start: 0;
  gap: 10px;
  flex-wrap: wrap;
}

.alphabetList {
  padding-inline-start: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
}

.alphabetList_fixed {
  width: calc(100% - 20%);
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  margin-top: 0;
}

.alphabetList_relative {
  width: 100%;
  position: relative;
  margin-top: 50px;
  visibility: hidden;
  opacity: 0;
  align-self: center;
}

body.scrolledToBottom .alphabetList_fixed {
  display: none;
}

body.scrolledToBottom .alphabetList_relative {
  visibility: visible;
  opacity: 1;
}


.alphabetList__item {
  height: 57px;
  width: 38px;
  font-family: 'Oswald', Helvetica, Arial, Lucida, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #004A81;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  text-align: center;
  transition: color .1s linear, font-size .1s linear, margin-top .1s linear;
  display: flex;
  justify-content: center;
  align-items: center;
}

.alphabetList__item:hover {
  color: #fcac00;
  font-size: 28px;
}

@media (max-width: 767px) {
  .alphabetList {
    width: calc(100% - 14%);
  }

  .alphabetList__item {
    font-size: 16px;
    height: 37px;
  }

  .alphabetList__item:hover {
    color: #004A81;
    font-size: 16px;
  }
}


.bigList {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.bigList > * {
  flex: 1 1 auto;
}

.bigList__list {
  list-style-type: none;
  padding-inline-start: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 15px;
  width: 100%;
}

.bigList__listItem {
  line-height: 1.5;
  font-size: 18px;
  text-align: left;
  transition: background-color .2s ease-in-out;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1 1 auto;
}

.bigList__listItem a {
  color: #004A81;
}

.bigList__listItem:not(:first-child) {
  margin-top: 15px;
}

.bigList__listItem svg {
  margin-top: 5px;
  flex: 0 0 24px;
}

@media (max-width: 1199px) {
  .bigList__listItem {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .bigList__listItem {
    font-size: 18px;
  }

  .bigList__listItem svg {
    width: 18px;
    height: 18px;
  }
}