@media screen and (max-width: 1024px) {
  /* --- HEADER GENERAL --- */
  .header {
    padding: 10px 20px;
    height: 70px;
    position: sticky;
    top: 0px;
    align-items: start;
  }

  #header.header-full-height {
    height: 100vh !important;
  }

  #header.active {
    height: 70px;
    top: 0px;
    position: fixed;
  }

  /* --- HEADER LINKS --- */
  .header-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: -100px;
    width: 100%;
    height: 0%;
    opacity: 0;
    overflow: hidden;
    transition: all .3s ease-in-out;
    padding: 0px 20px;
    gap: 0px;
  }

  .header-links-open {
    left: 0px;
    top: 70px;
    z-index: -1;
    height: 100vh;
    opacity: 1;
    padding-top: 30px;
  }

  .header-links-open ~ .header-actions {
    display: flex !important;
    bottom: 10px;
    left: 10px;
    opacity: 1;
  }

  .header-links-a {
    font-size: 18px;
    padding: 20px 0px !important;
    width: 100%;
    transition: all var(--time);
  }

  /* --- HEADER ACTIONS --- */
  .header-actions {
    display: flex;
    position: fixed;
    bottom: -1000px;
    left: -1000px;
    opacity: 0;
    transition: bottom .5s;
  }

  /* --- HEADER BUTTONS --- */
  .header-btns {
    display: flex;
    align-items: center;
    height: 50px;
   }

  .header-btns-bars,
  .header-btns-close {
    background-color: transparent;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    color: #271614;
  }

  .header-btns-bars span,
  .header-btns-close span {
    font-size: 30px;
    color: #271614;
    font-variation-settings:
      'FILL' 0,
      'wght' 300,
      'GRAD' 0,
      'opsz' 24;
    transition: color var(--time);

  }

  .header-btns-bars:hover span,
  .header-btns-close:hover span{
    color: #2f75cf;
  }

  .header-btns-hiden {
    display: none;
  }

  .header-logo{
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  

/* ------------FOOTER-----------START */
    .footer{
      padding: 60px 10px;
      text-align: center;
  }

  .footer-links-container{
      flex-direction: column;
      text-align: center;
  }

  .wsp-btn-box{
      right: 0px;
      width: 100%;
      justify-content: center;
      align-items: center;
  }

/* ------------FOOTER-----------END */

}
