/* Mobile menu */
.mobile-menu {
    position: fixed;
    right: 0;
    z-index: 2000;
    width: 393px;
    height: 852px;
    background-color: var(--ci-color);
    padding: 29px;
    display: none;
}

.mobile-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.mobile-head .logo {
    padding-left: 25px;
    text-align: left;
}

.mobile-head .close {
    padding-right: 25px;
    text-align: right;
}

.mobile-head svg {
    cursor: pointer;
}

menu {
    display: block;
    width: 100%;
    border-block: solid 2px white;
    padding: 30px 29px;
    margin-top: 35px;
}

menu li {
    text-align: right;
    list-style: none;
}

menu a {
    text-decoration: none;
    color: white;
    font-size: 25px;
    font-weight: bold;
    line-height: 70px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.mobile-foot {
    text-align: right;
    padding-block: 31px;
}

.mobile-menu .mobile-foot a {
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    font-size: 25px;
    line-height: 40px;
    font-weight: bold;
    display: block;
    cursor: pointer;
}
