.custom-menu-icon {
    display: flex;
    justify-content: flex-end;
}

.custom-menu-icon svg {
    width: 20px;
    color: #E0E0E0;
    fill: #E0E0E0;
}

.custom-menu-container {
    position: fixed;
    top: 0;
    left: -100%;
    background: rgba(0, 0, 0, 0.95);
    width: 100%;
    max-width: 500px;
    z-index: 4;
    height: 100vh;
    transition: all 500ms ease-in-out;
    padding: 40px 30px 40px 30px;
    display: flex;
    flex-direction: column;
}

.custom-menu-container .h {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.custom-menu-container .h h3 {
    margin: 0;
    color: #FFF;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
}

.custom-menu-container .h svg {
    width: 32px;
    color: #232454;
    fill: #232454;
}

.custom-menu-container ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.custom-menu-container ul.menu {
    margin-bottom: 55px;
}

.custom-menu-container ul.menu li {
    margin-bottom: 10px;
}

.custom-menu-container ul.menu a {
    color: #FFF;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 24px;
    font-style: italic;
    font-weight: 500;
    line-height: normal;
    transition: all .3s ease-in;
}

.custom-menu-container ul.menu a:hover {
    color: #A5FF00;
}

.custom-menu-container .social h3 {
    margin: 0 0 30px 0;
    color: #FFF;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 21px;
}

.custom-menu-container .social ul {
    display: flex;
    gap: 50px;
}

.custom-menu-container .social ul a {
    color: #232454;
    font-size: 30px;
}

.open-menu {
    left: 0;
}








@media(max-width: 767px) {
    .custom-menu-container .h h3 {
        font-size: 27px;
    }

    .custom-menu-container .social h3 {
        font-size: 27px;
    }
}






