/* =========================================
   FOOTER
========================================= */

.footer{
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(135deg, #123f5f, #1f5f8b, #22678d);

  color: #fff;
  font-family: 'Poppins', sans-serif;

  padding: 90px 8% 30px;
}

/* Decorative Blurs */

.footer-bg-shape{
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  z-index: 1;
}

.shape-one{
  width: 360px;
  height: 360px;
  top: -160px;
  left: -120px;
}

.shape-two{
  width: 460px;
  height: 460px;
  right: -170px;
  bottom: -180px;
}

/* Main Layout */

/* Main Layout */

.footer-container{
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.7fr 1fr 1.15fr 1fr 1.7fr;
  gap: 42px;

  padding-bottom: 60px;
}

/* Brand */

.footer-brand img{
  width: 230px;
  margin-bottom: 25px;
}

.footer-brand p{
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  font-size: 15px;
  max-width: 380px;
  margin-bottom: 28px;
}

/* Donate */

/* =========================================
   FOOTER DONATE BUTTON
========================================= */

.footer-donate-btn{
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 16px 28px;

  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);

  color: #fff;

  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;

  cursor: pointer;

  box-shadow:
    0 12px 30px rgba(0,0,0,0.12);

  transition: all 0.35s ease;
}

/* Icon */

.footer-donate-btn ion-icon{
  font-size: 20px;
  color: #8ed0ff;
  transition: all 0.35s ease;
}

/* Hover */

.footer-donate-btn:hover{
  transform: translateY(-5px);

  background: rgba(255,255,255,0.14);

  border-color: rgba(255,255,255,0.28);

  box-shadow:
    0 20px 45px rgba(0,0,0,0.18);
}

.footer-donate-btn:hover ion-icon{
  color: #fff;
  transform: scale(1.08);
}

/* Columns */

.footer-col,
.footer-contact{
  text-align: center;
}

.footer-col h3,
.footer-contact h3{
  font-size: 20px;
  margin-bottom: 24px;
  color: #fff;
  white-space: nowrap;
}

.footer-col ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li{
  margin-bottom: 14px;
}

.footer-col a{
  display: inline-block;
  min-width: 150px;

  color: rgba(255,255,255,0.76);
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s ease;
}

.footer-col a:hover{
  color: #fff;
  padding-left: 0;
  transform: translateY(-2px);
}

/* Contact */

.footer-contact p{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  color: rgba(255,255,255,0.78);
  font-size: 15px;
  line-height: 1.7;

  margin-bottom: 14px;
  text-align: center;
}

.footer-contact ion-icon{
  font-size: 22px;
  color: #8ed0ff;
  flex-shrink: 0;
}

/* Socials */

.footer-socials{
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.footer-socials a{
  width: 42px;
  height: 42px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.12);
  color: #fff;

  text-decoration: none;

  transition: 0.3s ease;
}

.footer-socials a:hover{
  background: #fff;
  color: #22678d;
  transform: translateY(-4px);
}

/* Bottom */

.footer-bottom{
  position: relative;
  z-index: 2;

  border-top: 1px solid rgba(255,255,255,0.16);

  padding-top: 26px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-bottom p{
  color: rgba(255,255,255,0.72);
  font-size: 14px;
}

.footer-bottom-links{
  display: flex;
  gap: 24px;
}

.footer-bottom-links a{
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 14px;
}

.footer-bottom-links a:hover{
  color: #fff;
}

/* Responsive */

@media(max-width: 1200px){

  .footer-container{
    grid-template-columns: 1.5fr 1fr 1fr;
  }

}

@media(max-width: 768px){

  .footer{
    padding: 75px 6% 28px;
  }

  .footer-container{
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-brand img{
    width: 200px;
  }

  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
  }

}