/* Footer Component */

/* Footer Container & Layout */
.ejs-footer-container {
  background-color: #438ae6; /* blue */
}

.ejs-footer-inner {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media( min-width: 992px ) {

  .ejs-footer-content {
    gap: 100px;
  }
  
}

/* Logo */
.ejs-footer-logo img,
.ejs-footer-logo svg {
  max-width: 150px;
  height: auto;
}

/* Headings */

/* Menu List */
.ejs-footer-menu-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.ejs-footer-menu-list li {
  margin-bottom: 0.5rem;
}

.ejs-footer-menu-list a {
  color: white;
  text-decoration: none;
  padding: 0;
  font-size: 0.95rem;
}

.ejs-footer-menu-list a:hover {
  opacity: 0.8;
}

/* Contact Details */
.ejs-footer-contact-details {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.ejs-footer-contact-details a {
  color: white;
  text-decoration: none;
}

.ejs-footer-contact-details a:hover {
  opacity: 0.8;
}

.ejs-footer-address-lines {
  line-height: 1.8;
  font-style: normal;
  font-size: 0.95rem;
}

/* Footer Bottom */
.ejs-footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
}

.ejs-footer-bottom a {
  color: white;
  text-decoration: none;
}

.ejs-footer-bottom a:hover {
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 991px) {
  .ejs-footer-heading {
    margin-top: 1.5rem;
  }
}

@media (min-width: 992px) {
  .ejs-footer-inner {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}