/* Animation */
.slide-in {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.slide-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.footer {
  background: rgba(212, 212, 212, 0.95);
  color: rgb(0, 0, 0);
  padding: 40px 0px 0px;
}
  
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 31px 40px;
  gap: 40px;
}
  
  .footer-about {
    flex: 1 1 300px;
    margin: 0;
  }
  
  .footer-about .logo {
    width: 250px;
    height: 120px;
  }
  
  .footer-about p {
    line-height: 1.6;
    text-align: justify;
  }
  
  .footer-links,
  .footer-contact {
    flex: 1 1 250px;
    margin: 0;
  }
  
  .footer-links h3,
  .footer-contact h3 {
    margin-bottom: 15px;
    font-size: 20px;
  }
  
  .footer-links ul {
    list-style: none;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    transition: 0.3s;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
  }
  
  .footer-contact p {
    margin-bottom: 10px;
  }
  
  .footer-contact i {
    margin-right: 10px;
  }
  
  .footer-social a {
    display: inline-block;
    margin-right: 10px;
    color: rgb(0, 0, 0);
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: 0.3s;
  }
  
  .footer-social a:hover {
    background: white;
    color: #0078aa;
  }
  
  .footer-bottom {
    margin: 0px;
    color: white;
    padding: 20px;
    background-color: black;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
  }
  .footer-bottom p{
    text-align: center;
  }
  

/* Contact Logos  */
footer.ul {
  list-style: none;
  margin: 20px;
}

.example-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  padding: 0;
}
.example-2 .icon-content {
  margin: 0 10px;
  position: relative;
}
.example-2 .icon-content .tooltip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
  transition: all 0.3s ease;
}
.example-2 .icon-content:hover .tooltip {
  opacity: 1;
  visibility: visible;
  top: -50px;
}
.example-2 .icon-content a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #4d4d4d;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.example-2 .icon-content a:hover {
  box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
}
.example-2 .icon-content a svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
}
.example-2 .icon-content a:hover {
  color: white;
}
.example-2 .icon-content a .filled {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}
.example-2 .icon-content a:hover .filled {
  height: 100%;
}

.example-2 .icon-content a[data-social="whatsapp"] .filled,
.example-2 .icon-content a[data-social="whatsapp"] ~ .tooltip {
  background-color: #128c7e;
}

.example-2 .icon-content a[data-social="facebook"] .filled,
.example-2 .icon-content a[data-social="facebook"] ~ .tooltip {
  background-color: #3b5998;
}
.example-2 .icon-content a[data-social="instagram"] .filled,
.example-2 .icon-content a[data-social="instagram"] ~ .tooltip {
  background: linear-gradient(
    45deg,
    #405de6,
    #5b51db,
    #b33ab4,
    #c135b4,
    #e1306c,
    #fd1f1f
  );
}
.example-2 .icon-content a[data-social="youtube"] .filled,
.example-2 .icon-content a[data-social="youtube"] ~ .tooltip {
  background-color: #ff0000;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .footer-container {
    padding: 31px 40px;

    gap: 30px;
  }
  
  .footer-about,
  .footer-contact,
  .footer-links {
    flex: 1 1 280px;
    margin: 0;
  }
}

@media screen and (max-width: 768px) {
  .footer-container {
    padding: 31px 40px;

    gap: 25px;
  }
  
  .footer-about, .footer-contact, .footer-links {
    flex: 1 1 100%;
    align-items: baseline;
    display: flex;
    margin: 0;
    flex-direction: column;
    flex-wrap: wrap;
}
  
.footer-about .logo {
  width: 200px;
  margin-left: -16px;
  margin-bottom: 13px;
}
  
  .footer-about p {
    text-align: justify;
}
  
  .footer-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 15px;
  }
  
  .footer-contact p {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .example-2 {
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .footer-container {
    padding: 31px 40px;
    gap: 20px;
  }
  
  .footer-about .logo {
    width: 200px;
  }
  
  .footer-links ul {
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-bottom {
    font-size: 12px;
  }
  
  .example-2 .icon-content {
    margin: 0 5px;
  }
  
  .example-2 .icon-content a {
    width: 40px;
    height: 40px;
  }
  
  .example-2 .icon-content a svg {
    width: 24px;
    height: 24px;
  }
}
