.hero {
  margin: 0 auto;
  padding-top: 16.3rem;
  text-align: center;
  position: relative;
  min-height: 100vh;
  display: flex;
  height: 100%;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  .hero {
    padding: 24rem 1rem 0rem 1rem;
  }
}

.hero__title {
  font-size: 2.8rem;
  line-height: 100%;
  text-align: left;
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, #9b6ce6, #93efff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 5.6rem;
    line-height: 6rem;
    text-align: center;
  }
}

.hero__text {
  margin: 0 auto 3rem;
  font-size: 1.4rem;
  max-width: 100%;
  text-align: left;
  line-height: 2.4rem;
  color: #707070;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .hero__text {
    max-width: 62rem;
    font-size: 1.6rem;
    text-align: center;
  }
}

.hero__text strong {
  color: #9b6ce6;
}

.hero__inner {
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.hero__video {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: auto;
  margin-bottom: 15%;
}
@media (min-width: 768px) {
  .hero__video {
    position: static;
    padding-top: 3rem;
    align-items: center;
    justify-self: center;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
}

.hero__video-btn {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: linear-gradient(90deg, #9b6ce6, #93efff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #fff;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: relative;
}
@media (min-width: 768px) {
  .hero__video-btn {
    font-size: 2.4rem;
  }
}

.hero__video-btn::before,
.hero__video-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #9b6ce6, #93efff);
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  z-index: -1;
  top: 0;
  left: 0;
}

.hero__video-btn:hover {
  transform: scale(1.14);
}

.hero__video-btn:hover::before {
  transform: scale(1.58);
  opacity: 0.2;
}

.hero__video-btn:hover::after {
  transform: scale(2.28);
  opacity: 0.1;
}

.hero__video-text {
  font-size: 1.4rem;
  color: #aaaaaa;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
}

.hero__socials {
  display: none;
  justify-content: center;
  flex-direction: column;
  gap: 2.5rem;
  padding: 15rem 0 5rem 0;
}
@media (min-width: 768px) {
  .hero__socials {
    display: flex;
    gap: 2.5rem;
    flex-direction: row;
    margin-top: auto;
  }
}

.hero__socials a {
  font-size: 1.8rem;
  color: #707070;
  transition: all 0.3s ease-in-out;
  /*font-family: Inter;*/
  font-weight: 500;
  line-height: 1.4rem;
  color: #3e4581;
}

.hero__socials a:hover {
  color: #9b6ce6;
}

.hero__video_background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.2;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  object-fit: cover;
  object-position: center center;
  display: inline-block;
}

.hero__video-icon {
  padding-left: 0.5rem;
}