/* Footer =================================================================== */
footer {
  padding: 2%;
  color: #fff;
  background-image: linear-gradient(60deg, #09663E 0%, #1C3B2D 100%);
}
footer a {
  text-decoration: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  color: #fff !important;
}
footer a:hover {
  color: #c4ffe6 !important;
}
footer .wrap-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
footer .wrap-footer .footer-info {
  width: 35%;
}
@media (max-width: 1000px) {
  footer {padding: 40px 20px;}
  footer .wrap-footer .footer-info {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
footer .wrap-footer .footer-menu {
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 1000px) {
  footer .wrap-footer .footer-menu {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
footer .wrap-footer .footer-menu li {
  width: 50%;
}
footer .wrap-footer .footer-right {
  width: 35%;
}
@media (max-width: 1000px) {
  footer .wrap-footer .footer-right {
    width: 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media (max-width: 460px) {
  footer .wrap-footer .footer-right .copyright, footer .wrap-footer .footer-right .link {
    text-align: center;
  }
}

.social-icons {
  padding: 0px;
}
.social-icons li {
  display: inline-block;
  margin: 10px 5px 0px 5px;
  padding: 0;
  width: auto;
}
.social-icons li a {
  background: url(icons/iconset-footer.svg) transparent no-repeat;
  background-size: cover;
  display: inline-block;
  border-radius: 5px;
  width: 40px;
  height: 40px;
  text-indent: -9999px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.social-icons li a:hover {
  background-position: center -25px;
}
.social-icons li.facebook a {
  background-position: 1px 0px;
}
.social-icons li.facebook a:hover {
  background-image: url(icons/iconset-footer-v.svg);
}
.social-icons li.line a {
  background-position: -39px 0px;
}
.social-icons li.line a:hover {
  background-image: url(icons/iconset-footer-v.svg);
}
.social-icons li.youtube a {
  background-position: -79px 0px;
}
.social-icons li.youtube a:hover {
  background-image: url(icons/iconset-footer-v.svg);
}
.social-icons li.instagram a {
  background-position: -119px 0px;
}
.social-icons li.instagram a:hover {
  background-image: url(icons/iconset-footer-v.svg);
}
.social-icons li.twitter a {
  background-position: -159px 0px;
}
.social-icons li.twitter a:hover {
  background-image: url(icons/iconset-footer-v.svg);
}
.social-icons li.gplus a {
  background-position: -198px 0px;
}
.social-icons li.gplus a:hover {
  background-image: url(icons/iconset-footer-v.svg);
}

.footer-contact {
  background-color: #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 20px;
}
.footer-contact .footer-contact-title {
  font-size: 27px;
}
@media (max-width: 860px) {
  .footer-contact .footer-contact-title {
    font-size: 20px;
    text-align: center;
  }
}
.footer-contact .footer-contact-btn {
  background-color: #999;
  border-radius: 30px;
  padding: 5px 20px;
  margin-left: 20px;
}
.footer-contact .footer-contact-btn:hover {
  background-color: #797979;
  color: #fff;
}

/* Quick Link =================================================================== */
.quick-link {
  position: fixed;
  right: 10px;
  bottom: 130px;
  z-index: 2;
}
.quick-link li {
  margin-bottom: 10px;
  list-style: none;
}
.quick-link li a {
  display: block;
  width: 45px;
  height: 45px;
  border-radius: 45px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.quick-link li a:hover {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.quick-link li.phone a {
  background: #43cc28 url("../images/quick-link-phone.png") no-repeat center center;
}
.quick-link li.facebook a {
  background: #1787fb url("../images/quick-link-fb.png") no-repeat center center;
}
.quick-link li.line a {
  background: #44cb28 url("../images/quick-link-line.png") no-repeat center center;
}

.gotop {
  cursor: pointer;
  width: 45px;
  height: 45px;
  border-radius: 25px;
  background: -webkit-gradient(linear, left top, left bottom, from(#F24B1D), to(#F2951C));
  background: #09663E;
  position: absolute;
  z-index: 7;
  right: 10px;
  bottom: 20px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gotop:hover{
  opacity: 0.8;
}