body {
	font-family: 'Open Sans',sans-serif;
    font-weight: 400;
    font-size: 15px;
    font-size: 1rem;
	font-style:normal;
	color: #fff;
	margin:0;
		background-color: #2f3554;
}

* {
	box-sizing: border-box;
}

@keyframes fadeInUp {
    from {
        transform: translate3d(0, 40px, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@-webkit-keyframes fadeInUp {
    from {
        transform: translate3d(0, 40px, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both;
}

.animatedFadeInUp {
    opacity: 0;
}

.fadeInUp {
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}


.main {
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 50px 50px 50px 50px;
	min-height:100vh;
	display:flex;
	justify-content:center;
	align-items:center;
	width:1400px;
	max-width:100%;
	margin:auto;
}

.bg {
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
    position: absolute;
	filter: brightness( 100% ) contrast( 100% ) saturate( 100% ) blur( 5.3px ) hue-rotate( 0deg );
	background-color: #353a54;
	background-image: url(../images/bg.png);
	background-size: cover;
	opacity: 0.18;
	transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.main .row {
	justify-content:center;
	width:100%;
	display:flex;
}
.main .col {
	padding: 15px;
	justify-content:center;
	align-items:center;
	display:flex;
	flex:1;
	text-align:center;
	postition:relative;
	z-index: 10;
}

.main .col:first-child {
	animation-delay: 400ms;
}
.main .col:nth-child(2){
	animation-delay: 800ms;
}
.main .col:last-child {
	animation-delay: 1200ms;
}
.main .col > a {
    padding: 20px;
    border: 1px solid;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
	font-style:normal;
	color: #fff;
	text-decoration:none;
	cursor:pointer;
	transform:translateY(0);
	box-shadow: 0 1px 5px rgba(0,0,0,0.05);
	transition:all 0.5s;
}
.main .col > a:hover {
	transform:translateY(-2px);
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.main img {
	width:400px;
	max-width:100%
}
.main .col p {
	font-style:normal;
	opacity: 0.7;
}

@media(max-width:768px){
	.main .row {
		flex-wrap:wrap;
	}
	.main .col {
		width:100%;
		flex:none;
	}
	.main .col a {
		width:100%;
		min-height:200px;
	}
}
