#burger {
    height: 50px;
    width: 50px;
    background-color: transparent;
    border: none;
}
.burger-on {
    background-image: url('../../others/symbols/burger.png');
}
.burger-off {
    background-image: url('../../others/symbols/close.png');
}
.mobile-menu {
    width: 60%;
    height: 240px;
    background-color: #ffffffcc;
    flex-direction: column;
    justify-content: space-between;
    position: absolute;
    top: 70px;
    right: 10%;
}
.mobile-menu > a {
    flex: 0 33.3%;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 1px solid var(--blue02);
    color: var(--blue01); 
    padding-top: 25px;
    z-index: 10;
    text-align: center;
}
.utp-reklama {
    font-size: 32px;
    font-weight: 700;
    position: absolute;
    animation: utp-reklama 6s;
    color: transparent;
}
@keyframes utp-reklama {
    0% {
        top: 370px;
        left: -50%;
    }
    20% {
        top: 370px;
        left: 10%;
        color: white;
    }
    70% {
        top: 370px;
        left: 10%;
        color: white;
    }
    100% {
        top: 370px;
        left: -50%;
    }
}

