* {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    background-color: #fefefe;

}

header {
    max-width: 100vw;
    height: 7vh;
    background-color: #ed3921;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
    margin: 0 0 0 0;
}

.logo-app {
    color: #fefefe;
    font-size: 1.6rem;
}

.hamburguer-item {
    display: none;
}



.nav-bar ul {
    display: flex;
    gap: 20px;

}

.nav-bar ul li h4 {
    display: block;
    color: #fefefe;
    font-size: 0.9rem;
    font-weight: 100;
    padding: 3px 7px;
    border-radius: 3px;
}

.nav-bar ul li h4:hover {
    color: #ed3921;
    background: #fefefe;
}

.nav-bar ul li h4.active {
    color: #ed3921;
    background: #fefefe;
}


@media only screen and (max-width: 1320px) {
    header {
        padding: 0 50px;
    }
}

@media only screen and (max-width: 1100px) {
    header {
        padding: 0 30px;
    }
}

@media only screen and (max-width: 768px) {
    
    .hamburguer-item {
        display: block;
        cursor: pointer;
    }

    .hamburguer-item .line {
        width: 30px;
        height: 3px;
        background: #fefefe;
        margin: 6px 0;
        
        
        border-radius: 5px;
        transition: all .5s;
        transform-origin: left;
    }


    .nav-bar {
        position: absolute;
        top: 7vh;
        left: -100%;
        right: 0;
        width: 100%;
        height: 450px;
        background: #11101b;
        transition: 0.3s;
        overflow: hidden;
        z-index: 1;
    }

    .nav-bar.active {
        left: 0;
    }

    .effect1{
        transform: rotate(38deg);
    }
    .effect2{
        opacity: 0;
    }
    .effect3{
        transform: rotate(-38deg);
    }


    .nav-bar ul {
        display: block;
        width: fit-content;
        margin: 130px auto 0 auto;
        text-align: center;
        transition: 0.5s;
        opacity: 0;
    }

    .nav-bar.active ul {

        opacity: 1;
    }

    .nav-bar ul li h4 {
        margin: 0 0 15px 0;
    }

    .nav-bar ul li h4:hover {
        color: #1c1c1c;
        background: #fefefe;
    }

    .nav-bar ul li h4.active {
        color: #1c1c1c;
        background: #fefefe;
    }

}