* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    width:100%;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

@font-face {
    src: local("Inter"),
        url(./Inter.ttf) format("truetype");
    font-family: "Inter";
}


.h1 {
    font-family: "Inter", sans-serif;
    font-size: 6.25vw;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
    color: #1A1A1A;
    margin: 3vh 0;
}

.t1 {
    font-family: "Inter", sans-serif;
    font-size: 1vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #1A1A1A;
    max-width: 20vw;
    margin: 2vh 0;
}



.gr {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    padding: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2000;
    gap: 0;
}



.menu {
    width: 100%;
    height: 5vh;
    background-color: white;
    z-index: 1000;
    margin: 0;
    padding: 0 40px;
    border-bottom: 1px solid #1A1A1A;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-top: 10px;
}

.menu-main {
    display: flex;
    justify-content: center;
    gap: 1vw;
    list-style: none;
    font-size: 0;
    padding: 0;
    margin: 0;
    min-height: 3vh;
}

.menu-main a {
    position: relative;
    text-decoration: none;
    color: rgba(26, 26, 26, 0.8);
    font-size: 12px;
    padding-bottom: 10px;
    transition: color 0.3s ease-in-out;
}

.menu-main a.active {
    color: #1A1A1A;
    font-weight: 700;
    text-decoration: underline;
}


.menu-main li {
    display: flex;
    margin: 0;
    padding: 0;
}

.dropbtn {
    background: none;
    padding: 8px;
    border-radius: 100px;
    font-size: 1vw;
    width: max-content;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 5vh;
}

.menu.white .dropbtn {
    color: #1A1A1A;
    background-color: white;
}

.menu.dark .dropbtn {
    color: white;
    background-color: #1A1A1A;
}


.dropbtn:hover, .dropbtn:focus {
    background-color: #1A1A1A;
    color: white;
}

.dropdown {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    background-color: white;
}

.dropdown-content {
    display: none;
    position: fixed;
    width: 100px;
    height: 100px;
    margin-top: 20px;
    top: 20px;
    left: 50%;
    background-color: white;
    font-size: 12px;
    padding: 10px 6px;
    border: 1px #1A1A1A solid;
    /* box-shadow: 0px 8px 16px 0px rgba(0, 0 ,0, 0.2); */
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%);
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.dropdown-content.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) !important; 
    z-index: 11000;
}


.dropdown-content a {
    position: relative;
    color: #1A1A1A;
    padding: 6px 16px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.dropdown-content a:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background-color: #1A1A1A; /* Цвет линии */
}

.dropdown-content a:hover {
    text-decoration: underline;
}

.menu-main a.active {
    text-decoration: underline;
    text-decoration-thickness: 1px; /* Толщина линии */
    text-underline-offset: 4px; /* Отступ от текста */
    text-decoration-color: #1A1A1A; /* Цвет подчёркивания */
}


.burger {
    display: none;
    flex-direction: column;
    gap: 9px;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 30px;
    z-index: 110;
    overflow: hidden;
}

.burger span {
    display: block;
    width: 40px;
    height: 4px;
    background: #1A1A1A;
    transition: 0.3s ease-in-out;
}


.burger.active span:nth-child(1) {
    transform: translateY(13px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-13px) rotate(-45deg);
}


.link {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-style: normal;
    text-decoration: none;
    font-weight: 400;
    line-height: normal;
    color: #1A1A1A; 
    padding: 0;
    letter-spacing: 0;
    text-align: center;
}


.link-accent {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 0.7vw;
    font-style: normal;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    line-height: normal;
    color: #1A1A1A; 
    padding: 0;
    letter-spacing: 0;
    text-align: center;
}


.viewport {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
    cursor: grab;
}

.viewport:active {
    cursor: grabbing;
}

.content {
    position: absolute;
    top: 0;
    left: 0;
}

.header {
    position: relative;
    top: 100px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 6vh;
    gap: 2vh;
}

img {
    pointer-events: none;
}

.content img {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: auto;
}


.img1 {
    top: 0;
    left: 0px;
}

.img2 {
    top: -650px;
    left: 200px;
}

.img3 {
    top: 100px;
    left: 600px;
}

.img4 {
    top: -800px;
    left: 0px;
}

.img5 {
    top: -500px;
    left: 800px;
}

.img6 {
    top: -300px;
    left: 100px;
}

.img7 {
    top: -1000px;
    left: 700px;
}

.img8 {
    top: -1200px;
    left: -800px;
}

.img9 {
    top: -1800px;
    left: 500px;
}

.img10 {
    top: -1200px;
    left: -650px;
}

.img11 {
    top: -1300px;
    left: 350px;
}

.img12 {
    top: -1300px;
    left: -900px;
}

.img13 {
    top: -1650px;
    left: 1300px;
}

.img14 {
    top: -1000px;
    left: -250px;
}

.img15 {
    top: -900px;
    left: 200px;
}

.img16 {
    top: -2000px;
    left: -1300px;
}

.img17 {
    top: -1350px;
    left: -300px;
}

.img18 {
    top: -2800px;
    left: -300px;
}

.img19 {
    top: -1650px;
    left: -1000px;
}

.img20 {
    top: -1950px;
    left: 730px;
}

.img21 {
    top: -2000px;
    left: -1100px
}

.img22 {
    top: -2500px;
    left: -1450px;
}

.img23 {
    top: -1870px;
    left: -1300px;
}

.img24 {
    top: -1550px;
    left: -1000px;
}

.img25 {
    top: -3400px;
    left: -750px;
}

.img26 {
    top: -3800px;
    left: 1000px;
}

.img27 {
    top: -2000px;
    left: 200px;
}

.img29 {
    top: -2800px;
    left: 400px;
}

.img28 {
    top: -2000px;
    left: 300px;
}

.img30 {
    top: -4750px;
    transform: rotate(90deg);
}

.img32 {
   top: -4000px;
   left: 1100px;
}

.img33 {
    top: -2600px;
    left: 1200px;
}

.img34 {
    top: -2600px;
    left: 400px;
}

.img35 {
    top: -5000px;
    left: -1200px;
}

.img36 {
    top: -2900px;
    left: -800px;
}

.img39 {
   top: -3800px;
   left: -1650px; 
}

.img40 {
    left: -150px;
    top: -5800px;
}

.img41 {
    top: -3500px;
    left: -800px;
}

.img42 {
    top: -5900px;
    left: 1000px;
}


.img43 {
    top: -5550px;
    left: -1350px;
}

@media screen and (min-width: 320px) and (max-width: 490px) {
    .h1 {
        display: block;
        font-family: "Inter", sans-serif;
        font-size: 12vw;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
        text-align: center;
        color: #1A1A1A;
        margin: 1vh 0;
    }

    .t1 {
        font-size: 3vw;
        text-align: center;
        min-width: 100%;
    }

    nav {
        height: 12%;
    }

    .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 10%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 50px;
        z-index: 1000;
        background: white; 
    }


    .menu-main {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: white;
        z-index: 100;
        padding: 10px;
        justify-content: center;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        font-size: 4px !important;
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }

    .menu-main.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .dropbtn {
        position: absolute;
        top: 30%;
        right: 20px;
        background: none;
        color: #1A1A1A;
        padding: 4px;
        width: 56px;
        height: 56px;
        border-radius: 100px;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .lang-icon {
        width: 52px;
        height: 52px;
    }
    .dropbtn:focus {
        background-color: #1A1A1A;
        color: white;
    }
    
    .dropdown {
        position: absolute;
        top: 10%;
        transform: translateY(-10%);
    }
    
    .dropdown-content {
        position: absolute;
        width: 160px;
        height: 150px;
        margin-top: 20px;
        top: 100%;
        left: 55%;
        background-color: white;
        font-size: 4vw;
        padding: 10px;
        border: 1px #1A1A1A solid;
        z-index: 1100;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%);
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
    }
    
    .dropdown-content.show {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(-50%) !important; 
        z-index: 1100;
    }
    
    
    .dropdown-content a {
        position: relative;
        color: #1A1A1A;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: center;
    }
    
    .dropdown-content a:not(:last-child)::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 10%;
        width: 80%;
        height: 1px;
        background-color: #1A1A1A; /* Цвет линии */
    }
    
    .dropdown-content a:hover {
        text-decoration: underline;
    }
    
    .menu-main a.active {
        text-decoration: underline;
        text-decoration-thickness: 4px; /* Толщина линии */
        text-underline-offset: 10px; /* Отступ от текста */
        text-decoration-color: #1A1A1A; /* Цвет подчёркивания */
    }
    

    .burger {
        display: flex;
        position: absolute;
        top: 30%;
        left: 32px;
        margin-bottom: 20px;
    }


    
    .screen {
        position: relative;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        width: 100vw;
        height: 100%;
        padding: 80px 20px;
        transition: transform 0.5s ease-in-out, opacity 0.3s ease-in-out;
        background-color: white;
        overflow: visible;
    }

    .viewport {
        width: 100vw;
        height: 100vh;
        overflow: hidden;
        position: relative;
        background: #f0f0f0;
        cursor: grab;
    }
    
    .viewport:active {
        cursor: grabbing;
    }
    
    .content {
        position: absolute;
        top: 0;
        left: 0;
    }


    .header {
        display: block;
        position: relative;
        top: 80px;
        left: 10%;
        width: 100%;
        text-align: center;
        padding-top: 4vh;
        z-index: 100;
        max-width: 70vw;
        padding: 0;
    }

    img {
        pointer-events: none;
    }
    
    .content img {
        position: relative;
        width: 100%;
        max-width: 300px;
        height: auto;
    }

    .img1 {
        width: 40%;
        top: 170px;
        left: -50px;
    }

    .img2 {
        left: -250px;
        top: -750px;
    }

    .img3 {
        top: -200px;
        left: 700px;
    }

    .img4 {
        left: 100px; 
        top: -2300px;
    }

    .img5 {
        top: -1650px;
        left: 400px; 
    }

    .img6 {
        top: -1600px;
        left: 300px; 
    }

    .img7 {
        top: -3200px;
        left: 500px; 
    }

    .img8 {
        top: -3500px;
        left: -300px; 
    }

    .img9 {
        top: -3300px;
        left: 200px; 
    }

    .img10 {
        top: -3000px;
        left: -400px; 
    }

    .img11 {
        top: -4000px;
        left: -200px; 
    }

    .img12 {
        top: -4100px;
        left: -600px; 
    }

    .img13 {
        top: -4300px;
        left: 600px; 
    }

    .img14 {
        top: -3400px;
        left: 200px; 
    }

    .img15 {
        top: -3300px;
        left: 400px; 
    }

    .img15 {
        top: -3300px;
        left: 400px; 
    }

    .img16 {
        top: -5900px;
        left: -650px;
    }

    .img17 {
        top: -4600px;
        left: -150px;
    }

    .img18 {
        top: -6800px;
        left: -450px;
    }

    .img19 {
        top: -5300px;
        left: -500px;
    }

    .img20 {
        top: -6500px;
        left: 1000px;
    }

    .img21 {
        top: -6500px;
        left: -1200px;
    }

    .img22 {
        top: -7500px;
        left: -1000px;
    }

    .img23 {
        top: -6800px;
        left: -850px;
    }

    .img24 {
        top: -6800px;
        left: -500px;
    }

    .img25 {
        top: -8900px;
        left: -1000px;
    }

    .img26 {
        top: -9500px;
        left: 600px;
    }

    .img27 {
        top: -7500px;
        left: 750px;
    }

    .img28 {
        top: -7400px;
        left: 750px;
    }

    .img29 {
        top: -8200px;
        left: 0;
    }

    .img30 {
        top: -11200px;
        left: 100px;
    }

    .img33 {
        top: -8700px;
        left: 500px;
    }

    .img32 {
        top: -11100px;
        left: 850px;
    }

    .img34 {
        top: -9200px;
        left: 100px;
    }

    .img35 {
        top: -13300px;
        left: -760px;
    }

    .img36 {
        top: -10650px;
        left: 50px;
    }

    .img39 {
        top: -12300px;
        left: -850px;
    }

    .img40 {
        top: -14700px;
        left: 100px;
    }

    .img42 {
        top: -14800px;
        left: 550px;
    }

    .img43 {
        top: -14700px;
        left: -850px;
    }
}

@media screen and (min-width: 1441px) {
    .menu {
        width: 100%;
        height: 5vh;
        background-color: white;
        z-index: 1000;
        margin: 0;
        padding: 0 40px;
        border-bottom: 1px solid #1A1A1A;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        padding-top: 10px;
    }
    
    .menu-main {
        display: flex;
        justify-content: center;
        gap: 1vw;
        list-style: none;
        font-size: 0;
        padding: 0;
        margin: 0;
        min-height: 3vh;
    }
    
    .menu-main a {
        position: relative;
        text-decoration: none;
        color: rgba(26, 26, 26, 0.8);
        font-size: 20px;
        padding-bottom: 10px;
        transition: color 0.3s ease-in-out;
    }
    
    .menu-main a.active {
        color: #1A1A1A;
        font-weight: 700;
        text-decoration: underline;
    }
    
    
    .menu-main li {
        display: flex;
        margin: 0;
        padding: 0;
    }
    
    .dropbtn {
        background: none;
        padding: 8px;
        border-radius: 100px;
        font-size: 1vw;
        width: max-content;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        max-height: 5vh;
    }
    
    

    .t1 {
        font-family: "Inter", sans-serif;
        font-size: 1vw;
        line-height: 1.2vw;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        max-width: 30vw;
        margin: 20px 0;
    }


    .dropbtn svg {
        width: 30px;
        height: 30px;
    }

    .dropdown-content {
        display: none;
        position: fixed;
        width: 160px;
        height: 160px;
        margin-top: 40px;
        top: 20px;
        left: 50%;
        font-size: 20px;
        padding: 10px 6px;
        /* box-shadow: 0px 8px 16px 0px rgba(0, 0 ,0, 0.2); */
        z-index: 1100;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%);
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
        overflow: hidden;
    }
    
    .dropdown-content.show {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(-50%) !important; 
        z-index: 1100;
    }
    
    
    .dropdown-content a {
        position: relative;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: center;
    }
    
    


    footer {
        position: relative;
        left: 0;
        bottom: 0;
        background-color: #1A1A1A;
        color: white;
        padding: 4vh 80px;
        text-align: left;
    }
    
    .footer-container {
        width: 100%;
        margin: 0;
    }
    
    .footer-menu {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 20px;
        text-align: left;
        font-size: 16px;
        margin-bottom: 30px;
        pointer-events: auto;
    }

    .footer-menu .link {
        font-size: 18px;
    }
    
    .footer-menu div {
        display: flex;
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
        flex-grow: 1;
        margin-left: 20px;
    }
    
    .footer-menu a {
        position: relative;
        color: white;
        text-decoration: none;
        display: block;
        margin-bottom: 10px;
        text-align: left;
        z-index: 10;
    }
    
    .accent {
        position: relative;
        color: white;
        text-decoration: none;
        display: block;
        margin-bottom: 10px;
        text-align: left;
        z-index: 10;
        text-transform: uppercase;
        font-weight: bold;
    }
    
    .footer-menu a:hover {
        text-decoration: underline;
    }
    
    .footer-form {
        display: flex;
        justify-content: center;
        font-size: 16px;
        gap: 160px;
        margin: 80px 0;
        padding: 0 40px 0;
        height: 60px;
    }
    
    .footer-form input {
        display: flex;
        align-items: center;
        padding: 16px;
        width: 40%;
        border: 2px solid white;
        background: transparent;
        color: white;
        font-size: 12px;
        line-height: 1;
        height: 60px;
    }
    
    .footer-form input::placeholder {
        color: gray;
        font-size: 20px;
    }
    
    .footer-button {
        background: white;
        color: #1A1A1A;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        border-radius: 20px;
        font-weight: bold;
        max-width: 20vw;
        font-size: 20px;
        height: 60px;
    }
    
    .footer-bottom {
        width: 100%;
        font-size: 18px;
        border-top: 2px solid white;
        padding-top: 10px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .footer-bottom div {
        flex-grow: 1;
        text-align: center;
        margin-top: 40px;
    }
    
    .firma {
        font-family: "Inter", sans-serif;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        color: white;
        text-transform: uppercase;
        margin: 0;
        text-wrap: nowrap;
    }

    .img1 {
        top: -100px;
        left: 300px;
    }
    
    .img2 {
        top: -750px;
        left: 500px;
    }
    
    .img3 {
        top: 200px;
        left: 800px;
    }
    
    .img4 {
        top: -1100px;
        left: 300px;
    }
    
    .img5 {
        top: -250px;
        left: 100px;
    }
    
    .img6 {
        top: 50px;
        left: -800px;
    }
    
    .img7 {
        top: -1000px;
        left: 1600px;
    }
    
    .img8 {
        top: -1600px;
        left: 100px;
    }
    
    .img9 {
        top: -1600px;
        left: 200px;
    }
    
    .img10 {
        top: -1000px;
        left: -700px;
    }
    
    .img11 {
        top: -1200px;
        left: 0;
    }
    
    .img12 {
        top: -1250px;
        left: -1100px;
    }
    
    .img13 {
        top: -1200px;
        left: 1700px;
    }
    
    .img14 {
        top: -600px;
        left: 200px;
    }
    
    .img15 {
        top: -600px;
        left: 450px;
    }

    .img16 {
        top: -1900px;
        left: -900px;
    }

    .img17 {
        top: -800px;
        left: -1100px;
    }

    .img18 {
        top: -2400px;
        left: -1150px;
    }

    .img19 {
        top: -1650px;
        left: -100px;
    }

    .img20 {
        top: -1650px;
        left: 1800px;
    }

    .img21 {
        top: -1500px;
        left: -1100px
    }

    .img22 {
        top: -2000px;
        left: -1450px;
    }

    .img23 {
        top: -2100px;
        left: -1400px;
    }

    .img24 {
        top: -1000px;
        left: -1400px;
    }

    .img25 {
        top: -3200px;
        left: -700px;
    }

    .img26 {
        top: -3000px;
        left: 1300px;
    }

    .img27 {
        top: -1500px;
        left: 800px;
    }

    .img29 {
        top: -1300px;
        left: -700px;
    }

    .img28 {
        top: -1600px;
        left: 900px;
    }

    .img30 {
        top: -3650px;
        left: -700px;
        transform: rotate(90deg);
    }

    .img32 {
        top: -3300px;
        left: 2000px;
    }

    .img33 {
        top: -2200px;
        left: 1900px;
    }

    .img34 {
        top: -1600px;
        left: 400px;
    }

    .img35 {
        top: -4000px;
        left: -900px;
    }

    .img36 {
        top: -1800px;
        left: -1100px;
    }

    .img39 {
    top: -3700px;
    left: -1850px; 
    }

    .img40 {
        left: -150px;
        top: -500px;
    }

    .img41 {
        top: -2600px;
        left: -600px;
    }

    .img42 {
        top: -4700px;
        left: 700px;
    }


    .img43 {
        top: -4600px;
        left: -1250px;
    }
    
    
}


@media screen and (min-width: 2560px) {
    .menu {
        width: 100%;
        height: 5vh;
        background-color: white;
        z-index: 1000;
        margin: 0;
        padding: 0 40px;
        border-bottom: 1px solid #1A1A1A;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        padding-top: 10px;
    }
    
    .menu-main {
        display: flex;
        justify-content: center;
        gap: 1vw;
        list-style: none;
        font-size: 0;
        padding: 0;
        margin: 0;
        min-height: 3vh;
    }
    
    .menu-main a {
        position: relative;
        text-decoration: none;
        color: rgba(26, 26, 26, 0.8);
        font-size: 20px;
        padding-bottom: 10px;
        transition: color 0.3s ease-in-out;
    }
    
    .menu-main a.active {
        color: #1A1A1A;
        font-weight: 700;
        text-decoration: underline;
    }
    
    
    .menu-main li {
        display: flex;
        margin: 0;
        padding: 0;
    }
    
    .dropbtn {
        background: none;
        padding: 8px;
        border-radius: 100px;
        font-size: 1vw;
        width: max-content;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        max-height: 5vh;
    }
    
    

    .t1 {
        font-family: "Inter", sans-serif;
        font-size: 1vw;
        line-height: 1.2vw;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        max-width: 30vw;
        margin: 20px 0;
    }


    .dropbtn svg {
        width: 30px;
        height: 30px;
    }

    .dropdown-content {
        display: none;
        position: fixed;
        width: 160px;
        height: 160px;
        margin-top: 40px;
        top: 20px;
        left: 50%;
        font-size: 20px;
        padding: 10px 6px;
        /* box-shadow: 0px 8px 16px 0px rgba(0, 0 ,0, 0.2); */
        z-index: 1100;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%);
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
        overflow: hidden;
    }
    
    .dropdown-content.show {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(-50%) !important; 
        z-index: 1100;
    }
    
    
    .dropdown-content a {
        position: relative;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: center;
    }
    
    


    footer {
        position: relative;
        left: 0;
        bottom: 0;
        background-color: #1A1A1A;
        color: white;
        padding: 4vh 80px;
        text-align: left;
    }
    
    .footer-container {
        width: 100%;
        margin: 0;
    }
    
    .footer-menu {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 20px;
        text-align: left;
        font-size: 16px;
        margin-bottom: 30px;
        pointer-events: auto;
    }

    .footer-menu .link {
        font-size: 18px;
    }
    
    .footer-menu div {
        display: flex;
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
        flex-grow: 1;
        margin-left: 20px;
    }
    
    .footer-menu a {
        position: relative;
        color: white;
        text-decoration: none;
        display: block;
        margin-bottom: 10px;
        text-align: left;
        z-index: 10;
    }
    
    .accent {
        position: relative;
        color: white;
        text-decoration: none;
        display: block;
        margin-bottom: 10px;
        text-align: left;
        z-index: 10;
        text-transform: uppercase;
        font-weight: bold;
    }
    
    .footer-menu a:hover {
        text-decoration: underline;
    }
    
    .footer-form {
        display: flex;
        justify-content: center;
        font-size: 16px;
        gap: 160px;
        margin: 80px 0;
        padding: 0 40px 0;
        height: 60px;
    }
    
    .footer-form input {
        display: flex;
        align-items: center;
        padding: 16px;
        width: 40%;
        border: 2px solid white;
        background: transparent;
        color: white;
        font-size: 12px;
        line-height: 1;
        height: 60px;
    }
    
    .footer-form input::placeholder {
        color: gray;
        font-size: 20px;
    }
    
    .footer-button {
        background: white;
        color: #1A1A1A;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        border-radius: 20px;
        font-weight: bold;
        max-width: 20vw;
        font-size: 20px;
        height: 60px;
    }
    
    .footer-bottom {
        width: 100%;
        font-size: 18px;
        border-top: 2px solid white;
        padding-top: 10px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .footer-bottom div {
        flex-grow: 1;
        text-align: center;
        margin-top: 40px;
    }
    
    .firma {
        font-family: "Inter", sans-serif;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        color: white;
        text-transform: uppercase;
        margin: 0;
        text-wrap: nowrap;
    }

    .img1 {
        top: -100px;
        left: 300px;
    }
    
    .img2 {
        top: -850px;
        left: 700px;
    }
    
    .img3 {
        top: 200px;
        left: 900px;
    }
    
    .img4 {
        top: -900px;
        left: 500px;
    }
    
    .img5 {
        top: -50px;
        left: -100px;
    }
    
    .img6 {
        top: 50px;
        left: -800px;
    }
    
    .img7 {
        top: -1100px;
        left: 200px;
    }
    
    .img8 {
        top: -950px;
        left: -1600px;
    }
    
    .img9 {
        top: -1700px;
        left: 1000px;
    }
    
    .img10 {
        top: -1100px;
        left: -300px;
    }
    
    .img11 {
        top: -1300px;
        left: 1200px;
    }
    
    .img12 {
        top: -1150px;
        left: -500px;
    }
    
    .img13 {
        top: -800px;
        left: 600px;
    }
    
    .img14 {
        top: -200px;
        left: -1200px;
    }
    
    .img15 {
        top: 100px;
        left: -700px;
    }

    .img16 {
        top: -1500px;
        left: -2000px;
    }

    .img17 {
        top: -700px;
        left: -100px;
    }

    .img18 {
        top: -2300px;
        left: 250px;
    }

    .img19 {
        top: -1050px;
        left: -700px;
    }

    .img20 {
        top: -1650px;
        left: 1300px;
    }

    .img21 {
        top: -1500px;
        left: -2000px
    }

    .img22 {
        top: -2000px;
        left: -2350px;
    }

    .img23 {
        top: -1100px;
        left: -2400px;
    }

    .img24 {
        top: -600px;
        left: -1400px;
    }

    .img25 {
        top: -2700px;
        left: -300px;
    }

    .img26 {
        top: -3100px;
        left: 1800px;
    }

    .img27 {
        top: -1100px;
        left: 1000px;
    }

    .img29 {
        top: -1800px;
        left: 1200px;
    }

    .img28 {
        top: -1200px;
        left: 1100px;
    }

    .img30 {
        top: -3250px;
        left: -700px;
        transform: rotate(90deg);
    }

    .img32 {
        top: -2800px;
        left: 700px;
    }

    .img33 {
        top: -2300px;
        left: 500px;
    }

    .img34 {
        top: -1200px;
        left: 400px;
    }

    .img35 {
        top: -3600px;
        left: -100px;
    }

    .img36 {
        top: -2200px;
        left: 2200px;
    }

    .img39 {
        top: -2600px;
        left: -1250px; 
    }

    .img40 {
        left: 1250px;
        top: -1900px;
    }

    .img41 {
        top: -1800px;
        left: -2000px;
    }

    .img42 {
        top: -3600px;
        left: -200px;
    }


    .img43 {
        top: -3600px;
        left: -2350px;
    }
    
    
}

@media screen and (min-width: 2880px) {
    .menu {
        width: 100%;
        height: 5vh;
        background-color: white;
        z-index: 1000;
        margin: 0;
        padding: 0 40px;
        border-bottom: 1px solid #1A1A1A;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        padding-top: 10px;
    }
    
    .menu-main {
        display: flex;
        justify-content: center;
        gap: 1vw;
        list-style: none;
        font-size: 0;
        padding: 0;
        margin: 0;
        min-height: 3vh;
    }
    
    .menu-main a {
        position: relative;
        text-decoration: none;
        color: rgba(26, 26, 26, 0.8);
        font-size: 20px;
        padding-bottom: 10px;
        transition: color 0.3s ease-in-out;
    }
    
    .menu-main a.active {
        color: #1A1A1A;
        font-weight: 700;
        text-decoration: underline;
    }
    
    
    .menu-main li {
        display: flex;
        margin: 0;
        padding: 0;
    }
    
    .dropbtn {
        background: none;
        padding: 8px;
        border-radius: 100px;
        font-size: 1vw;
        width: max-content;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        max-height: 5vh;
    }
    
    

    .t1 {
        font-family: "Inter", sans-serif;
        font-size: 1vw;
        line-height: 1.2vw;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        max-width: 30vw;
        margin: 20px 0;
    }


    .dropbtn svg {
        width: 30px;
        height: 30px;
    }

    .dropdown-content {
        display: none;
        position: fixed;
        width: 160px;
        height: 160px;
        margin-top: 40px;
        top: 20px;
        left: 50%;
        font-size: 20px;
        padding: 10px 6px;
        /* box-shadow: 0px 8px 16px 0px rgba(0, 0 ,0, 0.2); */
        z-index: 1100;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%);
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
        overflow: hidden;
    }
    
    .dropdown-content.show {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(-50%) !important; 
        z-index: 1100;
    }
    
    
    .dropdown-content a {
        position: relative;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: center;
    }
    
    


    footer {
        position: relative;
        left: 0;
        bottom: 0;
        background-color: #1A1A1A;
        color: white;
        padding: 4vh 80px;
        text-align: left;
    }
    
    .footer-container {
        width: 100%;
        margin: 0;
    }
    
    .footer-menu {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 20px;
        text-align: left;
        font-size: 16px;
        margin-bottom: 30px;
        pointer-events: auto;
    }

    .footer-menu .link {
        font-size: 18px;
    }
    
    .footer-menu div {
        display: flex;
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
        flex-grow: 1;
        margin-left: 20px;
    }
    
    .footer-menu a {
        position: relative;
        color: white;
        text-decoration: none;
        display: block;
        margin-bottom: 10px;
        text-align: left;
        z-index: 10;
    }
    
    .accent {
        position: relative;
        color: white;
        text-decoration: none;
        display: block;
        margin-bottom: 10px;
        text-align: left;
        z-index: 10;
        text-transform: uppercase;
        font-weight: bold;
    }
    
    .footer-menu a:hover {
        text-decoration: underline;
    }
    
    .footer-form {
        display: flex;
        justify-content: center;
        font-size: 16px;
        gap: 160px;
        margin: 80px 0;
        padding: 0 40px 0;
        height: 60px;
    }
    
    .footer-form input {
        display: flex;
        align-items: center;
        padding: 16px;
        width: 40%;
        border: 2px solid white;
        background: transparent;
        color: white;
        font-size: 12px;
        line-height: 1;
        height: 60px;
    }
    
    .footer-form input::placeholder {
        color: gray;
        font-size: 20px;
    }
    
    .footer-button {
        background: white;
        color: #1A1A1A;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        border-radius: 20px;
        font-weight: bold;
        max-width: 20vw;
        font-size: 20px;
        height: 60px;
    }
    
    .footer-bottom {
        width: 100%;
        font-size: 18px;
        border-top: 2px solid white;
        padding-top: 10px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .footer-bottom div {
        flex-grow: 1;
        text-align: center;
        margin-top: 40px;
    }
    
    .firma {
        font-family: "Inter", sans-serif;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        color: white;
        text-transform: uppercase;
        margin: 0;
        text-wrap: nowrap;
    }

    .img1 {
        top: -100px;
        left: 600px;
    }
    
    .img2 {
        top: -850px;
        left: 700px;
    }
    
    .img3 {
        top: 20px;
        left: 1200px;
    }
    
    .img4 {
        top: -900px;
        left: 500px;
    }
    
    .img5 {
        top: 0px;
        left: 200px;
    }
    
    .img6 {
        top: 50px;
        left: -500px;
    }
    
    .img7 {
        top: -900px;
        left: 350px;
    }
    
    .img8 {
        top: -950px;
        left: -1600px;
    }
    
    .img9 {
        top: -1200px;
        left: -1400px;
    }
    
    .img10 {
        top: -1300px;
        left: 100px;
    }
    
    .img11 {
        top: -1400px;
        left: 1500px;
    }
    
    .img12 {
        top: -1150px;
        left: -100px;
    }
    
    .img13 {
        top: -1000px;
        left: 1200px;
    }
    
    .img14 {
        top: -300px;
        left: -550px;
    }
    
    .img15 {
        top: 100px;
        left: -200px;
    }

    .img16 {
        top: -1600px;
        left: -1700px;
    }

    .img17 {
        top: -600px;
        left: -1900px;
    }

    .img18 {
        top: -1750px;
        left: -1850px;
    }

    .img19 {
        top: -1400px;
        left: 150px;
    }

    .img20 {
        top: -1650px;
        left: 2300px;
    }

    .img21 {
        top: -1550px;
        left: -1300px
    }

    .img22 {
        top: -2000px;
        left: -1550px;
    }

    .img23 {
        top: -1100px;
        left: -1600px;
    }

    .img24 {
        top: -800px;
        left: -1250px;
    }

    .img25 {
        top: -2100px;
        left: -2100px;
    }

    .img26 {
        top: -2350px;
        left: -50px;
    }

    .img27 {
        top: -700px;
        left: -700px;
    }

    .img29 {
        top: -1800px;
        left: 2200px;
    }

    .img28 {
        top: -1300px;
        left: 2150px;
    }

    .img30 {
        top: -3250px;
        left: 200px;
        transform: rotate(90deg);
    }

    .img32 {
        top: -2700px;
        left: 1650px;
    }

    .img33 {
        top: -1200px;
        left: 1300px;
    }

    .img34 {
        top: -600px;
        left: 500px;
    }

    .img35 {
        top: -750px;
        left: -900px;
    }

    .img36 {
        top: -2200px;
        left: 2200px;
    }

    .img39 {
        top: -2000px;
        left: -2700px; 
    }

    .img40 {
        left: 1650px;
        top: -3400px;
    }

    .img41 {
        top: -1800px;
        left: -2000px;
    }

    .img42 {
        top: -3500px;
        left: 1500px;
    }


    .img43 {
        top: -3250px;
        left: -1150px;
    }
    
    
}

@media screen and (min-width: 3440px) {
    .menu {
        width: 100%;
        height: 5vh;
        background-color: white;
        z-index: 1000;
        margin: 0;
        padding: 0 40px;
        border-bottom: 1px solid #1A1A1A;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        padding-top: 10px;
    }
    
    .menu-main {
        display: flex;
        justify-content: center;
        gap: 1vw;
        list-style: none;
        font-size: 0;
        padding: 0;
        margin: 0;
        min-height: 3vh;
    }
    
    .menu-main a {
        position: relative;
        text-decoration: none;
        color: rgba(26, 26, 26, 0.8);
        font-size: 20px;
        padding-bottom: 10px;
        transition: color 0.3s ease-in-out;
    }
    
    .menu-main a.active {
        color: #1A1A1A;
        font-weight: 700;
        text-decoration: underline;
    }
    
    
    .menu-main li {
        display: flex;
        margin: 0;
        padding: 0;
    }
    
    .dropbtn {
        background: none;
        padding: 8px;
        border-radius: 100px;
        font-size: 1vw;
        width: max-content;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        max-height: 5vh;
    }
    
    

    .t1 {
        font-family: "Inter", sans-serif;
        font-size: 1vw;
        line-height: 1.2vw;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        max-width: 30vw;
        margin: 20px 0;
    }


    .dropbtn svg {
        width: 30px;
        height: 30px;
    }

    .dropdown-content {
        display: none;
        position: fixed;
        width: 160px;
        height: 160px;
        margin-top: 40px;
        top: 20px;
        left: 50%;
        font-size: 20px;
        padding: 10px 6px;
        /* box-shadow: 0px 8px 16px 0px rgba(0, 0 ,0, 0.2); */
        z-index: 1100;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%);
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
        overflow: hidden;
    }
    
    .dropdown-content.show {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(-50%) !important; 
        z-index: 1100;
    }
    
    
    .dropdown-content a {
        position: relative;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: center;
    }
    
    


    footer {
        position: relative;
        left: 0;
        bottom: 0;
        background-color: #1A1A1A;
        color: white;
        padding: 4vh 80px;
        text-align: left;
    }
    
    .footer-container {
        width: 100%;
        margin: 0;
    }
    
    .footer-menu {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 20px;
        text-align: left;
        font-size: 16px;
        margin-bottom: 30px;
        pointer-events: auto;
    }

    .footer-menu .link {
        font-size: 18px;
    }
    
    .footer-menu div {
        display: flex;
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
        flex-grow: 1;
        margin-left: 20px;
    }
    
    .footer-menu a {
        position: relative;
        color: white;
        text-decoration: none;
        display: block;
        margin-bottom: 10px;
        text-align: left;
        z-index: 10;
    }
    
    .accent {
        position: relative;
        color: white;
        text-decoration: none;
        display: block;
        margin-bottom: 10px;
        text-align: left;
        z-index: 10;
        text-transform: uppercase;
        font-weight: bold;
    }
    
    .footer-menu a:hover {
        text-decoration: underline;
    }
    
    .footer-form {
        display: flex;
        justify-content: center;
        font-size: 16px;
        gap: 160px;
        margin: 80px 0;
        padding: 0 40px 0;
        height: 60px;
    }
    
    .footer-form input {
        display: flex;
        align-items: center;
        padding: 16px;
        width: 40%;
        border: 2px solid white;
        background: transparent;
        color: white;
        font-size: 12px;
        line-height: 1;
        height: 60px;
    }
    
    .footer-form input::placeholder {
        color: gray;
        font-size: 20px;
    }
    
    .footer-button {
        background: white;
        color: #1A1A1A;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        border-radius: 20px;
        font-weight: bold;
        max-width: 20vw;
        font-size: 20px;
        height: 60px;
    }
    
    .footer-bottom {
        width: 100%;
        font-size: 18px;
        border-top: 2px solid white;
        padding-top: 10px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .footer-bottom div {
        flex-grow: 1;
        text-align: center;
        margin-top: 40px;
    }
    
    .firma {
        font-family: "Inter", sans-serif;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        color: white;
        text-transform: uppercase;
        margin: 0;
        text-wrap: nowrap;
    }

    .img1 {
        top: -100px;
        left: 600px;
    }
    
    .img2 {
        top: -900px;
        left: 700px;
    }
    
    .img3 {
        top: 20px;
        left: 1200px;
    }
    
    .img4 {
        top: -900px;
        left: 500px;
    }
    
    .img5 {
        top: 0px;
        left: 200px;
    }
    
    .img6 {
        top: 50px;
        left: -500px;
    }
    
    .img7 {
        top: -700px;
        left: 650px;
    }
    
    .img8 {
        top: -950px;
        left: -1600px;
    }
    
    .img9 {
        top: -1200px;
        left: -1400px;
    }
    
    .img10 {
        top: -800px;
        left: -2600px;
    }
    
    .img11 {
        top: -900px;
        left: -1200px;
    }
    
    .img12 {
        top: -1150px;
        left: 600px;
    }
    
    .img13 {
        top: -900px;
        left: 2100px;
    }
    
    .img14 {
        top: -100px;
        left: 200px;
    }
    
    .img15 {
        top: 100px;
        left: 600px;
    }

    .img16 {
        top: -1600px;
        left: -1100px;
    }

    .img17 {
        top: -600px;
        left: -1300px;
    }

    .img18 {
        top: -1750px;
        left: -1250px;
    }

    .img19 {
        top: -900px;
        left: -1950px;
    }

    .img20 {
        top: -1250px;
        left: 900px;
    }

    .img21 {
        top: -550px;
        left: -3400px
    }

    .img22 {
        top: -1000px;
        left: -3650px;
    }

    .img23 {
        top: -1100px;
        left: -200px;
    }

    .img24 {
        top: -800px;
        left: 50px;
    }

    .img25 {
        top: -2100px;
        left: -900px;
    }

    .img26 {
        top: -2150px;
        left: 1300px;
    }

    .img27 {
        top: -700px;
        left: 700px;
    }

    .img29 {
        top: -1300px;
        left: 1500px;
    }

    .img28 {
        top: -800px;
        left: 750px;
    }

    .img30 {
        top: -2350px;
        left: -200px;
        transform: rotate(90deg);
    }

    .img32 {
        top: -2000px;
        left: 450px;
    }

    .img33 {
        top: -1200px;
        left: 100px;
    }

    .img34 {
        top: -300px;
        left: -1900px;
    }

    .img35 {
        top: -1000px;
        left: -500px;
    }

    .img36 {
        top: -2200px;
        left: 2600px;
    }

    .img39 {
        top: -2000px;
        left: -850px; 
    }

    .img40 {
        left: 500px;
        top: -3100px;
    }

    .img41 {
        top: -1300px;
        left: -1300px;
    }

    .img42 {
        top: -3000px;
        left: 1000px;
    }


    .img43 {
        top: -3250px;
        left: -1150px;
    }
    
    
}
