.footer-container {
  position: relative;

  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: rgba(0, 28, 67, 0.773);
  overflow: hidden;
}

.footer-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/images/footerbg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: -1;
}

.footer-top {
  padding: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 2fr);
  gap: 1rem;
  color: white;
}

.footer-content1st {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-content1st img {
  height: 2rem;
}
.footer-content1st p {
  font-size: 20px;
  color:white;
}
.footer-content2nd {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.footer-content2nd div {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-content2nd a,
.footer-content2nd button {
  text-decoration: none;
  color: white;
  font-size: 20px;
  background-color: transparent;
  border: none;
  text-align: start;
}

.footer-content3rd {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.footer-social-icon img {
  height: 4rem;
}

.footer-social-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-social-text h2 {
  font-size: 18px;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid #ffffff80;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem;
  color: white;
  font-size: 20px;
}

.copyright span {
  font-weight: 600;
}

.designdeveloped a {
  font-weight: 600;
  text-decoration: none;
  color: white;
}

@media (max-width: 1300px) {
  .footer-top {
    padding: 2rem;
  }
  .footer-bottom {
    padding: 2rem;
  }
}

@media (max-width: 1124px) {
  .footer-content1st img {
    height: 1.5rem;
  }

  .footer-content1st p {
    font-size: 16px;
  }

  .footer-content2nd div {
    gap: 1rem;
  }

  .footer-content2nd a {
    font-size: 16px;
  }
  .footer-social-icon img {
    height: 3rem;
  }
  .footer-social-text h2 {
    font-size: 16px;
    font-weight: 500;
  }
  .footer-bottom {
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  .footer-top {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-content2nd {
    justify-content: start;
    align-items: start;
  }
  .footer-content1st img {
    display: flex;
    justify-content: start !important;
    align-items: start !important;
    width: 100%;
  }
  .footer-bottom {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .footer-top {
    padding: 1rem;
  }
  .footer-bottom {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}
