@font-face {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/HelveticaNeueBold.otf") format("opentype");
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background: #eee;
  border-radius: 4px;
}

*::-webkit-scrollbar-thumb {
  background: #14aa9a;
  border-radius: 4px;
  cursor: pointer;
}

*::-webkit-scrollbar-thumb:hover {
  background: #1ae1cc;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  line-height: 1.2;
  color: #fff;
  background: #000;
}
body.overflow-hidden {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

input {
  color: inherit;
  border: 0;
}

button {
  color: inherit;
  border: 0;
  background: unset;
  cursor: pointer;
}

h1 {
  font-family: "Inter", sans-serif;
  font-size: 71px;
  font-weight: 500;
}
h1 span {
  color: #1ae1cc;
}

h2 {
  font-size: 68px;
  font-weight: 800;
  color: #1ae1cc;
}

h3 {
  font-family: "Inter", sans-serif;
  font-size: 52px;
  color: #1ae1cc;
}

h4 {
  font-family: "Inter", sans-serif;
  font-size: 48px;
  font-weight: 600;
}

@media (max-width: 1600px) {
  h1 {
    font-size: 64px;
  }
  h2 {
    font-size: 60px;
  }
  h3 {
    font-size: 46px;
  }
  h4 {
    font-size: 42px;
  }
}
@media (max-width: 1400px) {
  h1 {
    font-size: 54px;
  }
  h2 {
    font-size: 50px;
  }
  h3 {
    font-size: 40px;
  }
}
@media (max-width: 840px) {
  h1 {
    font-size: 44px;
  }
  h2 {
    font-size: 40px;
  }
  h3 {
    font-size: 36px;
  }
  h4 {
    font-size: 32px;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 34px;
  }
  h3 {
    font-size: 32px;
  }
  h4 {
    font-size: 30px;
  }
}
.auto-container {
  margin-inline: auto;
  padding-inline: 60px;
  max-width: 1420px;
}

.button--outlined {
  padding: 7px 40px;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 13px;
  font-weight: 700;
  border-radius: 40px;
  border: 1px solid #1ae1cc;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
}
.button--outlined:hover {
  background: #1ae1cc;
  color: #000;
}

@media (max-width: 1024px) {
  .auto-container {
    padding-inline: 30px;
  }
}
@media (max-width: 540px) {
  .auto-container {
    padding-inline: 16px;
  }
}
.swiper--focus .swiper-buttons {
  position: absolute;
  bottom: 15%;
  right: 15%;
  display: flex;
  gap: 30px;
}
.swiper--focus .swiper-button-prev,
.swiper--focus .swiper-button-next {
  position: static;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: rgba(0, 38, 34, 0.7);
}
.swiper--focus .swiper-button-prev.swiper-button-disabled,
.swiper--focus .swiper-button-next.swiper-button-disabled {
  background: transparent;
}
.swiper--focus .swiper-button-prev svg,
.swiper--focus .swiper-button-next svg {
  width: 26px;
}
.swiper--focus .swiper-button-prev::after,
.swiper--focus .swiper-button-next::after {
  display: none;
}

@media (max-width: 840px) {
  .swiper--focus {
    padding-bottom: 80px;
  }
  .swiper--focus .swiper-buttons {
    bottom: 0;
    left: 50%;
    right: unset;
    transform: translateX(-50%);
  }
}
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding-block: 20px;
  background: #000;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 130px;
}
.header-left .logo img {
  width: 65px;
}
.header .menu-btn {
  display: none;
}

@media (max-width: 1024px) {
  .header-left {
    gap: 80px;
  }
}
@media (max-width: 840px) {
  .header-left .logo img {
    width: 48px;
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .header .menu-btn {
    position: relative;
    display: flex;
    align-items: center;
    width: 26px;
    height: 20px;
  }
  .header .menu-btn span {
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: #1ae1cc;
    transition: all 0.3s ease-in-out;
  }
  .header .menu-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: #1ae1cc;
    transition: all 0.3s ease-in-out;
  }
  .header .menu-btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: #1ae1cc;
    transition: all 0.3s ease-in-out;
  }
  .header .menu-btn.active span {
    opacity: 0;
  }
  .header .menu-btn.active::before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .header .menu-btn.active::after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
.nav-inner {
  display: flex;
  gap: 60px;
}
.nav-link {
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.nav-link:hover {
  opacity: 0.8;
}

@media (max-width: 1024px) {
  .nav-inner {
    gap: 30px;
  }
}
@media (max-width: 840px) {
  .nav {
    position: fixed;
    top: 83.38px;
    right: 0;
    width: 100%;
    height: calc(100% - 83.38px);
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
  }
  .nav.active {
    pointer-events: auto;
    backdrop-filter: blur(10px);
  }
  .nav.active .nav-inner {
    transform: translateX(0);
  }
  .nav-inner {
    background: #111;
    padding: 30px;
    width: 300px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    border-top: 1px solid #1ae1cc;
    border-left: 1px solid #1ae1cc;
    transition: all 0.3s ease-in-out;
  }
  .nav-link {
    font-size: 18px;
  }
}
.footer {
  padding-block: 30px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-links a {
  position: relative;
  padding-inline: 30px;
  font-size: 12px;
  font-weight: 600;
  color: #1ae1cc;
  transition: all 0.2s ease-in-out;
}
.footer-links a:hover {
  opacity: 0.8;
}
.footer-links a:first-child {
  padding-left: 0;
}
.footer-links a:not(:last-child)::after {
  content: "/";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.footer-go-top {
  padding: 10px;
  transition: all 0.2s ease-in-out;
}
.footer-go-top:hover {
  opacity: 0.8;
}

@media (max-width: 540px) {
  .footer-inner {
    flex-direction: column-reverse;
    gap: 15px;
  }
  .footer-links a {
    padding-inline: 15px;
  }
}
.hero {
  padding-top: 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 50%;
  left: -10%;
  z-index: -1;
  transform: translateY(-50%);
  width: 75%;
}
.hero-bg img {
  width: 100%;
}
.hero-inner {
  padding-block: 50px;
  min-height: calc(100vh - 100px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero-inner h1 {
  max-width: 910px;
}

.partners-inner {
  padding-block: 50px;
  min-height: 25vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.partners-title {
  padding-left: 40px;
  margin-bottom: 40px;
  position: relative;
  font-family: "IBM Plex Mono";
  font-size: 16px;
  font-weight: 600;
  color: #1ae1cc;
}
.partners-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
}
.partners-list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
}
.partners-list img {
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.partners-list img:hover {
  transform: scale(1.1);
}
.partners-list img:nth-child(1) {
  width: 190px;
}
.partners-list img:nth-child(2) {
  width: 100px;
}
.partners-list img:nth-child(3) {
  width: 170px;
}
.partners-list img:nth-child(4) {
  width: 110px;
}
.partners-list img:nth-child(5) {
  width: 90px;
}

.thoughts-inner {
  padding-block: 50px;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.thoughts-inner h2 {
  margin-bottom: 30px;
}
.thoughts-list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.thought {
  width: calc(50% - 25px);
}
.thought-date {
  margin-bottom: 10px;
  font-family: "IBM Plex Mono";
  font-weight: 500;
  font-size: 11px;
}
.thought-text {
  max-width: 480px;
  font-size: 30px;
  font-weight: 800;
}

.contact-inner {
  padding-block: 50px;
  min-height: 60vh;
  display: flex;
  gap: 50px;
  justify-content: space-between;
  align-items: center;
}
.contact-left, .contact-right {
  flex: 1;
}
.contact-left {
  position: relative;
}
.contact-left::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20%;
  z-index: -1;
  transform: translateY(-50%);
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(#1ae1cc, transparent);
  filter: blur(50px);
}
.contact-title {
  font-size: 75px;
  font-weight: 800;
  line-height: 0.9;
}
.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.contact-form input {
  width: calc(50% - 5px);
  padding: 16px 20px;
  border-radius: 10px;
  background: #1d2221;
}
.contact-form button {
  width: 100%;
  padding: 16px 20px;
  font-size: 16px;
  border-radius: 10px;
  background: #14aa9a;
  transition: all 0.2s ease-in-out;
}
.contact-form button:hover {
  background: #1ae1cc;
}

.features {
  overflow: hidden;
}
.features-inner {
  padding-block: 150px;
  display: flex;
  align-items: flex-start;
  gap: 150px;
}
.features-left {
  width: calc(55% - 75px);
}
.features-right {
  position: relative;
  width: calc(45% - 75px);
}
.features-circle {
  width: 100%;
}
.features-particle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.feature:not(:last-child) {
  margin-bottom: 120px;
}
.feature.active .feature-top a svg {
  transform: rotate(90deg);
  color: #1ae1cc;
}
.feature-top {
  padding-right: 50px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.feature-top:hover {
  opacity: 0.8;
}
.feature-top span {
  font-size: 20px;
  color: #7d8387;
}
.feature-top a {
  padding: 10px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.feature-top a svg {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease-in-out;
}
.feature-bottom {
  overflow: hidden;
  height: 0;
  transition: all 0.3s ease-in-out;
}
.feature-bottom p {
  padding-block: 10px;
  max-width: 500px;
  font-family: "Inter", sans-serif;
  font-size: 24px;
}

.metrics-inner {
  padding-block: 50px;
  min-height: 50vh;
  display: flex;
  align-items: center;
}
.metrics-list {
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
}

.metric-number {
  margin-bottom: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 64px;
}
.metric-desc {
  max-width: 180px;
  font-family: "Inter", sans-serif;
  font-size: 24px;
}

.focus-inner {
  padding-block: 50px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.focus-top {
  position: relative;
  margin-bottom: 70px;
  max-width: 500px;
}
.focus-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(#1ae1cc, transparent);
  filter: blur(100px);
}
.focus-top h2 {
  margin-bottom: 20px;
}
.focus-top span {
  font-size: 18px;
  font-weight: 500;
}
.focus-item {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.focus-item-left, .focus-item-right {
  flex: 1;
}
.focus-item-left h4 {
  max-width: 500px;
  margin-bottom: 20px;
}
.focus-item-left p {
  max-width: 500px;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  line-height: 1.3;
}
.focus-item-left p:not(:last-child) {
  margin-bottom: 20px;
}
.focus-item-left p strong {
  font-weight: 700;
}
.focus-item-right img {
  max-width: 410px;
}

@media (max-width: 1600px) {
  .hero-inner h1 {
    max-width: 820px;
  }
  .feature-bottom p {
    font-size: 22px;
  }
  .focus-item-left p {
    font-size: 20px;
  }
}
@media (max-width: 1400px) {
  .hero-inner h1 {
    max-width: 690px;
  }
  .features-inner {
    padding-block: 100px;
    gap: 100px;
  }
  .features-left {
    width: calc(55% - 50px);
  }
  .features-right {
    width: calc(45% - 50px);
  }
  .feature:not(:last-child) {
    margin-bottom: 80px;
  }
  .feature-bottom p {
    font-size: 20px;
  }
  .contact-title {
    font-size: 60px;
  }
}
@media (max-width: 1024px) {
  .hero-bg {
    left: 0;
    width: 100%;
  }
  .hero-inner {
    justify-content: center;
  }
  .hero-inner h1 {
    max-width: 600px;
    text-align: center;
  }
  .partners-list {
    justify-content: space-evenly;
  }
  .features-inner {
    padding-block: 50px;
    gap: 50px;
  }
  .features-left {
    width: calc(55% - 25px);
  }
  .features-right {
    width: calc(45% - 25px);
  }
  .feature-top a svg {
    width: 16px;
    height: 16px;
  }
  .feature-bottom p {
    font-size: 18px;
  }
  .metric {
    width: calc(50% - 25px);
    text-align: center;
  }
  .metric-number {
    font-size: 54px;
  }
  .metric-desc {
    font-size: 20px;
    max-width: unset;
  }
  .focus-item-right img {
    max-width: 320px;
  }
  .contact-title {
    font-size: 52px;
  }
}
@media (max-width: 840px) {
  .hero {
    padding-top: 0;
  }
  .hero-inner h1 {
    max-width: 460px;
  }
  .features-inner {
    margin-inline: auto;
    max-width: 540px;
    justify-content: center;
    flex-direction: column;
    align-items: unset;
  }
  .features-left, .features-right {
    width: 100%;
  }
  .features-right {
    display: none;
  }
  .focus-top {
    margin-inline: auto;
    max-width: 540px;
    text-align: center;
  }
  .focus-item {
    margin-inline: auto;
    max-width: 540px;
    flex-direction: column-reverse;
    gap: 30px;
  }
  .focus-item-left {
    text-align: center;
  }
  .focus-item-left h4,
  .focus-item-left p {
    max-width: unset;
  }
  .focus-item-right {
    display: flex;
    justify-content: center;
  }
  .partners-title {
    margin-inline: auto;
  }
  .thoughts-inner h2 {
    text-align: center;
  }
  .thoughts-list {
    gap: 30px;
  }
  .thought {
    width: calc(50% - 15px);
  }
  .thought-text {
    font-size: 26px;
  }
  .contact-left, .contact-right {
    flex-grow: unset;
  }
  .contact-left::before {
    width: 150px;
    height: 150px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .contact-inner {
    margin-inline: auto;
    max-width: 540px;
    flex-direction: column;
    align-items: unset;
    justify-content: center;
    gap: 70px;
  }
  .contact-title {
    text-align: center;
    font-size: 46px;
  }
}
@media (max-width: 540px) {
  .hero-bg {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
  }
  .metric-number {
    font-size: 40px;
  }
  .metric-desc {
    font-size: 18px;
  }
  .partners-list img:nth-child(1) {
    width: 160px;
  }
  .partners-list img:nth-child(2) {
    width: 70px;
  }
  .partners-list img:nth-child(3) {
    width: 140px;
  }
  .partners-list img:nth-child(4) {
    width: 80px;
  }
  .partners-list img:nth-child(5) {
    width: 60px;
  }
  .focus-top span {
    font-size: 16px;
  }
  .focus-item-left p {
    font-size: 18px;
  }
  .focus-item-right img {
    max-width: 240px;
  }
  .thought {
    width: 100%;
    text-align: center;
  }
  .thought-text {
    font-size: 24px;
  }
  .contact-form input,
  .contact-form button {
    padding: 12px 16px;
  }
  .contact-title {
    font-size: 40px;
  }
}

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