.reasons {
  display: grid;
  grid-template-columns: 445fr 401fr 394fr;
  gap: 20px;
  min-height: 506px;
  margin-top: 40px;
}
.reasons > div {
  background: var(--black);
  border-radius: 20px;
  padding: 40px;
  box-sizing: border-box;
  color: var(--white);
}
.reasons > div:first-child {
  order: 1;
  grid-row: span 20;
  border-radius: 40px;
  overflow: hidden;
}
.reasons > div:first-child .reasons-item-title {
  font-size: 32px;
}
.reasons > div:first-child .reasons-item-text {
  font-size: 20px;
}
.reasons > div:first-child .reasons-item-image {
  width: auto;
  height: 280px;
  top: 115px;
  left: 68%;
  transform: rotate(-72deg);
}
.reasons > div:nth-child(2) {
  order: 2;
  grid-row: span 19;
  background: var(--dark-gray-color);
  border-radius: 40px;
  overflow: hidden;
}
.reasons > div:nth-child(2) .reasons-item-text {
  font-size: 20px;
}
.reasons > div:nth-child(2) .reasons-item-image {
  width: auto;
  height: 205px;
  top: 62px;
  left: 68%;
}
.reasons > div:nth-child(3) {
  order: 3;
  grid-row: span 12;
  padding: 20px;
}
.reasons > div:nth-child(3) .reasons-item-image {
  width: auto;
  height: 131px;
  top: -25px;
  right: 40px;
  transform: scaleX(-1);
}
.reasons > div:nth-child(4) {
  grid-row: span 1;
  order: 5;
}
.reasons > div:nth-child(4) .reasons-item-title {
  font-size: 20px;
  margin-bottom: 0;
}
.reasons > div:nth-child(4) .reasons-item-image {
  width: auto;
  height: 84px;
  top: -18px;
  right: 69px;
}
.reasons > div:nth-child(5) {
  order: 4;
  grid-row: span 8;
  background: var(--dark-gray-color);
  padding: 20px;
  overflow: hidden;
}
.reasons > div:nth-child(5) .reasons-item-image {
  width: 180px;
  height: auto;
  bottom: 15px;
  right: -74px;
}
.reasons-item {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.reasons-item-title {
  display: block;
  font-family: "Druk Text Wide Cyr", sans-serif;
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 30px;
  margin-right: 20px;
}
.reasons-item-title-wrap {
  display: flex;
  justify-content: space-between;
}
.reasons-item-text {
  font-size: 16px;
}
.reasons-item-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: solid 1px var(--white);
  border-radius: 7px;
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.reasons-item-image {
  position: absolute;
  z-index: -1;
}

@media screen and (max-width: 1279px) {
  .reasons {
    grid-template-columns: 1fr 1fr;
  }
  .reasons > div:first-child {
    grid-row: span 2;
  }
  .reasons > div:nth-child(2) {
    grid-row: span 1;
  }
  .reasons > div:nth-child(3) {
    grid-row: span 1;
  }
  .reasons > div:nth-child(4) {
    grid-row: span 1;
    order: 4;
  }
  .reasons > div:nth-child(5) {
    grid-row: span 1;
    order: 5;
  }
}
@media screen and (max-width: 900px) {
  .reasons {
    grid-template-columns: 1fr;
  }
  .reasons > div:first-child {
    grid-row: span 1;
  }
  .reasons > div:nth-child(2) {
    grid-row: span 1;
  }
  .reasons > div:nth-child(3) {
    grid-row: span 1;
  }
  .reasons > div:nth-child(4) {
    grid-row: span 1;
    order: 4;
  }
  .reasons > div:nth-child(5) {
    grid-row: span 1;
    order: 5;
  }
}
@media screen and (max-width: 600px) {
  .reasons-item-title {
    font-size: 20px !important;
  }
  .reasons-item-text {
    font-size: 16px !important;
  }
  .reasons > div {
    border-radius: 20px !important;
    padding: 20px !important;
  }
  .reasons > div:first-child .reasons-item-image {
    height: 180px;
    top: 20px;
    left: auto;
    right: -120px;
  }
  .reasons > div:nth-child(2) .reasons-item-image {
    height: 125px;
    right: -60px;
    left: auto;
  }
  .reasons > div:nth-child(3) .reasons-item-image {
    height: 100px;
    top: -20px;
  }
  .reasons > div:nth-child(4) .reasons-item-image {
    height: 64px;
    right: 50px;
  }
  .reasons > div:nth-child(5) .reasons-item-image {
    width: 120px;
    right: -40px;
  }
}

/*# sourceMappingURL=style.css.map */
