#footer {
  color: #fff;
}

.footer {
  width: 100%;
  height: 540px;
  background-color: #000;
  padding: 80px;
  color: #e4e4f0;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.footer__logo {
  width: 193px;
  height: 40px;
}
.footer hr {
  border: none;
  height: 1px;
  background-color: #545458;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-top: 40px;
}
.footer__links {
  display: flex;
  align-items: center;
}
.footer__link {
  position: relative;
  margin: 20px;
  font-size: 14px;
}
.footer__link:not(:first-child):before {
  content: "";
  position: absolute;
  left: -20px;
  width: 1px;
  height: 100%;
  background-color: #545458;
}
.footer__sitemap {
  display: flex;
}
.footer__sitemap-list {
  margin-right: 40px;
}
.footer__sitemap-list > li {
  margin-bottom: 10px;
}
.footer__select {
  width: 200px;
  height: 40px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  font-family: "Pretendard Variable", sans-serif;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.178);
  color: #fff;
}
.footer__select > option {
  background-color: #2d2d2d;
  padding: 10px;
}

@media (min-width: 768px) and (max-width: 1300px) {
  .footer {
    height: 440px;
    padding: 60px;
  }
  .footer__sitemap {
    font-size: 14px;
  }
  .footer__bottom {
    padding-top: 30px;
    flex-direction: column;
  }
  .footer__select {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .footer {
    height: 250px;
    padding: 20px;
  }
  .footer__inner > hr {
    display: none;
  }
  .footer__links {
    align-items: end;
    flex-direction: column;
  }
  .footer__link {
    margin: 0;
    margin-top: 10px;
    color: white;
  }
  .footer__link:not(:first-child):before {
    display: none;
  }
  .footer__top {
    align-items: start;
  }
  .footer__sitemap {
    display: none;
  }
  .footer__bottom {
    padding-top: 0;
    justify-content: end;
  }
  .footer__logo {
    width: 143px;
    height: 40px;
  }
  .footer__logo > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
