.crewfooter {
  position: relative;
  padding: 20px 0;
  background: #1d1d22;
}

.crewfooter_logo {
  display: flex;
  justify-content: center;
}

.crewfooter_logo img {
  width: auto;
  max-width: 100%;
}

.crewfooter_list {
  box-sizing: border-box;
  display: flex;
  gap: 10px;
  justify-content: center;
  width: 95%;
  max-width: 500px;
  margin: 30px auto 0;
}

@media screen and (width <= 768px) {
  .crewfooter_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

.crewfooter_item {
  width: 113px;
  padding: 5px 10px;
  text-align: center;
  background: #fff;
  border: 1px solid #4d4d55;
  border-radius: 10px;
  transition: 0.3s;
}

@media screen and (width <= 768px) {
  .crewfooter_item {
    width: 100%;
  }
}

.crewfooter_item img {
  width: auto;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.crewfooter_item[data-type='dark'] {
  color: #fff;
  background: #1d1d22;
}

.crewfooter_item:hover {
  opacity: 0.6;
}

.crewfooter_copyright {
  margin-top: 20px;
  font-size: 9px;
  color: #fff;
  text-align: center;
}

/* crewfooter_info_link */
.crewfooter_info {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.crewfooter_info_link {
  font-size: 12px;
  color: #fff;
  text-decoration: underline;
  transition: 0.3s;
}

.crewfooter_info_link:hover {
  cursor: pointer;
  opacity: 0.7;
}
