* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

header {
    width: 100vw;
    height: 5rem;

    position: fixed;
    z-index: 999;

    /* background-color: transparent; */
    background-color: rgba(0, 0, 0, 0.3);
}

.navigationOn {
    background-color: #212121;
    height: 100vh;
    width: 100vw;

    color: white;

    position: fixed;
    z-index: 1001;
    display: none;
}

.headerBig {
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 1rem 0;

    width: 100%;
    height: 100%;
}

.headerMobile {
    display: none;
}

.info {
    position: absolute;
    left: 0;
    margin-left: 1rem;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 1rem;

    color: white;
}

.info p:hover {
    color: red;
}

.info a:hover .logo-red {
    display: inline;
}

.info a:hover .logo-white {
    display: none;
}


.logo-red {
    display: none;
}

.nav-items {
    display: flex;
    justify-content: center;
    align-items: center;

    column-gap: 1rem;

    list-style: none;
}

.nav-items a {
    text-decoration: none;
    color: white;
}

.nav-items li:hover a {
    color: red;
}


/* 
@media (max-width: 440px) {
    .navigationItem a {
        text-decoration: none !important;
        color: white !important;
        text-align: center !important;
        width: 75% !important;

        font-size: 1.1rem !important;
    }
} */

@media (max-width: 750px) {

    .headerBig {
        display: none;
    }

    .headerMobile {
        width: 100%;
        height: 100%;

        display: flex;
        justify-content: center;
        align-items: center;
    }

    .navigationClose {
        display: flex;
        justify-content: center;
        align-items: end;

        width: 100%;

        padding: 10px;
        margin: 10px;

        position: relative;

    }

    .info {
        position: static;
        margin-left: 0;
        padding: 0;
        flex-direction: row;

        column-gap: 1rem;
    }

    .info a {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 0.8rem;
    }

    .headerMobile .navigationClose button {
        display: flex;
        justify-content: center;
        align-items: center;

        border: none;
        background: transparent;
        cursor: pointer;

        position: absolute;
        right: 1rem;
        top: 21%;


    }




    /*OPENED NAVIGATION*/
    .head {
        width: 100%;
        min-height: max-content;
        height: 4rem;

        display: flex;
        justify-content: center;
        align-items: center;

        position: relative;

        z-index: 10;

    }

    .head button {
        position: absolute;
        right: 1rem;

        border: none;
        background-color: transparent;

        display: flex;
        justify-content: center;
        align-items: center;

        top: 50%;
        bottom: 50%;
        margin: auto;
    }

    .navigationInfo {
        display: flex;
        justify-content: center;
        align-items: center;

        column-gap: 1rem;
    }

    .head box-icon {
        margin-bottom: 0.6rem;
    }

    /*decoriation*/
   .decoration {
        position: absolute;
        right: 0;
        margin-top: 4.5rem;
        border-radius: 20px 0px 0px 20px;
    }

    .decoration1 {
        z-index: 3;

        width: 25%;
        height: 65%;
        background-color: #ffffff;
    }

    .decoration2 {
        z-index: 2;

        width: 30%;
        height: 65%;
        background-color: rgba(139, 137, 137, 0.993);
    }

    /**/

   .navigationItems {
        margin-top: 5rem;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        position: absolute;


        left: 0;

        width: 60%;

        row-gap: 2rem;
    }

    .navigationItem {
        list-style: none;
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        align-items: center;
        width: 80%;

        height: 3.5rem;
        border-radius: 15px;
        border: 1px solid white;

        opacity: 0;

    }


    .navigationItem a {
        text-decoration: none;
        color: white;
        text-align: center;
        width: 75%;
        font-size: 1.4rem;
    } 

}