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

#footer {
  position: relative;
  bottom: 0;
  width: 100%;
  height: auto;
  background: var(--footerBkg);
  overflow: hidden;
  z-index: 3
}

.columnsContainer {
  display: flex;
  width: 100%;
  justify-content: center;
  border-bottom: 1px solid var(--black)
}

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

.columnContainer {
  width: calc(100% / 3);
  padding: 55px 10px 30px;
  box-sizing: border-box;
  line-height: 21px
}

.column {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 3px;
}

.columnHeading {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 15px
}

.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: 2px 0;
  font-size: 13px;
  font-weight: 400
}

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

.newsletterHeadeing {
  margin-bottom: 30px;
  text-align: center;
  font-size: 20px;
  line-height: 40px;
  color: var(--black);
  font-family: var(--secondary-font-family)
}

.newsletterHeadeing strong {
  font-style: italic
}

.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: 45px 20px 40px
}

.footerImg {
  width: 14%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  margin-bottom: 3rem
}

.footerImg img {
  width: 100%;
  animation: jump 1s infinite
}

.footerImg img:nth-child(1) {
  animation-delay: 0s
}

.footerImg img:nth-child(2) {
  animation-delay: 0.2s
}

.suscribeNewsContainer {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--black)
}

.newsletterGo {
  position: absolute;
  padding-left: 15px;
  cursor: pointer;
  text-transform: uppercase;
  line-height: 50px;
  right: 0;
  font-weight: 600;
  color: var(--add-to-cart-btn)
}

.newsletterGo:hover {
  font-weight: 900
}

.mediaLink {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 13px;
  -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 {
  width: 92vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  height: 40px;
  line-height: 40px
}

.rights {
  margin: 0 auto;
  position: relative;
  font-size: 13px;
  text-align: left;
  line-height: 48px;
  color: var(--base);
  letter-spacing: .03em;
  font-weight: 400;
}

#emailFooterInput {
  padding: 0;
  border-radius: 0;
  line-height: 40px;
  font-size: 14px;
  color: var(--black);
  background: var(--footerBkg);
  font-weight: 400;
  width: 620px
}

#emailFooterInput::-webkit-input-placeholder {
  color: var(--base);
  opacity: .7
}

#emailFooterInput:-moz-placeholder {
  color: var(--base);
  opacity: .7
}

#emailFooterInput::-moz-placeholder {
  color: var(--base);
  opacity: .7
}

#emailFooterInput:-ms-input-placeholder {
  color: var(--base);
  opacity: .7
}

#emailFooterInput::-ms-input-placeholder {
  color: var(--base);
  opacity: .7
}

a .columnItem::before,.mediaLink::before {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--base);
  position: absolute;
  left: 0px;
  bottom: 2px;
  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;
  height: 26px;
  width: 59px;
}

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

  .adminColumnsContainer {
      flex-direction: column;
      align-items: flex-start;
      margin: auto;
      width: 90%;
      padding: 20px 0
  }

  .columnContainer {
      border-bottom: unset;
      width: fit-content;
      text-align: left;
      padding: 0;
      padding-top: 15px;
      padding-bottom: 15px;
  }

  .columnContainer:last-of-type {
      border: none
  }

  .newsletterColumn {
      width: 100%;
      margin: 0 auto
  }

  .newsletterContainer {
      width: 90%;
      padding-top: 50px;
      padding-bottom: 0px;
      max-width: 600px
  }

  .newsletterHeadeing {
      max-width: 80%;
      font-size: 18px;
      line-height: 32px;
      margin: 0 auto;
      margin-bottom: 20px
  }

  .newsletterHeadeing img {
      max-width: 150px
  }

  .suscribeNewsContainer {
      margin-bottom: 0
  }

  .rights {
      line-height: 48px;
      font-size: 11px;
  }

  #emailFooterInput {
      width: 100%
  }

  .mediaLink {
      text-align: left
  }

  .mediaLink:first-of-type {
      margin-top: 20px
  }

  .lunaLink {
      margin-right: 15px;
      width: 60px;
  }

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

  #footer {
      z-index: 4
  }

  .paymentTypesImages {
      width: 95%
  }
  .footerImg {
  width: 20%;
}
}
