html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


html {
  height: 100%;
}

body {
	min-height: 100%;
	background-color:#fafafa;
	font-family: 'Open Sans', sans-serif;
	letter-spacing: 0.1px;
	line-height:27px;
	font-size:18px;
}

a, 
a:link,
a:focus,
a:visited,
a:active {
	color: #0063A2;
	text-decoration: none;
	-webkit-transition: all 150ms ease-in-out;
	-moz-transition: all 150ms ease-in-out;
	-o-transition: all 150ms ease-in-out;
	-ms-transition: all 150ms ease-in-out;
	transition: all 150ms ease-in-out;
	opacity: 1;
	font-weight:bold;
}

a:hover {
	-webkit-transition: all 150ms ease-in-out;
	-moz-transition: all 150ms ease-in-out;
	-o-transition: all 150ms ease-in-out;
	-ms-transition: all 150ms ease-in-out;
	transition: all 150ms ease-in-out;
	opacity: 0.8;
}

.logo {
	position: absolute;
	width:auto;
	max-height:55px;
	margin:25px;
	max-width: 100%;
	height:auto;
}

.container {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	max-width:100%;
}


section.content {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height:100vh;
	min-height:100vh;
}

.grid {
	display: flex;
	justify-content: space-around;
	max-width: 100%;
}

.col {
	background-color:white;
	border-radius:15px;
	box-shadow: -5px 2px 25px rgba(227, 227, 227, .5);
	border: 1px solid #EFEFEF;
	max-width:400px;
	padding:35px;

}


.col img {
	display: inline-block;
	width:auto;
	height:15px;
	margin-top:3px;
	vertical-align: center;
}

.col p {
	margin-bottom:25px;
}

h1,
h2 {
	font-family: 'Poppins', sans-serif;
}

h1 {
	display: block;
	text-align: center;
	font-weight:400;
	font-size:44px;
	margin-bottom:35px;
	letter-spacing: 0px;
}

h1 + p {
	text-align: center;
	margin-bottom:75px;
	color:#6C6C6C;
	font-size:24px;
	letter-spacing: 0px;
}

h2 {
	margin-bottom:25px;
	font-weight:bold;
	font-size:24px;
}


@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}


@media (max-width: 1200px) {

}



@media (max-width: 576px) {
  h1 {

  	font-size:32px !important;
  }

  h1 + p {
  	font-size:16px !important;
  }

  .col {
  	margin-right:20px;
  	margin-left:20px;
  }
}

@media (max-width: 768px) {
	.logo {
		left: 0; 
right: 0; 
margin-left: auto; 
margin-right: auto;

	}
}

@media (max-width: 992px) {
  .grid {
  	flex-direction: column;
  justify-content: center;
  align-items: center;
  }

  .col {
  	margin-bottom:45px;
  }

  section.content {
  	height:auto;
  	min-height: none;
  }

  h1 {
  	margin-top:175px;
  	margin-bottom:25px;
  	font-size:38px;
  }

  h1 + p {
  	font-size:20px;
  }
}