
.content-page {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  overflow-x: hidden;
}

/* HERO */
.hero {
  width: 100%;
  background-color: #0A0034;
  color: white;
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
}

.hero .info-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero .logo {
  width: 120px;
  margin-bottom: 20px;
}

.hero h2 {
  font-size: 48px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h4 {
  font-size: 22px;
  margin: 10px 0 0;
}

/* SUB HERO DECORATION */
.sub-hero {
  width: 100%;
  height: 120px;
  position: absolute;
  bottom: -60px;
  left: 0;
}

.sub-hero div:nth-of-type(1),
.sub-hero div:nth-of-type(2) {
  width: 100%;
  height: 100px;
  position: absolute;
  clip-path: polygon(0 0, 75% 30px, 100% 0, 100% 60px, 75% 100px, 0 60px);
}

.sub-hero div:nth-of-type(1) {
  background-color: #0A0034;
  z-index: 10;
  top: 0;
}

.sub-hero div:nth-of-type(2) {
  background-color: #85B6FF;
  z-index: 9;
  top: 40px;
}

/* MAIL SECTION */
.check_mail {
  margin-top: 120px;
  text-align: center;
  padding: 20px;
}

.check_mail img {
  height: 60px;
  margin-bottom: 15px;
}

.check_mail p {
  color: #0A0034;
  font-size: 22px;
  font-weight: bold;
}

/* FOOTER */
footer {
  margin-top: 40px;
  padding-bottom: 60px;
}

footer a {
  color: #0A0034;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .hero h2 {
    font-size: 36px;
  }

  .hero h4 {
    font-size: 18px;
  }

  .check_mail p {
    font-size: 18px;
  }
}
