body{
	font-family: Poppins,Arial,Helvetica,sans-serif;
	color: #000;
	margin: 0px;
	line-height: 150%;
}
*{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
* {
  box-sizing: border-box;
}

.row::after {
  content: "";
  clear: both;
  display: block;
}

[class*="col-"] {
	width: 100%;
	padding-left: 2%;
	padding-right: 2%;
	text-align: center;
}
[class*="col-"] ul li{
	text-align: left;
}

a:any-link{
	color: #0066FF;
	text-decoration: none;
}
.center{
	text-align: center;
}
.left{
	text-align: left;
}
.right{
	text-align: right;
}
h1{
	font-size: 2.6em;
	line-height: 150%;
	margin-bottom: 1.25vh;
}
h2{
	font-size: 2.4em;
	color: black;
	margin-bottom: 1.25vh;
}
h3{
	font-size: 1.6em;
	color: black;
	margin-bottom: 1.25vh;
}
.button{
	background-color: #0066ff;
	border: none;
	font-size: 1.3em;
	font-weight: bold;
	text-align: center;
	padding: 14px 22px;
	margin: 2vh auto;
	text-decoration: none;
	border-radius: 8px;
	display: inline-block;
	cursor: pointer;
}
a.button:any-link{
	color: #ffffff;
}

@media only screen and (min-width: 769px) {
	.col-1 {width: 8.33%;}
	.col-2 {width: 16.66%;}
	.col-3 {width: 25%;}
	.col-4 {width: 33.33%;}
	.col-5 {width: 41.66%;}
	.col-6 {width: 50%;}
	.col-7 {width: 58.33%;}
	.col-8 {width: 66.66%;}
	.col-9 {width: 75%;}
	.col-10 {width: 83.33%;}
	.col-11 {width: 91.66%;}
	.col-12 {width: 100%;}

	[class*="col-"] {
	float: left;
	padding: 0px;
	}

}

.row > [class*='col-']{
	display: flex;
	flex-direction: column;
}