footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  background-color: #1D2B56;
  padding: 0 10px;
  font-weight: bolder;
}

footer .footer_link {
  position: relative;
  width: 100%;
  margin: 32px 32px 16px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

footer .footer_link ul {
  list-style: none;
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 0;
}

footer .footer_link ul ul li {
  padding-left: 32px;
}

footer .footer_link .footer_left, footer .footer_link .footer_center, footer .footer_link .footer_right {
  width: 30%;
}

footer .footer_link .footer_left a, footer .footer_link .footer_center a, footer .footer_link .footer_right a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #F0F3FF;
  padding-bottom: 8px;
}

footer .footer_link .footer_left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .footer_link .footer_left .logo {
  margin-right: 16px;
}

footer .footer_link .footer_left .logo img {
  width: 100%;
  max-width: 80px;
  min-width: 70px;
}

footer .footer_link .footer_left p {
  font-size: 18px;
  font-weight: bold;
  color: #F0F3FF;
}

footer .footer_link .footer_center a:hover::before, footer .footer_link .footer_right a:hover::before {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  top: 5px;
  left: -15px;
  border-top: solid 5px transparent;
  border-left: solid 10px #F0F3FF;
  border-bottom: solid 5px transparent;
  border-right: solid 5px transparent;
}

footer .copy_right {
  margin: 8px auto;
}

footer .copy_right p {
  font-size: 12px;
  margin: 0;
  color: #F0F3FF;
}

@media screen and (max-width: 599px) {
  footer .footer_link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer .footer_link .footer_left, footer .footer_link .footer_center, footer .footer_link .footer_right {
    width: calc(100vw - 16px);
  }
  footer .footer_link .footer_left {
    margin-left: 0;
    margin-bottom: 1em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer .footer_link .footer_left .logo {
    display: inline-block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: fit-contet;
    margin-right: 16px;
  }
  footer .footer_link .footer_left .logo a {
    display: block;
    width: 100%;
    height: 100%;
  }
  footer .footer_link .footer_left .logo a img {
    width: auto;
  }
  footer .footer_link .footer_left p {
    display: inline-block;
  }
  footer .footer_link .footer_center, footer .footer_link .footer_right {
    width: 90%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer .footer_link .footer_center ul, footer .footer_link .footer_right ul {
    margin-bottom: 0;
  }
}
/*# sourceMappingURL=footer.css.map */