html {
  font-family: source_sans_proregular, sans-serif;
  font-size: 1px;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
}

@media (max-width: 768px) {
  html {
    font-size: 0.9px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  html {
    font-size: 0.77px;
  }
}

@media (min-width: 1025px) and (max-width: 1279px) {
  html {
    font-size: 0.85px;
  }
}

@media (min-width: 1280px) and (max-width: 1439px) {
  html {
    font-size: 0.9px;
  }
}

@media (min-width: 1440px) and (max-width: 1599px) {
  html {
    font-size: 1px;
  }
}

@media (min-width: 1600px) and (max-width: 1799px) {
  html {
    font-size: 1.1px;
  }
}

@media (min-width: 1800px) {
  html {
    font-size: 1.2px;
  }
}
	
	.row.column-splitter [class^=col-]{
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
		margin-bottom: 20rem;
	}
	.col-1{
		width:25%;
	}
	.col-2{
		width:50%;
	}
	.col-3{
		width:75%;
	}
	.col-4{
		width:100%;
	}

@media (min-width:769px){
	.col-auto{
		width: calc(100%/3 - 2rem);
		-webkit-box-flex: 1;
		-webkit-flex: 1 1;
		-ms-flex: 1 1;
		flex: 1 1;
		-webkit-flex-basis: auto;
		-ms-flex-preferred-size: auto;
		flex-basis: auto;
	}
	.col-md-1{
		width:25%;
	}
	.col-md-2{
		width:50%;
	}
	.col-md-3{
		width:75%;
	}
	.col-md-4{
		width:100%;
	}	
}
@media (min-width:1025px){
	.col-lg-1{
		width:25%;
	}
	.col-lg-2{
		width:50%;
	}
	.col-lg3{
		width:75%;
	}
	.col-lg-4{
		width:100%;
	}
}
@media (min-width:1920px){
	.col-xl-1{
		width:25%;
	}
	.col-xl-2{
		width:50%;
	}
	.col-xl-3{
		width:75%;
	}
	.col-xl-4{
		width:100%;
	}
}