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

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

.custom-menu-container {
    position: fixed;
    top: 0;
    left: -100%;
    background: #FFF;
    box-shadow: 3px 3px 6px #00000029;
    width: 100%;
    max-width: 310px;
    z-index: 4;
    height: 100vh;
    transition: all 500ms ease-in-out;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

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

.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 li {
    margin-bottom: 20px;
}

.custom-menu-container ul.menu a {
    color: #1E1E1E;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

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

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

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

.open-menu {
    left: 0;
}





@media(max-width: 767px) {
	.custom-menu-container {
		padding-bottom: 100px;
	}
}









