.header {
  display: none;
}

.banner {
  display: flex;
  /* background-image: url('/assets/img/homepage-banner.jpg'); */
  /* background-size: 100%; */
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  /* background: radial-gradient(#254172, #000); */
  /* background: radial-gradient(purple, #000); */
  /* background: radial-gradient(#530453, #000); */
  /* background-color:  #5F025F; */
}

/*
 * Override just for homepage
 */
.content-container {
  background: radial-gradient(#530453, #000);
}

/*
 * Override the background color just for homepage.
 * Ideally background color should be handled per page.
 */
.wrapper {
  background-color: #fff;
}

/*
 * Override the content container padding just for the homepage.
 * TODO: refactor to improve as we shouldn't need to be overriding
 * base rules like this, instead everything should be modular or
 * a new page should be made for the homepage
 */
.content-container {
  padding: 0;
}

@media (max-width: 480px) {
  .content-container {
    padding: 0;
    margin-top: 0;
  }
}

.sections {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.sections-block {
  display: flex;
  width: 300px;
  height: 200px;
  border: 2px solid #254172;
  margin: 24px;
  text-decoration: none;
}

.sections-block-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  /* opacity: 0; */
  background-color: #254172;
  transition: opacity 0.25s ease;
  text-decoration: none;
}

.sections-block-overlay:hover {
  /* opacity: 1; */
  background-color: #530453;
  transition: background-color 0.25s ease;
}

.sections-block:hover {
  border: 2px solid #fff;
  border-radius: 4px;
}

.sections-block-button {
  color: #fff;
  padding: 16px;
  max-width: 200px;
  border: 1px solid #fff;
  border-radius: 4px;
  text-align: center;
  font-size: 1.3em;
  text-decoration: none;
}

.sections-block-button--mobile {
  display: none;
}

@media (max-width: 800px) {
  .sections {
    flex-direction: column;
    padding: 30px;
  }

  .sections-block {
    background-color: #254172;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sections-block-overlay {
    display: none;
  }

  .sections-block-button--mobile {
    display: block;
    color: #fff;
    background-color: #254172;
    padding: 16px;
    border: 1px solid #fff;
    border-radius: 4px;
    text-align: center;
    font-size: 1.3em;
    text-decoration: none;
  }
}

@media (max-width: 480px) {
  .header {
    display: inherit;
  }

  .sections {
    padding: 12px;
  }

  .sections-block {
    margin: 12px;
  }
}

