@media (min-width: 768px) {
    .menu.hamburger {
        display: none;
    }
    .mobile-horizontal-menu {
        display: block;
    }
    .header .wrapper {
        position: fixed;
        width: 100%;
        pointer-events: none;
        background: transparent;
    }
    .header .wrapper .logo {
        z-index: 901;
    }
    .header .mobile-horizontal-menu {
        display: flex;
    }
    .header .nav-mobile {
        top: 0px;
        left: 0px;
        width: 100%;
        height: var(--window-height);
    }
    .header .nav-mobile>ul {
        padding: 30px 30px 30px 160px;
    }
    .header .nav-mobile .lang-item {
        display: none;
    }
    .header .nav-mobile .mobile-menu-item img {
        width: auto;
        height: 50vh;
    }
    
    #splash img {
        max-width: 33%;
        max-height: 33%;
    }
    div#nojscontent {
        margin-top: 150px;
    }
}

@media (min-width: 992px) {
    .header .wrapper .logo {
        z-index: 901;
        position: absolute;
        top: 25px;
        left: 25px;
    }
    .header .mobile-horizontal-menu {
        display: none;
    }
    .header .nav-main {
        position: absolute;
        top: 35px;
        right: 35px;
        display: block;
        pointer-events: all;
        align-self: start;
        /* background: rgb(255,255,255);
        background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 20%); */
    }
    .header .nav-main>ul>li {
        display: inline-block;
        padding: 5px 10px;
        background: #00000033;
        backdrop-filter: blur(40px);
        vertical-align: top;
    }
    .header .nav-main>ul>li:first-child {
        padding-left: 15px;
        border-radius: 20px 0px 0px 20px;
    }
    .header .nav-main>ul>li:nth-last-child(2) {
        padding-right: 15px;
        border-radius: 0px 20px 20px 0px;
    }

    .header .nav-main>ul>li:last-child>a {
        line-height: 100%;
    }

    .header .nav-main li:nth-last-child(n+2) a.has-submenu::after {
        content: " ";
        display: inline-block;
        width: 0px;
        height: 0px;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 6px solid white;
        border-bottom: 6px solid transparent;
        margin-left: 10px;
        min-width: 0%;
        transition-duration: 0.25s;
        transform-origin: 50% 25%;
        transform: translate(0px, 25%);
    }

    .header .nav-main li:hover a.has-submenu::after {
        transform: translate(0px, 25%) rotate(180deg);
    }

    .header .nav-main .submenu {
        /* position: absolute; */
        list-style: none;
        -webkit-padding-start: 0;
        margin-top: 0px;
        border-radius: 0px 0px 15px 15px;
        /* box-shadow: 2px 2px 10px #bfbfbf; */
        opacity: 0;
        pointer-events: none;
        left: 0px;
        min-width: 100%;
        height: 0;
        overflow: hidden;
    }
    .header .nav-main .submenu.visible {
        opacity: 1;
        pointer-events: initial;
        display: block;
        /* padding: 5px 10px; */
        margin-top: 5px;
        height: auto;
    }
    .header .nav-main>ul>li:not(:last-child) .submenu a {
        margin: 0px 0px 0px 5px;
        color: white;
        white-space: nowrap;
    }
    .header .nav-main img {
        /* vertical-align: baseline; */
    }
    .header .nav-mobile {
        display: none !important;
        pointer-events: none;
    }

    .header .logo-link {
        padding: 15px;
        border-radius: 100%;
        background: #00000033;
        backdrop-filter: blur(40px);
    }

    .header .logo-link img {
        padding: 10px 0px;
    }
    
    #splash img {
        max-width: 25%;
        max-height: 25%;
    }

    #contact-form {
        background: #00000033;
        backdrop-filter: blur(5px);
    }

    #contact-form .mobile {
        display: none;
    }

    #contact-form .desktop {
        display: block;
        position: absolute;
        left: 50%;
        top: 50%;
        width: 1000px;
        transform: translate(-50%, -50%);
    }

    #contact-form .body input, #contact-form .body textarea {
        margin-top: 20px;
        font-size: 18px;
    }

    .wpcf7-checkbox .wpcf7-list-item {

    }

    #contact-form .menu.cross {
        margin-right: 0px;
        margin-left: auto;
        float: right;
    }

    #contact-form .body {
        background: white;
        border-radius: 40px;
        margin-left: 300px;
        padding-left: 250px;
    }

    #contact-form .header {
        position: absolute;
        background: white;
        width: 400px;
        box-shadow: 8px 8px 16px 0px #00000030;
        border-radius: 40px;
        padding: 150px 50px;
        top: 50%;
        left: 75px;
        transform: translate(0%, -50%);
        overflow: hidden;
    }

    #contact-form .header .logo img {
        width: 100%;
        height: auto;
    }
}

@media (min-width: 1200px) {

}