/* .footer start here */
.footer {

  .container {
    max-width: 90%;
  }
}

.inner-footer-wrapper {
  padding-block: 50px;
}


.copy-right {
  display: flex;
  align-items: center;
  justify-content: space-between;

  background-image: linear-gradient(180deg, #002B688F 0%, #0782437A 100%);
  background-color: #078243;
  color: #fff;
  margin: 0;
  padding: 15px 7%;










  p {
    color: #fff;

    span {
      color: var(--primary-color);
    }
  }

  .media-icon-list {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    gap: 10px;
  }

  .media-icon-link {
    color: #fff;
    transition: 0.5s;
    font-size: 18px;
    line-height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 26px;
    width: 26px;
    border-radius: 0;
    background-color: var(--secondry-color);





    &:hover {
      color: #fff;

    }

  }
}

.footer-logo {
  display: block;
  width: 100%;
  max-width: 187px;
}

.footer-contact {
  height: 100%;
  place-content: center;

  .footer-heading {
    font-size: 24px;
    color: var(--secondry-color);
    margin-bottom: 10px;
    font-weight: 600;
    font-family: "Barlow", Sans-serif;
  }


}


.footer-page-list {
  margin-top: 20px;
  list-style: none;
  padding: 0;
  /* row gap, column gap */
}

.footer-page-list a {
  color: var(--secondry-color);
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: "Barlow", Sans-serif;
  font-size: 18px;
  font-weight: 500;

  svg {
    color: var(--primary-color);
    font-size: 16px;
    margin-right: 5px;
  }
}

.footer-page-list a:hover {
  color: var(--primary-color);
  /* hover color */
}

.footer-page-list a.active {
  color: #c18a54;
  /* hover color */
}

/* Responsive */
@media (max-width: 576px) {
  .footer-page-list {
    grid-template-columns: 1fr;
    /* single column on small screens */
  }
}

/* .footer start here */
@media (max-width: 767px) {
  .footer {
    padding: 20px 0 0;
  }

  .footer-contact {
    margin-bottom: 30px;
  }

  .inner-footer-wrapper {
    padding-block: 50px;
  }

  .copy-right {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-block: 10px;
  }
}