/* Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

/* Variables */
.shade {
  background-color: #f3780e;
  border-radius: 20px;
  padding: 10px;
}

.newbg {
  display: inline-block;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0) 50%);
}

.med-shade {
  box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.28);
  border-radius: 12px;
  background: rgba(203, 240, 204, 0.5);
  padding: 0px;
  transition: box-shadow 0.3s;
}

/* Footer */
footer {
  background: #1a202c;
  color: white;
  padding: 60px 30px 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
    gap: 2rem;
    align-items: center;
    padding: 0px 2.5rem;
  }
}
@media screen and (max-width: 320px) {
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    align-items: center;
    padding: 0px 1rem;
  }
}
.footer-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.ml {
  margin-left: 2rem;
}
@media screen and (max-width: 768px) {
  .ml {
    margin-top: -2rem;
  }
}
@media screen and (max-width: 525px) {
  .ml {
    margin-left: 0rem;
    margin-top: 0rem;
  }
}

.footer-section .contact-info {
  margin-top: 10px;
  font-size: 1.3rem;
  font-weight: 700;
}
.footer-section p, .footer-section a {
  color: #a0aec0;
  text-decoration: none;
  line-height: 1.8;
}
.footer-section p a:hover, .footer-section a a:hover {
  color: #667eea;
}

.social-icons {
  margin: 1.2rem;
  padding-left: 1rem;
}
@media screen and (max-width: 525px) {
  .social-icons {
    padding-left: 0rem;
  }
}
.social-icons a {
  color: #a0aec0;
  transition: color 0.3s;
  border: 1px solid #a0aec0;
  padding: 10px;
  border-radius: 40%;
  margin-left: 5px;
}
.social-icons a:hover {
  color: #fff;
  background-color: #517f09;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #2d3748;
  color: #a0aec0;
}/*# sourceMappingURL=footer.css.map */