/* header{
    display: flex;
    justify-content: center;
    align-items: center;

    height: 150px;
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 70%;
}

nav a{
    width: 150px;
    text-align: center;
    text-wrap: nowrap;
}

nav img{
    width: 89px;
    height: 89px;
    flex-shrink: 0;
} */

/* TEST */

.nav img{
    width: 89px;
    height: 89px;
}

* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0px;
    font-family: 'segoe ui';
  }
  
  .nav {
    /* height: 50px; */
    width: 100%;
    /* background-color: #4d4d4d; */
    position: relative;
    
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 1;
  }
  
  .nav > .nav-header {
    display: flex;
    justify-content: center;
    width: 180px;
  }
  
  .nav > .nav-header > .nav-title {
    display: inline-block;
    font-size: 22px;
    color: #fff;
    padding: 10px 10px 10px 10px;
  }
  
  .nav > .nav-btn {
    display: none;
  }
  
  .nav > .nav-links {
    display: inline;
    float: right;
    font-size: 18px;
  }
  
  .nav > .nav-links > a {
    display: inline-block;
    padding: 13px 10px 13px 10px;
    margin: 0 10px 0 10px;
    width: 160px;
    text-align: center;
    /* text-decoration: none; */
    /* color: #efefef; */
  }
  
  .nav > #nav-check {
    display: none;
  }
  
  @media (max-width:1000px) {
    .nav{
        justify-content: start;
        /* margin: 20px 0 20px 0; */
        margin-bottom: 20px;
    }

    .nav > .nav-btn {
      display: inline-block;
      position: absolute;
      right: 0px;
      top: 0px;

      width: 150px;
      height: 150px;
    }
    .nav > .nav-btn > label {
      /* display: inline-block; */
      width: 150px;
      height: 150px;
      /* padding: 13px; */

      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .nav > .nav-btn > label:hover,.nav  #nav-check:checked ~ .nav-btn > label {
      background-color: rgba(114, 40, 40, 0.3);
    }
    .nav > .nav-btn > label > span {
      display: block;
      width: 60%;
      height: 6px;
      margin: 10px;
      border-top: 6px solid #000000;
    }

    .nav img{
        height: 130px;
        width: 130px;
        margin-top: 20px;
    }

    .nav > .nav-links {
      position: absolute;
      display: block;
      width: 100%;
      background-color: #f4e4ce;
      height: 0px;
      /* transition: all 0.3s ease-in; */
      overflow-y: hidden;
      /* top: 50px; */
      left: 0px;

      top: 150px;
      /* padding-left: 5%; */
    }

    .nav > .nav-links > a{
        padding-left: 5%;
        margin-left: 0;
    }

    .nav > .nav-links > a:hover {
        background-color: rgba(143, 112, 89, 0.354);
    }

    .nav > .nav-links:last-child{
        top: 325px;
    }

    .nav > .nav-links > a {
      display: block;
      width: 100%;
    }
    .nav > #nav-check:not(:checked) ~ .nav-links {
      height: 0px;
    }
    .nav > #nav-check:checked ~ .nav-links {
      height: calc(100vh - 50px);
      overflow-y: auto;
    }
  }