.nav-container {

  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  /*justify-content: space-between;*/
  align-items: center;
  padding: 1rem;
}

.nav-mobile {
  display: none;
}


@media screen and (min-width: 500px) {
  .nav-container {
    gap:2rem;

    ul {
      display:flex; 
      list-style-type: none; 
      align-items:center;
      flex-direction: column;
    }
  } 

  .nav-items {
    gap:2rem;
    display: flex;
  }

  .nav-mobile-container {
    .switch-mobile { display: none; }
  }
}

@media screen and (max-width: 500px) {
  .nav-container {
    gap:1rem;
    flex-direction: row !important;
    align-content: flex-start;
    align-items: flex-start !important;
    .nav-mobile-container {

      flex-direction: column;
      align-items: flex-end;
      display:flex;

      .nav-wrapper {
        display: none;  
      }

      .switch-mobile {
        width: 60px;
        height: 40px;
        border-radius:5px;
        margin-right:0px;
      }
    }

    .nav-mobile-container:focus-within {
    .nav-wrapper {
        display: block;  
      }
    }
    .nav-logo {
      flex:auto;
    }

    ul {
      list-style-type: none; 
      text-align: right;

    }
  }  

  .nav-items {
    flex:none;
    gap:0.5rem;
    a {
      display: block;
    }
  }

  .nav-desktop { display: flex; }
  .nav-mobile {
    display:flex;
    flex-direction: column;
    cursor: pointer;
    align-items: end;
    a {
      display: inline-block;
      text-decoration: none;
      color: var(--text-nav-h-color);
    }
  }
}

@media screen and (min-width: 1020px) {
  .nav-container {
    ul {
      flex-direction:row;
    }
  }
}

@media screen and (max-width: 1020px) {
  .nav-container {
    flex-direction:column;
    align-items: center;

    li{

    }
  }
}

.nav-items a {
  color: var(--text-nav-h-color);
  text-decoration: none;
  font-weight: 500;
}

.dropdown-content {
  display: none;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.link {
  display: inline-flex;
  align-items: flex-start;
}

.link img {
  vertical-align: top;
  margin-top:-5px;
}

.footer-container {
  max-width: 1200px;
  min-height: 60px;
  padding: 1rem;
  margin: auto;
}

.footer {
  p {
    padding: 0;
    margin: 0;
    font-size: var(--font-size-sm);
    /*color: #a00;*/
  }
  span {
    color: var(--text-nav-h-color);
  }
  a {
    text-decoration: none;
  }
  li {
    list-style-type: none;
  }
}

.footer-nav a {
  color: var(--text-nav-h-color);
} 

html {
  scroll-behavior: smooth;
}

.icon {
  width: 1.5rem;
  height: 1.5rem;
  fill: var(--text-nav-h-color);
}

.contact {

  a {
    display: inline-block; 
    padding: 0.35rem;
    margin: 0.35rem 0;
    text-decoration: none;     
    background-color: var(--bg-button);         
    border-radius: 5px;   
    border-width: 2px;
    border-style: outset;
    border-color: rgb(143, 143, 157);
  }

  a:hover {
    border-color: rgb(103, 103, 116);

  }

}