nav {
    position: absolute;
    top: 0px;
    left: 0px;
    margin-top: 2rem;
    margin-bottom: 1rem;

    @media (max-width: 768px) {
        margin-top: 3rem;
        margin-bottom: 0.5rem;
    }

    width: 100%;
    z-index: 10;

    .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;

        .nav-left {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 20px;

            @media (max-width: 768px) {
                display: none;
            }
        }

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


            img {
                width: 300px;
                object-fit: contain;

                @media (max-width: 768px) {
                    width: 120px;
                }
            }

            @media (max-width: 768px) {
                justify-content: center;
            }
        }

        .nav-right {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 30px;

            @media (max-width: 768px) {
                display: none;
            }

        }

        .menu {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 5px;
            color: #fff;

            span {
                display: flex;
                justify-content: center;
                align-items: flex-start;
                font-weight: bold;
            }

            &:hover {
                cursor: pointer;
                opacity: 0.5;
            }
        }

        .phone {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 5px;
            color: #fff;

            span {
                display: flex;
                justify-content: center;
                align-items: flex-start;
                font-weight: bold;
            }

            &:hover {
                cursor: pointer;
                opacity: 0.5;
            }
        }

        svg {
            width: 34px;
            height: 34px;
        }

        a {
            color: #fff;

            &:hover {
                color: #fff;
                cursor: pointer;
                opacity: 0.5;
                text-decoration: none;
            }

            @media (max-width: 768px) {
                display: none;
            }
        }
    }
}
