.content-grid {
  margin-top: 8.5rem;
  padding-top: 1rem;
  padding-right: 1rem;
  padding-left: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 7rem;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 25vw 25vw 25vw;
  grid-gap: 1rem;
  overflow: scroll;
}

.content-grid .content-grid-item {
  background-color: white;
}

.content-grid .content-grid-item img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

@media screen and (max-width: 965px) {
  .content-grid {
    margin-top: 4rem;
    margin-bottom: 4rem;
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    grid-auto-rows: 50vw 50vw 50vw 50vw;
    overflow: scroll;
  }
  .content-grid .content-grid-item {
    background-color: white;
  }
}

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

.text {
  padding: 1rem;
}

.bold-text {
  font-family: Helvetica, sans-serif;
}

.regular-text {
  font-family: Helvetica, sans-serif;
}

@font-face {
  src: url(/css/fonts/Archivo-Bold.ttf);
  font-family: archivo-bold;
}

@font-face {
  src: url(/css/fonts/Archivo-Regular.ttf);
  font-family: archivo-regular;
}

@font-face {
  src: url(/css/fonts/Archivo-Medium.ttf);
  font-family: archivo-medium;
}

h1 {
  font-size: 2.2rem;
  font-family: Helvetica, sans-serif;
  font-weight: bold;
  color: black;
}

h2 {
  font-size: 1.2rem;
  font-family: Helvetica, sans-serif;
  color: black;
  font-weight: normal;
}

h3 {
  font-size: 1rem;
  font-family: Helvetica, sans-serif;
  color: black;
  font-weight: lighter;
}

a {
  text-decoration: none;
  color: black;
  cursor: pointer;
}

.hover:hover,
a:hover {
  color: white;
  cursor: pointer;
}

html {
  height: 100%;
}

body {
  position: relative;
  height: 100%;
}

header {
  width: 100%;
  height: 8.5rem;
  position: fixed;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: pink;
  z-index: 1;
}

header .feather-chevron-down {
  display: none;
}

header .logo {
  width: 100%;
  background-color: pink;
  text-align: center;
  padding: 0.8rem;
  cursor: pointer;
}

header .nav {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[7];
      grid-template-columns: repeat(7, 1fr);
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  cursor: pointer;
}

header .nav .nav-item {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  background-color: pink;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-item:hover {
  background-color: black;
  opacity: 0.2;
  color: white;
}

.content {
  background-color: pink;
  display: -ms-grid;
  display: grid;
  height: 100%;
  width: 100%;
  padding-top: 8.5rem;
  padding-bottom: 8.5rem;
}

.content video {
  height: 100%;
  place-self: center;
}

footer {
  width: 100%;
  height: 7rem;
  position: fixed;
  bottom: 0;
  background-color: pink;
  z-index: 1;
}

footer .footer-container {
  height: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[7];
      grid-template-columns: repeat(7, 1fr);
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  padding: 0.8rem;
}

footer .footer-container .footer-item {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: pink;
  position: relative;
}

footer .footer-container .footer-item .footer-item-img {
  height: 100%;
  width: auto;
  position: absolute;
  top: 0;
}

footer .footer-container .footer-item .footer-item-text {
  height: 100%;
  width: auto;
  position: absolute;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
}

@media screen and (max-width: 965px) {
  header {
    height: 100%;
    background-color: transparent;
    z-index: 1;
  }
  header .logo {
    height: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-left: 0.8rem;
    padding-right: 0.8rem;
    z-index: 1;
  }
  header .logo .feather-chevron-down {
    display: block;
    color: black;
    height: 100%;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 90;
    cursor: pointer;
  }
  header nav {
    height: 100%;
    position: relative;
    background-color: transparent;
  }
  header .nav {
    position: absolute;
    left: 0;
    width: 50%;
    height: calc(100% - 4rem);
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: (1fr)[7];
        grid-template-rows: repeat(7, 1fr);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    margin-bottom: 4rem;
  }
  header .nav .nav-item {
    padding: 0.8rem;
    text-align: center;
  }
  header .nav .nav-item .nav-item-text {
    color: white;
  }
  header .nav-slide-in {
    left: -50%;
  }
  .content {
    background-color: pink;
    display: -ms-grid;
    display: grid;
    width: 100%;
  }
  .content video {
    width: 100%;
    place-self: center;
  }
  footer {
    height: 4rem;
    position: fixed;
    bottom: 0;
    background-color: pink;
    z-index: 1;
  }
  footer .footer-container {
    height: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[7];
        grid-template-columns: repeat(7, 1fr);
    -ms-grid-rows: 1fr;
        grid-template-rows: 1fr;
    padding: 0.8rem;
  }
  footer .footer-container .footer-item {
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    background-color: pink;
    position: relative;
  }
  footer .footer-container .footer-item .footer-item-img {
    height: 100%;
    width: auto;
    position: absolute;
    top: 0;
  }
  footer .footer-container .footer-item .footer-item-text {
    height: 100%;
    width: auto;
    position: absolute;
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: white;
  }
}
/*# sourceMappingURL=style.css.map */