/*============= MIXINS ===============*/
.stocks-block {
  background: var(--bgLight);
  padding: 60px 0;
}


.stocks-block .stock__holder .stock__item {
  border-radius: 10px;
  overflow: hidden;
  padding: 78px 50px;
  position: relative;
  z-index: 10;
}

.stocks-block .stock__holder .stock__item .name {
  color: var(--card);
  max-width: 550px;
  width: 100%;
}

.stocks-block .stock__holder .stock__item .desc {
  margin: 20px 0 40px;
  max-width: 550px;
  width: 100%;
}

.stocks-block .stock__holder .stock__item .desc p {
  font-size: calc(0.00125 * 100vw + 13.6px);
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  color: var(--card);
  margin: 0;
}

.stocks-block .stock__holder .stock__item .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.stocks-block .stock__holder .stock__item .background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(94deg, #000 0%, rgba(0, 0, 0, 0.8) 0.01%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.stocks-block .stock__holder .stock__item .background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.stocks-block .stock__holder .stock__item .stock__btn {
  padding-right: 45px;
  padding-left: 45px;
}

@media (max-width: 992px) {
  .stocks-block {
    padding: 40px 0;
  }

  .stocks-block .stock__holder {
    gap: 10px;
  }

  .stocks-block .stock__holder .stock__item {
    padding: 40px 20px;
  }
}

@media (max-width: 500px) {
  .stocks-block .stock__holder {
    flex-wrap: wrap-reverse;
    justify-content: flex-end;
  }

  .stocks-block .stock__holder .swiper {
    order: 3;
  }

  .stocks-block .stock__holder .stock__item .stock__btn {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }
}

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