#menuToggle a:hover {
  color: rgb(224, 166, 171);
}

#menuToggle a {
  text-decoration: none;
  color: #232323;

  transition: color 0.3s ease;
  text-transform: uppercase;
}

.active .navigationText {
  color: rgb(224, 166, 171);
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;

  cursor: pointer;

  opacity: 0;
  /* hide this */
  z-index: 2;
  /* and place it over the hamburger */

  -webkit-touch-callout: none;
}

#menuToggle #menu {
  list-style-type: none;
}

@media only screen and (min-width: 1201px) {
  #menuToggle {
    width: 100%;
    display: flex;
    align-items: center;
    background: #f5f5f5;
    line-height: 30px;
    height: 65px;
  }

  #menuToggle a {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 400;
    font-style: normal;
    background-color: transparent;
    color: var(--heading-color);
    letter-spacing: clamp(0.1px, 0.15vw, 2px);
    padding: clamp(1px, 0.5vw, 10px);
  }

  /* target the element that carries font-size: 18px */
  #menuToggle .navigationText {
    font-size: clamp(0.8rem, 0.9vw, 1rem);
  }

  .menu-logo-item {
    display: none;
  }
}

/* Small screens*/
@media only screen and (max-width: 1200px) {
  #menuToggle {
    display: block;
    position: relative;
    padding-top: 15px;
    /* centers 3 spans (22px tall) in a 65px bar */
    padding-left: 15px;
    height: 35px;
    background: #f5f5f5;
    z-index: 1;

    -webkit-user-select: none;
    user-select: none;
  }

  #menuToggle a {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    max-width: 200px;
  }

  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
    /* behind #menu (z-index: 1) but above page content */
  }

  #menuToggle input:checked~.menu-overlay {
    display: block;
  }

  /*
   * Just a quick hamburger
   */
  #menuToggle span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;

    background: #cdcdcd;
    border-radius: 3px;

    z-index: 1;

    transform-origin: 4px 0px;

    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
      opacity 0.55s ease;
  }

  #menuToggle span:first-child {
    transform-origin: 0% 0%;
  }

  #menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
  }

  /* 
   * Transform all the slices of hamburger
   * into a crossmark.
   */
  #menuToggle input:checked~span {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #232323;
  }

  /*
   * But let's hide the middle one.
   */
  #menuToggle input:checked~span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
  }

  /*
   * Ohyeah and the last one should go the other direction
   */
  #menuToggle input:checked~span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
  }

  /*
   * Make this absolute positioned
   * at the top left of the screen
   */
  #menu {
    position: absolute;
    width: 200px;
    margin: -100px 0 0 -15px;
    height: 100vh;
    min-height: 550px;
    padding: 30px;
    padding-top: 125px;

    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    /* to stop flickering of text in safari */

    transform-origin: 0% 0%;
    transform: translate(-100%, 0);

    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  }

  #menu li {
    padding: 5px 0;
    font-size: 18px;
    border-bottom: 1px solid #e0e0e0;
  }

  .menu-logo-item {
    padding: 0 0 20px 0 !important;
    text-align: center;
    list-style: none;
  }

  .menu-logo-item img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  /*
   * And let's slide it in from the left
   */
  #menuToggle input:checked~ul {
    transform: none;
  }
}