#footerDummy {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}

#footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: auto;
  background: var(--white);
  overflow: hidden;
  z-index: 3;
  border-top: 1px solid var(--grey);
}

.columnsContainer {
  display: flex;
  width: 100%;
  color: var(--base);
  font-size: 1.4rem;
  line-height: 1.8rem;
  justify-content: center;
}

.adminColumnsContainer {
  width: 85%;
  display: flex;
}

.columnContainer {
  width: calc(100% / 3);
  padding: 5.5rem 1rem;
  /* border-right: 1px solid var(--grey); */
  box-sizing: border-box;
  line-height: 21px;
}

.column {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  font-size: 13px;
  text-align: center;
}

.columnHeading {
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
}

.columnItem {
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1rem auto 0;
}

.newsletterColumn {
  width: 100%;
  background: var(--secondary);
  color: var(--white);
}

.newsletterHeadeing {
  margin-bottom: 2.5rem;
  text-align: center;
  font-size: 3.5rem;
}

.newsletterHeadeing img {
  -webkit-filter: invert(98%) sepia(38%) saturate(1%) hue-rotate(331deg) brightness(102%) contrast(101%);
  filter: invert(98%) sepia(38%) saturate(1%) hue-rotate(331deg) brightness(102%) contrast(101%);
}

.newsletterContainer {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 5.5rem 2rem 4rem;
}

.suscribeNewsContainer {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.newsletterGo {
  position: absolute;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  color: var(--secondary);
  cursor: pointer;
  text-transform: uppercase;
  line-height: 4.5rem;
  right: 0;
  border: 1px solid transparent;
}

.newsletterGo:hover {
  background-color: var(--secondary);
  color: var(--white);
  border-color: var(--white);
}

.mediaLink {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 1.3rem;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.paymentTypesContainer {
  position: relative;
  width: 100%;
  height: 50px;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--grey);
  display: flex;
  justify-content: center;
  align-items: center;
}

#footerBottom {
  height: 48px;
  line-height: 48px;
}

.rights {
  position: absolute;
  margin-left: 2.5%;
  font-size: 1.3rem;
  text-align: left;
  line-height: 48px;
  color: var(--base);
  letter-spacing: 0.03em;
}

#emailFooterInput {
  border: 1px solid transparent;
  padding: 0;
  border-radius: 0;
  line-height: 4.5rem;
  font-size: 1.4rem;
  color: var(--base);
  font-weight: 300;
  width: 58rem;
  text-indent: 1.5rem;
}

#emailFooterInput::-webkit-input-placeholder {
  color: var(--secondary);
  opacity: 1;
  font-weight: 300;
}

#emailFooterInput:-moz-placeholder {
  color: var(--secondary);
  opacity: 1;
  font-weight: 300;
}

#emailFooterInput::-moz-placeholder {
  color: var(--secondary);
  opacity: 1;
  font-weight: 300;
}

#emailFooterInput:-ms-input-placeholder {
  color: var(--secondary);
  opacity: 1;
  font-weight: 300;
}

#emailFooterInput::-ms-input-placeholder {
  color: var(--secondary);
  opacity: 1;
  font-weight: 300;
}

a .columnItem::before,
.mediaLink::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--base);
  position: absolute;
  left: -12px;
  top: 6.5px;
  opacity: 0;
  transition: opacity 0.3s;
}

a .columnItem:hover::before,
.mediaLink:hover::before {
  opacity: 1;
}

.byluna {
  pointer-events: none;
  margin-right: 0;
}

.lunaLink {
  display: block;
  overflow: hidden;
  margin-right: 2.5%;
  width: fit-content;
  float: right;
  margin-top: 10px;
  height: 30px;
}

@media screen and (max-width: 1100px) {
  .columnsContainer {
    width: 100%;
    flex-direction: column-reverse;
  }

  .adminColumnsContainer {
    flex-direction: column;
    width: 100%;
    padding: 2rem 0 3rem;
  }

  .columnContainer {
    border: none;
    border-bottom: 1px solid var(--grey);
    width: 100%;
    text-align: left;
    padding: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .newsletterColumn {
    width: 100%;
    margin: 0 auto;
    border-bottom: 1px solid var(--grey);
  }

  .newsletterContainer {
    width: 90%;
    padding-top: 4rem;
  }

  .newsletterHeadeing {
    max-width: unset;
    font-size: 18px;
    margin-bottom: 2rem;
  }

  .newsletterHeadeing img {
    max-width: 150px;
  }

  .suscribeNewsContainer {
    margin-bottom: 0;
  }

  .rights {
    margin-left: 3.5rem;
    line-height: 4.8rem;
  }

  #emailFooterInput {
    width: 100%;
    border-bottom: 1px solid var(--grey);
  }

  .column {
    /* width:90%; */
  }

  .mediaLink {
    text-align: left;
  }

  .mediaLink:first-of-type {
    margin-top: 2rem;
  }

  .lunaLink {
    margin-right: 3.5rem;
  }

  a .columnItem:hover::before,
  .mediaLink:hover::before {
    opacity: 0;
  }

  #footer {
    z-index: 4;
  }

  .paymentTypesImages {
    width: 95%;
  }
}