footer {
      background-image: url('../src/imgs/footer/footerBg.jpg');
      background-position: center;
      background-size: cover;
      position: relative;
}
footer::after {
      content: '';
      background: rgb(42, 42, 42);
      background: linear-gradient(180deg, rgba(42, 42, 42, 1) 30%, rgba(42, 42, 42, 0.85) 100%);
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
}
.mainFooterContainer {
      z-index: 1;
}

.mainFooterContainer .fakeTitle {
      font-size: 1.5rem !important;
}

.footerContentContainer {
      min-height: 50vh;
}

.footerSubTitle {
      text-align: center;
}

.footerColG {
      width: 25%;
      background-color: var(--pictoBackground);
      padding: 20px;
      border-radius: 7px;
      box-sizing: border-box;
      height: fit-content;
}
.footerColD {
      width: 73%;
}

/* ------------------------------ CONTACT FORM ------------------------------ */

.footerColG .fakeTitle {
      font-size: 1.2rem !important;
}
.contactSubTitle {
      font-size: 14px;
}

footer label {
      display: none;
}
footer form {
      gap: 8px;
}
footer input,
footer textarea {
      max-width: 100%;
      padding: 10px;
      border: none;
      border-radius: 5px;
      background-color: var(--inputBackground);
      color: #fff;
      color-scheme: dark;
}
textarea {
      resize: vertical;
}
.submitBtn {
      width: 100%;
      background-color: transparent;
      color: var(--lightGreen);
      border-radius: 7px;
      padding: 10px;
      border: 1px solid var(--lightGreen);
      cursor: pointer;
      transition: all 0.3s ease;
}
.submitBtn:hover {
      background-color: var(--lightGreen);
      color: #fff;
}

.dateText {
      width: 10%;
}
#date,
#date2 {
      width: 80%;
}

input[type='date'] {
      display: block;
      -webkit-appearance: textfield;
      -moz-appearance: textfield;
      appearance: none;
      min-height: 1.2em;
      position: relative;
}
/* ---------------------------------- PRICE --------------------------------- */
.footerColD .fakeTitle {
      font-size: 1.2rem !important;
}
.priceCard {
      background-color: var(--pictoBackground);
      border-radius: 7px;
      padding: 20px;
      gap: 20px;
      display: grid;
      grid-template-columns: 1fr 2fr 1fr;
      min-height: 80px;
      transition: all 0.3s ease;
}
.mainDescription {
      font-size: 16px;
}
.botDescription {
      font-size: 15px;
      color: #b0b0b0;
}
.price {
      justify-self: flex-end;
}

.priceCard:hover {
      transform: scale(1.02);
}

/* ------------------------------- POST FOOTER ------------------------------ */
.postFooterSection {
      z-index: 1;
      padding: 15px;
}
footer ul {
      display: flex;
      list-style: none;
      padding: 0;
      gap: 20px;
}
footer li {
      cursor: pointer;
}
footer li a {
      transition: all 0.3s ease;
      font-size: 15px;
}
footer li:hover a {
      color: var(--lightGreen);
}
footer a.active {
      color: var(--lightGreen);
}
.postFooterSection img {
      width: 200px;
      margin-right: 90px;
}
