header {
    padding: 14px 0;
    position: relative;

    .Container {
        display: flex;
        align-items: center;
        justify-content: space-between;

        @media (max-width: 991px) {
            gap: 20px;
        }

        .Logo {
            img {
                width: 150px;


                @media (max-width: 991px) {
                    width: 130px;
                }

                @media (max-width: 575px) {
                    width: 130px;
                }
            }
        }

        .Menu {

            @media (max-width: 991px) {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: var(--primary-color);
                padding: 80px 30px;
                transition: 0.4s ease;
                z-index: 99;
            }

            &.active {

                @media (max-width: 991px) {
                    right: 0;
                }
            }

            ul {
                display: flex;
                align-items: center;
                gap: 12px;

                @media (max-width: 991px) {
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 24px;
                }

                li {
                    a {
                        font-size: 16px;
                        text-transform: capitalize;
                        font-weight: 500;
                        color: var(--black-color);

                        &:hover {
                            color: var(--secondary-color);
                        }

                        @media (max-width: 991px) {
                            font-size: 18px;
                            color: var(--white-color);
                        }
                    }
                }
            }
        }

        .Action {

            @media (max-width: 991px) {
                display: none;
            }
        }

        .Toggle {
            display: none;
            cursor: pointer;
            z-index: 100;

            @media (max-width: 991px) {
                display: flex;
                flex-direction: column;
                gap: 5px;
            }

            span {
                width: 28px;
                height: 2px;
                background: var(--secondary-color);
                display: block;
                transition: 0.3s ease;

                &:nth-child(2) {
                    opacity: 1;
                }
            }

            &.active {

                span {

                    &:nth-child(1) {
                        transform: rotate(45deg) translate(5px, 5px);
                        background-color: var(--white-color);
                    }

                    &:nth-child(2) {
                        opacity: 0;
                    }

                    &:nth-child(3) {
                        transform: rotate(-45deg) translate(5px, -5px);
                        background-color: var(--white-color);
                    }
                }
            }
        }
    }
}
.home,
.front-page {
    header {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 999;
        background: transparent;

        .Container {
            .Menu {
                ul {
                    li {
                        a {
                            color: var(--white-color);

                            &:hover {
                                color: var(--secondary-color);
                            }
                        }
                    }
                }
            }

            .Toggle {
                span {
                    background: var(--white-color);
                }
            }
        }
    }
}