@charset "UTF-8";

footer {
  background: #002d47;
  padding: 50px 0;
}

.footer_inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.footer_logo {
  color: #fff;
  font-family: "Prata", serif;
}

small {
  color: #fff;
  font-size: 1rem;
  text-align: right;
  display: block;
  margin: 0 auto;
  max-width: 1100px;
  opacity: 0.3;
}

ul.footer_menu {
  display: flex;
  margin-bottom: 30px;
  border-right: 1px solid #fff;
}

.footer_menu a {
  display: block;
  color: #fff;
  border-left: 1px solid #fff;
  font-size: 1.15rem;
  padding: 0 20px;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}

.footer_menu a:hover {
  opacity: 0.5;
}

.footer_logo img {
  width: 150px;
  height: auto;
}
/*---------------------------------------------------------------*\
	$480px
\*---------------------------------------------------------------*/
@media screen and (max-width: 480px) {
  footer {
    background: #002d47;
    padding: 30px 0;
  }

  .footer_inner {
    max-width: 90%;
    margin: 0 auto;
    display: block;
    justify-content: space-between;
  }

  .footer_logo {
    color: #fff;
    font-family: "Prata", serif;
    text-align: center;
    margin-bottom: 30px;
  }

  small {
    color: #fff;
    font-size: 0.9rem;
    text-align: center;
    display: block;
    margin: 0 auto;
    max-width: 90%;
    opacity: 0.3;
  }

  ul.footer_menu {
    display: flex;
    margin: 0 auto 30px;
    width: 90%;
    border-right: 1px solid #fff;
  }

  .footer_menu a {
    display: block;
    color: #fff;
    border-left: 1px solid #fff;
    font-size: 1rem;
    padding: 0 13px;
    text-align: center;
  }
}
