/**** Left block ****/
.menu .left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
}
.menu .left {
    width: auto;
    height: 100%;
}

/**** Left block / Logo ****/
.menu .logo {
    position: relative;
}
.menu .logo {
    width: auto;
    height: 100%;
}
.menu .logo a {
    width: auto;
    height: 100%;
}
.menu .logo a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.menu .logo a img {
    width: auto;
    height: 80%;
}
@media screen and (max-width: 1024px) {
    .menu .logo a img {
        height: 60%;
    }
}

/**** Left block / Feature btn ****/
.menu .feature {
    position: relative;
    cursor: pointer;
}
.menu .feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.menu .feature {
    box-sizing: border-box;
    padding: 10px 20px;
}
.menu .feature {
    background-color: #111;
    border-radius: 50px;
    border: none;
    box-shadow: 0 0 10px #00000030;
}
.menu .feature span {
    font-family: 'content-font';
    font-size: 16px;
    color: #fff;
}
.menu .feature:hover {
    scale: 1.02;
    transition: .3s ease-in-out;
}
.menu .feature svg {
    width: 18px;
    margin-top: -2px;
    color: #fff;
}
@media screen and (max-width: 1024px) {
    .menu .feature {
        display: none;
    }
}

/**** Right block / Links btn ****/
.menu .buttons {
    position: relative;
    margin: .4em 0 0 0;
}
.menu .buttons {
    display: flex;
    align-items: center;
    gap: 30px;
}
.menu .buttons {
    font-family: 'menu-font';
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
}
.menu .buttons {
    list-style: none;
}
@media screen and (max-width: 1024px) {
    .menu .buttons {
        display: none;
    }
}