/* =========================================
   FOOTER
========================================= */

.custom-footer {
  position: relative;

  background: #ffffff;
  padding: 80px 0;

  overflow: hidden;
}

/* CONTENT */

.custom-footer .container {
  position: relative;
  z-index: 2;
}

/* LOGO */

.footer-logo {
  width: 280px;
  max-width: 100%;
}

/* TEXT */

.footer-title {
  color: #6cc24a;
  font-weight: 600;
}

.footer-left p {
  color: #0069b4;
}

/* BUTTON */

.btn-green {
  background: #6cc24a;
  color: #ffffff;
  border-radius: 50px;
  padding: 12px 30px;
  border: none;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: 0.3s;
}

.btn-green:hover {
  transform: translateY(-3px);
}

/* COPYRIGHT */

.footer-copy {
  font-size: 14px;
  color: #0069b4;
}

/* BACKGROUND */

.footer-bg {
  position: absolute;

  right: 0;
  bottom: 0;

  width: 50%;
  height: 100%;

  background:
    linear-gradient(rgba(255,255,255,0), rgba(255,255,255,0)),
    url("../assets/img/img_footer_2.png") center/cover no-repeat;

  z-index: 0;
}