@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Plus Jakarta Sans";
}
.navbar {
  height: fit-content;
  background-color: #000719;
  padding: 20px 100px;
}
.hero {
  padding: 80px 100px;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #000719;
  color: white;
  gap: 32px;
}

@media (max-width: 1200px) {
  section {
      padding: 56px 24px !important;
      flex-wrap: wrap;
  }
  div {
      flex-wrap: wrap;
  }
  img {
      width: 100%;
      height: auto;
      object-fit: contain;
  }
}
.hero > .col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero > .col > h1 {
  font-size: 48px;
  line-height: 120%;
  font-weight: 600;
}

.hero > .col > span {
  font-size: 16px;
  line-height: 150%;
}

.hero-image {
  width: 1fr;
  height: 477px;
}

.second {
  height: fit-content;
  display: flex;
  padding: 80px 100px;
  justify-content: space-between;
  gap: 56px;
}

.second > .col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}
.second > .col > img {
  height: 477px;
  width: 1fr;
}

.second > .col > .row {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 80px;
}

.second > .col > h2 {
  font-size: 48px;
  color: #000719;
}

.second > .col > p {
  font-size: 16px;
  line-height: 150%;
  color: #98a2b3;
}

.second > .col > .row > .col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.second > .col > .row > .col > h3 {
  font-size: 32px;
  color: #000719;
}

.second > .col > .row > .col > span {
  font-size: 16px;
  color: #98a2b3;
}

.third {
  height: fit-content;
  display: flex;
  padding: 80px 100px;
  flex-direction: column;
  gap: 32px;
}
.third > .col {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.third > .col > h2 {
  font-size: 40px;
  font-weight: normal;
  color: #000719;
}

.third > .col > span {
  color: #98a2b3;
}

.third > .row {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 32px;
  height: fit-content;
}

.third > .row > .col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.third > .row > .col > img {
  height: 490px;
}

.third > .row > .col > h3 {
  font-size: 40px;
  font-weight: normal;
  color: #2e90fa;
}

.third > .row > .col > p {
  font-size: 16px;
  color: #98a2b3;
  line-height: 150%;
}

.footer {
  display: flex;
  padding: 80px 100px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  color: #98a2b3;
}

.footer-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-direction: row;
  gap: 24px;
}