* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Quicksand", sans-serif;
}

/* nav bar  */
nav {
  background-color: white;
  height: 200px;
  width: 100%;
  display: flex;
  align-items: center;
}

nav a:hover {
  color: #3d91cc;
}

a {
  text-decoration: none;
  color: #202a5d;
  font-size: 26px;
  margin-left: 100px;
}

nav img {
  width: 150px;
  height: 150px;
  margin-top: 10px;
}

/* top section part of banner  */
.top-section {
  background-color: #3d91cc;
  width: 100%;
  height: 416px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 15%;
  color: white;
  font-size: 2rem;
}

/* bottom section part of banner  */
.bot-section {
  background-color: #202a5d;
  color: white;
  width: 100%;
  height: 416px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 15%;
  font-size: 1.5rem;
}

.hero-section {
  width: 100%;
  height: 1300px;
}

.banner-img-container {
  width: 45%;
  aspect-ratio: 1 / 1;
  border-radius: 100%;
  position: relative;
  bottom: 1000px;
  background-image: url("../images/P1.png");
  margin: 20px;
  background-repeat: no-repeat;
  background-position: center center;
}

.heading-2 {
  font-size: 2.5rem;
  color: #3d91cc;
}

.hero-section-content {
  color: #202a5d;
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: space-around;
  font-size: 1.5rem;
}

.vl {
  border-left: 6px solid #202a5d;
  height: 1500px;
  position: absolute;
  left: 50%;
  margin-left: -3px;
  top: 1510;
}

.timeline {
  margin: 0 18%;
  max-width: 750px;
  padding: 25px;
  display: grid;
  grid-template-columns: 1fr 3px 1fr;
  color: rgb(255, 255, 255);
}

.timeline-component {
  margin: 0 20px 20px 20px;
}

.timeline-component .p2 {
  margin: 50px 0;
  font-size: 1.5rem;
  color: #202a5d;
}

.timeline-component-bg {
  padding: 1.5rem;
  background: rgb(61, 145, 204, 0.5);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.timeline-component-bg2 {
  padding: 1.5rem;
  background: rgb(61, 145, 204);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.timeline-component-bottom {
  margin-bottom: 0;
}

.timeline-middle {
  position: relative;
  background: #202a5d;
}

.timeline-point {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 15px;
  background: #202a5d;
  border-radius: 50%;
}

.timeline-point-bottom {
  top: initial;
  bottom: 0;
}

.timeline-date-right {
  text-align: right;
}

.timeline-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: bold;
}

.timeline-paragraph {
  line-height: 1.5;
}

.final-img-container {
  width: 100vw;
  background-color: #3d91cc;
}
.final-img {
  object-fit: contain;
  width: 100%;
  height: 800px;
  background-color: #3d91cc;
}

/* form  */

/* label styling for form inputs */
label {
  font-size: 1rem;
  color: #202a5d;
  margin-top: 24px;
  margin-bottom: 5px;
}

/* button styling when hovered */
button:hover {
  background-color: #3d91cc;
}

label {
  display: block;
}

form {
  width: 100%;
}

.contact-form {
  width: 50vw;
  margin: 0 auto;
}

.contact-form input {
  width: 100%;
  height: 50px;
}

.contact-form h2 {
  text-align: center;
  font-size: 2rem;
  color: #202a5d;
  margin: 50px;
}

.contact-form button {
  background-color: #202a5d;
  color: white;
  height: 50px;
  width: 50%;
  margin: 40px auto;
  display: block;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  border-radius: 2px;
  border-style: none;
}

.contact-form button:hover {
  background-color: #3d91cc;
  transition: all 0.2s ease-in-out;
}

/* footer  */

footer {
  background-color: rgba(0, 34, 98, 0.9);
  width: 100%;
  height: 250px;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-content {
  color: #ffffff;
  display: block;
}

.copyrights {
  text-align: center;
  margin-top: 10px;
}

footer a {
  color: #ffffff;
  font-size: 3rem;
  margin-left: 5%;
}

.icons {
  text-align: center;
}

footer a:hover {
  color: #3d91cc;
  transition: all 0.2s ease-in-out;
}

@media (max-width: 1400px) {
  nav {
    display: block;
    height: 70vw;
  }
  .timeline {
    display: block;
    margin: 0;
  }

  .timeline__point {
    display: none;
  }

  .timeline img {
    width: 100%;
  }

  .banner-img-container {
    display: none;
  }

  .final-img {
    height: 250px;
  }

  .home-page-form h2 {
    margin: 10px;
  }

  .home-page-form {
    width: 100vw;
    margin: 20px;
  }

  .hero-section {
    height: auto;
  }

  footer {
    display: block;
  }

  /* footer {
    height: 250px;
  }

  .icons a {
    text-align: center;
    font-size: 3rem;
  } */
}
