/* Color Palette 
  blue: color: #3d6eb0;
  green: color: #5da399;
  white: color: #f4edea;
  darkpurple: color: #32292f;
*/

/* Google Fonts 
  font-family: 'Assistant', sans-serif;
  font-family: 'Open Sans', sans-serif;
*/
@font-face {
  font-family: 'Assistant';
  src: url('fonts/Assistant/assistant-regular-webfont.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/Assistant/assistant-regular-webfont.woff') format('woff'), /* Pretty Modern Browsers */
       url('fonts/Assistant/Assistant-Regular.ttf')  format('truetype'); /* Safari, Android, iOS */
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Assistant';
  src: url('fonts/Assistant/assistant-bold-webfont.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/Assistant/assistant-bold-webfont.woff') format('woff'), /* Pretty Modern Browsers */
       url('fonts/Assistant/Assistant-Bold.ttf')  format('truetype'); /* Safari, Android, iOS */
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('fonts/Open_Sans/opensans-regular-webfont.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/Open_Sans/opensans-regular-webfont.woff') format('woff'), /* Pretty Modern Browsers */
       url('fonts/Open_Sans/OpenSans-Regular.ttf')  format('truetype'); /* Safari, Android, iOS */
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: url('fonts/Open_Sans/opensans-semibold-webfont.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/Open_Sans/opensans-semibold-webfont.woff') format('woff'), /* Pretty Modern Browsers */
       url('fonts/Open_Sans/OpenSans-SemiBold.ttf')  format('truetype'); /* Safari, Android, iOS */
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: url('fonts/Open_Sans/opensans-bold-webfont.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/Open_Sans/opensans-bold-webfont.woff') format('woff'), /* Pretty Modern Browsers */
       url('fonts/Open_Sans/OpenSans-Bold.ttf')  format('truetype'); /* Safari, Android, iOS */
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --------------------- Standard Styles ------------------- */

/* box-sizing */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: #32292f;
  background-color: #f4f7f6;
}

a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #3d6eb0;
}
a:not(.btn)::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: -1px;
  left: 0;
  width: 100%;
  background-color: #5da399;
  opacity: 0.5;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s;
}
a:hover::after {
  transform: scaleY(1);
  transition: transform 0.3s;
}

p {
  font-size: 16px;
  line-height: 1.6em;
}

button {
  display: block;
  border: none;
  background: none;
  padding: 0 20px;
}
button:hover {
  cursor: pointer;
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.btn {
  position: relative;
  margin: 0 auto;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  border: 3px solid #f4edea;
  background-color: transparent;
}
.btn .text {
  position: relative;
  z-index: 1;
  color: #f4edea;
  transition: color 0.3s;
  font-weight: 700;
}
.btn:hover .text {
  color: #5da399;
  transition: color 0.3s;
}
.btn::after {
  content: "";
  position: absolute;
  bottom: -2px;
  top: -2px;
  left: -2px;
  right: -2px;
  background-color: #f4edea;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s;
}
.btn:hover::after {
  transform: scaleY(1);
  transition: transform 0.3s;
}

.photo-credit {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 12px;
  color: #ffffff;
}
.photo-credit a {
  color: #ffffff;
  text-decoration: underline;
}
.photo-credit a::after {
  display: none;
}

@media (min-width: 768px) {
  .btn {
    padding: 14px 40px;
    font-size: 16px;
  }
}

section {
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  section {
    margin-bottom: 40px;
  }
}

@media (min-width: 1025px) {
  section {
    margin-bottom: 60px;
  }
}

@media (min-width: 1200px) {
  section {
    margin-bottom: 80px;
  }
}

/* Headings */
h1, h2, h3 {
  margin-top: 0.2em;
  font-family: 'Assistant', sans-serif;
  text-transform: uppercase;
}
h1 {
  display: inline-block;
  background: linear-gradient(to right, #3d6eb0, #5da399);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #5da399;
  font-size: 100px;
  font-weight: 700;
}
h2 {
  color: #5da399;
  font-weight: 400;
  font-size: 75px;
}
h3 {
  color: #3d6eb0;
  font-weight: 700;
  font-size: 45px;
}

/* IE10+ CSS styles go here */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  h1 {
    background: none;
  }
}


/* --------------------- Header ------------------- */
.scroll-lock {
  overflow: hidden;
}
.page-wrapper {
  position: relative;
  overflow: hidden;
}
main {
  position: relative;
}
main .mobile-overlay {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-color: #000;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
main.overlay .mobile-overlay {
  pointer-events: all;
  opacity: .7;
  transition: opacity 0.3s;
}
.header {
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100%;
  padding: 10px 15px;
  background-color: rgba(22, 46, 60, 0.8);
  background-color: transparent;
  transition: 0.3s background-color;
}
.header.darken {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: rgba(22, 46, 60, 0.8);
  transition: 0.3s background-color;
}
.header .mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .mobile .title {
  margin-right: 50px;
}
.header .mobile-cont button {
  position: relative;
  padding: 10px;
}
.header .mobile-cont button .bars {
  opacity: 1;
  transition: opacity 0.3s;
}
.header .mobile-cont button.close-cont {
  position: absolute;
  top: 20px;
  right: 25px;
}
.header .mobile-cont button .close {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.header .mobile-cont.active button .bars {
  opacity: 0;
  transition: opacity 0.3s;
}
.header .mobile-cont.active button .close {
  opacity: 1;
  transition: opacity 0.3s;
}
.header .mobile-cont button i {
  font-size: 30px;
  color: #f4edea;
}
.header .mobile .title a {
  color: #f4edea;
  font-family: 'Assistant', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 22px;
}
.header .mobile .title a::after {
  display: none;
}
.header .mobile-cont .mobile-menu {
  position: absolute;
  z-index: 100;
  right: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  transition: transform 0.3s;
  background: linear-gradient(to bottom, #3d6eb0, #5da399)
}
.header .mobile-cont.active .mobile-menu {
  transform: translateX(0);
  transition: transform 0.3s;
}
.header .mobile-nav ul{
  list-style-type: none;
  margin: 20px 0;
  padding: 0;
}
.header .mobile-cont .mobile-nav li {
  position: relative;
  padding: 10px 30px;
  font-size: 30px;
  text-align: center;
  opacity: 0;
}
.header .mobile-cont .mobile-nav li:nth-child(1){
  top: -10px;
}
.header .mobile-cont .mobile-nav li:nth-child(2){
  top: -50px;
}
.header .mobile-cont .mobile-nav li:nth-child(3){
  top: -60px;
}
.header .mobile-cont.active .mobile-nav li:nth-child(1) {
  top: 0;
  opacity: 1;
  transition: 0.3s top ease-out 0.2s, 0.5s opacity ease-out 0.2s;
}
.header .mobile-cont.active .mobile-nav li:nth-child(2) {
  top: 0;
  opacity: 1;
  transition: 0.4s top ease-out 0.3s, 0.5s opacity ease-out 0.3s;
}
.header .mobile-cont.active .mobile-nav li:nth-child(3) {
  top: 0;
  opacity: 1;
  transition: 0.5s top ease-out 0.4s, 0.6s opacity ease-out 0.5s;
}
.header .mobile-nav li:last-child {
  margin-bottom: 0;
}
.header .mobile-nav a {
  color: #f4edea;
}
.header .mobile a::after {
  z-index: -1;
    content: "";
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -7px;
    width: auto;
    right: -7px;
    background-color: #5da399;
    opacity: 0.8;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s;
}
.header .mobile a:hover::after {
  transform: scaleY(1);
  transition: transform 0.3s;
}
.header .desktop {
  display: none;
}


@media (min-width: 1025px) {
  .scroll-lock {
    overflow: auto;
  }
  .header .mobile {
    display: none;
  }
  .header {
    padding: 20px 70px;
  }
  .header .desktop {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
  .header .desktop, .header .desktop a {
    color: #f4edea;
  }
  .header .desktop a::after {
    z-index: -1;
    content: "";
    position: absolute;
    top: 7px;
    bottom: 6px;
    left: 0;
    width: 100%;
    background-color: #5da399;
    opacity: 0.8;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s;
  }
  .header .desktop a:hover::after {
    transform: scaleY(1);
    transition: transform 0.3s;
  }
  .header .desktop .title {
    padding: 12px 17px;
    font-family: 'Assistant', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 22px;
  }
  .header .title a::after {
    display: none;
  }
  .header .desktop .menu {
    flex: 1;
  }
  .header .desktop ul {
    display: flex;
    justify-content: flex-end;
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  .header .desktop .nav {
    margin: 0 0 0 30px;
  }
  .header .desktop .nav a {
    position: relative;
    padding: 12px 17px;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
  }
  main.overlay .mobile-overlay {
    display: none;
  }
}


/* --------------------- Hero ------------------- */
.hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(180deg, rgba(61, 110, 176, 0.85), rgba(93, 163, 153, 0.85)), url("images/hero-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
/* IE10+ CSS styles go here */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .hero {
    background-attachment: local;
  }
}
.hero-content {
  position: relative;
  width: 100%;
  max-width: 875px;
  top: 38px;
  padding: 30px;
  color: #f4edea;
  text-align: center;
}
.hero-content h1 {
  margin: 0 0 0.8em 0;
  line-height: 1em;
  font-size: 60px;
  color: #f4edea;
  text-transform: none;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
}
.hero-content p {
  margin: 0 auto 3em;
  font-size: 20px;
  width: 70%;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 40px;
  }
  .hero-content h1 {
    font-size: 70px;
  }
}

@media (min-width: 1025px) {
  .hero {
    background-image: linear-gradient(145deg, rgba(61, 110, 176, 0.85), rgba(93, 163, 153, 0.85)), url("images/hero-bg.jpg");
  }
  .hero-content {
    top: 70px;
  }
  .hero-content h1 {
    font-size: 90px;
    margin-bottom: 1em;
  }
  .hero-content p {
    margin: 0 auto 2.5em;
    font-size: 20px;
  }
}

/* --------------------- Section Styles ------------------- */

section .title-cont {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
section .title {
  margin-top: 0;
  margin-bottom: 0.4em;
  font-family: 'Assistant', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  background: linear-gradient(to right, #3d6eb0, #5da399);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #5da399;
  font-size: 70px;
  line-height: 1em;
}
section .content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
/* IE10+ CSS styles go here */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  section .title {
    background: none;
  }
}

/* --------------------- Cards ------------------- */
.card-cont {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.card {
  position: relative;
  width: 100%;
  padding: 0;
  max-width: 300px;
  margin: 0 15px 50px;
  background-color: #ffffff;
  -webkit-box-shadow: 4px 4px 10px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 4px 4px 10px 0px rgba(0,0,0,0.75);
  box-shadow: 4px 4px 10px 0px rgba(0,0,0,0.75);
}
.card .image {
  width: 100%;
  height: 0;
  padding-top: 70%;
}
.card .image {
  background-size: cover;
  background-position: center center;
}
.card#how-step-1 .image {
  background-image: url("images/rawBlueWrap.jpg");
}
.card#how-step-2 .image {
  background-image: url("images/finishedBags.jpg");
}
.card#how-step-3 .image {
  background-image: url("images/totes.jpg");
}
.card .content {
  padding: 20px;
}
.card .icon {
  width: 35%;
  margin: 0 auto 20px;
}
.card-title {
  font-size: 26px;
  line-height: 1em;
  font-weight: 700;
}
.card .description {
  margin-bottom: 35px;
}
.card .description p {
  margin-top: 0.8em;
  line-height: 1.6em;
}
.how .btn {
  margin: 0;
  white-space: nowrap;
  border: 3px solid #3d6eb0;
}
.how .btn::after {
  background-color: #3d6eb0;
}
.how .btn .text {
  color: #3d6eb0;
  font-weight: 700;
}
.how .btn:hover .text {
  color: #f4edea;
}
.how .btn-cont {
  display: none;
}


@media (min-width: 768px) {
  .card {
    max-width: 315px;
    margin-right: 20px;
    margin-left: 20px;
    transform: scale(1);
    transition: 0.3s transform, 0.3s border;
  }
  .card .description {
    margin-bottom: 90px;
  }
  .card .content {
    padding: 30px;
  }
  .card:hover {
    transform: scale(1.05);
    transition: 0.3s transform;
  }
  .card:hover .btn {
    opacity: 1;
    transition: 0.3s opacity;
  }
  .card .btn {
    position: absolute;
    bottom: 30px;
    left: 30px;
  }
}

@media (min-width: 970px) {
  .card-cont {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 60px;
  }
  .card .btn {
    display: none;
  }
  .card .description {
    margin-bottom: 0;
  }
  .how .btn-cont {
    display: block;
    text-align: center;
    margin-bottom: 60px;
  }
}

@media (min-width: 1200px) {
  
}

/* --------------------- How it works ------------------- */
.how > .content {
  padding: 0;
}
.how .title-cont {
  text-align: center;
}

@media (min-width: 1025px) {
  section .title {
    font-size: 100px;
    margin-bottom: 
    45px;
  }
}


/* --------------------- Stats ------------------- */

.stats .content {
  position: relative;
  max-width: none;
  padding: 0;
}
.stats .controls {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  z-index: 2000;
  width: 100%;
  display: flex;
  padding: 0 15px;
  justify-content: space-between;
}
.stats .controls-large {
  display: none;
}
.stats .slick-arrow {
  height: 40px;
  width: 40px;
  font-size: 40px;
  padding: 0;
  background-color: #3d6eb0;
  color: #f4edea;
  box-shadow: 0px 0px 8px 0px rgba(244,237,234,0.3);
}
.stats .slick-arrow.prev i {
  vertical-align: top;
  position: relative;
  left: -6%;
}
.stats .slick-arrow.next i {
  vertical-align: top;
  position: relative;
  left: 6%;
}
.stats .slide {
  padding: 0 15px;
  text-align: center;
  font-size: 20px;
  color: #f4edea;
}
.stats .main-slider .slide {
  padding: 0 65px;
}
.stats .slide .description {
  max-width: 200px;
  margin: 0 auto;
}
.stats .slide.big {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-top: calc(100vw + 60px);
  text-align: center;
  font-size: calc(110px + 40 * ((100vw - 320px) / 1120));
  font-weight: 700;
  color: #f4edea;
  background-size: cover;
  background-position: center center;
}
.stats .main-cont {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 100%;
  max-width: 1200px;
}
.stats .main-slider .num-cont {
  display: flex;
  justify-content: center;
  font-size: calc(90px + 40 * ((100vw - 320px) / 1120));
  font-weight: 700;
  color: #f4edea;
}

@media (min-width: 580px) {
  .stats .slide.big {
    padding-top: calc(((9/16) * 100vw) - 15px);
  }
  .stats .slide {
    font-size: 25px;
  }
}


@media (min-width: 1025px) {
  .stats .flex-cont {
    max-height: 810px;
    overflow: hidden;
  }
  .stats .controls {
    display: none;
  }
  .stats .controls-large {
    position: absolute;
    z-index: 2000;
    top: -60px;
    bottom: -60px;
    left: 0;
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  .stats .slick-arrow {
    height: 60px;
    width: 60px;
    font-size: 50px;
    padding: 0;
    background-color: #3d6eb0;
    color: #f4edea;
    transform: translateY(0);
    transition: 0.3s transform;
  }
  .stats .slick-arrow.next:hover {
    transform: translateY(10px);
    transition: 0.3s transform;
  }
  .stats .slick-arrow.prev:hover {
    transform: translateY(-10px);
    transition: 0.3s transform;
  }
  .stats .slick-arrow.prev i {
    vertical-align: top;
    position: relative;
    left: auto;
  }
  .stats .slick-arrow.next i {
    vertical-align: top;
    position: relative;
    left: auto;
    top: 4px;
  }
  .stats .slide.big {
    font-size: 300px;
  }
  .stats .slide .description {
    position: absolute;
    top: 50%;
    left: 0;
    width: 25%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: none;
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2em;
  }
  .stats .main-slider .slide {
    position: relative;
    padding: 0 75px;
  }
  .stats .main-slider .num-cont {
    min-height: 300px;
    display: flex;
    justify-content: center;
    font-size: 300px;
    line-height: 300px;
  }
}

@media (min-width: 1440px) {
  .stats .slide.big {
    padding-top: 810px;
  }
}

/* --------------------- About ------------------- */
.about .content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.about .image, .about .text {
  max-width: 400px;
  margin: 0 auto;
}
.about .image {
  margin-bottom: 25px;
}


@media (min-width: 768px) {
  .about .content {
    display: flex;
    justify-content: center;
  }
  .about .image, .about .text {
    margin: 0;
  }
  .about .image {
    margin-right: 40px;
    flex: 1 0 50%;
  }
  .about .text p {
    margin-top: 0;
  }
}

/* --------------------- Volunteer ------------------- */
.volunteer .title-cont {
  text-align: center;
}
.volunteer .title {
  margin-bottom: 20px;
  font-size: 48px;
}
.volunteer .form-cont {
  max-width: 500px;
  margin: 0 auto;
}
#mc_embed_signup {
  background-color: transparent;
}
#mc_embed_signup, 
#mc_embed_signup input {
  clear: left;
  font-family: 'Open Sans', sans-serif;
  color: #32292f;
  font-size: 16px;
  line-height: 1.6em;
}
#mc_embed_signup .form-instructions.mc-field-group {
  padding-bottom: 0;
}
#mc_embed_signup #mc-embedded-subscribe {
  margin-left: 0;
  border-radius: 0;
  border: 3px solid #3d6eb0;
  color: #3d6eb0;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  background-color: transparent;
  transition: 0.3s color, 0.3s background-color;
}
#mc_embed_signup #mc-embedded-subscribe:hover {
    background-color: #3d6eb0;
    color: #f4edea;
    cursor: pointer;
    transition: 0.3s color, 0.3s background-color;
}
#mc_embed_signup .mc-field-group.input-group input[type=checkbox] {
  width: 20px;
  height: 20px;
}
#mc_embed_signup .mc-field-group.input-group label {
  vertical-align: top;
}

@media (min-width: 440px) {
  .volunteer .title {
    font-size: 70px;
  }
}

@media (min-width: 1025px) {
  .volunteer .title {
    font-size: 100px;
  }
}


/* --------------------- Footer ------------------- */
footer {
  padding: 20px 15px;
  margin-top: 100px;
  background-color: #5da399;
  color: #f4edea;
}
footer .footer-cont {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
footer a::after {
  background-color: #3d6eb0;
}
footer ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
footer .social ul {
  display: flex;
  justify-content: center;
}
footer .social a,
footer .email a {
  font-size: 18px;
  padding: 5px 17px;
  color: #f4edea;
  transition: color 0.3s;
}
footer .social a:hover,
footer .email a:hover {
  color: #3d6eb0;
  transition: color 0.3s;
}
footer .social a::after,
footer .email a::after {
  display: none;
}
footer .email a::after {
  display: none;
}
footer .footer-nav {
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
footer .footer-nav a {
  color: #f4edea;
}
footer .footer-nav li {
  text-align: center;
}
footer .footer-nav a {
  padding: 12px 17px;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  color: #f4edea;
  transition: color 0.3s;
}
footer .footer-nav a:hover {
  color: #3d6eb0;
  transition: color 0.3s;
}
footer .footer-nav a::after {
  display: none;
}
footer .footer-nav::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 40%;
  max-width: 320px;
  right: 50%;
  transform: translateX(50%);
  height: 2px;
  background-color: #3d6eb0;
}
footer .contact {
  text-align: center;
}
footer .contact .title {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
footer .contact p,
footer .contact a {
  margin: 0;
  font-size: 14px;
  color: #f4edea;
}
footer .attribution ul {
  font-size: 12px;
}
footer .attribution ul li {
  text-align: center;
}
footer .attribution ul li:last-child {
  margin-right: 0;
}
footer .attribution ul li:last-child::after {
  display: none;
}
@media (min-width: 768px) {
  footer {
    padding-top: 42px;
  }
  footer .footer-nav ul {
    display: flex;
    justify-content: center;
  }
  footer .attribution ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .attribution ul li {
    margin-right: 40px;
  }
}

@media (min-width: 1025px){
  footer {
    padding-left: 70px;
    padding-right: 70px;
    margin-top: 120px;
  }
  footer .footer-nav ul {
    display: flex;
    justify-content: center;
  }
  footer .attribution ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .attribution ul li {
    margin-right: 40px;
  }
}