.footer-bg {
  background-color: var(--black-shade);
  padding: 48px 0 24px;
  margin-top: 40px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
	    justify-content: space-between;
}

.footer-details .body-text {
  margin-top: 16px;
}

.custom-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid white;
  outline: none;
  color: white;
  min-width: 300px;
  max-width: 352px;
  padding: 5px;
  padding-bottom: 16px;
  font-size: 16px;
}

.custom-input::placeholder {
  color: white;
}

.footer-button {
  background-color: rgba(137, 92, 37, 0.74);
  color: white;
  border: none;
  font-size: 14px;
  padding: 11px 32px;
  font-weight: bold;
  cursor: pointer;
  display: block;
  margin-top: 12px;
}

.Links-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.Links-details .title-l-text {
  color: white;
}

.Links-details a {
  color: white;
  text-decoration: none;
}

.footer-details-sec-1 {
  display: flex;
  gap: 50px;
}
.footer-details-sec-2 {
  display: flex;
  flex-direction: row-reverse;
  gap: 50px;
}

.footer-details {
  max-width: 352px;
}

.copyright-details {
  display: flex;
	gap: 4px;
  justify-content: space-between;
  align-items: center;
  margin-top: 64px;
}

.copyright-details img {
  width: 224px;
}

@media screen and (max-width: 1024px) {
  .footer-button {
    display: inline;
  }
}
@media screen and (max-width: 768px) {
  .footer-content {
    gap: 30px;
  }
  .copyright-details img {
    width: 184px;
  }
}
@media screen and (max-width: 480px) {
  .copyright-details img {
    width: 164px;
  }
	.copyright-details {
  display: flex;
		flex-direction: column-reverse;
		gap: 8px;
}
}
