/* FOOTER */
.footer {
  position: relative;
  background: #efece7;
  padding: 60px 30px 45px;
  --textColor: #333;
  overflow: hidden;
}
.footer img.pattern {
  position: absolute;
  top: 0;
  left: 0px;
  pointer-events: none;
  animation-name: float-bob-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  max-width: 250px;
}
.footer img.pattern.right {
  animation-name: float-bob-x;
  left: auto;
  top: auto;
  right: -40px;
  bottom: 0;
}
@keyframes float-bob-x {
  0% {
    transform: translateX(-30px);
  }
  50% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(-30px);
  }
}
@keyframes float-bob-y {
  0% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(-20px);
  }
}
.footer img.pattern.left {
  right: auto;
  left: -30px;
}
.footer .grid-footer {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  grid-gap: 50px;
}
@media (max-width: 991px) {
  .footer .grid-footer {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .footer .grid-footer {
    grid-template-columns: repeat(1, 1fr);
  }
}
.footer .footer-box {
  position: relative;
}
.footer .footer-box h4 {
  color: var(--color-1);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}
.footer .footer-box h4::before, .footer .footer-box h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 2px;
  background-color: var(--color-1);
}
.footer .footer-box h4::before {
  left: 0;
  width: 25px;
}
.footer .footer-box h4::after {
  left: 28px;
  width: 89px;
}
.footer .footer-box h4 span {
  position: relative;
}
.footer .footer-box h4 span::after {
  content: "";
  position: absolute;
  left: auto;
  top: 10px;
  right: -31px;
  width: 20px;
  height: 3px;
  background-color: var(--color-3);
}
.footer .footer-box .socials li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}
.footer .footer-box .socials li a {
  font-size: 15px;
}
.footer .footer-box .socials li .fa {
  position: absolute;
  left: 0;
  top: 5px;
}
.footer .footer-box .logo {
  width: 180px;
  margin-bottom: 15px;
}
.footer .footer-box h4 + p {
  color: var(--textColor);
  font-size: 14px;
}
.footer .footer-box ul li {
  font-weight: 500;
}
.footer .footer-box ul li::before {
  color: var(--textColor);
}
.footer .footer-box ul li p {
  color: var(--textColor) !important;
  font-weight: 500;
}
.footer .footer-box ul li a {
  display: block;
  color: var(--textColor);
  font-size: 14px;
}
.footer .footer-box ul li a:hover {
  color: var(--color-3);
}
.footer .footer-blog {
  display: grid;
  grid-template-columns: auto 50px;
  grid-gap: 10px;
  border-top: 1px solid #eee;
  margin-top: 15px;
  padding-top: 15px;
}
.footer .footer-box .footer-widget__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 11px;
}
.footer .footer-box .footer-widget__gallery a {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.footer .footer-box .footer-widget__gallery a::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 700ms ease;
  transform: translateY(-110%);
  border-radius: 10px;
  z-index: 1;
}
.footer .footer-box .footer-widget__gallery a:hover::after {
  transform: translateY(0);
}
.footer .footer-box .footer-widget__gallery a img {
  width: 100%;
  display: block;
  border-radius: 10px;
}
.footer .footer-box .footer-widget__gallery a span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--cleenhearts-white, #fff);
  font-size: 14px;
  z-index: 11;
  transition: all 700ms ease;
  transform: translate(-50%, 350%);
}
.footer .footer-box .footer-widget__gallery a:hover span {
  transform: translate(-50%, -50%);
}

section.copyright {
  padding: 10px;
  text-align: center;
  background-color: var(--color-2);
  background-image: url(../../images/bg/bg-7.png);
  background-size: cover;
}
section.copyright p {
  margin: 0;
  font-weight: bold;
  font-size: 14px;
}/*# sourceMappingURL=footer.css.map */