html, body {
	margin: 0;
	padding: 0;
	font-family: 'Lato', sans-serif;
	height: 100%
}
.container{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;

}

h3{
	color: #5ce1e6;
	font-size: 17px;
	line-height: 24px;
	font-weight: 700;
	margin-bottom: 4px;
	transition: 0.8s ease-in-out;
}
p{
	font-size: 14px;
    color: #666;
    line-height: 20px;
    font-weight: 400;
    transition: 0.8x ease-in-out;
}

.go_corner{
	position: absolute;
	top: 0;
	right: 0;
	width: 32px;
	height: 32px;
	overflow: hidden;
	background: #5ce1e6;
	border-radius: 0 4px 0 32px;
	display: flex;
	justify-content: center;
	align-items: center;

}

.go_arrow{
	margin-top: -4px;
	margin-right: -4px;
	color: #fff;
	font-family; courier, sans;

}

.card{
	display: block;
	position: relative;
	max-width: 262px;
	background: #fff;
	border-radius: 4px;
	padding: 32px 24px;
	margin: 18px;
	text-decoration: none;
	z-index: 0;
	overflow: hidden;
	box-shadow: 0 4px 8px rgba(38, 38, 38, 0.2);
}

.card:before{
	content: "";
	position: absolute;
	z-index: -1;
	top: -16px;
	right: -16px;
	background: #5ce1e6;
	width: 32px;
	height: 32px;
	border-radius: 32px;
	transform: scale(1);
	transform-origin: 50% 50%;
	transition: transform 0.8s ease-in-out;

}
.card:hover:before{
	transform: scale(30);
}
.card:hover p{
	color: rgba(255,255,255,0.8);
}

.card:hover h3{
	color: #fff;
}


ul{
	float: right;
	list-style-type: none;
	margin-top: 25px
}

ul li{
	display: inline-block;
}

ul li a{
text-decoration: none;
color: #5ce1e6;
padding: 5px 20px;
border: 1px solid transparent;
transition: 0.6s ease;

}

ul li a:hover{
	background-color: #5ce1e6;
	color: #fff;
}

ul li.active a{
	background-color: #5ce1e6;
	color: #fff;
}