

/*============= FUNCTIONS ===============*/
/*============= MIXINS ===============*/
#stocks__block {
  padding: 80px 0;
  position: relative;
}
#stocks__block .stocks__holder {
  position: relative;
}
#stocks__block .stocks__holder .swiper-slide {
  height: initial;
}
#stocks__block .stocks__holder .stock__item {
  display: flex;
  background: var(--stroke);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}
#stocks__block .stocks__holder .stock__item .left__side {
  padding: 30px;
  display: flex;
  flex-direction: column;
}
#stocks__block .stocks__holder .stock__item .left__side .procent {
  padding: 7px 20px;
  background: var(--primary);
  border-radius: 25px;
  font-size: calc(0 * 100vw + 12px);
  font-style: normal;
  font-weight: 800;
  line-height: 100%;
  color: var(--card);
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
}
#stocks__block .stocks__holder .stock__item .left__side .name {
  font-size: calc(0.00375 * 100vw + 16.8px);
  font-style: normal;
  font-weight: 800;
  line-height: 100%;
  color: var(--head);
  margin-bottom: 10px;
}
#stocks__block .stocks__holder .stock__item .left__side .desc p {
  font-size: calc(0.00125 * 100vw + 13.6px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--text);
  margin: 0;
}
#stocks__block .stocks__holder .stock__item .left__side .link {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: calc(0.00125 * 100vw + 13.6px);
  font-style: normal;
  font-weight: 800;
  line-height: 100%;
  color: var(--primary);
  cursor: pointer;
  transition: color 0.4s ease-out;
}
#stocks__block .stocks__holder .stock__item .left__side .link svg path {
  transition: stroke 0.4s ease-out;
  stroke: var(--hover);
}
#stocks__block .stocks__holder .stock__item .left__side .link:hover {
  color: var(--hover);
}
#stocks__block .stocks__holder .stock__item .left__side .link:hover svg path {
  stroke: var(--hover);
}
#stocks__block .stocks__holder .stock__item .right__side {
  max-width: 170px;
  width: 100%;
}
#stocks__block .stocks__holder .stock__item .right__side img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#stocks__block .stocks__holder .slider__theme {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 40px;
}
#stocks__block .stocks__holder .slider__theme .slider__buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}
#stocks__block .stocks__holder .slider__theme .slider__counter {
  display: flex;
  align-items: flex-end;
  font-size: calc(0.00375 * 100vw + 16.8px);
  font-style: normal;
  font-weight: 800;
  line-height: 100%;
  color: var(--text);
}
#stocks__block .stocks__holder .slider__theme .slider__counter .current {
  font-size: calc(0.00875 * 100vw + 15.2px);
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  color: var(--primary);
}
#stocks__block .stocks__holder .slider__theme .slider__counter .counter__total {
  font-size: calc(0.00375 * 100vw + 16.8px);
  font-style: normal;
  font-weight: 800;
  line-height: 100%;
  color: var(--text);
}
#stocks__block .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#stocks__block .background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@media (max-width: 992px) {
  #stocks__block {
    padding: 40px 0;
  }
  #stocks__block .stocks__holder .slider__theme {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  #stocks__block .stocks__holder .stock__item {
    flex-direction: column;
    justify-content: space-between;
  }
  #stocks__block .stocks__holder .stock__item .right__side {
    max-width: 100%;
    height: 250px;
  }
}/*# sourceMappingURL=block.css.map */