.tiles-block {
  background-color: #F9F9F9;
  padding: 50px 0 100px;
}
.tiles-block.style-2 .tile__image {
  filter: grayscale(1);
  transition: filter .3s ease-in;
}
.tiles-block.style-2 .tile:hover .tile__image {
  filter: grayscale(0);
}
.tiles-block .block-title {
  color: #E4E4E4;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 45px;
  /* 90% */
  text-transform: uppercase;
  margin-bottom: 30px;
  text-align: center;
}
.tiles-block .tiles .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 15px;
}
.tiles-block .tile {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid #fff;
  padding: 20px;
  transition: border-color .3s ease-in;
  height: auto;
}
.tiles-block .tile.noname {
  justify-content: center;
  align-items: center;
}
.tiles-block .tile__image {
  object-fit: contain;
  margin: 0 auto;
  width: fit-content;
}
.tiles-block .tile__title {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  /* 168.75% */
  transition: color .3s ease-in;
  margin: 0 auto;
}
.tiles-block .tile:hover {
  border-color: var(--green);
}
.tiles-block .tile:hover .tile__title {
  color: var(--green);
}
.tiles-block .btn {
  margin: 30px auto 0;
}

@media (max-width: 1240px) {
  .tiles-block .tiles .swiper-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 769px) {
  .tiles-block {
    padding: 50px 0 80px;
  }
  .tiles-block .block-title {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 30px;
  }
  .tiles-block .tiles .swiper-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 498px) {
  .tiles-block .block-title {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 15px;
  }
  .tiles-block .tiles {
    overflow: hidden;
  }
  .tiles-block .tiles .swiper-wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: unset;
  }
  .tiles-block .tile {
    transition: opacity .3s ease-in;
    opacity: 0.5;
  }
  .tiles-block .tile.swiper-slide-active {
    opacity: 1;
  }
  .tiles-block .btn {
    width: 100%;
  }
}

/*# sourceMappingURL=block.css.map */
