.menu-icon {
    display: none;
    width: 1.5rem;
    height: 1.5rem;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
}
.menu-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    position: absolute;
    transition: transform 250ms;
    transform: translateX(-50%)
}
.menu-icon span:nth-child(1) {
    top: 25%;
    left: 50%;
    transform-origin: left center;
}
.menu-icon span:nth-child(2) {
    top: 75%;
    left: 50%;
    transform-origin: left center;
}
.header.white .menu-icon span {
    background-color: var(--color-dark);
}

.menu-icon.close span {
    width: 75%;
}
.menu-icon.close span:nth-child(1) {
    transform: translateX(-50%) rotate(45deg);
}
.menu-icon.close span:nth-child(2) {
    transform: translateX(-50%) rotate(-45deg);
}

.menu-resp {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(1rem);
    z-index: -1;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: var(--padding);
    font-size: 2rem;
    transition: backdrop-filter 250ms 250ms;
}
.menu-resp.show {
    display: flex;
}
.menu-resp a {
    color: var(--color-white);
}
.header.white .menu-resp {
    background-color: var(--color-white);
}
.header.white .menu-resp a {
    color: var(--color-black);
}

.menu-resp.show .menu-icon span:nth-child(1) {
    transform: rotate(45deg);
}

@media only screen and (max-width: 800px) {
    :root {
        --padding: 1.5rem;
    }
    .gradient {
        position: relative;
    }
    .menu {
        display: none;
    }
    .menu-icon {
        display: flex;
    }

    .cover {
        display: block;
        margin-top: 4rem;
    }
    .cover-text {
        width: 100%;
        margin: auto;
        max-width: 640px;
        text-align: center;
    }
    .cover-text p {
        width: 100%;
    }
    
    .cover-photo {
        margin: auto;
        margin-top: 4rem;
        width: 100%;
        max-width: 640px;
    }
    .cover-photo img {
        max-width: 240px;
    }

    .karakteristike-items {
        flex-direction: column;
    }

    .big-numbers {
        flex-direction: column;
    }
    .picto {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        padding-bottom: 3rem;
    }
    .picto li {
        min-width: 200px;
        width: 40%;
        
    }
}

@media only screen and (max-width: 800px) {
    .footer-copy {
        flex-direction: column-reverse;

    }
    .footer-social {
        margin: auto;
    }
    .copyright {
        margin-top: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}