footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: linear-gradient(to bottom, #caede6, #96d4e7);
  padding: 30px 40px;
  gap: 10px;
  width: 100%;
  padding-bottom: 80px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  flex: auto;
}

.footer-logo img {
  width: 200px;
  height: 31px;
}

.footer-contact > span {
  text-align: center;
  color: #92a1a8;
  font-size: 12px;
}

ul.list_footer {
  list-style: none;
  display: grid;
  grid-template-columns: 50% 50%;
  justify-content: center;
}

.list_footer > li > a {
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  color: black;
}
.grecaptcha-badge { visibility: hidden }
@media (min-width: 768px) {
  footer {
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  footer {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    height: auto;
    background-image: linear-gradient(to right, #caede6, #96d4e7);
    align-items: center;
    padding-bottom: 80px;
  }
  .footer-logo {
    align-self: flex-start;
  }
  .footer-logo img {
    height: 60px;
    width: 220px;
  }
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .footer-contact ul {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    justify-content: right;
  }
  .footer-contact ul li a {
    text-decoration: none;
    font-size: 14px;
    color: var(--color-font);
    font-weight: 600;
  }
  .footer-contact ul li a:hover {
    color: var(--secondary-002);
  }
  .footer-contact > span {
    text-align: right;
    font-size: 14;
    color: var(--secondary-002);
  }
}
@media (max-width: 767px) {
  .footer-logo {
    margin-bottom: 20px;
  }

  ul.list_footer {
    gap: 10px;
    text-align: center;
  }

  .footer-contact > span {
    margin-top: 15px;
  }
}
