/* z-index scale */
/* z-index applications */
/* breakpoints */
/* z-index scale */
/* z-index applications */
/* breakpoints */
* {
  list-style: none;
  box-sizing: border-box;
  text-decoration: none;
  margin: 0;
  padding: 0;
  outline: none;
  font-family: sans-serif;
}

body,
html {
  width: 100%;
  height: 100%;
}

body {
  background: #fff;
}

/* z-index scale */
/* z-index applications */
/* breakpoints */
/* z-index scale */
/* z-index applications */
/* breakpoints */
section {
  width: 590px;
  height: 100vh;
  min-height: 500px;
  padding: 40px 0 16px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
section img {
  width: 100%;
}
section .logo {
  width: 100px;
  height: 60px;
  margin: 0 auto;
  opacity: 0.6;
}
section p {
  font-size: 32px;
  text-align: center;
  display: inline-block;
  padding-bottom: 2px;
}
section ul {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #eee;
  padding-top: 16px;
  width: 480px;
  margin: 0 auto;
}
section ul li {
  width: calc(100% / 7);
  margin-left: 24px;
}
section ul li img {
  filter: grayscale(100%);
  opacity: 0.5;
}
section ul li:nth-of-type(1) {
  margin-left: 0;
}
section ul li:nth-of-type(4), section ul li:nth-of-type(2) {
  padding: 6px;
}

@media (max-width: 767px) {
  section {
    width: 92%;
  }
  section p {
    font-size: 24px;
    line-height: 140%;
  }
  section ul {
    width: 100%;
  }
}
