/* ----------------- RESET ----------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #E6EAF5;
  font-family: 'Poppins', sans-serif;
}

/* ----------------- LAYOUT ----------------- */

.main {
  width: 100%;
  height: 640px;
  border-bottom: 1px solid #181248;
}

.text-div {
  padding: 90px 0 0 90px;
}

.sub-text-div {
  padding: 20px 0 40px 90px;
}

.buttondiv {
  padding: 0 0 20px 90px;
}

/* ----------------- TYPOGRAPHY ----------------- */

.heading,
.sub-heading {
  font-size: 64px;
  font-weight: 500;
  color: #181248;
}

.sub-heading {
  padding-bottom: 20px;
}

.sub-text1 {
  font-size: 28px;
  font-weight: 400;
  color: #181248;
}

.sub-text2 {
  padding: 10px 0;
  font-size: 20px;
  font-weight: 300;
  color: #181248;
  font-style: italic;
}

/* ----------------- BUTTON ----------------- */

.get-in-touch {
  display: block;
  width: 100%;
  max-width: 400px;
  height: 60px;
  font-weight: 400;
  font-size: 20px;
  color: #E6EAF5;
  background-color: #181248;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.get-in-touch:hover {
  background-color: #3434a1;
}

/* ----------------- FOOTER ----------------- */

.footer-section {
  width: 100%;
  height: 40px;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links a {
  color: #181248;
  text-decoration: none;
  margin: 30px 16px;
  font-weight: 300;
  font-size: 18px;
}

.footer-links a:hover,
.footer-links a.active {
  text-decoration: underline;
}

/* ----------------- RESPONSIVE STYLES ----------------- */

@media (max-width: 1200px) {
  .text-div,
  .sub-text-div,
  .buttondiv {
    padding: 70px 40px 0;
  }

  .heading,
  .sub-heading {
    font-size: 56px;
  }

  .sub-text1 {
    font-size: 26px;
  }

  .sub-text2 {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .text-div,
  .sub-text-div,
  .buttondiv {
    padding: 60px 30px 0;
  }

  .heading,
  .sub-heading {
    font-size: 46px;
  }

  .sub-text1 {
    font-size: 22px;
  }

  .sub-text2 {
    font-size: 16px;
  }

  .get-in-touch {
    max-width: 340px;
    height: 50px;
    font-size: 18px;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-links a {
    font-size: 18px;
    margin: 20px;
  }
}

@media (max-width: 768px) {
  .main {
    height: fit-content;
    padding: 40px 10px 100px;
    border-bottom: 1px solid #181248;
  }

  .text-div,
  .sub-text-div,
  .buttondiv {
    padding: 0;
    text-align: center;
  }

  .text-div {
    margin-top: 20px;
  }

  .heading,
  .sub-heading {
    padding: 0px;
    font-size: 34px;
  }

  .sub-text1 {
    margin-top: 20px;
    font-size: 16px;
  }

  .sub-text2 {
    margin-top: 10px;
    font-size: 12px;
  }

  .get-in-touch {
    width: 80%;
    max-width: 300px;
    height: 50px;
    font-size: 16px;
    margin: 20px auto;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0;
  }

  .footer-links a {
    margin: 10px 0;
    font-size: 16px;
  }
}
