﻿.ABFullMenu
{
	display: none;
	overflow-y: auto;
}
body.Solutions .ABFullMenu
{
	display: block;
}

	.ABFullMenu .Item
	{
		background-color: #2F353D;
		color: #FFFFFE;
		overflow: hidden !important;
		height: 188px;
		max-height: 188px;
		transition: background .5s ease 0s;
		margin: 4%;
		cursor: pointer;
	}
	.ABFullMenu .Item.Selected
	{
		background-color: #E5EAEC;
		color: #2F353D;
	}
	.ABFullMenu .Item:hover
	{
        color: #FFFFFF;
		background-color: #F7931D;
	}
		.ABFullMenu .Item .Icon
		{
			text-align: center;
			display: block;
			font-size: 33px;
			margin-top: 40px;
			position: relative;
			transition: all .5s ease 0s;
		}

		.ABFullMenu .Item:hover .Icon
		{
			margin-top: -40px;
			transition: all .5s ease 0s;
		}

		.ABFullMenu .Item .Title
		{
			font-size: 25px;
			text-align: center;
			margin-top: 18px;
			transition: all .5s ease 0s;
		}

		.ABFullMenu .Item .Description
		{
			opacity: 0;
			margin-top: 20px;
			font-size: 16px;
			text-align: center;
			transition: all .5s ease 0s;
		}

		.ABFullMenu .Item:hover .Description
		{
			opacity: 1 !important;
			transition: all .5s ease 0s;
		}
