

/*============= FUNCTIONS ===============*/
/*============= MIXINS ===============*/
#text__block {
  padding: 80px 0;
  background: var(--card);
}
#text__block .text__holder {
  padding: 30px 120px 30px 60px;
  background: var(--bgLight);
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: space-between;
}
#text__block .text__holder .left__side {
  max-width: 635px;
  width: 100%;
}
#text__block .text__holder .left__side .desc {
  width: 90%;
}
#text__block .text__holder .left__side .desc p {
  font-size: calc(0.0025 * 100vw + 19.2px);
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--text);
  margin: 0;
}
#text__block .text__holder .right__side {
  max-width: 256px;
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: relative;
}
#text__block .text__holder .right__side::before {
  content: url(./images/hoverImage.png);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 34, 34, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}
#text__block .text__holder .right__side:hover::before {
  opacity: 1;
}
#text__block .text__holder .right__side img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

@media (max-width: 992px) {
  #text__block {
    padding: 40px 0;
  }
  #text__block .text__holder {
    padding: 40px 20px;
  }
}
@media (max-width: 992px) {
  #text__block .text__holder {
    flex-direction: column;
    gap: 20px;
  }
  #text__block .text__holder .left__side {
    max-width: 100%;
  }
  #text__block .text__holder .left__side .desc {
    width: 100%;
  }
  #text__block .text__holder .right__side {
    max-width: 100%;
    height: 300px;
  }
}/*# sourceMappingURL=block.css.map */