.about {
  background: #A0A09F;
}
.about__video-preview {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about__content {
  display: flex;
  flex-flow: row;
/*   gap: 270px; */
  padding: 44px 0px;
  padding-bottom: 162px;
}
.about__left {
/*   max-width: 220px; */
  max-width: 40%;
  width: 100%;
  display: flex;
  flex-flow: column;
  gap: 90px;
}
.about__video-wrapper {
	cursor: pointer;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  max-width: 164px;
  transform: translateY(calc(100% - 21px));
}
.about__video-wrapper:hover .about__video-overlay {
  background: rgba(0, 0, 0, 0.6823529412);
  backdrop-filter: blur(2px);
  transition: 0.3s ease;
}
.about__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.about__video-overlay {
  background: linear-gradient(179.74deg, rgba(0, 0, 0, 0) 0.23%, rgba(0, 0, 0, 0.66) 99.77%);
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  transition: 0.3 ease;
  z-index: 1;
	border-radius: 100px;
}
.about__right {
  display: flex;
  flex-flow: column;
  gap: 28px;
   max-width: 60%;
  width: 100%;
}
.about__main-text {
  max-width: 738px;
  width: 100%;
  font-family: Geist;
  font-weight: 300;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: calc((48px / 100) * -2.5);
  color: #fff;
}
.about__main-text strong {
  font-weight: 300;
  color: #121212;
}
.about__sub-text-wrapper {
  display: flex;
  flex-flow: row;
  gap: 45px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}
.about__sub-text-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}
.about__sub-text {
  font-family: Geist;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #fff;
  max-width: 50%;
  width: 100%;
}
.about__sub-link {
  font-family: Geist;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: 0.5px;
  text-align: center;
  color: #f0f2f5;
  display: flex;
  flex-flow: row;
  align-items: center;
  text-decoration: none;
  gap: 8px;
}

@media (max-width: 1024px) {
  .about {
/*     background: #001c36; */
  }
  .about__content {
    display: flex;
    flex-flow: column;
    gap: 8px;
    padding: 16px 0 48px 0;
    margin: 0;
  }
  .about__left {
    max-width: 220px;
    width: 100%;
    display: flex;
    flex-flow: column;
    gap: 90px;
  }
  .about__video-wrapper {
    border-radius: 100px;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    max-width: 148px;
  }
  .about__video-wrapper:hover .about__video-overlay {
    background: rgba(0, 0, 0, 0.6823529412);
    transition: 0.3s ease;
  }
  .about__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }
  .about__video-overlay {
    background: linear-gradient(179.74deg, rgba(0, 0, 0, 0) 0.23%, rgba(0, 0, 0, 0.66) 99.77%);
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    transition: 0.3 ease;
    z-index: 1;
  }
  .about__right {
    display: flex;
    flex-flow: column;
    gap: 28px;
	padding-top: 48px;
  max-width: 100%;
  }
  .about__main-text {
    max-width: 738px;
    width: 100%;
    font-family: Geist;
    font-weight: 300;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: -2.8%;
    color: #f0f2f5;
  }
  .about__main-text strong {
    font-weight: 300;
    color: #94a9b5;
  }
  .about__sub-text-wrapper {
    display: flex;
    flex-flow: column;
    gap: 16px;
  }
  .about__sub-text {
    font-family: Geist;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: 0%;
    color: #94a9b5;
    max-width: unset;
    width: 100%;
  }
  .about__sub-link {
    font-family: Geist;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0.5px;
    text-align: center;
    color: #f0f2f5;
    display: flex;
    flex-flow: row;
    align-items: center;
    gap: 8px;
  }
	
  .about__video-wrapper {
	transform: unset;
	 max-width: 110px;
  }
}/*# sourceMappingURL=style.css.map */