@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-400.woff2") format("woff2");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-Regular-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-SemiBold-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Light-300.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Medium-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Bold-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Black-900.woff2") format("woff2");
  font-weight: 900;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  display: block;
}

span {
  display: block;
}

body {
  background-color: #041220;
  font-family: "Montserrat", "Inter", sans-serif;
}

.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.header {
  border-bottom: 1px solid #131d2f;
  padding-block: 24px;
  margin-bottom: 64px;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.header-links {
  display: flex;
  align-items: center;
  padding-top: 14px;
  gap: 30px;
}

.header-links a {
  color: #95a0ae;
  font-size: 20px;
  transition: color 0.4s ease;
}

.header-logo {
  max-width: 228px;
  width: 100%;
}

.header-logo img {
  width: 100%;
}

.header-links a:hover {
  color: #fff;
}

.hero.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 100px;
}

.hero-left {
  max-width: 630px;
  width: 100%;
}

.hero-disc {
  padding: 14px 24px;
  color: #95a0ae;
  font-size: 18px;
  font-weight: 500;
  border-radius: 24px;
  border: 1px solid #95a0ae12;
  background: #0a1625;
  max-width: 300px;
  text-align: center;
  margin-bottom: 28px;
}

.hero-title {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #fff;
}

.hero-title .accent {
  background: linear-gradient(90deg, #d3a44e 0%, #fff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  color: #95a0ae;
  font-family: "Inter";
  font-size: 18px;
  line-height: 150%;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 26px;
  margin-bottom: 38px;
}

.hero-btns a {
  width: 100%;
  max-width: 300px;
  display: flex;
  justify-content: center;
  font-size: 20px;
  padding: 14px;
  border-radius: 10px;
  transition: transform 0.4s ease, color 0.4s ease;
  transform: scale(1);
}

.hero-btns a:hover {
  transform: scale(1.08);
}

.hero-btns a:first-of-type {
  color: #fff;
  background: #0048d9;
}

.hero-btns a:last-of-type {
  color: #95a0ae;
  background: #102033;
}

.hero-btns a:last-of-type:hover {
  color: #fff;
}

.hero-subs {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.hero-subs a {
  padding: 14px;
  border-radius: 24px;
  border: 1px solid #95a0ae12;
  background: #0a1625;
  color: #95a0ae;
  font-size: 18px;
  font-weight: 500;
  transition: transform 0.4s ease, color 0.4s ease;
  transform: scale(1);
  max-width: 120px;
  width: 100%;
  text-align: center;
}

.hero-subs a:hover {
  color: #fff;
  transform: scale(1.08);
}

.hero-right {
  max-width: 544px;
  width: 100%;
  border-radius: 15px;
  padding: 34px 26px;
  border: 1px solid #131f2e;
  background: #0a1625;
  box-shadow: 0 4px 29.1px 0 #00000040;
}

.hero-right-title {
  color: #95a0ae;
  font-family: "Inter";
  font-size: 20px;
  line-height: 150%;
  margin-bottom: 26px;
}

.hero-right .hero-subs {
  max-width: 370px;
  margin-bottom: 26px;
}

.accent {
  color: #d2a24a;
}

.hero-right-metrics {
  border-radius: 14px;
  max-width: fit-content;
  background: #0e1c28;
  padding: 18px;
}

.hero-right-metrics span:first-of-type {
  color: #fff;
  font-family: "Inter";
  font-size: 24px;
  font-weight: 600;
  line-height: 150%;
}

.hero-right-metrics span:last-of-type {
  color: #95a0ae;
  font-family: "Inter";
  font-size: 18px;
  line-height: 150%;
}

.hero-right-metrics {
  margin-bottom: 20px;
}

.hero-right-metrics:last-of-type {
  margin-bottom: 30px;
}

.hero-right-disc {
  color: #95a0ae;
  font-family: "Inter";
  font-size: 18px;
  line-height: 150%;
}

.article-title {
  color: #d2a24a;
  font-size: 34px;
  font-weight: 700;
}

.text {
  color: #95a0ae;
  font-family: "Inter";
  font-size: 18px;
  line-height: 150%;
}

.why.container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 150px;
}

.why-top {
  max-width: 360px;
}

.why .article-title {
  margin-bottom: 30px;
}

.why-cards {
  max-width: 630px;
  display: flex;
  z-index: 1;
  flex-direction: column;
  gap: 20px;
}

.why-img {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}

.why-wrapper {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: -1;
  min-height: 590px;
}

.why-card {
  padding: 30px 26px;
  border-radius: 16px;
  border: 1px solid #95a0ae12;
  background: #0a1625;
}

.why-card-title {
  color: #fff;
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.why-img-2 {
  display: none;
}

.leaders.container {
  margin-bottom: 150px;
}

.leaders.container .article-title {
  margin-bottom: 60px;
}

.leaders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 40px 24px;
  margin-bottom: 50px;
}

.leaders-card-title {
  color: #d2a24a;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.leaders-card-title img {
  margin-right: 10px;
}

.get-btn {
  width: 100%;
  max-width: 300px;
  display: flex;
  justify-content: center;
  font-size: 20px;
  padding: 14px;
  margin: 0 auto;
  border-radius: 10px;
  color: #fff;
  background: #0048d9;
  transition: transform 0.4s ease, color 0.4s ease;
  transform: scale(1);
}

.get-btn:hover {
  transform: scale(1.1);
}

.companies {
  background: url("/img/img-2.webp") no-repeat center / cover;
  min-height: 426px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-inline: 96px;
  border-radius: 16px;
  margin-bottom: 150px;
}

.companies .article-title {
  margin-bottom: 36px;
}

.companies-wrapper {
  display: flex;
  gap: 16px;
}

.companies-card {
  border-radius: 14px;
  background: #0e1c2866;
  backdrop-filter: blur(10px);
  padding: 18px;
}

.companies-card-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 26px 36px;
  max-width: 560px;
  width: 100%;
}

.companies-card h3 {
  color: #fff;
  font-family: "Inter";
  font-size: 26px;
  font-weight: 600;
  line-height: 150%;
}

.white {
  color: #fff;
}

.cards-wrapper {
  display: flex;
  gap: 24px;
  width: 100%;
}

.cards-wrapper .companies-card {
  max-width: 240px;
  width: 100%;
}

.technology {
  margin-bottom: 150px;
}

.technology .article-title {
  text-align: center;
  margin-bottom: 60px;
}

.technology .why-card {
  max-width: 520px;
}

.tech-top-row {
  display: flex;
  gap: 48px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.tech-bottom-row {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-bottom: 50px;
}

.tech-tablet {
  display: none;
}

.reviews {
  margin-bottom: 150px;
}

.reviews .article-title {
  margin-bottom: 60px;
}

.reviews-desktop {
  display: grid;
  grid-template-columns: repeat(12, auto);
  grid-template-rows: repeat(2, auto);
  gap: 36px 26px;
}

.reviews-card {
  padding: 40px 50px;
  border-radius: 30px;
  border: 1px solid #131f2e;
  background: #0a1625;
}

.reviews-user {
  display: flex;
  gap: 22px;
  margin-bottom: 22px;
}

.reviews-user div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.reviews-name {
  color: #fff;
  font-family: "Roboto";
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  text-transform: capitalize;
}

.reviews-position {
  color: #fff;
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
  text-transform: capitalize;
}

.reviews-text {
  color: #95a0ae;
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  text-transform: capitalize;
}

.reviews-card:nth-of-type(1) {
  grid-column: 1 / 4;
  grid-row: 1;
}

.reviews-card:nth-of-type(2) {
  grid-column: 4 / -1;
  grid-row: 1;
}

.reviews-card:nth-of-type(3) {
  grid-column: 1 / 10;
  grid-row: 2;
}

.reviews-card:nth-of-type(4) {
  grid-column: 10 / -1;
  grid-row: 2;
}

.reviews-tablet {
  display: none;
}

.form {
  background: url("/img/img-3.webp") no-repeat center / cover;
  min-height: 630px;
  padding: 44px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
}

.form .article-title {
  color: #fff;
  font-family: "Roboto";
  font-size: 50px;
  font-weight: 900;
  line-height: 150%;
  text-transform: capitalize;
  margin-bottom: 40px;
}

.form-sub {
  max-width: 270px;
  color: #fff;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  text-transform: capitalize;
}

.form-wrapper {
  max-width: 500px;
  width: 100%;
}

.container .form {
  margin-bottom: 150px;
}

.footer {
  background-color: #0a1625;
  padding-block: 62px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;

  img {
    max-width: 230px;
  }
}

.footer-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.footer-links a {
  color: #95a0ae;
  font-size: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.footer-bottom a {
  color: #5b626a;
  font-family: "Roboto";
  font-size: 16px;
  line-height: 150%;
  text-transform: capitalize;
}

#form {
  scroll-margin-top: 100px;
}

.swiper-pagination {
  display: none;
}

@media (max-width: 1340px) {
  .container {
    padding-inline: 30px;
  }
}

@media (max-width: 1200px) {
  .header .container {
    flex-wrap: wrap;
  }

  .header-links {
    padding-top: 0px;
    justify-content: space-between;
    width: 100%;
  }

  .header {
    margin-bottom: 50px;
  }

  .hero.container {
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin-bottom: 120px;
  }

  .why.container {
    margin-bottom: 120px;
  }

  .why-img {
    display: none;
  }

  .why-img-2 {
    display: block;
  }

  .why-cards {
    display: grid;
    max-width: 100%;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto auto auto;
    grid-template-areas:
      "lithium  diverse"
      "lithium  diverse"
      "lithium  infra"
      "image    infra"
      "image    infra"
      "image    .";
    gap: 20px;
    font-family: sans-serif;
  }

  .why-cards .why-card:nth-child(1) {
    grid-area: lithium;
  }

  .why-cards .why-card:nth-child(2) {
    grid-area: diverse;
  }

  .why-cards .why-card:nth-child(3) {
    grid-area: infra;
  }

  .why-cards .why-img-2 {
    grid-area: image;
    align-self: stretch;
  }

  .why-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
  }

  .leaders-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }

  .leaders.container {
    margin-bottom: 100px;
  }

  .companies-wrapper {
    flex-direction: column;
  }

  .companies {
    padding-inline: 30px;
  }

  .cards-wrapper {
    display: flex;
  }

  .companies-card-logos {
    flex-wrap: wrap;
    max-width: 100%;
  }

  .companies-card-logos img {
    width: 100%;
    max-width: 130px;
  }

  .companies-card-logos img:first-of-type {
    max-width: 60px;
  }

  .technology {
    margin-bottom: 120px;
  }

  .tech-tablet {
    max-width: 690px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .tech-tablet-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 24px;
  }

  .tech-tablet-top-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .tech-tablet-top-row:first-of-type {
    align-self: flex-end;
    display: flex;
    flex-direction: column;
    gap: 64px;
    margin: 0 auto;
  }

  .tech-tablet-top-row:last-of-type {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .tech-tablet-top-row img {
    max-width: 150px;
  }

  .tech-tablet-top-row .get-btn {
    max-width: 100%;
  }

  .tech-tablet-bottom {
    display: flex;
    gap: 24px;
  }

  .tech-btn {
    display: none;
  }

  .tech-top-row,
  .tech-bottom-row {
    display: none;
  }

  .technology .why-card {
    max-width: 330px;
  }

  .reviews {
    margin-bottom: 120px;
  }

  .reviews-desktop {
    display: none;
  }

  .reviews-tablet {
    display: block;
    position: relative;
  }

  .swiper-container {
    overflow-x: hidden;
    padding-bottom: 40px;
  }

  .swiper-slide {
    display: flex !important;
    height: auto !important;
    min-height: 260px !important;
  }

  .container .form {
    margin-bottom: 120px;
  }

  .form {
    flex-direction: column;
    gap: 24px;
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
  }

  .footer-links {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .container {
    padding-inline: 16px;
  }

  .header .container {
    justify-content: center;
  }

  .header-links {
    display: none;
  }

  .header {
    margin-bottom: 16px;
  }

  .hero-disc {
    max-width: 100%;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btns a {
    max-width: 100%;
  }

  .hero-subs {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero.container {
    margin-bottom: 100px;
  }

  .why.container {
    margin-bottom: 100px;
  }

  .why-top {
    max-width: 100%;
  }

  .why-cards {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .leaders-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .companies-card-logos {
    flex-direction: column;
    align-items: flex-start;
  }

  .cards-wrapper {
    display: flex;
    flex-direction: column;
  }

  .companies {
    padding-inline: 16px;
    padding-block: 50px;
    margin-bottom: 100px;
  }

  .cards-wrapper .companies-card {
    max-width: 100%;
  }

  .technology {
    display: none;
  }

  .reviews {
    margin-bottom: 100px;
  }

  .swiper-pagination {
    bottom: -40px !important;
    display: block;
  }

  .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: #313030 !important;
    border-radius: 50% !important;
  }

  .swiper-pagination-bullet-active {
    width: 16px !important;
    height: 16px !important;
    background: #0048d9 !important;
  }

  .reviews-card {
    padding: 56px 20px;
  }

  .container .form {
    margin-bottom: 100px;
  }

  .form {
    align-items: center;
    padding: 44px 4px;
  }

  .form .article-title {
    font-size: 30px;
    line-height: 100%;
    margin-bottom: 26px;
  }

  .form {
    background: url(/img/img-3.webp) no-repeat left / cover;
  }
}
