.footer-container {
  background-color: #252525;
  position: relative;
  padding: 100px;
  padding: 50px 100px;
  padding-bottom: 20px;
}

.dream-big-raffle-footer {
  display: flex;
  justify-content: space-between;
  background-color: violet;
  display: none;
  color: #ffff;
  gap: 50px;
}

/* Links/Address Style */
.footer-link-wrapper {
  /* background-color: yellow; */
  font-family: var(--secondary-font);
  line-height: 30px;
  width: 30%;
  color: #e0e0e0;
}

.footer-link-wrapper h2 {
  font-family: var(--primary-font);
  color: #fff;
  margin-bottom: 10px;
}

.footer-link-wrapper li a {
  color: #e0e0e0;
  transition: 0.2s all linear;
}

.footer-link-wrapper li a:hover {
  color: #338833;
  transition: 0.2s all linear;
}

/* Subscribe Style */
.subscribe-form-wrapper {
  width: 40%;
  /* background-color: violet; */
}

.stay-connected-form {
  font-family: var(--primary-font);
  text-transform: uppercase;
  /* margin-bottom: 5px; */
  font-weight: 600;
  font-size: 1rem;
}

.subscribe-form-wrapper p {
  font-family: var(--secondary-font);
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 10px;
}

.email-input {
  width: 70%;
  height: 50px;
  padding: 5px 10px;
  outline: none;
  font-size: 1rem;
  border: none;
  font-family: var(--primary-font);
  border-radius: 4px;
}

.subscribe-btn {
  background-color: #338833;
  height: 50px;
  width: fit-content;
  padding: 0px 20px;
  border: none;
  border-radius: 4px;
  color: #e0e0e0;
  text-transform: uppercase;
  font-family: var(--secondary-font);
}

/* Fixed Scroll to Top Button */
.scroll-top-wrapper {
  /* position: fixed; */
  text-align: center;
}

.scroll-up-button {
  /* background-color: limegreen; */
  padding: 10px;
  font-size: 16px;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  transition: 0.1s all linear;
}

.scroll-up-button :hover {
  color: #338833;
  transition: 0.1s all linear;
}

.footer-logo-wrapper {
  /* background-color: yellow; */
  border-top: 1px solid grey;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  padding: 50px 20px;
}

.footer-logo-wrapper img {
  width: 100px;
  margin-bottom: 20px;
}

.footer-logo-wrapper p {
  font-family: var(--secondary-font);
  text-align: center;
  color: #e0e0e0;
}

.footer-social-wrapper {
  display: flex;
  align-items: center;
  margin-top: 10px;
  gap: 20px;
  color: #e0e0e0;
  transition: 0.2s all linear;
}

.footer-social-wrapper span:hover {
  cursor: pointer;
  transition: 0.2s all linear;
  color: #338833;
}

/* Copy Right */
.copy-right-wrapper {
  /* position: absolute; */
  margin-top: 50px;
  padding: 20px 0px;
  text-align: right;
  font-family: var(--secondary-font);
  color: #e0e0e0;
}

.copy-right-wrapper p {
  font-size: 0.9rem;
}

@media only screen and (max-width: 897px) {
  .footer-container {
    padding: 50px 20px;
  }

  .dream-big-raffle-footer {
    flex-direction: column;
  }

  .footer-link-wrapper {
    width: 100%;
  }

  .subscribe-form-wrapper {
    width: 100%;
  }

  /* Copyright */
  .copy-right-wrapper {
    text-align: center;
  }
}
