.logo img{
	/*float: right;*/
	position: absolute;
	top: 88%;
	left: 88%;
	width: 150px;
	height: auto;
}

body
{
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	font-family: Century Gothic;
	//background-image:linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 80%), url(../uwo.jpg);
	background-image:linear-gradient(to bottom, #A33DC5, #E7D8EC);
	height: 100vh;
	background-size: cover;
	background-position: center;
}
.container
{
	width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.container .box
{
	text-align: center;
}
.container .box .icon .fa
{
	font-size: 80px;
	cursor: pointer;
}
.container .box .icon h3,
.container .box .icon h4
{
	position: relative;
	overflow: hidden;
	font-weight: 400;
	margin: 0;
	padding: 2px 5px;
	font-size: 24px;
	transition-delay: 0.25s;
	color: transparent;
}
.container .box .fa:hover ~ h3,
.container .box .fa:hover ~ h4
{
	color: #000;
}
.container .box .icon h4
{
	font-weight: 600;
	margin: 5px 0;
	font-style: 30px;
}
.container .box .icon h3:before,
.container .box .icon h4:before
{
	content: '';
	position: absolute;
	top: 0;
	left: 100%;
	width: 100%;
	height: 100%;
	background: #00bcd4;
	transition: 1s;
}
.container .box .icon h4:before
{
	left: initial;
	right: 100%;
	background: #9c27b0;
}
.container .box .fa:hover ~ h3:before
{
	left: -100%;
}
.container .box .fa:hover ~ h4:before
{
	left: initial;
	right: -100%;
}

.main{
	position: absolute;
	top: 2%;
	left: 40%;
	max-width: 2000px;
	margin: auto;
}


.main .ul{
	float: right;
	list-style-type: none;
	margin-top: 5px;
}

ul li{
	display: inline-block;
}

ul li a{
	text-decoration: none;
	color: #fff;
	padding: 5px 20px;
	border: 1px solid #fff;
	transition: 1s ease;
}

ul li a:hover{
	background-color: #fff;
	color: #A28EA8;
}

ul li.active a{
	background-color: #fff;
	color: #A28EA8;	
}
