/*===================================================================
 * General
 *===================================================================*/

body {
  font-size: 16px;
}

h1, h2, h3, h4, h5 {
  font-weight: bold;
  font-family: 'Oswald', "Segoe UI", Roboto, "Helvetica Neue", Arial;
  text-align: center;

  color: rgb(6, 65, 124);
}

p {
  font-size: 24px;
  text-align: center;
}

footer {
  border-top: 6px solid rgb(199, 199, 199);
}

.c-content {
  padding: 8rem 0;
}

.c-content__section {
  margin-bottom: 6rem;
}

.c-content__p {
  margin: 0 auto;
  margin-top: 2rem;
  max-width: 960px;
}

.c-content__a,
.c-content__a:link {
  max-width: 18rem;
  display: block;
  font-size: 25px;
  text-decoration: none;
  text-align: center;
  
  padding: 0.6rem;
  margin: 0 auto;
  margin-top: 1rem;
  
  color: white;
  background-color: rgb(6, 65, 124);
  border-radius: 6px;
}

.c-content__a:hover {
  color: white;
  background-color: rgb(10, 77, 143);
}

.c-footer {
  padding-top: 3.5rem;
}

.c-footer__contact-info {
  text-align: right;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0.6rem;
}

/*===================================================================
 * Navigation
 *===================================================================*/

.c-nav {
  z-index: 100;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  
  height: 50px;
  display: flex;
  justify-content: space-between;

  padding: 0 2rem;

  background-color: rgba(12, 35, 58, 0.85);
}

.c-nav__logo,
.c-nav__list {
  position: relative;
  height: 100%;

  display: flex;
}

.c-nav__logo {
  align-items: center;
}

.c-nav__logo-link,
.c-nav__logo-link:link, 
.c-nav__logo-link:hover {
  color: white;
  text-decoration: none;
}

.c-nav__list {
  padding: 0;
  margin: 0;
}

.c-nav__item {
  position: relative;
  height: 100%;
  
  display: flex;
  justify-content: center;
  align-items: center;
  
  padding: 0 1rem;
  
  list-style-type: none;
}

.c-nav__link {
  color: white;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity ease 0.25s;
}

.c-nav__link:hover,
.c-nav__item.-active .c-nav__link {
  color: white;
  opacity: 1;
}

.c-nav__item.-active .c-nav__link {
  font-weight: bold;
}


/*===================================================================
 * Header
 *===================================================================*/

.c-header {
  position: relative;

  height: 70vh;
  background-color: grey;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.c-header.-large {
  height: 100vh;
}

.c-header__overlay {
  position: relative;

  height: 100%;
  width: 100%;
  background-color: rgb(24, 42, 71, 67%);

  display: flex;
  justify-content: center;
  align-items: center;
}

.c-header__title {
  color: white;
  font-size: 80px;
}

.c-header__logo {
  height: 200px;
}

.c-header__logo.-small {
  height: 150px;
}

/*===================================================================
 * Content
 *===================================================================*/

.card {
  border: none;
}

.card-title {
  font-size: 40px;
  font-weight: bold;
  text-align: center;

  margin-top: 1.5rem;
}

.c-content__card-link {
  text-decoration: none;
}