/* -----------footer----------- */

.footer {
  width: 100%;
  height: 260px;
  padding: 100px 25px 50px 25px;
  background-color: black;
}

.footer_nav ul {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 60px;
}

.footer_nav ul li {
  margin-right: 40px;

  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0rem;
}

.footer_nav ul li a {
  display: block;
  width: 100%;

  color: #fff;
  text-decoration: none;
}

.footer_nav ul li:nth-child(6) {
  margin-right: 0px;
}

.footer_nav ul li span {
  font-size: 1.6rem;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.1rem;
}

.footer_copyright {
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.1rem;
}

@media(max-width:670px) {
  .footer {
    max-width: 365px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 60px 70px 50px 70px;
  }

  .footer_nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    margin-bottom: 60px;
  }

  .footer_nav ul li {
    width: 38%;
    margin-right: 0px;
    margin-bottom: 45px;

    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0rem;
    text-align: start;
  }

  .footer_nav ul li:nth-child(2),
  .footer_nav ul li:nth-child(4),
  .footer_nav ul li:nth-child(6) {
    margin-left: 45px;
  }

  .footer_nav ul li a {
    display: block;
    width: 100%;

    color: #fff;
    text-decoration: none;
  }

  .footer_nav ul li span {
    font-size: 1.6rem;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.1rem;
  }

  .footer_copyright {
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.1rem;
    color: #fff;
  }
}

/* ------------BOTTON.CSS--------------- */
#page_top {
  position: fixed;
  right: 45px;
  bottom: 35px;
  width: 50px;
  height: 50px;

  background: #c13b27;
  border-radius: 50%;
  opacity: 1.0;
}

#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;

  text-decoration: none;
}

#page_top a::before {
  content: '\f0d8';
  position: absolute;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  width: 25px;
  height: 25px;
  margin: auto;

  color: #fff;
  font-size: 25px;
  font-weight: 900;
  font-family: 'Font Awesome 5 Free';
  text-align: center;
}

@media(max-width:670px) {
  #page_top {
    right: 15px;
    bottom: 15px;
  }
}