.ventures {
  margin-bottom: 93px;
}
@media (min-width: 768px) {
  .ventures {
    margin-bottom: 160px;
  }
}
.ventures .hero-banner {
  display: block;
  aspect-ratio: 0.7318435754;
  max-width: 1440px;
  margin: 0 auto 35px;
  clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    100% calc(100% - 73px),
    calc(100% - 73px) 100%,
    0 100%
  );
  background-color: #171717;
  background-image: url("../assets/images/ventures/hero_mobile.jpg");
  background-size: auto 100%;
  background-position: 50% 100%;
  background-repeat: no-repeat;
}
@media (min-width: 640px) {
  .ventures .hero-banner {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 90px 100%, 0 calc(100% - 90px));
    aspect-ratio: 2.2857142857;
    background-image: url("../assets/images/ventures/hero.jpg");
    background-size: cover;
  }
}
@media (min-width: 1024px) {
  .ventures .hero-banner {
    margin-bottom: 85px;
  }
}

.ventures h1 {
  font-size: 45px;
  margin: 0 0 30px;
  letter-spacing: 0.45px;
  line-height: 1.1;
  font-weight: 400;
}
.ventures h1 b {
  font-weight: 700;
}
@media (min-width: 1024px) {
  .ventures h1 {
    font-size: 70px;
    margin: 0 0 53px;
    letter-spacing: 0.7px;
  }
}

.ventures .text-intro {
  display: grid;
  gap: 1.5em;
  font-size: 16px;
  letter-spacing: 0.16px;
  line-height: 1.62;
  margin-bottom: 40px;
}
.ventures .text-intro p {
  margin: 0;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .ventures .text-intro {
    font-size: 22px;
    line-height: 1.54;
    letter-spacing: 0.22px;
    margin-bottom: 80px;
  }
}

.partners-list {
  display: grid;
  grid-template-columns: repeat(var(--clmn, 2), 1fr);
  gap: 10px 11px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .partners-list {
    --clmn: 3;
    gap: 21px 20px;
  }
}
@media (min-width: 1024px) {
  .partners-list {
    --clmn: 4;
  }
}
@media (min-width: 1280px) {
  .partners-list {
    --clmn: 5;
  }
}

.partners-list__wrapper {
  display: grid;
  place-content: center;
  min-height: 100px;
  padding: 10px 25px;
  position: relative;
  background-color: #fff;
  clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    100% calc(100% - 24px),
    calc(100% - 24px) 100%,
    0 100%
  );
  text-decoration: none;
  overflow: hidden;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .partners-list__wrapper {
    min-height: 142px;
  }
}

.partners-list__wrapper img {
  max-width: 100%;
  max-height: 46px;
}
@media (min-width: 768px) {
  .partners-list__wrapper img {
    max-height: 80px;
  }
}

@media (hover: hover) {
  .partners-list__wrapper:hover .partners-list__description {
    opacity: 1;
    z-index: 1;
    visibility: visible;
  }
}
.partners-list__description {
  display: grid;
  place-content: center;
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
  letter-spacing: 0.36px;
  padding: 26px 19px 26px 17px;
  color: #171717;
  border: 1px solid #606060;
  background-color: #fff;
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: all 0.3s ease-in;
  box-sizing: border-box;
}

.partners-list__description:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 0 23.5px 23.5px;
  border-color: transparent transparent #606060 transparent;
  transform: rotate(0deg);
}

.partners-list li {
  padding: 0;
}
