header {
  position: relative;
  display: flex;
  justify-content: space-between;
}

@media screen and (orientation: portrait){
  .pt-mobile{
    padding-top: 6vh;
  }
}


.header__button {
  z-index: 2;
  width: 4.5vh;
  height: 4.5vh;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  position: absolute;
  right: 1vh;
  top: 1vh;
  outline: none;
  animation-duration: 300ms;
  animation-timing-function: ease;
}

.header__button[data-open='true'] {
  animation-name: scale;
}

.header__button[data-open='false'] {
  transition: background-color 250ms linear;
}

@keyframes scale {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(100%);
  }
}

.header__nav {  position: fixed;
  overflow: hidden;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  visibility: hidden;
  clip-path: circle(var(--radius) at calc(100% - 55px) 47px);
}

.header__nav[data-active='true'] {
  visibility: visible;
}
.center-vertical{
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__menu {
  padding: 0;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin: 0;
}
.header__menu-item > a {
  font-size: 6.6rem;
}
@media (orientation:  portrait){
  .header__menu {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }  
  .header__nav.nav-js{
    padding-left: 15px;
    padding-right: 15px;
  }
  .header__menu > .header__menu-item {
    font-size: 5.1rem;
  }
  .header__menu-item{
    text-align: center;
  }
.header__menu-item > a {
  font-size: 12vw;
}
}


.header__menu > .header__menu-item:not(:last-of-type) {
  margin-bottom: 0.1em;
}

.header__menu-item a {
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.header__menu-item a:hover {
  font-weight: bold !important;
}
