﻿.footer-container {
  width: 100%;
  padding-top: 80px;
  box-sizing: border-box;
  background: #040E27;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 820px) {
  .footer-container {
    padding-top: 60px;
  }
}

.footer-box {
  width: 1120px;
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 20px;
}
@media screen and (max-width: 820px) {
  .footer-box {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 60px;
  }
}
.footer-box .logo-box {
  width: 120px;
}
@media screen and (max-width: 820px) {
  .footer-box .logo-box {
    display: none;
  }
}
.footer-box .logo-box img {
  width: 100%;
}

.separator {
  width: 1120px;
  max-width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 auto;
}

.map-box {
  margin-bottom: 30px;
}
@media screen and (max-width: 820px) {
  .map-box {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 20px;
  }
}
.map-box .map-title-box {
  margin-bottom: 20px;
  box-sizing: border-box;
  font-size: 19px;
  color: #FFF;
  letter-spacing: 1px;
}
.map-box .map-links-box {
  color: #C1C1C1;
  font-size: 15px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 820px) {
  .map-box .map-links-box {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.map-box .map-links-box p {
  margin-bottom: 15px;
}
@media screen and (max-width: 820px) {
  .map-box .map-links-box p {
    margin-right: 20px;
  }
}
.map-box .map-links-box p a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s ease;
}
.map-box .map-links-box p a::before {
  height: 1px;
  position: absolute;
  bottom: 0px;
  background: white;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  content: "";
  width: 0;
  left: 50%;
  transform: translateX(-50%);
}
.map-box .map-links-box p a:hover {
  transform: translateX(0px);
  text-decoration: none;
  color: #FFF;
}
.map-box .map-links-box p a:hover::before {
  opacity: 1;
  visibility: visible;
  width: 100%;
}

.copyright-box p {
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}
@media screen and (max-width: 820px) {
  .copyright-box p {
    margin: 15px 0;
  }
}
.copyright-box a {
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}
@media screen and (max-width: 820px) {
  .copyright-box a {
    margin: 15px 0;
  }
}/*# sourceMappingURL=footer.css.map */