footer .row {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
footer .row {
  margin-top: 2rem;
}
footer .row .col-md-3:nth-child(2),
footer .row .col-md-3:nth-child(3) {
  /* background: red; */
  max-width: 15rem;
  /* background: red; */
}
footer .row .col-md-3 h3,
footer .row .col-md-3 ul {
  padding: 0;
  margin: 0 !important;
}
footer .row .col-md-3 ul li a {
  font-size: 0.82rem !important;
}
footer .row .col-md-3 h3 {
  margin-bottom: 1.5rem !important;
  margin-top: 1.2rem !important;
}
@media (max-width: 767px) {
  footer .row .col-md-3 h3 {
    margin-bottom: 0.4rem !important;
  }
}
footer .row .col-md-3 .logo {
  width: 12rem;
  height: 4rem;
  /* background: red; */
  background-image: url(../svg/LOGO\VARIATION-13\\(1\)\-\Copie.svg);
  background-repeat: no-repeat;
  /* background-size: cover; */
  background-size: contain;
  background-position: center;
  margin-bottom: 1rem;
}
footer .row .col-md-3:first-child p {
  margin-bottom: 2rem;
  /* background: red; */
}
footer #icontact {
  display: flex;
  align-items: end;
}
footer #icontact svg {
  height: 1.2rem;
  width: auto;
  /* background: red; */
}
footer #icontact svg:last-child {
  height: 1rem;
}
footer form input[type="email"] {
  /* background: red!important; */
  font-size: 0.82rem;
  padding: 0.5rem 1rem !important;
  transition: 0.5s ease;
}

.loader {
  display: none;
  border: 4px solid #f3f3f3;
  border-radius: 50%;
  border-top: 4px solid #41aec1;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
