@import url("https://fonts.googleapis.com/css2?family=Archivo+Narrow:ital,wght@0,400;0,700;1,400;1,700&family=Julius+Sans+One&display=swap");
:root {
  --header-font-family: 'Julius Sans One', sans-serif;
  --primary-font-family: "Archivo Narrow", sans-serif;
  --primary-color: rgb(18, 55, 82);
  --lighter-text: rgb(250,250,250);
  --light-text: rgb(200,200,200);
  --faded-text: rgb(85,85,85);
  --text: rgb(68, 68, 68);
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: var(--primary-font-family);
  color: var(--text);
  font-size: 18px;
  margin-bottom: 82px;
}

header {
  background-color: white;
  position: fixed;
  z-index: 100;
  width: 100%;
  bottom: 0;
  padding: 20px 10%;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
}

header .logo, header .logo-small-screen {
  height: 2em;
}

section, footer {
  padding: 0px 10% 20px 10%;
}

section:first-of-type {
  padding-top: 20px;
}

section#intro {
  margin-top: 20px;
}

footer {
  background-color: var(--text);
  padding-top: 15px;
  padding-bottom: 15px;
  color: var(--lighter-text);
  font-size: .75em;
}

footer a, footer a:hover, footer a:focus {
  color: var(--light-text);
  text-decoration: none;
}

footer a:hover, footer a:focus {
  font-weight: bold;
}

footer h3 {
  font-size: 1.2em;
  margin-bottom: 1em;
}

footer p {
  margin-bottom: .5em;
}

footer p:last-of-type {
  margin-bottom: 0;
}

footer .footer-item {
  padding: 1em 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--header-font-family);
}

h1 a {
  color: var(--lighter-text);
  text-decoration: none;
}

h2 {
  font-size: 1em;
}

p {
  margin-bottom: 1em;
}

blockquote {
  margin: 1em 0;
  padding: 0 2em;
  font-style: italic;
  position: relative;
  position: relative;
  text-align: justify;
  color: var(--faded-text);
}

blockquote small {
  display: block;
  padding-top: .5em;
}

blockquote small::before {
  content: '\2014 \00A0';
}

blockquote::before {
  content: '\201C';
  font-size: 5em;
  position: absolute;
  top: -.27em;
  left: 0;
  color: var(--primary-color);
}

form.form {
  padding: 1em;
  max-width: 600px;
  margin: auto;
  margin-bottom: 1.5em;
}

form.form h2 {
  font-size: 1.2em;
  margin-bottom: 1em;
}

form.form label {
  display: block;
  font-size: .8em;
}

form.form input, form.form select {
  width: 100%;
  height: 3em;
  padding: .1em .5em;
  margin: .5em 0;
}

form.form button {
  display: block;
  padding: 1em 1.2em;
  border-radius: 5em;
  width: 99%;
  background-color: var(--primary-color);
  color: var(--lighter-text);
  font-size: 1em;
  margin: 1em auto 0 auto;
  border: 2px solid white;
  -webkit-box-shadow: 0 0 0 4px var(--primary-color);
          box-shadow: 0 0 0 4px var(--primary-color);
  cursor: pointer;
}

.page-title {
  background-color: var(--primary-color);
  color: var(--lighter-text);
  padding: 20px 10%;
}

.nav__links {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-transform: uppercase;
}

.nav__links a {
  text-decoration: none;
  color: var(--primary-color);
}

.nav__links li.hide-small {
  display: none;
}

.nav__links li.has-logo {
  margin-right: auto;
}

.nav__links li:not(.has-logo) {
  margin-left: 1em;
}

.nav__links li, .nav__links a {
  display: inline-block;
  height: 100%;
}

.button {
  border: 1px solid var(--primary-color);
  padding: .4em .6em;
  border-radius: 1em;
}

.card {
  position: relative;
  margin-bottom: 30px;
}

.card:last-of-type {
  margin-bottom: 0px;
}

.card-link {
  display: block;
}

.card-title {
  position: absolute;
  bottom: 0;
  padding: .2rem;
  color: var(--lighter-text);
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  text-align: center;
}

.card-image {
  width: 100%;
  height: 100%;
  display: block;
}

@media screen and (min-width: 769px) {
  body, html {
    height: 100%;
  }
  body {
    margin-top: 79px;
    margin-bottom: 0px;
    height: calc(100% - 79px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  header {
    height: 79px;
    top: 0;
    -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
  }
  section#individuals, section#form, section#about {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }
  footer {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  form.form button {
    min-width: 14em;
  }
  blockquote {
    margin: 1em;
  }
  .footer-container, .container {
    max-width: 980px;
    margin: auto;
  }
  .footer-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .footer-item {
    -ms-flex-preferred-size: 33%;
        flex-basis: 33%;
  }
  .nav__links li.hide-small {
    display: initial;
  }
  .nav__links li.hide-large {
    display: none;
  }
  .card-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .card {
    margin-bottom: 1em;
    overflow: hidden;
    -ms-flex-preferred-size: 32%;
        flex-basis: 32%;
  }
  .card:last-of-type {
    margin-bottom: 1em;
  }
  .card img {
    -webkit-transition: -webkit-transform .1s ease;
    transition: -webkit-transform .1s ease;
    transition: transform .1s ease;
    transition: transform .1s ease, -webkit-transform .1s ease;
  }
  .card img:hover {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  .card h2 {
    z-index: 10;
  }
}
/*# sourceMappingURL=style.css.map */