#subscribe-email {
    padding: 8px;
    width: 250px;
    max-width: 100%;
    background-color: black;
    color: white;
    border: 0;
    border-bottom: 1px solid white;
}

#subscribe-button {
    background-color: var(--main-red);
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 54px;
    font-size: 16px;
    cursor: pointer;
    border: 1px solid var(--main-red);
    transition: background-color 0.3s;
    margin: auto;
	margin-left: 14px;

}

.footer-container {
  background-color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  gap: 12px
}

.footer-logo-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
}

.footer-social-item a {
  width: 24px;
  display: flex;
  height: 24px;
  justify-content: center;
  align-items: center;
}

.footer-social-item img {
  object-fit: cover;
  scale: 0.7;
}

.footer-desktop {
  display: none;
}

.footer-container * {
  color: #ffffff;
}

.footer-logo-container {
  width: 80%;
}

.footer-logo-container img {
  width: 35%;
  height: auto;
}

.footer-title {
  font-size: 18px;
  font-weight: bold;
  width: 100%;
  text-align: start;
  font-style: italic;
}

.footer-description {
  font-size: 14px;
  width: 100%;
  text-align: start;
  padding-bottom: 16px;
  border-bottom: 1px solid #ffffff;
}

.footer-socials-items {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 42px 0;
}

.footer-socials-title {
  width: 100%;
  text-align: center;
  font-size: 14px;
  margin: 22px 0;
}

.footer-phone-cta,
.footer-devis-cta {
  border: 1px solid #ffffff;
  padding: 20px 48px;
  font-size: 18px;
  border-radius: 64px;
  width: 56%;
  margin: auto;
  text-align: center;
}



.footer-phone-cta {
  margin-bottom: 8px;
  margin-top: 8px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.footer-phone-cta img {
  width: 20px;
  height: auto;
}

.footer-devis-cta {
  margin-bottom: 32px;
}


.footer-phone-cta:hover {
  color: var(--main-red);
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-devis-cta:hover {
  background-color: #ffffff;
  color: black;
  cursor: pointer;
  border: 1px solid black;
  transition: all 0.3s ease;
}

.footer-newsletter-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

.footer-newsletter-container form {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer-newsletter-title {
  font-size: 16px;
  width: 100%;
  text-align: start;
  margin-bottom: 48px;
}



.footer-links-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-bottom: 24px;
}

.footer-link-item img {
  width: 16px;
}

.footer-link-item {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 8px;
}

.footer-links-title {
  font-size: 28px;
  width: 100%;
  text-align: start;
  margin-bottom: 12px;
}

#menu-footer-1,
#menu-footer-2,
.footer-link-list {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 0 !important;
  margin: 0 !important;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

.footer-link-list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
}

.menu-footer-menu-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

#menu-footer-1 li,
#menu-footer-2 li {
  font-size: 14px;
  list-style: none;
}

.footer-copyright {
  margin-top: 64px;
  font-size: 14px;
  padding-top: 24px;
  border-top: 1px solid #666;
  width: 100%;
  text-align: center;
}

@media screen and (min-width: 1200px) {
  .footer-mobile {
    display: none;
  }

  .footer-social-item:nth-child(1) img {
    height: 16px !important;
  }

  .footer-ctas-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
  }

  .footer-links-container {
    justify-content: flex-start;
    padding-top: 64px;
    gap: 64px;
  }


  .footer-devis-cta {
    margin-bottom: 0;
  }

  .footer-socials-title {
    text-align: start;
  }

  .footer-phone-cta,
  .footer-devis-cta {
    font-size: 15px;
    margin: 0;
    padding: 20px 25px;
  }

  .footer-container-1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
  }

  .footer-desktop {
    display: flex;
    flex-direction: column;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2.3fr 1fr 1fr;
    gap: 32px;
    width: 90%;
    padding-top: 64px;
  }

  .footer-logo-container img {
    width: 25%;

  }
}

@media screen and (min-width: 1600px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}