/* OpenSans Font Licence */
/*
Copyright 2010-2011 Google Corporation.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

@font-face {
	font-family: 'regularfont';
	src: url('../fonts/OpenSans-Regular.woff2');
	src: local('Open Sans Regular'), local('OpenSans-Regular'),
		url('../fonts/OpenSans-Regular.woff2') format('woff2'),
		url('../fonts/OpenSans-Regular.woff') format('woff'),
		url('../fonts/OpenSans-Regular.ttf') format('truetype');
}
@font-face {
	font-family: 'lightfont';
	src: url('../fonts/OpenSans-Light.woff2');
	src: local('Open Sans Light'), local('OpenSans-Light'),
		url('../fonts/OpenSans-Light.woff2') format('woff2'),
		url('../fonts/OpenSans-Light.woff') format('woff'),
		url('../fonts/OpenSans-Light.ttf') format('truetype');
}
@font-face {
	font-family: 'headerfont';
	src: url('../fonts/OpenSans-SemiBold.woff2');
	src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'),
		url('../fonts/OpenSans-SemiBold.woff2') format('woff2'),
		url('../fonts/OpenSans-SemiBold.woff') format('woff'),
		url('../fonts/OpenSans-SemiBold.ttf') format('truetype');
}
@font-face {
	font-family: 'headerfont2';
	src: url('../fonts/OpenSans-Bold.woff2');
	src: local('Open Sans Bold'), local('OpenSans-Bold'),
		url('../fonts/OpenSans-Bold.woff2') format('woff2'),
		url('../fonts/OpenSans-Bold.woff') format('woff'),
		url('../fonts/OpenSans-Bold.ttf') format('truetype');
}


html{
/* set to defaults */
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	background: transparent;
	font-family: lightfont, sans-serif;
	letter-spacing: 0px;
	overflow-x: hidden;

	font-size: 18px;

	height: 100%;
	
	scroll-behavior: smooth;
}
/*
@media only screen and (min-width: 1600px) {
  html {
    font-size: 1vw;
  }
}
*/
body{
	margin: 0;
	width: 100%;
	height: 100%;
	
	color: #2D2D2D;
	/*color: #6A7075;*/
}

a{
	color: inherit;
	text-decoration: none;
}
a.light{
	font-family: regularfont, sans-serif !important;
}
p, li{
	margin-top: 0;
	color: #2D2D2D;
}
h1,h2,h3,h4,h5,h6{
	font-family: headerfont, sans-serif;
	color: #2D2D2D;
}
heavy{
	font-family: headerfont, sans-serif;
}
h1 heavy,h2 heavy,h3 heavy,h4 heavy,h5 heavy,h6 heavy{
	font-family: headerfont2, sans-serif;
}
.extra-bold{
	font-family: headerfont, sans-serif;
}
.margin-none{
	margin: 0 !important;
}
.margin-auto{
	margin: auto !important;
}
.padding-none{
	padding: 0 !important;
}
.border-box-none{
	-webkit-box-sizing: content-box;
		 -moz-box-sizing: content-box;
			box-sizing: content-box;
}

.inner-shadow{
	box-shadow: inset 0px 10px 8px -10px #AAA,
				inset 0px -10px 8px -10px #AAA;
}
.under-shadow{
	box-shadow: 0px 0px 2px 0px #AAA;
}

.float-right{
	float: right;
}
.float-left{
	float: left;
}
.flex-space-between{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	list-style: none;
}
/*
.flex-space-between::after {
  content: "";
  flex: auto;
}*/

.flex-space-around{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	list-style: none;
}
.flex-space-evenly{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	list-style: none;
}
.align-left{
  text-align: left;
}
.align-center{
  text-align: center;
}
.align-right{
  text-align: right;
}

.position-relative{
	position: relative;
}
.vertical-center{
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

input:focus{
	outline-width: 0;
}




.background-light{
	background-color: #FEFEFE;
	/*color: #000;*/
}
.background-light-v{
	background-color: #FBFBFB;
	/*background-color: #F9F9F9;*/
	/*color: #000;*/
}
.background-dark{
	background-color: #222222;
	color: #f1f1f1;
}
.background-none{
	background: none;
	/*color: #f1f1f1;*/
}

.background-blue-transparent{
	background: rgba(83, 112, 249, 0.25);
}
.background-billboard{
	background: url("../images/isometric/bgBlue.png");
	background-position: left;
	background-repeat: no-repeat;
	background-size: cover;
}

white{
	color: white !important;
}
dark{
	color: #2D2D2D !important;
}
blue{
	color: #5370F9;
}
red{
	/*color: #F02522;*/
	color: #FC2F5C;
}
yellow{
	/*color: #FEAA6A;*/
	/*color: #F85F48;*/
	color: #FC9850;
}
green{
	color: #58D5C9;
}

.bd-blue{
	border: solid 1px #5370F9;
}
.bd-red{
	border: solid 1px #F02522;
}
.bd-yellow{
	border: solid 1px #FEAA6A;
}
.bd-green{
	border: solid 1px #58D5C9;
}
.bd-light{
	border: solid 1px #FEFEFE;
}
.bd-lightish{
	border: solid 1px #DDD;
}





/* response code */
.inner-container{
	width: 62%;
	max-width: 1400px;
	height: 100%;
	margin: auto;
}
@media screen and (min-width: 2200px){
	html{
		
	}
	.inner-container{
		width: 50%;
	}
	.billboard h1{
		font-size: 2vw;
	}
	.billboard h2{
		font-size: 1.6vw;
	}
}
@media screen and (max-width: 1680px){
	.inner-container{
		width: 86%;
	}
}
@media screen and (max-width: 1280px){
	.flex-space-between{
		display: block;
	}
	.inner-container{
		width: 90%;
	}
}
@media screen and (max-width: 767px){
  .align-left{
    text-align: center;
  }
  .align-center{
    text-align: center;
  }
  .align-right{
    text-align: center;
  }
}


.hide-on-small{
	display: none !important;
}
.show-on-small{
	display: inline-block !important;
}
.hide-on-mobile{
	display: none !important;
}
.show-on-mobile{
	display: block !important;
}
.hide-on-small-mobile{
	display: none !important;
}
.show-on-small-mobile{
	display: block !important;
}
@media screen and (min-height: 620px){
	.hide-on-small-mobile{
		display: inline-block !important;
	}
	.show-on-small-mobile{
		display: none !important;
	}
}
@media screen and (min-width: 767px){
	.hide-on-mobile{
		display: inline-block !important;
	}
	.show-on-mobile{
		display: none !important;
	}
}
@media screen and (min-width: 1400px){
	.hide-on-small{
		display: inline-block !important;
	}
	.show-on-small{
		display: none !important;
	}
}
