@charset "UTF-8";
.block-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
@media (max-width: 479px) {
  .block-wrapper {
    margin: 0;
  }
}
.block-wrapper .bl-item {
  display: flex;
  position: relative;
  text-decoration: none;
  margin: 0 10px 20px;
  width: calc(25% - 20px);
  height: 22vw;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #fff;
  padding: 20px;
  transition: ease all 0.5s;
}
@media (max-width: 991px) {
  .block-wrapper .bl-item {
    width: calc(50% - 20px);
    height: 45vw;
  }
}
@media (max-width: 479px) {
  .block-wrapper .bl-item {
    width: 100%;
    margin: 0 0 10px;
    height: 90vw;
  }
}
.block-wrapper .bl-item:before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  transition-property: all;
  transition-duration: 500ms;
  transition-delay: 0ms;
  transition-timing-function: ease;
  transition-behavior: normal;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18.26 18.26' width='18.26' height='18.26' data-prefix='incxkqgyv'%3E%3Cg stroke-linecap='round' stroke-linejoin='round' stroke='%23000' stroke-width='2' data-name='Слой 2'%3E%3Cpath fill='%23000' d='M4.54 1h12.72M17.26 13.73V1M1 17.26L17.26 1' class='path-i6w1fipme'%3E%3C/path%3E%3C/g%3E%3C/svg%3E") 50% no-repeat #fff;
}
@media (max-width: 767px) {
  .block-wrapper .bl-item:before {
    display: none;
  }
}
.block-wrapper .bl-item .bl_bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  filter: grayscale(1);
  z-index: 1;
  transition: ease all 0.5s;
}
.block-wrapper .bl-item .text-inform {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
.block-wrapper .bl-item .text-inform .title-bl {
  font-family: Unbounded, sans-serif;
  font-size: 1.1vw;
  line-height: 120%;
  font-weight: 400;
  color: #fff;
}
@media (max-width: 991px) {
  .block-wrapper .bl-item .text-inform .title-bl {
    font-size: 3vw;
  }
}
@media (max-width: 479px) {
  .block-wrapper .bl-item .text-inform .title-bl {
    font-size: 5vw;
  }
}
.block-wrapper .bl-item .text-inform .desc-bl {
  font-family: Unbounded, sans-serif;
  font-size: 15px;
  text-transform: none;
  font-weight: 300;
  text-align: right;
  color: #fff;
  padding-left: 70px;
}
@media (max-width: 767px) {
  .block-wrapper .bl-item .text-inform .desc-bl {
    padding-left: 0;
    text-align: left;
  }
}
.block-wrapper .bl-item:hover {
  background: #e3ff6c;
  border-color: #e3ff6c;
}
.block-wrapper .bl-item:hover:before {
  transform: rotateX(0deg) rotateY(0deg) rotateZ(45deg);
}
.block-wrapper .bl-item:hover .text-inform .title-bl {
  color: #000;
}
.block-wrapper .bl-item:hover .text-inform .desc-bl {
  color: #000;
}
.block-wrapper .bl-item:hover .bl_bg {
  filter: grayscale(0);
}
