.footer-wrapper {
  background-color: #f4f4f4;
}
.footer-wrapper .ft-top {
  padding: 40px 0 10px;
  border-bottom: 1px solid #ddd;
}
.footer-wrapper .ft-top .title h4 {
  color: #000;
  margin-bottom: 15px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 400;
}
.footer-wrapper .ft-top .box__info .info p {
  color: #868686;
  margin-bottom: 17px;
}
.footer-wrapper .ft-top .menu_footer a {
  border: none !important;
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  transition: 0.3s;
}
.footer-wrapper .row__abs__footer {
  padding: 30px 0;
}
.footer-wrapper .row__abs__footer .col {
  padding: 0 !important;
}
.footer-wrapper .row__abs__footer .col p {
  color: #868686;
  margin: 0;
}

.absolute-footer {
  display: none;
}

.contact_methods {
  position: fixed;
  bottom: 0;
  z-index: 99999;
  left: 0;
}
@media (min-width: 768px) {
  .contact_methods {
    left: inherit;
    right: 0;
  }
}
.contact_methods .contact_method_item {
  position: relative;
}
.contact_methods .contact_method_item .contact_method_container {
  background-color: rgba(0, 0, 0, 0);
  position: relative;
  visibility: visible;
  width: 90px;
  height: 90px;
  cursor: pointer;
  z-index: 11;
  transition: visibility 0.5s;
  left: 0;
  bottom: 0;
  display: block;
}

.contact_method_fill {
  background-color: rgba(230, 8, 8, 0.7);
  width: 65px;
  height: 65px;
  top: 12px;
  left: 12px;
  position: absolute;
  box-shadow: 0 0 0 0 #c31d1d;
  border-radius: 50%;
  transition: all 0.5s;
  transform-origin: 50% 50%;
  animation: zoom 1.3s infinite;
}

.contact_method_circle {
  background-color: #e60808;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 25px;
  left: 25px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: phone-contact-method-circle-fill 1s infinite ease-in-out;
}
.contact_method_circle a {
  display: block;
  font-size: 0;
}
.contact_method_circle .img {
  width: 25px;
  vertical-align: middle;
}

.zalo-contact-method .contact_method_fill {
  background-color: rgba(121, 144, 162, 0.7);
  box-shadow: 0 0 0 0 #7990a2;
}
.zalo-contact-method .contact_method_circle {
  background-color: #7990a2;
}

.messenger-contact-method .contact_method_fill {
  background-color: rgba(70, 89, 104, 0.7);
  box-shadow: 0 0 0 0 #465968;
}
.messenger-contact-method .contact_method_circle {
  background-color: #465968;
}

.phone-contact-method .contact_method_fill {
  background-color: rgba(22, 48, 61, 0.7);
  box-shadow: 0 0 0 0 #7990a2;
}
.phone-contact-method .contact_method_circle {
  background-color: #16303d;
}

@keyframes zoom {
  0% {
    transform: scale(0.9);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
}
@keyframes phone-contact-method-circle-fill {
  0% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}/*# sourceMappingURL=footer.css.map */