/* foot */
.foot {
  width: calc(100% - 0rem);
  background-color: var(--foot-bg);
  order: 10;
}

.foot_container {
  width: calc(100% - 1.25rem);
  max-width: calc(48rem - 1.25rem);
  margin: 5rem auto;
  display: flex;
  flex-direction: column;
}


/* foot: logo */
.foot_logo {
  width: calc(100% - 0rem);
  margin: 0 0 2.5rem;
  text-align: center;

  display: none;
}

.foot_logo img {
  width: calc(100% - 0rem);
}


/* foot: top */
.foot_top {
  width: calc(100% - 0rem);
  margin: 0 0 2.5rem;
  color: var(--black);
  font-size: 0.75em;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 2px;
  text-align: justify;
}


/* foot: bottom */
.foot_bottom {
  width: calc(100% - 0rem);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.foot_bottom ul {
  width: fit-content;
  display: flex;
  flex-direction: row;
}

.foot_bottom ul:first-child li {
  margin: 0 2.5rem 0 0;
}

.foot_bottom ul li {
  width: fit-content;
  color: var(--gray-5);
  font-size: 0.75em;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 1.5px;
}

.foot_bottom ul li a {
  padding: 0 0 0.313rem 0;
  color: var(--gray-5);
  font-weight: 300;
  line-height: 2;
  letter-spacing: 1.5px;
  text-decoration: none;
}  

.foot_bottom ul li a:hover {
  border-bottom: 1px solid var(--black);
  color: var(--black);
}


@media only screen and (max-width: 1080px) {


  /* foot */
  .foot_container {
    max-width: calc(100% - 1.25rem);
  }


  /* foot: bottom */
  .foot_bottom {
    flex-direction: column;
    justify-content: center;
  }

  .foot_bottom ul {
    width: calc(100% - 0rem);
    justify-content: center;
  }

  .foot_bottom ul:first-child {
    margin: 0 0 2.5rem;
  }

  .foot_bottom ul li,
  .foot_bottom ul:first-child li {
    margin: 0 1.25rem;
    text-align: center;
    white-space: nowrap;
  }


}


@media only screen and (max-width: 540px) {}

