footer {
  /* padding: 20px 20px 30px; */
  padding: 15px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* === TOP FOOTER ROW === */
/* .footer-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    flex-wrap:wrap;
    gap:20px;
    padding-bottom:24px;
  }

  .footer-left img{
    width:160px;
    height:auto;
  }

 
  .footer-menu{
    display:flex;
    gap:28px;
    flex-wrap:wrap;
    margin-top:14px;
  }

  .footer-menu a{
    text-decoration:none;
    color:var(--text-quaternary);
    font-size:14.5px;
    font-weight:400;
    transition:.15s;
  }
  .footer-menu a:hover{
    color:var(--text-primary);
  }

  
  .footer-news h4{
    font-size:14px;
    font-weight:500;
    margin-bottom:10px;
    color: var(--text-secondary);
  }

  .newsletter-box{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
  }

  .newsletter-box input{
    padding:10px 14px;
    border:1px solid #d1d5db;
    border-radius:6px;
    min-width:220px;
    font-size:14px;
    outline:none;
  }
  .newsletter-box input:focus{
    border-color:var(--text-primary);
  }

  .newsletter-box a{
    padding:10px 16px;
    border:none;
    text-decoration: none;
    background:#192E81;
    color: var(--text-inverse);
    border-radius:6px;
    font-size:14px;
    cursor:pointer;
    transition:.2s;
  }
  .newsletter-box a:hover{
    background:#15266c;
  } 


  .footer-line{
    width:100%;
    height:1px;
    background:#192d7f46;
    margin:20px 0;
  }
  */

/* === BOTTOM ROW === */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  color: var(--text-secondary);
}


/* --------------- */
.ft-logo {
  display: flex;
  gap: 30px;
  justify-content: start;
  align-items: center;
}

.ft-logo img{
  height: 42px;
} 

.footer-bottom .copyright {
  text-align: right;
}

/* ------------------ */

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-secondary);
  transition: 0.15s;
}
.footer-links a:hover {
  color: var(--text-primary);
}

@media (max-width: 700px) {
  footer {
    /* width: auto; */
    width:100%
  }
  .footer-top {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* -------------- */
  .ft-logo {
    gap: 15px;
    justify-content: start;
    align-items: self-start;
    flex-direction: column;
    width: 100%;
  }

  .footer-bottom .copyright {
    text-align: left;
    width: 100%;
    padding-top: 15px;
    border-top: 1px solid #192d7f46;
  }
  /* -------------- */
}
