.burger-con {
    width: 65px;
    height: 65px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.burger-menu {
    cursor: pointer;
    z-index: 98;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: calc(var(--line-height) * 3 + 1);
    position: relative;
}

.burger-line {
    width: var(--burger-width);
    height: var(--burger-height);
    background-color: var(--color);
    transition: transform 0.4s ease, background-color 0.4s ease;
    background-color: var(--color);
}

.burger-line:first-child {
    margin-bottom: var(--xxsmall);
}

.burger-menu.active .burger-line:first-child {
    transform: rotate(45deg) translate(0, calc(var(--burger-height) * 1.5));
    background-color: var(--action-color);
}

.burger-menu.active .burger-line:nth-child(2) {
    background-color: var(--action-color);
}

.burger-menu.active .burger-line:last-child {
    transform: rotate(-45deg) translate(0, calc(-1 * var(--burger-height) * 1.5));
}

@media (min-width: 768px) {
    :root {
        --burger-size: 75px;
        --burger-width: 30px;
    }
    .burger-con {
        width: 80px;
        height: 80px;
    }
}

@media (min-width: 1024px) {
    :root {
        --burger-size: 100px;
        --burger-width: 40px;
    }
}

@media (min-width: 1440px) {
    :root {
        --burger-size: 120px;
        --burger-width: 50px;
    }
    .burger-con {
        width: 110px;
        height: 110px; 
    }
}

@media (min-width: 1920px) {
    :root {
        --burger-size: 120px;
        --burger-width: 50px;
    }
    .burger-con {
        width: 150px;
        height: 150px; 
    }
}


@media (min-width: 2560px) {
    :root {
        --burger-size: 150px;
        --burger-width: 60px;
    }
}
