.partners-donors {
  padding: 120px 0 140px;
}

@media only screen and (max-width: 1200px) {
  .partners-donors {
    padding: 90px 0 110px;
  }
}

@media only screen and (max-width: 768px) {
  .partners-donors {
    padding: 70px 0;
  }
}

@media only screen and (max-width: 575px) {
  .partners-donors {
    padding: 55px 0;
  }
}

.partners-donors__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 35px;
}

.partners-donors__heading {
  flex: 1;
}

@media only screen and (max-width: 991px) {
  .partners-donors__heading {
    flex: unset;
    width: 100%;
  }
}

.partners-donors__search {
  width: 100%;
  max-width: 296px;
}

.partners-donors__search .events-search {
  background-color: #f6f6f6;
  margin-left: 0;
  position: relative;
}

.partners-donors__search .events-search svg {
  display: block;
}

.partners-donors__search .events-search .events-search__input {
  width: 100%;
}

@media only screen and (max-width: 575px) {
  .partners-donors__search {
    max-width: 100%;
  }
}

.partners-donors--title {
  width: 100%;
  max-width: 750px;
  margin: 0 0 24px;
  font-size: 72px;
  line-height: 1;
  font-weight: 700;
  color: #27383f;
}

@media only screen and (max-width: 768px) {
  .partners-donors--title {
    font-size: 54px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 575px) {
  .partners-donors--title {
    font-size: 36px;
    margin-bottom: 15px;
  }
}

.partners-donors--text {
  width: 100%;
  max-width: 646px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
  color: #545454;
}

@media only screen and (max-width: 768px) {
  .partners-donors--text {
    font-size: 18px;
  }
}

@media only screen and (max-width: 575px) {
  .partners-donors--text {
    font-size: 16px;
  }
}

.partners-donors__list {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  outline: 2px solid #fff;
}

@media only screen and (max-width: 1200px) {
  .partners-donors__list {
    margin-top: 60px;
  }
}

@media only screen and (max-width: 991px) {
  .partners-donors__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 768px) {
  .partners-donors__list {
    margin-top: 55px;
  }
}

@media only screen and (max-width: 575px) {
  .partners-donors__list {
    margin-top: 35px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.partners-donors__list-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 35px 42px;
  background-color: white;
  cursor: pointer;
  transition: background-color 0.4s ease;
  border-top: 1px solid #ccc;
  margin: -1px -1px 0px -1px;
  /* border-top: none; */
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.partners-donors__list-item.shift {
  border-right-width: 0;
  border-bottom-width: 0;
  margin-left: -1px;
  cursor: auto;
}

@media only screen and (max-width: 1200px) {
  .partners-donors__list-item {
    padding: 25px 30px;
  }
}

@media only screen and (max-width: 575px) {
  .partners-donors__list-item {
    padding: 15px 20px;
  }
}

.partners-donors__list-item img {
  display: block;
  width: auto !important;
  height: auto !important;
  max-height: 65px;
  max-width: 100%;
}

@media only screen and (max-width: 575px) {
  .partners-donors__list-item img {
    max-height: 52px;
  }
}

.partners-donors__list-item:not(.shift):hover,
.partners-donors__list-item:not(.shift):focus {
  background-color: #f6f6f6;
}

.partners-donors__not-found {
  margin-bottom: -80px;
  margin-top: 120px;
  text-align: center;
  color: var(--color-gray-blue);
  font-size: 60px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 575px) {
  .partners-donors__not-found {
    margin-bottom: -35px;
    margin-top: 45px;
    font-size: 30px;
  }
}