footer {
  background: #f0eccf;
  /* background: -webkit-linear-gradient(59deg, #3A6073, #16222A); */
  /* background: linear-gradient(59deg, #3A6073, #16222A); */
  color: white;
  margin-top: 70px;
  padding: 20px 0;
  width: 100%;
  font-family: "Poppins", Sans-serif;
}

footer a {
  color: black;
  font-size: 14px;
  transition-duration: 0.2s;
}

footer a:hover {
  color: #fa944b;
  text-decoration: none;
}

.footer-middle {
  color: black;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

.footer-col {
  padding: 10px 25px;
  color: black;
}

.footer-col h4 {
  color: black;
  font-weight: 600;
}

.footer-pad h4 {
  margin-bottom: 15px;
  color: black;
  font-weight: 600;
}

.footer-pad p {
  text-align: justify;
  width: 70%;
}

.footer-pad li {
  color: black;
}

.footer-pad {
  text-align: left;
  color: black;
}

.footer-pad img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: auto;
  padding-bottom: 20px;
}

.list-unstyled {
  list-style: none;
  padding: 0;
}

.list-unstyled li {
  margin-bottom: 4px;
}

.copy {
  font-size: 12px;
  padding: 10px;
  border-top: 1px solid #ffffff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #ffffff;
}

/* SOCIAL ICONS */

ul.social-network {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
}

ul.social-network li {
  margin: 0 5px;
}

.social-network a.icoFacebook:hover {
  background-color: #3b5998;
}

social-network a.icoLinkedin:hover {
  background-color: #007bb7;
}

.social-network a.icoFacebook:hover i,
.social-network a.icoLinkedin:hover i {
  color: #fff;
}

.social-circle li a {
  display: inline-block;
  position: relative;
  border-radius: 50%;
  text-align: center;
  width: 30px;
  height: 30px;
  font-size: 15px;
  background-color: #f9f9f9;
}

.social-circle li i {
  line-height: 30px;
  text-align: center;
}

.social-circle li a:hover i {
  transform: rotate(360deg);
  transition: all 0.2s;
}

.social-circle i {
  color: #595959;
  transition: all 0.8s;
}

/* Responsive Layout */
@media (min-width: 576px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}
@media (max-width: 426px) {
  .footer-pad p {
    width: 100%;
  }
}
