/* .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-color: #081528;
  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: #b4b4b4;
    transition: 0.5s;
    font-size: 18px;
    line-height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 26px;
    width: 26px;
    border-radius: 0;








    &:hover {
      color: #fff;

    }

  }
}

.footer-logo {
  display: block;
  width: 100%;
  max-width: 187px;
}

.footer-contact {
  height: 100%;

  .footer-heading {
    font-size: 18px;
    color: var(--primary-color-color);
    margin-bottom: 10px;
    font-weight: 600;
    font-family: "Barlow", Sans-serif;

    svg {
      color: var(--secondry-color);
      margin-right: 10px;
    }
  }

  .form-group {
    display: flex;
    gap: 10px;
    margin-top: 20px;

    .btn {
      background-color: var(--secondry-color);
      color: #fff;
      border-radius: 2px;
      border: none;
      outline: none;
      padding: 0 24px;
    }
  }
}

.footer-banner {
  border-bottom: 10px solid var(--secondry-color);
}

.footer-page-list {
  margin-top: 20px;
  list-style: none;
  padding: 0;
  /* row gap, column gap */
}

.footer-page-list a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: "Barlow", Sans-serif;
  font-size: 18px;
  font-weight: 500;

  svg {
    color: var(--secondry-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;
  }
}