.header {
  font-family:;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: rgba(243, 0, 0, 0.8);
}

.wrap {
  margin: 0 auto;
  width: 90%;
  max-width: 69em;
}

body {
  background: white;
}
h1,
.menu {
  display: inline-block;
  position: relative;
}

h1,
.menu a {
  line-height: 140px;
}

.header h1 {
  float: left;
  margin: 0;
  color: #ffef6c;
  font-family: $font-heading;
  font-size: 50px;
  text-transform: uppercase;
}

.header .menu {
  float: right;

  a {
    margin: 0 10px;
    color: #fff;
    text-decoration: none;

    &:last-of-type {
      margin-right: 0;
    }
  }
}

/* Shrinking */
.header h1,
.header nav a {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.header.shrink {
  height: 90px;
}

.header.shrink h1,
.header.shrink nav a {
  line-height: 90px;
}

.header.shrink h1 {
  font-size: 2em;
}

h3 {
  text-align: center;
  font-size: 300%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid;
}

#footer {
  font-size: 15px;
  border-top: #00c4ab 5px solid;
  border-bottom: #00c4ab 5px solid;
  clear: left;
  text-align: center;
  margin-bottom: 0px;
  width: 100%;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}

.scroll-infinity__item {
  width: calc(100vw / 6);
}
.scroll-infinity__item > img {
  width: 100%;
}

.scroll-infinity {
  margin-top: 150px;
}

@keyframes infinity-scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}
.scroll-infinity__list--right {
  animation: infinity-scroll-right 80s infinite linear 0.5s both;
}
