@media screen and (max-width: 1060px) {
  .navigation-buttons .right-buttons{
    display: none;
  }

  .navigation-buttons {
    width: 100vw;
  }
  .page1 .logo-top-container {
    width: 48vw;
  }
  .page1 .logo-top-container .title {
    font-size: 9vw;
    letter-spacing: 0.3vw;
  }
  .page1 .logo-top-container img {
    width: 10vw;
    height: 10vw;    
  }
  .navigation-buttons .button, .navigation-buttons .mobile-button {
    display: inline-block;
    width: 10vw;
    height: 10vw;
  }
  .navigation-buttons .button img, .navigation-buttons .mobile-button img {
    padding-top: 1.5vw;
    padding-left: 1.5vw;
    width: 7vw;
    height: 7vw;
  }

  .navigation-buttons .mail-button {
    border-radius: 50%;
    background: var(--theme-orange);
    margin-right: 3vw;
  }

  .navigation-buttons .more-button {
    position: fixed;
    top: 0.5vh;
    right: 4vw;
  }
 
  .navigation-buttons .more-button img {
    margin-left: -4vw;
    stroke-width: 10;
    width: 10vw;
    height: 10vw;
  }

  .mobile-top-menu {
    width: 0;
    height: 0;
  }

  .mobile-real-menu {
    z-index: 300;
    position: fixed;
    top: 0;
    right: 0;
    height: 22vw;
    width: 50vw;
    color: white;
    font-family: "Brandon Grotesque Bold";
    border-bottom-left-radius: 4vw;
    font-size: 6vw;
    background: var(--theme-light-blue);
    display: flex;
    align-items: center;
  }

  .menu-background {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 200;
  }
  .mobile-top-menu .mobile-real-menu > div {
    margin-left: 4vw;
    width: calc(100% - 11vw);
    position: relative;
  }

  .mobile-top-menu .mobile-real-menu > div > div {
    margin-top: 1vw;
    margin-bottom: 1vw;
  }

  .mobile-top-menu .contact-label {
    margin-left: 0 !important;
    background: inherit !important;
    color: white;
    padding-left: 0 !important;
    padding: 0 !important;
  }
  .mobile-top-menu .close {
    position: fixed;
    z-index: 400;
    top: 1vw;
    right: 1.5vw;
    width: 6vw;
    height: 6vw;
  }
  .hidden .mobile-real-menu, .hidden .menu-background, .hidden .close {
    height: 0 !important;
    overflow: hidden !important;
  }
}