.hero-block {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.hero-block .block-holder {
  display: grid;
  grid-template-columns: 4fr 3fr;
  grid-gap: 0;
  box-sizing: border-box;
  align-items: stretch;
}
.hero-block .block-holder .left-side {
  background-color: rgba(29, 29, 29, 0.6);
  padding: 205px 0 200px;
  width: 100%;
}
.hero-block .block-holder .right-side {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: auto;
}
.hero-block .side-top {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: linear-gradient(90deg, #7c48c4 0%, rgba(82, 68, 137, 0) 100%);
  padding-top: 50px;
  padding-bottom: 50px;
  padding-right: 30px;
  margin-bottom: 30px;
}
.hero-block .calc-padding-left {
  padding-left: calc((100vw - 1170px) / 2) !important;
}
.hero-block .block-title {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 20px */
  text-transform: uppercase;
  bottom: 20px;
}
.hero-block .block-desc {
  color: #FFF;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 50px */
  margin-top: 20px;
}
.hero-block .info-holder {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px 30px;
  padding-right: 100px;
}
.hero-block .info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 10px 25px;
  border-radius: 5px;
  border: 2px solid var(--card);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
}
.hero-block .info__title {
  color: var(--card);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 24px */
}
.hero-block .info__desc {
  color: var(--card);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  margin-top: 10px;
}
.hero-block .scroll-next {
  margin-top: auto;
}
.hero-block .scroll-next:hover {
  background: var(--hover);
  box-shadow: 0 0 30px 0 rgba(82, 68, 137, 0.7);
  transition: all 0.3s ease-in;
}
.hero-block .sign-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  z-index: 9;
  background-color: var(--primary);
  border-radius: 50%;
}
.hero-block .sign-icon:hover {
  background: var(--hover);
  box-shadow: 0 0 30px 0 rgba(82, 68, 137, 0.7);
  transition: all 0.3s ease-in;
}
.hero-block .sign-icon .sign {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation-name: rotate;
  animation-duration: 8s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.hero-block .sign-icon .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 1240px) {
  .hero-block .calc-padding-left {
    padding-left: 15px !important;
  }
  .hero-block .info-holder {
    padding-right: 30px;
  }
  .hero-block .block-holder .left-side {
    padding: 150px 0;
  }
  .hero-block .block-desc {
    font-size: 40px;
  }
}
@media (max-width: 1025px) {
  .hero-block .block-holder .left-side {
    padding: 100px 0;
  }
  .hero-block .info-holder {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 769px) {
  .hero-block .block-holder {
    grid-template-columns: 1fr;
  }
  .hero-block .block-holder .right-side {
    display: none;
  }
  .hero-block .info-holder {
    grid-template-columns: repeat(2, 1fr);
    padding-right: 15px;
  }
}
@media (max-width: 769px) {
  .hero-block .block-holder .left-side {
    padding: 60px 0;
  }
  .hero-block .info-holder {
    grid-template-columns: 1fr;
  }
  .hero-block .block-desc {
    font-size: 35px;
  }
}
@media (max-width: 498px) {
  .hero-block .block-desc {
    font-size: 30px;
  }
}
@keyframes left-to-right {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes right-to-left {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

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