* {
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
}

html {
  scroll-behavior: smooth;
}

.bg-color {
  background-color: #f5f5f6;
}

.container {
  padding-top: 100px;
  position: relative;
  z-index: 2;
}

.container h1 {
  margin-bottom: 50px;
}

.container .col-sm {
  justify-content: center;
  display: flex;
}

header {
  position: fixed;
  top: 0;
  z-index: 99;
  height: 52px;
  width: 100%;
  display: flex;
  justify-content: center;

  z-index: 10000;
  transition: all 0.2s ease-in-out;
  background-color: transparent;
}

main:not(.container) {
  z-index: 2;
  background-color: #f5f5f6;
  position: relative;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
}

header.active {
  background: #fff;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
}

header nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header a {
  line-height: 52px;
}

header .hamburger-menu {
  display: none;
  height: 100%;
  width: 46px;
}

header .logo {
  width: 52px;
  /* background-image: url(./assets/logo.png); Add icon later */
  height: 52px;
  background-size: cover;
}

header.active .menu a {
  color: #364750;
}

header .menu a {
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  text-decoration: none;
}

header.active .menu a:hover {
  border-bottom: solid 4px #364750;
}

.drawer {
  width: 0vw;
  transition: width 500ms ease;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  background-color: #364750;
  color: hsla(0, 0%, 100%, 0.97);
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
}

.drawer a {
  white-space: nowrap;
  color: inherit;
  text-decoration: none;
  font-style: sans-serif;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  text-decoration: none;
}

.drawer.open {
  width: 70vw;
}

.header-section {
  padding-top: calc(50vh - 181px);
  padding-bottom: calc(50vh - 181px);
  overflow: hidden;
  position: relative;
  width: 100%;
  background-image: url("./unemployment.jpg");
  /* source: https://unsplash.com/photos/Q1p7bh3SHj8 */
  background-attachment: fixed;
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;

  display: flex;
  justify-content: center;
}

.header-section .play-audio {
  cursor: pointer;
}

.header-section > div {
  color: white;
  text-shadow: 2px 2px gray;
  z-index: 1;
  grid-column: 3;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 15px;
  width: 1200px;
}

.header-section > div h1,
.header-section > div strong {
  margin: 0 0 30px;
  font-size: 85px;
  font-weight: 600;
}

.header-section .scroll-down {
  position: absolute;
  bottom: 100px;
}

.content-section {
  width: 100%;
  position: relative;
}

.content-section .hidden {
  display: none;
}

.content-section .section {
  padding: 60px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.content-section .section h2 {
  font-weight: 300;
  font-size: 50px;
  text-align: center;
}

.content-section .parallax-section {
  padding-top: 150px;
  padding-bottom: 150px;
  overflow: hidden;
  position: relative;
  width: 100%;

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

.content-section .parallax-section.parallax-1 {
  background-image: url("./unemploymentMan.jpg");
}

.content-section .parallax-section.parallax-2 {
  background-image: url("./debt.jpg");
}

.content-section .parallax-section.parallax-3 {
  background-image: url("./coins.jpg");
}

.content-section .parallax-section.parallax-4 {
  background-image: url("./sale.jpg");
}

.content-section .parallax-section.parallax-5 {
  background-image: url("./visa.jpg");
}

.content-section .section > *:not(:last-child) {
  margin-bottom: 30px;
}

.content-section .section .column {
  display: flex;
  height: 600px;
}

.content-section .section .row:not(:last-child) {
  padding-bottom: 60px;
}

.content-section .section .row h4 {
  font-size: 25px;
  margin-bottom: 15px;
}

.content-section .section p {
  font-size: 20px;
}

.footer-section-placeholder {
  height: 150px;
}

footer {
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  height: 150px;
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color: white;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
}

footer .social {
  max-width: 500px;
  min-width: 300px;
  display: flex;
  justify-content: space-evenly;
}

footer .social > a {
  text-decoration: none;
  margin: 5px;
}

footer .social > a > div {
  width: 150px;
  height: 47px;
  border-radius: 47px;
  background-color: #364750;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  font-size: 19px;
}

footer .social > a > div:hover {
  color: #364750;
  background-color: transparent;
  border: 1px solid #364750;
}

footer .copyright {
  text-align: center;
  position: absolute;
  bottom: 5px;
  width: 100%;
  color: #364750;
}

.btn-primary {
  background-color: #364750;
  border-color: #364750;
}

.btn-primary:hover {
  color: #364750;
  background-color: transparent;
  border-color: #364750;
}

@media screen and (max-width: 480px) {
  header .menu {
    display: none;
  }

  .container {
    background-color: #f5f5f6;
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
  }
}

.content-section .section .section-column {
  display: flex;
  flex-direction: row;
}

.content-section .section .section-column p {
  font-size: 15px;
}

.content-section .section .right,
.content-section .section .left {
  width: 50%;
}

.content-section .section .left p {
  padding-right: 15px;
}

.content-section .section .right p {
  padding-left: 15px;
}

/* observablehq */

.observablehq form > label {
  width: auto !important;
}

.country-list form > div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.country-list form > div output,
.country-list form > div input {
  width: auto;
}

.country-list form {
  max-width: 100% !important;
  width: auto !important;
}

.country-list form > div > label {
  width: auto;
}
