header {
    width: 100%;
    display: flex;
    align-items: center;
    .logo {
        padding: 20px;
    }
    .logo {
        padding: 20px;
        width: 200px;
        img {
            max-width: 100%;
            max-height: 100%;
        }
    }

    #distribuidor {
        width: 140px;
        right: 0;
        padding: 10px;
    }

    @media screen and (min-width: 700px) {
        .logo {
            position: absolute;
            left: 0;
            top: 0;
        }
        #distribuidor {
            position: absolute;
        }
        #burger,
        #main-nav {
            display: none;
        }
        justify-content: center;
        #navigation-bar {
            margin: 30px;
            display: flex;
            justify-content: center;
            background-color: var(--light-gray);
            border-radius: var(--border-radius);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            a {
                cursor: pointer;
                text-decoration: none;
                font-size: 1.2vw;
                width: 12vw;
                text-align: center;
                margin: 0.3vw;
                font-family: AllianzNeo-Light;
                transition: color 0.3s ease-in-out;
                position: relative;
                z-index: 1;
            }
            a,
            a:hover {
                color: var(--dark-gray);
            }

            .inactive {
                color: var(--dark-gray) !important;
            }
            .inactive::before {
                opacity: 0 !important;
            }

            a::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                opacity: 0;
                z-index: -1;
                border-radius: var(--border-radius);
                transition: all 0.5s ease-in-out;
            }

            a:not(.active):hover {
                color: var(--background-color);
            }

            a:not(.active):hover::before,
            .active::before {
                opacity: 1;
                background: var(--gradient);
                box-shadow: var(--secondary-color) 0px 5px 10px -10px;
            }

            .active {
                color: var(--background-color);
                pointer-events: none;
                font-family: AllianzNeo-Regular;
            }
        }
    }

    @media screen and (max-width: 700px) {
        justify-content: space-between;
        #navigation-bar {
            display: none;
        }
        /* Main menu positionning */
        .main-nav {
            position: absolute;
            height: 100vh;
            top: 0;
            right: 0;
            left: 0;
            bottom: 0;
            text-align: center;
            background: #5d5d5dbb;
            opacity: 0;
            z-index: -1;
            visibility: hidden;
            transition: all 0.375s;
        }
        .main-nav.is-open {
            opacity: 1;
            z-index: 100;
            visibility: visible;
        }
        /* Gradient band effect */
        .main-nav::before {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: -15px;
            background: var(--gradient);
            transform-origin: 0 0;
            transform: skew(-14deg) translateX(-120%);
            transition: all 0.275s 0.1s;
        }
        .main-nav.is-open::before {
            transform: skew(-14deg) translateX(0);
        }
        /* Skewing effect on menu links */
        .main-nav ul {
            display: inline-flex;
            flex-direction: column;
            height: 100%; /* Should be 100%, but we have a notice message :D */
            align-items: flex-end;
            justify-content: center;
            transform: translateX(-18%) skew(-16deg);
        }
        .main-nav li {
            display: block;
            margin: 0.5rem 0;
            text-align: right;
            transform: skew(16deg);
        }
        /* Apparition effect on links */
        .main-nav a {
            opacity: 0;
            transform: translateY(-10px);
        }
        .main-nav.is-open a {
            opacity: 1;
            transform: translateY(0);
        }
        .main-nav li:nth-child(1) a {
            transition: all 275ms 175ms;
        }
        .main-nav li:nth-child(2) a {
            transition: all 275ms 225ms;
        }
        .main-nav li:nth-child(3) a {
            transition: all 275ms 275ms;
        }
        .main-nav li:nth-child(4) a {
            transition: all 275ms 325ms;
        }
        .main-nav li:nth-child(5) a {
            transition: all 275ms 375ms;
        }
        /* Decoration */
        .main-nav ul,
        .main-nav li {
            list-style: none;
            padding: 0;
        }
        .main-nav a {
            display: block;
            padding: 12px 0;
            color: var(--background-color);
            font-size: 1.4em;
            text-decoration: none;
            font-weight: bold;
        }

        /* Burger Style: @see: https://codepen.io/CreativeJuiz/full/oMZNXy */
        .open-main-nav {
            padding-top: 20px;
            z-index: 1000;
            background: none;
            border: 0;
            cursor: pointer;
            margin: 15px;
        }
        .open-main-nav:focus {
            outline: none;
        }
        .burger {
            position: relative;
            display: block;
            width: 30px;
            height: 4px;
            background: var(--secondary-color);
            transform: skew(5deg);
            transition: all 0.275s;
        }

        .burger:after,
        .burger:before {
            content: "";
            display: block;
            height: 100%;
            background: var(--secondary-color);
            transition: all 0.275s;
        }

        .burger:after {
            transform: translateY(-12px) translateX(-2px) skew(-20deg);
        }

        .burger:before {
            transform: translateY(-16px) skew(-10deg);
        }

        /* Toggle State part */
        .is-open .burger {
            transform: skew(5deg) translateY(-8px) rotate(-45deg);
        }

        .is-open .burger:before {
            transform: translateY(0px) skew(-10deg) rotate(75deg);
        }

        .is-open .burger:before,
        .is-open .burger {
            background: var(--background-color);
        }

        .is-open .burger-text {
            color: var(--background-color);
        }

        .is-open .burger:after {
            transform: translateY(-12px) translateX(10px) skew(-20deg);
            opacity: 0;
        }

        /* MENU Text part */

        .burger-text {
            display: block;
            font-size: 0.675rem;
            letter-spacing: 0.05em;
            margin-top: 0.5em;
            text-transform: uppercase;
            font-weight: 500;
            text-align: center;
            color: #5a3b5d;
        }
    }
}
