/* GLOBAL RESET */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
      Helvetica, Arial, sans-serif;
  }
  
  a {
    color: var(--brand-darkest-color);
  }
  
  a:visited {
    color: var(--brand-darkest-color);
  }
  
  a:active {
    color: var(--brand-darkest-color);
  }
  
  :root {
    --brand-darkest-color: #223843;
    --brand-lightest-color: #eff1f3;
    --brand-2nd-lightest-color: #dbd3d8;
    --brand-3rd-lightest-color: #d8b4a0;
    --brand-highlight-color: #d77a61;
  }
  
  .bold-text-highlight {
    background-color: var(--brand-darkest-color);
    color: var(--brand-lightest-color) !important;
    padding: 7px 12px;
    border-radius: 7px;
  }
  
  a.bold-text-highlight {
    color: var(--brand-lightest-color);
  }
  
  body {
    background-color: var(--brand-lightest-color);
    background-image: url("./assets/images/background.svg");
  }
  
  /* NAVIGATION */
  
  .header-container {
    display: flex;
    gap: 35px;
    width: 100%;
    padding: 20px 35px 15px 35px;
    border-bottom: 1px solid rgba(188, 197, 217, 0.23);
    box-shadow: rgba(149, 157, 165, 0.08) 0px 8px 24px;
    background-color: var(--brand-lightest-color);
  }
  
  .header-logo {
    height: 30px;
    filter: invert(15%) sepia(57%) saturate(405%) hue-rotate(155deg)
      brightness(95%) contrast(88%);
  }
  
  .desktop-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  .nav-gr-1 {
    display: flex;
    gap: 20px;
  }
  
  main {
    display: flex;
    flex-direction: column;
    align-items: center;
  
    margin-top: 20px;
    height: 100vh;
  }
  
  .content-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 70vw;
    justify-content: space-between;
  }


  /* NAVBAR */
.hamburger{
  display: none;
  cursor: pointer;
  transform: scale(1.5);
}
.nav-mobile{
  display: none;
}
.show-mobile-nav{
  width: 100vw;
  height: 100vh;
  position: absolute;
  z-index: 100;
  background-color: var(--brand-lightest-color);
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  padding: 0 20px;
  gap: 22px;
}
.nav-mobile-item{
  color: var(--brand-darkest-color);
  font-weight: 630;
  font-size: 1.5rem;
  cursor: pointer;
  border-bottom: var(--brand-2nd-lightest-color) 2px solid;
}
.stop-scroll{
  overflow: hidden;
}


@media screen and (max-width: 1000px) {
  .desktop-navigation{
    display: none;
  }
  .hamburger{
    display: flex;
    align-items: center;
  }
  .header-container{
    justify-content: space-between;
    align-items: center;
  }
  .nav-mobile-copyright{
    text-align: center;
    position: fixed;
    bottom: 0;
    margin-bottom: 5vh;
    margin-left: -20px;
    width: 100%;
    color: grey;
  }
}