.hero {
    padding: 40px 0;
}

@media screen and (min-width: 996px) {
  .hero {
     padding: 80px 0;
  }
/*     .hero {
        height: calc(100vh - 134px);
    } */
}

@media screen and (min-width: 1200px) {
/*     .hero {
        height: calc(100vh - 111px);
        padding: 20px 0;
    } */
}

.hero .container {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.hero .wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    gap: 24px;
}

@media screen and (min-width: 996px) {
    .hero .wrapper {
        flex-direction: row;
        gap: 62px;
    }
}

.hero__content {
    flex: 0 0 calc(50% - 31px);
    color: #F8F8F8;
}

.hero__content h1 {
    font-size: 55px;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 18px;
}

.hero__content p {
    font-size: 22px;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.53px;
    margin-bottom: 45px;
}

.hero__content a {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 15px 35px;
    background-color: #74C224;
    border-radius: 30px;
    border: 1px solid transparent;

    transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.hero__content a:hover {
    border-color: #74C224;
    background-color: transparent;

    transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.hero__content a:hover p {
    color: #74C224;

    transition: color 0.3s ease-in-out;
}

.hero__content a p {
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0.36px;
    margin-bottom: 0;
    color: #fff;

    transition: color 0.3s ease-in-out;
}

.hero__content a svg {
    width: 20px;
    height: auto;
}

.hero__content a svg #Rectangle_22828 {
    transition: stroke 0.3s ease-in-out;
}

.hero__content a svg path {
    transition: fill 0.3s ease-in-out;
}

.hero__content a:hover svg #Rectangle_22828 {
    stroke: #74C224;

    transition: stroke 0.3s ease-in-out;
}

.hero__content a:hover svg path {
    fill: #74C224;

    transition: fill 0.3s ease-in-out;
}

.hero__video {
    position: relative;
    flex: 0 0 calc(50% - 31px);
}

.hero__video svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    width: 70px;

    opacity: 0.5;
}

.hero__video video {
    width: 100%;
    cursor: pointer;
}

.hero__scroll {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

@media screen and (min-width: 996px) {
    .hero__scroll {
        position: absolute;
        left: 50%;
        bottom: 60px;
        transform: translateX(-50%);
    }
}

.hero__scroll img {
    width: auto;
    height: auto;
}

.hero__scroll p {
    font-size: 12px;
    line-height: 1;
    font-weight: 300;
    letter-spacing: 0.29px;
    color: #f8f8f8;
}


.hero__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    width: 50px;

    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.hero__play img {
    width: 100%;
}

@media screen and (min-width: 767px) {
    .hero__play {
        width: auto;
    }
}

.hero__play.unactive {
    opacity: 0;
    visibility: hidden;

    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    background-color: rgba(0,0,0,0.5);

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.video-overlay.active {
    opacity: 1;
    visibility: visible;

    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.video-overlay .video-overlay__container {
    position: relative;
    width: 75%;
    margin: 0 auto;
    z-index: 3;
}

.video-overlay #close {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

@keyframes moveUpDown {
    0%, 100% {
        transform: translate(809px, 947px);
    }
    50% {
        transform: translate(809px, 955px);
    }
}
#Ellipse_883 {
    animation: moveUpDown 2s ease-in-out infinite;
}

.container.container--metrics {
  height: auto;
  margin-top: -40px;
}

@media screen and (max-width: 996px) {
  .container.container--metrics {
    margin-top: 24px;
  }
}

.hero__metrics {
    display: flex;
    gap: 20px;
}

.hero__metric {
    position: relative;
    flex: 1;
    padding: 46px 30px 34px;
    border-radius: 26px;
    background-color: #1B2132;
}

.hero__metric.locked .hero__metric--locked {
  display: flex; !important;
}

.hero__metric--locked {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 26px;
  overflow: hidden;
}

.hero__metric--locked p {
  margin-top: 25px;
  font-size: 17px;
  line-height: 28px;
  color: #fff;
}

.hero__metric {
  text-align: center;
}

.hero__metric h3 {
    margin-bottom: 16px;
    font-size: 55px;
    line-height: 1;
    font-weight: 300;
    color: #fff;
}

.hero__metric h3 span {
    font-size: 36px;
    line-height: 1;
    font-weight: 300;
    color: #fff;
}

.hero__metric p {
    font-size: 24px;
    line-height: 1.8;
    font-weight: 400;
    color: #F8F8F8;
}

@media screen and (max-width: 1248px) {
  .hero__metrics {
    flex-wrap: wrap;
  }

  .hero__metric {
    flex: 0 0 calc(50% - 10px);
  }
}

@media screen and (max-width: 649px) {
   .hero__metric {
    flex: 0 0 100%;
  }

  .hero__metric {
    padding: 24px 24px 44px;
    border-radius: 12px;
  }
}

.hero--compact .hero__content h1 {
    font-size: 39px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 0.94px;
}

.hero--compact .hero__content {
    display: flex;
    flex-direction: column;
    gap: 57px;
    flex: 0 0 406px;
}

.hero--compact .hero__video {
    flex: 1;
}