.menu-section {
	padding: 24px;
	margin: auto;
}

.mega-menu-flex-content{
	max-width: 1440px;
	margin: auto;
}

.mega-menu-flex-content .menu-column-3:first-of-type {
	padding-left: 24px;
}

.mega-menu-flex-content .menu-column-3:last-of-type {
	padding-right: 24px;
}


.menu-section .menu-items {
	display: flex;
	flex-direction: column;
	}

.menu-section .menu-items a {
	font-family: "Open Sans", sans-serif;
	font-weight: 600;
	color: rgb(4, 34, 56);
	font-size: 16px;
	line-height: 16px;
	width: 100%;
	gap: 8px;
	align-items: center;
	justify-content: flex-start;
	text-decoration: none;
	display: flex;
	flex-direction: row;
	padding: 12px;
}

.menu-section .menu-items a:hover{
	background-color: #F5F6F8;
}


.menu-section .menu-items  img {
	height: 32px;
	width: auto;
	object-fit: cover;
	overflow-x: visible;
}


.menu-section .menu-items .menu-text {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.menu-section .menu-items .menu-text {
	font-size: 16px;
	font-weight: 700;
}

.menu-section .menu-items .menu-subtext {
	font-size: 14px;
	font-weight: 400;
	color: #516A80;
}

.menu-section .menu-section-heading {
	color: #516A80;
	font-family: "Open Sans";
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px; /* 150% */
	letter-spacing: 0.04px;
	text-transform: uppercase;
	padding: 0 12px;;
}

.row {

	display: flex;
}

.wrap {
	flex-wrap: wrap;
}


.menu-column-12 {

	flex: 0 0 100%;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100%;
}

.menu-column-11 {
	flex: 0 0 91.666667%;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 91.666667%;
}

.menu-column-10 {
	flex: 0 0 83.333333%;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 83.333333%;

}

.menu-column-9 {
	flex: 0 0 75%;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 75%;

}

.menu-column-8 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 66.666667%;
	flex: 0 0 66.666667%
}

.menu-column-7 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 58.333333%;
	flex: 0 0 58.333333%
}

.menu-column-6 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%
}

.menu-column-5 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 41.666667%;
	flex: 0 0 41.666667%
}

.menu-column-4 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 33.333333%;
	flex: 0 0 33.333333%
}

.menu-column-3 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 25%;
	flex: 0 0 25%
}

.menu-column-2 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 16.666667%;
	flex: 0 0 16.666667%
}

.menu-column-1 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 8.333333%;
	flex: 0 0 8.333333%
}

.menu-column-auto {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1
}

.align-center{
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.align-left{
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start
}

.align-right{
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end
}

.align-space-evenly{
	-webkit-box-pack: space-evenly;
	-ms-flex-pack: space-evenly;
	justify-content: space-evenly
}

.align-space-between{
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}

.align-space-around{
	-ms-flex-pack: distribute;
	justify-content: space-around
}

.valign-stretch{
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch
}

.valign-top{
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start
}

.valign-center{
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.valign-bottom{
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end
}