
.header_wrap {
  width: 100%;
  /* height: 100%; */
  /* padding: 0 var(--r48); */
  display: flex;
  column-gap: 50px;
  align-items: center;
  justify-content: center;
  position: relative;
}
.mob_bar {
  display: none;
}
.left_wrapper > ul,
.right_wrapper > ul {
  list-style: none;
  display: flex;
  align-items: center;
  column-gap: 50px;
  padding: unset !important;
}
li {
  font-size: 28;
  font-weight: 400;
  font-family: "Typo Gortesk Bold";
  color: var(--text100);
  padding-bottom: 7px;
  text-align: center;
}
li::after {
  display: block;
  content: "";
  background: var(--brand-yellow);
  height: 5px;
  border-radius: 10px;
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
}
li:hover::after {
  transform: scaleX(0.5);
}
.active::after {
  display: block;
  content: "";
  background: var(--brand-yellow);
  height: 5px;
  border-radius: 10px;
  transform: scaleX(0.5);
  transition: transform 250ms ease-in-out;
}
.logo_wrappper {
  background-color: var(--bg100);
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
}
.logo_wrappper > a > img {
  width: auto;
  height: 120px;
}
.end_wrapper {    
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0%, -60%);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.end_wrapper .lang-toggle {
  font-size: 14px;
  font-weight: 200;
  font-family: "Typo Gortesk Bold";
  color: var(--text100);
  border: var(--bg100) solid 1px;
  border-radius: 20px;
  height: 30px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.end_wrapper > img {
  width: 20px;
  height: auto;
  transform: translateY(-14px);
  cursor: pointer;
}

@media screen and (max-width: 560px) {
  .header_wrap{
    column-gap: 0;    
  }
  .header_wrap .desk_bar {
    display: none;
  }
  .header_wrap .mob_bar {
    display: block;
  }
  .logo_wrappper {
    transform: translateX(-5px);
    width: 130px;
    height: 130px; 
  }
  .logo_wrappper > a > img {
    width: auto;
    height: 90px;
    
  }
  #menu__toggle {
    opacity: 0;
  }

  #menu__toggle:checked ~ .menu__btn > span {
    transform: rotate(45deg);
  }

  #menu__toggle:checked ~ .menu__btn > span::before {
    top: 0;
    transform: rotate(0);
  }

  #menu__toggle:checked ~ .menu__btn > span::after {
    top: 0;
    transform: rotate(90deg);
    width: 100%;
  }

  #menu__toggle:checked ~ .menu__box {
    visibility: visible;
    left: 0;
  }

  .menu__btn {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translate(0%, -50%);
    width: 30px;
    height: 30px;

    cursor: pointer;
    z-index: 102;
  }
  .menu__btn > span {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--text100);
    transition-duration: 0.25s;
    border-radius: 5px;
  }
  .menu__btn > span::after {
    display: block;
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: var(--text100);
    transition-duration: 0.25s;
    border-radius: 5px;
    margin-top: 1px;
  }
  .menu__btn > span::before {
    content: "";
    top: -8px;
  }

  .menu__btn > span::after {
    content: "";
    top: 8px;
  }

  .end_wrapper {     
    transform: translate(0%, -55%);   
  }

  .end_wrapper .lang-toggle {
    font-size: 12px;
    border-radius: 20px;
    height: 20px;
    width: 40px;   
  }

  /* SIDE NAV */
  .menu__box {
    display: block;
    position: fixed;
    visibility: hidden;
    top: 0;
    left: -100%;
    width: 100vw;
    height: 100vh;
    margin: 0;    
    background: url("/assets/webp/footer_pattern.webp") var(--brand-yellow) no-repeat;
    background-size: cover;
    box-shadow: 1px 0px 6px rgba(0, 0, 0, 0.2);
    transition-duration: 0.25s;
    z-index: 101;
  }
  .menu__box ul{
    position: relative;
    list-style: none;
    padding: 100px 40px 40px;
    height: 100vh;
  }
  .menu__box ul li{
    text-align: left;
  }
  .menu__item {
    display: block;
    padding: 12px 24px 8px;

    color: var(--text100);

    font-family: "Typo Gortesk Bold", sans-serif;
    font-size: 30px;
    font-weight: 600;

    text-decoration: none;

    transition-duration: 0.25s;
  }
  .side__social__wrap{
    position: absolute;
    bottom: 10vh;
  }
}

@media screen and (max-width: 380px) {
  .side__social__wrap {
    position: absolute;
    bottom: 20vh;
  }
}
