@keyframes grayscalePulse {
  0% {
    filter: grayscale(1);
  }
  50% {
    filter: grayscale(0);
  }
  100% {
    filter: grayscale(1);
  }
}
.block-choose {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.block-choose__slider {
  overflow: hidden;
}
.block-choose__slider-bullet {
  width: 50px;
  height: 50px;
  margin: 0 10px;
  cursor: pointer;
}
.block-choose__slider-bullet img {
  width: 100%;
  max-height: 100%;
  transition: all 150ms;
}
.block-choose__slider-bullet:not(.is-active) img {
  filter: grayscale(1);
}
.block-choose__slider-bullet.is-active + .is-bullet img {
  animation: grayscalePulse 1500ms ease-in-out 3s infinite;
  animation-play-state: running;
}
.block-choose__slider-bullet:hover img {
  filter: grayscale(0) !important;
  animation-play-state: paused !important;
}
.block-choose__item {
  max-width: 430px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  text-align: center;
}
.block-choose__item-icon {
  width: 75px;
}
.block-choose__item-icon img {
  max-width: 100%;
  max-height: 75px;
}
.block-choose__item-name {
  max-width: calc(100% - 95px);
  width: auto;
  flex-shrink: 1;
  flex-basis: min-content;
  text-align: left;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  color: #383C48;
}
.block-choose__item-text {
  width: 100%;
  flex-grow: 1;
  line-height: 1.3;
  font-size: 17px;
  color: #000000;
}
.block-choose__item.icon {
  margin-top: 150px;
}
.block-choose__item.icon:after {
  content: "";
  width: 100%;
  height: 240px;
  position: absolute;
  top: 0;
  left: 0;
  background: green;
}
@media (min-width: 1200px) {
  .block-choose__item {
    align-items: unset;
    flex-direction: column;
  }
  .block-choose__item-icon {
    width: auto;
  }
  .block-choose__item-name {
    max-width: unset;
    text-align: center;
  }
}
