/**********************************************************************/
/**********************************************************************/
.company-menu {
	margin-bottom: 100px;
	background-color: #76B5CD;
}
.company-menu .menu__list {
	display: flex;
	flex-wrap: wrap;
	width: calc(100% + 40px);
	margin: 0 -20px;
	padding: 0;
	list-style: none;
}
.company-menu .menu__list .menu-item {
	width: calc(100% / 6);
}
.company-menu .menu__list .menu-item a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	height: 170px;
	padding: 30px 10px;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 24px;
	line-height: 28px;
	color: #FFFFFF;
	text-align: center;
	transition: background-color 0.3s, color 0.3s;
}
.company-menu .menu__list .menu-item a:hover,
.company-menu .menu__list .menu-item.current-menu-item a {
	background-color: #C5DCEB;
	color: #3F7C94;
}




/**********************************************************************/
/*********************         RESPONSIVE         *********************/
/**********************************************************************/
@media screen and (max-width: 1600px) {
	/******************************************************************/
	/******************************************************************/
	.company-menu .menu__list .menu-item a {
		height: 140px;
		padding: 20px 10px;
		font-size: 20px;
		line-height: 24px;
	}
}


@media screen and (max-width: 1440px) {
	/******************************************************************/
	/******************************************************************/
	.company-menu {
		margin-bottom: 60px;
	}
	.company-menu .menu__list {
		width: calc(100% + 20px);
		margin: 0 -10px;
	}
	.company-menu .menu__list .menu-item a {
		height: 120px;
		font-size: 18px;
		line-height: 24px;
	}
}


@media screen and (max-width: 1024px) {
	/******************************************************************/
	/******************************************************************/
	.company-menu .menu__list .menu-item {
		width: calc(100% / 3);
	}
	.company-menu .menu__list .menu-item a {
		height: 80px;
	}
}


@media screen and (max-width: 767px) {
	/******************************************************************/
	/******************************************************************/
	.company-menu {
		margin-bottom: 40px;
	}
	.company-menu .menu__list .menu-item a {
		height: 60px;
		padding: 10px;
		font-size: 14px;
		line-height: 18px;
	}
}

@media screen and (max-width: 450px) {
	/******************************************************************/
	/******************************************************************/
	.company-menu .menu__list .menu-item {
		width: 50%;
	}
	.company-menu .menu__list .menu-item a {
		height: 40px;
	}
}