/* sass layout */
.footer-area {
  width: 100%;
  background: #000000;
}

.footer-area ul {
  overflow: hidden;
  margin: 150px auto 0;
  width: 517px;
}

@media screen and (max-width: 768px) {
  .footer-area ul {
    width: 78.26%;
    margin: 13.33% auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer-area ul li {
  float: left;
}

@media screen and (max-width: 768px) {
  .footer-area ul li {
    float: inherit;
  }
}

.footer-area ul li a {
  color: #ffffff;
  display: block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 16px;
  border-left: solid 2px #ffffff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .footer-area ul li a {
    font-size: 14px;
    font-size: 3.73333vw;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    position: relative;
  }
}

.footer-area ul li a:hover {
  opacity: .7;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 768px) {
  .footer-area ul li a:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: solid 0.53vw #ffffff;
    border-right: solid 0.53vw #ffffff;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: absolute;
    right: 1.5%;
  }
}

@media screen and (max-width: 768px) {
  .footer-area ul li:nth-of-type(n+3) {
    margin-top: 6.66%;
  }
}

.footer-area ul li:last-child {
  border-right: solid 2px #ffffff;
}

@media screen and (max-width: 768px) {
  .footer-area ul li:last-child {
    border: none;
  }
}

.footer-area small {
  display: block;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 80px;
  padding-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .footer-area small {
    width: 100%;
    margin: 0 auto;
    font-size: 14px;
    font-size: 3.73333vw;
    margin-top: 10.66%;
    letter-spacing: 0;
    padding-bottom: 4.66%;
  }
}
/*# sourceMappingURL=footer.css.map */