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

#footer {
  position: relative;
  bottom: 0;
  width: 95%;
  height: auto;
  margin: 0 auto;
  background: var(--footer-background);
  overflow: hidden;
  z-index: 3;
  color: var(--base);
  font-size: 14px;
}

.columnsContainer {
  display: grid;
  grid-template-columns: 480px auto 480px;
  width: var(--web-container);
  position: relative;
  align-items: start;
  margin: auto;
  flex-direction: row;
  justify-content: space-between;
}

.adminColumnsContainer {
  display: flex;
  /* margin-inline: 3%; */
  /* justify-content: flex-end; */
  /* align-items: flex-start; */
  color: var(--h1);
  column-gap: 130px;
}

.footer-mid-section img {
  height: inherit;
}

.footer-mid-section img.logo {
  height: auto;
  width: 26px;
  margin-bottom: 20px;
  animation: bounce2 2s ease infinite;
}

.column div {
    padding: 3px 0px;
    display: block;
}



.footer-section {
    display: flex;
    gap: 100px;
}
#headerLogoContainerMobile {
  position: relative;
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
}

#headerLogoContainerMobile img {
  height: auto;
}

.footer-mid-section {
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.columnContainer:nth-child(3) {
  width: 25%;
  margin-right: 15%;
  margin-left: 2%;
}

.column {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  text-align: center;
}

.columnHeading {
  text-align: left;
  font-size: var(--menu-font-size);
  margin-bottom: 15px;
  font-weight: 600;
}

.columnItem {
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  position: relative;
  text-align: left;
  font-size: var(--base-font-size);
  text-decoration: none;
  line-height: 25px;
  width: max-content;
}

.columnItem.lineEffectCenter::before {
  bottom: 3px;
  background: black !important;
}

.newsletterColumn {
  color: var(--base);
  position: relative;
  width: 44%;
  margin: 100px auto;
  display: block;
  overflow: hidden;
}

footer {
  border-top: 1px solid #5C1924;
  position: relative;
  overflow: hidden;
  height: auto;
  width: 100%;
}





.newsletterHeadeing {
  margin-bottom: 6px;
  width: 100%;
  font-size: var(--h1-font-size);
  line-height: var(--h1-line-height);
  color: var(--h1);
  font-weight: var(--base-font-weight);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 50px;
}

.newsletterText {
  font-size: var(--menu-font-size);
}

.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: 100%;
}

.suscribeNewsContainer {
  position: relative;
  display: flex;
  width: 100%;
  padding: 11px 0px;
  align-items: center;
  margin-top: 20px;
  gap: 5%;
  border-bottom: 1px solid black;
}

.newsletterGo {
  position: relative;
  cursor: pointer;
  line-height: var(--menu-line-height);
  right: 0;
  font-size: var(--menu-font-size);
  color: black;
}

.newsletterGo:hover {
  font-weight: 800;
}

.btn-3 {
  border-bottom: none;
}

.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 {
  height: 33px;
  line-height: 33px;
  background-color: #5C1924;
}

.rights {
  position: absolute;
  font-size: 11px;
  text-align: left;
  line-height: inherit;
  color: var(--secondary);
  letter-spacing: 0.03em;
  text-transform: inherit;
  margin-left: 3%;
}

#emailFooterInput {
  line-height: var(--menu-line-height);
  font-size: var(--base-font-size);
  color: var(--h1);
  width: 100%;
  background-color: transparent;
  border-bottom: none;
}

#emailFooterInput:placeholder {
  color: var(--base);
}

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

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

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

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

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


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

.lunaLink {
  display: block;
  overflow: hidden;
  width: fit-content;
  float: right;
  margin-top: 6px;
  height: calc(100% - 12px);
  margin-right: 3%;
}

@media screen and (max-width: 1100px) {
  .columnsContainer {
    width: 90%;
    flex-direction: column;
    padding-block: 10px;
    grid-template-columns: auto;
    justify-content: unset;
  }

  .footer-section {
    display: flex;
    gap: 0px;
    flex-direction: column;
  }

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

  .columnContainer {
    border-bottom: unset;
    text-align: left !important;
    padding: 25px 0 !important;
    display: flex;
    justify-content: left;
    font-size: 14px;
    width: auto;
    align-items: flex-start;
  }


  .column {
    flex-direction: column;
    align-items: left;
  }

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

  .columnContainer:nth-child(3) {
    width: 100%;
    margin-right: 0%;
    margin-left: 0%;
  }

  #headerLogoContainerMobile img {
    height: 70px;
  }

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

  .newsletterContainer {
    width: 100%;
    padding-top: 40px;
    /* max-width: 600px; */
    padding: 20px 0% 40px 0%;
    text-align: center;
  }

  .newsletterHeadeing {
    max-width: unset;
    font-size: calc(var(--base-font-size) + 4px);
    line-height: calc(var(--base-line-height) + 4px);
    margin: 30px 0;
  }

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

  .suscribeNewsContainer {
    margin-bottom: 0;
    gap: 2%;
  }

  .newsletterGo {
    font-size: calc(var(--base-font-size) - 1px);
  }

  .footer-mid-section img {
    height: auto;
    width: 100%;
  }

  .footer-mid-section img.logo {
    margin-bottom: 10px
  }
  
  .footer-mid-section {
    height: 3rem;
  }

  .rights {
    margin-left: 5%;
    line-height: inherit;
    height: 55px;
    font-size: 10px;
  }

  #emailFooterInput {
    width: 100%;
    text-transform: unset;
  }

  .mediaLink {
    text-align: left;
  }

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

  .byluna {
    height: 20px;
  }

  .lunaLink {
    margin-right: 5%;
    height: inherit;
  }

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

  #footer {
    z-index: 4;
  }

  #footerBottom {
    padding-top: 0;
  }

  .paymentTypesImages {
    width: 95%;
  }
}

@keyframes bounce2 {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-30px);}
	60% {transform: translateY(-15px);}
}