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

html {
  scroll-behavior: smooth;
}

#nav-container {
  position: fixed;
  top: 0;
  left: 0;
  height: 10vh;
  width: 100%;
}

#nav-bar {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #000501;
  color: #eec643;
  box-shadow: 0 2px 1px #000501;
}

#nav-bar h2 {
  font-size: 37.5px;
  padding-left: 5vw;
}

#header-img {
  margin-left: 3%;
  margin-right: 1%;
  max-height: 70%;
  width: auto;
  border-radius: 10px;
  background-size: cover;
}

#nav-links {
  flex: 1;
  display: flex;
  justify-content: right;
  align-items: center;
  margin: 0 2.5% 0 1.5%;
}

.nav-link {
  text-align: center;
  vertical-align: center;
  color: #eef0f2;
  height: 5vh;
  width: 16vw;
  text-decoration: none;
  font-weight: bold;
  font-size: 25px;
  padding: 3px 10px;
  margin: 0 1.5%;
  border-bottom: 1px solid #eef0f2;
  border-radius: 5px;
  transition: border-bottom 0.3s, color 0.7s;
}

.nav-link:hover {
  color: #000501;
  background: #eef0f2;
  border-bottom: 5px solid #4b3b07;
}

body {
  background: linear-gradient(170deg, #011638 25%, #001028);
  color: #eef0f2;
}

main {
  margin: 10vh 3vw;
}

#video-section {
  margin-top: 12vh;
  padding: 20px;
  display: flex;
  justify-content: right;
  align-items: center;
  border: 6px solid #eec643;
  border-radius: 20px;
  transition: border 1s;
}

#video-section:hover {
  border: 6px solid #ffe873;
}

#video-quote {
  width: 40vw;
  padding: 20px 2vw;
  margin: 0 2vw;
  border-top: 2px solid #0d21a1;
  border-bottom: 2px solid #0d21a1;
  text-align: center;
  font-size: 30px;
  transition: letter-spacing 0.3s;
}

#video-quote:hover {
  letter-spacing: 1px;
}

#video-quote:hover span {
  color: #5d71f1;
}

#video {
  margin: 20px 2%;
  border-radius: 20px;
  width: 50vw;
  aspect-ratio: 16 / 9;
}

#form-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 50px 2%;
  background: linear-gradient(150deg, #011638 10%, #061c3e);
  border-radius: 50px;
  padding-bottom: 20px;
  transition: border 0.2s;
  border: 2px solid rgba(0, 0, 0, 0);
}

#form-section:hover {
  border: 2px solid #162c4e;
}

#interest-form {
  border: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 10px;
}

#interested-title {
  text-align: left;
  margin: 10px 20% 40px 20px;
  padding: 0 10% 20px 0;
  border-bottom: 2px solid;
}

#interested {
  font-size: 50px;
  color: #eec643;
}

.input-label {
  font-weight: bold;
  font-size: 25px;
  padding-right: 30px;
}

#name {
  font-size: 16px;
  border: none;
  border-radius: 5px;
  width: 300px;
  padding: 3px;
  background-color: #011638;
  color: #fee663;
  transition: color 0.7s;
  font-weight: bold;
}

#name:focus {
  background-color: #001334;
  color: #eef0f2;
}

#email {
  font-size: 16px;
  border: none;
  border-radius: 5px;
  width: 300px;
  padding: 3px;
  background-color: #011638;
  color: #eec643;
  transition: color 0.7s;
  font-weight: bold;
}

#email:focus {
  background-color: #001334;
  color: #eef0f2;
}

#submit {
  font-size: 30;
  font-weight: bold;
  margin: 40px 0 10px 0;
  color: #eec643;
  padding: 10px 50px;
  background: linear-gradient(#041a3c 80%, #011638);
  border: 1px solid;
  border-radius: 20px;
  box-shadow: 1px 3px 5px 5px #001334;

  transition: color 1s, padding 0.3s;
}

#submit:hover {
  background: linear-gradient(175deg, #eec643 60%, #fff683);
  color: #041a3c;
  padding: 10px 60px;
}

#info {
  font-size: 50px;
  color: #eec643;
  margin-bottom: 20px;
  border-bottom: 2px solid;
}

#info-section {
  font-size: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 10px;
  padding-bottom: 30px;
  background: linear-gradient(150deg, #011638 10%, #061c3e);
  border-radius: 50px;
  transition: border 0.2s;
  border: 2px solid rgba(0, 0, 0, 0);
}

#info-section:hover {
  border: 2px solid #162c4e;
}

#info-section p {
  max-width: 600px;
}

#purchase-section {
  display: flex;
  margin: 50px 0;
  padding: 5px;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: top;
  background: linear-gradient(150deg, #011638 10%, #061c3e);
  border-radius: 50px;
  transition: border 0.2s;
  border: 2px solid rgba(0, 0, 0, 0);
}

#purchase-section:hover {
  border: 2px solid #162c4e;
}

#purchase-section h3 {
  color: #eec643;
  width: 60%;
  padding-top: 10px;
  padding-bottom: 3px;
  margin-bottom: 12px;
  border-bottom: 1px solid;
  font-size: 20px;
}

.option {
  margin: 10px 0;
  padding: 0 -5px;
  display: flex;
  flex-direction: column;
  justify-content: top;
  align-items: center;
  min-height: 80%;
  max-height: 80%;
  width: 30%;
  text-align: center;
  letter-spacing: 1px;
  background: linear-gradient(-150deg, #011638 10%, #061c3e);
  border-radius: 30px;
  transition: border 0.2s;
  border: 2px solid rgba(0, 0, 0, 0);
}
.option:hover {
  border: 2px solid #162c4e;
}

.option p {
  max-width: 80%;
  margin: 15px 10px;
  font-size: 18px;
}

.select-button {
  width: 60%;
  height: 30px;
  margin: 10px;
  padding: 3px;
  background-color: #011638;
  border: none;
  border-radius: 10px;
  color: #eec643;
  margin-top: auto;
  transition: color 0.5s, width 0.3s;
}

.select-button:hover {
  background: linear-gradient(175deg, #eec643 60%, #fff683);
  color: #041a3c;
  width: 65%;
}

#contact-info {
  width: 100%;
  background: linear-gradient(170deg, #000818, #000000);
  border-radius: 30px 30px 0 0;
  font-size: 18px;
  text-align: center;
  padding-bottom: 10px;
  border-top: 2px solid #eec643;
  letter-spacing: 1px;
  transition: box-shadow 0.5s;
}

#contact-info:hover {
  box-shadow: inset 0 2px #fed653;
}

#contact-info a {
  color: #eef0f2;
}

#contact {
  font-size: 40px;
  color: #eec643;
  padding-top: 10px;
  margin-bottom: 15px;
  text-align: center;
}

.section-link {
  position: relative;
  top: -13vh;
}

.spacer {
  width: 100%;
}

@media only screen and (max-width: 1007px) {
  #nav-bar h2 {
    font-size: 25px;
  }

  .nav-link {
    font-size: 18px;
  }

  #video-quote {
    font-size: 20px;
  }

  #info-section p {
    font-size: 16px;
    padding: 0 3%;
  }

  #purchase-section {
    flex-direction: column;
    align-items: center;
  }

  .option {
    margin: 10px 10px;
    align-items: center;
    min-height: 30%;
    max-height: 30%;
    width: 85%;
  }
}

@media only screen and (max-width: 725px) {
  #nav-bar h2 {
    font-size: 20px;
  }

  .nav-link {
    font-size: 14px;
  }

  #video-quote {
    font-size: 14px;
  }

  #purchase-section {
    flex-direction: column;
    align-items: center;
  }

  .option {
    margin: 10px 10px;
    align-items: center;
    min-height: 30%;
    max-height: 30%;
    width: 85%;
  }

  #info-section p {
    font-size: 14px;
    padding: 0 3%;
  }
}
