body {
  font-family: Arial, Helvetica, sans-serif;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

/* Landing Page */

.landing {
  background: url("../img/pattern.c611720c.png"),
    radial-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)),
    url("../img/background.bcd654fc.jpg") center no-repeat;
  background-size: auto, cover, cover;
  height: 100%;
}

.landing-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}

.landing-content {
  width: 500px;
  display: flex;
  flex-direction: column;
}

.landing-content img {
  width: 280px;
  margin: 0 auto;
}

.landing-content p {
  color: #fff;
  text-shadow: 1px 1px 1px #000;
  line-height: 30px;
  margin-bottom: 30px;
  font-size: 20px;
}

.landing-content p b:nth-child(1) {
  color: #ffb4b4;
}

.landing-content p b:nth-child(2) {
  color: #adc8ff;
}

.landing-buttons {
  display: flex;
  justify-content: space-around;
}

.landing-buttons a:nth-child(1):hover {
  background-color: rgba(185, 20, 8, 0.65);
  border-color: transparent;
}

.landing-buttons a:nth-child(2):hover {
  background-color: rgba(13, 36, 83, 0.65);
  border-color: transparent;
}

.landing-button {
  width: 210px;
  background-color: rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
  border: 1px solid #afafaf;
  padding: 10px 5px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}

/* End Landing */

/* Sections */

.section-1-wrapper,
.section-2-wrapper {
  padding: 100px 20px;
}

.section-1,
.section-2,
.section-3 {
  max-width: 1200px;
  margin: 0 auto;
}

.section-1-wrapper {
  background-color: #fff;
}

.section-2-wrapper {
  background-color: #0d2453;
}

.section-3-wrapper {
  display: flex;
  flex-direction: column;
}

.section-2 h2 {
  text-align: center;
  color: #fff;
}

ol li {
  margin-bottom: 10px;
}

ol li::marker {
  font-weight: bold;
}

.section-3 {
  display: flex;
  flex-direction: column;
  background: #fff;
}

.part-one {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  flex: 1;
}

.part-two {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  padding: 0px 20px;
}

.show-hide {
  display: none;
}

.link {
  text-decoration: none;
  color: #b91308;
}

#collapse {
  cursor: pointer;
  color: #b91308;
}

.video-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.video-container::after {
  padding-top: 56.25%;
  display: block;
  content: "";
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer-link {
  list-style-type: none;
}

@media only screen and (max-width: 450px) {
  .landing-content {
    width: 300px;
  }

  .landing-content img {
    width: 180px;
  }

  .landing-buttons {
    flex-direction: column;
  }

  .landing-button {
    width: 100%;
  }

  .landing-buttons a:first-child {
    margin-bottom: 5px;
  }

  .part-two {
    padding-top: 10px;
    padding-bottom: 10px;
    height: auto;
    flex-direction: column;
  }

  .part-two a:first-child {
    margin: 0 !important;
  }
}
