:root {
  --black: #000000;
  --blue: #1e4792;
  --text-color: #333;
  --text-light: #676b6e;
  --roboto: "Roboto", sans-serif;
  --oswald: "Oswald", sans-serif;
  --inter: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
}

a {
  cursor: pointer;
}

h1 {
  font-size: 36px;
  /* letter-spacing: 0.1em; */
}

@media (min-width: 1650px) {
  h1 {
    font-size: 48px;
  }
}

h2 {
  font-size: 24px;
}

@media (min-width: 1650px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 24px;
  font-family: var(--roboto);
  font-weight: 400;
  color: var(--black);
}

h4 {
  font-size: 20px;
  font-family: var(--roboto);
  color: var(--black);
}

p {
  font-size: 16px;
}

@media (min-width: 1650px) {
  p {
    font-size: 18px;
  }
}

@media (max-width: 900px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 20px;
  }

  p {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 25px;
  }
}

.blue-btn {
  font-family: var(--roboto);
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--blue);
  color: white;
  padding: 10px 10px;
  width: 115px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0 auto 20px auto;
}

.blue-btn:hover {
  background-color: rgba(30, 71, 146, 0.85);
}

.container {
  padding-left: 12vw;
  padding-right: 12vw;
  box-sizing: border-box;
  max-width: 1800px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .container {
    padding-left: 8vw;
    padding-right: 8vw;
  }
}

@media (max-width: 600px) {
  .container {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 0 50px;
  background-color: var(--black);
  height: 95px;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  nav {
    flex-direction: column;
    padding: 30px;
    height: auto;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }
}

.logo {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 182px;
  height: auto;
}

.contact {
  display: flex;
  align-items: stretch;
}

.contact-btn {
  font-family: var(--roboto);
  letter-spacing: 2px;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--blue);
  color: white;
  padding: 0 20px;
  height: 100%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: rgba(30, 71, 146, 0.85);
}

@media (max-width: 900px) {
  .contact-btn {
    padding: 10px 20px;
    height: auto;
  }
}

.hero {
  background-image: url("./assets/eop-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  /* color: white; */
  aspect-ratio: 1440/752;
  margin: 0 auto;
  margin-left: 40px;
  margin-right: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  #hero {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
  }
}

.hero.success {
  background-image: url("./assets/eop-hero-submission.jpg");
  aspect-ratio: 1440/245;
}

@media (max-width: 1400px) {
  .hero.success {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
  }
}

@media (max-width: 900px) {
  .hero.success {
    aspect-ratio: 1100/360;
    background-position: right;
  }
}

.form-container {
  margin-top: 40px;
  width: 100%;
  padding: 40px 40px 60px 40px;
  box-sizing: border-box;
  background-color: white;
  max-height: fit-content;
  max-width: 1400px;
  margin: auto;
}

.form-container p {
  font-family: var(--roboto);
  color: var(--text-light);
}

form {
  width: 100%;
}

.form-group {
  margin-bottom: 20px;
  overflow: hidden;
}

.form-label {
  display: block;
  padding-bottom: 5px;
  font-family: var(--roboto);
  font-weight: bold;
  margin-bottom: 5px;
  color: var(--black);
  font-size: 16px;
}

.form-label .required {
  font-size: 12px;
  color: #a8a8a8;
  display: inline-block;
  padding-left: 9px;
  font-weight: normal;
  font-family: var(--roboto);
}

input[type="text"],
input[type="email"],
textarea,
.form-input,
.form-textarea {
  font-size: 16px !important;
  font-family: var(--roboto);
  width: 100%;
  padding: 15px 12px;
  border: 1px solid var(--black);
  font-size: 14px;
  background: white;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #007bff;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-row-three {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
}

.submit-btn {
  font-family: var(--roboto);
  font-size: 18px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--blue);
  color: white;
  padding: 10px 10px;
  width: 115px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: rgba(30, 71, 146, 0.85);
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-input,
  .form-textarea {
    padding: 15px 10px;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .form-row {
    gap: 0;
  }
}

.btn.border {
  font-family: var(--roboto);
  font-size: 18px;
  display: inline-block;
  background-color: transparent;
  color: var(--black);
  padding: 10px 15px;
  text-decoration: none;
  border: 2px solid var(--black);
  transition: all 0.3s ease;
  margin: 0;
}

.cta-content .btn.border {
  background-color: white;
}

.border-btn-container {
  margin-top: 30px;
}

.btn.border:hover {
  border: 2px solid rgba(0, 0, 0, 0.641);
  color: rgba(0, 0, 0, 0.641);
}

.white-btn {
  font-family: var(--roboto);
  font-size: 18px;
  display: inline-block;
  background-color: white;
  color: var(--black);
  padding: 10px 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0;
}

.white-btn:hover {
  background-color: rgb(255, 255, 255, 0.85);
}

footer {
  background-color: var(--black);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  font-family: var(--roboto);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.socials {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-contact {
  color: white;
  text-decoration: none;
  font-family: var(--roboto);
  font-size: 18px;
  border: 1px solid white;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.footer-contact:hover {
  background-color: rgb(255, 255, 255, 0.09);
}

@media (max-width: 900px) {
  footer {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .year_copy {
    order: 3;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
}

/* New Styles Added Below */
.introduction {
  text-align: center;
  max-width: 1400px;
  margin: 0 auto 60px auto;
  padding: 0 28px;
}

.introduction.success {
  text-align: left;
}

.introduction h1 {
  font-family: var(--oswald);
  text-transform: uppercase;
  /* letter-spacing: 0.1em; */
  color: var(--black);
  font-weight: 400;
  margin-bottom: 20px;
  font-size: 42px;
}

@media (max-width: 900px) {
  .introduction h1 {
    font-size: 32px;
  }
}

.introduction p {
  font-family: var(--roboto);
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.75;
  max-width: 800px;
  margin: 0 auto;
}

.introduction.success p {
  max-width: unset;
}

.explore {
  background-image: url(./assets/eop-pdf-mockup_desk.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* padding: 40px; */
  margin-left: 40px;
  margin-right: 40px;
  aspect-ratio: 1440/440;
  background-color: var(--black);
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 900px) {
  .explore {
    background-image: none !important;
    /* padding: 40px 28px; */
    grid-template-columns: 1fr;
    margin-left: 28px;
    margin-right: 28px;
    gap: 0;
  }
}

.explore h2 {
  font-family: var(--oswald);
  text-transform: uppercase;
  color: white;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: left;
  font-size: 34px;
}

@media (max-width: 900px) {
  .explore h2 {
    font-size: 28px;
  }
}

.explore p {
  font-family: var(--roboto);
  color: white;
  font-size: 16px;
  line-height: 1.75;
  text-align: left;
}

.explore ul {
  font-family: var(--roboto);
  color: white;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
}

.explore-btn {
  font-family: var(--roboto);
  font-size: 18px;
  display: inline-block;
  background-color: white;
  color: var(--black);
  padding: 10px 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  /* margin-top: 30px; */
}

.explore-btn::after {
  content: "";
  display: inherit;
  margin-left: 10px;
  background-image: url(./assets/icons/chevron.svg);
  background-repeat: no-repeat;
  /* background-size: contain; */
  /* margin-top: 4px; */
  width: 16px;
  height: 10px;
}

.explore .text {
  order: 1;
  padding: 40px;
}

.explore .image {
  order: 2;
  padding: 40px;
}

@media (max-width: 900px) {
  .explore .text {
    order: 2;
  }

  .explore .image {
    order: 1;
    padding: 0;
  }
}

img#pdf {
  display: none;
}

@media (max-width: 900px) {
  img#pdf {
    display: block;
    width: 100%;
  }
}

input[type="checkbox"] {
  accent-color: var(--blue);
  border: 1px solid var(--black);
  border-radius: 0px;
  margin: 0;
  width: 16px;
  height: 16px;
  vertical-align: text-top;
  position: relative;
}

span.checkbox-text {
  font-family: var(--roboto);
  font-size: 16px;
  line-height: 1.5;
  margin-left: 8px;
  color: var(--text-color);
}

.download-container {
  padding-top: 40px;
  padding-bottom: 40px;
  width: auto;
  display: inline-block;
}

.download-container + .download-container {
  margin-left: 40px;
}

@media (max-width: 900px) {
  .download-container + .download-container {
    margin-left: 0;
    margin-top: 20px;
  }
}

.download-container p {
  margin-bottom: 20px;
}

.explore-more {
  text-align: left;
  max-width: 1400px;
  margin: 0 auto 80px auto;
  padding: 0 28px;
}

.explore-more h2 {
  font-family: var(--oswald);
  text-transform: uppercase;
  color: black;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: left;
  font-size: 34px;
}

.explore-more p {
  font-family: var(--roboto);
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .explore-more h2 {
    font-size: 28px;
  }
}

p.eop-other-link {
  font-size: 24px;
  font-weight: 600;
  text-decoration: none;
  color: var(--black);
  margin-top: 12px;
}

.explore-more-container {
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.explore-more-container img {
  width: 100%;
}

@media (max-width: 900px) {
  .explore-more-container {
    flex-direction: column;
    gap: 20px;
  }
  p.eop-other-link {
    font-size: 22px;
    font-weight: 600;
  }
}

.explore-more-container div a {
  text-decoration: none !important;
  color: var(--black);
}

/* hidden class for form groups */

.form-group.hidden {
  display: none;
}

.mars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 16px;
  column-gap: 50px;
  padding-left: 18px;
}

.mars-title {
  font-weight: bold;
  margin-top: 48px;
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .mars {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
  .mars-title {
    margin-top: 32px;
  }
}

ul.mars li {
  line-height: 1.15;
  margin-bottom: 1px;
}
