@charset "UTF-8";
/* ✅ MOBILE / TABLET (default) */
@media only screen and (min-width: 0px) and (max-width: 1139px) {
  .footer {
    width: 100%;
    height: -moz-max-content;
    height: max-content;
    padding: 50px 20px 35px;
    background: #141a3a;
    z-index: 1000;
    position: relative;
    margin: 0;
    border-top: 1px solid lightgray;
  }
  .footer .bottom {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 25px;
    max-width: 100%;
  }
  .footer .links {
    width: 100%;
  }
  .footer .links strong {
    color: #B6A265;
    font-family: "Stampa", "Roboto", sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 500;
    display: block;
  }
  .footer .links a {
    color: #cbdde7;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    margin-block: 8px;
    width: 100%;
    display: block;
    font-family: "Stampa", "Roboto", sans-serif;
  }
  .footer .links a.sub-item {
    margin-left: 14px;
    opacity: 0.75;
  }
  .footer {
    /* If you ever add .social-icons in footer HTML, keep it clean on mobile */
  }
  .footer .social-icons {
    position: static;
    transform: none;
    width: 100%;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
  }
  .footer .social-icons i {
    flex: 0 0 calc(50% - 10px);
    width: auto;
    max-width: none;
    font-size: 22px;
    padding: 18px;
    margin: 0;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .footer .rights {
    text-align: left;
    margin-top: 25px;
  }
  .footer .rights .logos {
    display: none;
  }
  .footer .rights p {
    text-decoration: none;
    color: #cbdde7;
    font-size: 14px;
    opacity: 0.85;
    margin: 6px 0;
    line-height: 1.35;
    word-break: break-word;
  }
}
/* ✅ optional: 2-column links on medium screens (still below 1140px) */
@media only screen and (min-width: 600px) and (max-width: 1139px) {
  .footer {
    padding: 60px 35px 40px;
  }
  .footer .bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .footer .rights {
    text-align: left;
  }
  .footer .rights .logos {
    display: none;
  }
}
@media only screen and (min-device-width: 1140px) {
  .footer {
    width: 100%;
    height: -moz-max-content;
    height: max-content;
    padding: 70px 50px;
    padding-bottom: 50px;
    background: #141a3a;
    z-index: 1000;
    position: relative;
  }
  .footer .rights {
    text-align: right;
    margin-top: 25px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
  .footer .rights .logos {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 25px;
    transform: translateY(-10px);
  }
  .footer .rights .logos img {
    width: 110px;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
    transform: translateY(-10px);
  }
  .footer .rights .logos img.right-img {
    transform: translateY(0);
  }
  .footer .rights p {
    text-decoration: none;
    color: #cbdde7;
    font-size: 14px;
    opacity: 0.8;
  }
  .footer .bottom {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    max-width: -moz-max-content;
    max-width: max-content;
    margin-top: 45px;
    position: relative;
  }
  .footer .bottom .social-icons {
    width: 250px;
    position: absolute;
    right: -120%;
    top: 50%;
    transform: translateY(-45%);
    display: flex;
    flex-wrap: wrap;
  }
  .footer .bottom .social-icons i {
    flex: 0 0 50%;
    color: white;
    width: 50%;
    font-size: 28px;
    max-width: 100px;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    margin: 10px;
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
  }
  .footer .bottom .social-icons i:hover {
    transform: scale(1.05);
  }
  .footer .bottom .links strong {
    color: #cbdde7;
    color: #B6A265;
    font-family: "Stampa", "Roboto", sans-serif;
    font-size: 19px;
    margin-bottom: 15px;
    font-weight: 500;
  }
  .footer .bottom .links a {
    color: #cbdde7;
    font-size: 16px;
    font-weight: 500;
    margin: 2px;
    margin-block: 6px;
    width: 100%;
    display: block;
    font-family: "Stampa", "Roboto", sans-serif;
  }
  .footer .bottom .links a.sub-item {
    margin-left: 10px;
  }
}/*# sourceMappingURL=footer.css.map */