/** RESET **/
*{
	margin: 0px;
	padding: 0px;
	border: 0px;
	outline: 0px;
	box-sizing: border-box;
}
html, body{
	width: 100%;
	min-width: 300px;
	height: 100%;
	scroll-behavior: smooth;
	background: #2A2A2A;
}





/** SCROLLBAR **/
body::-webkit-scrollbar{
	width: 14px;
}
body::-webkit-scrollbar-track{
	background-color: #DDD;
}
body::-webkit-scrollbar-thumb{
	border-radius: 7px;
	background-color: #999;
}





/** GRID **/
.grid{
	display: grid;
	gap: 40px;
}

.colOne{	grid-template-columns: 1fr }
.colTwo{	grid-template-columns: 1fr 1fr }
.colThree{	grid-template-columns: 1fr 1fr 1fr }
.colFour{	grid-template-columns: 1fr 1fr 1fr 1fr }
.colFive{	grid-template-columns: 1fr 1fr 1fr 1fr 1fr }
.colSix{	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr }

@media (max-width: 1200px){
	.colFour{	grid-template-columns: 1fr 1fr }
	.colSix{	grid-template-columns: 1fr 1fr 1fr }
}
@media (max-width: 900px){
	.grid{
		gap: 20px;
	}
}
@media (max-width: 600px){
	.colOne, .colTwo, .colThree, .colFour, .colFive, .colSix{ 
		grid-template-columns: 1fr 
	}
}





/** SECTIONS **/
section{
	padding: 120px 0px;
	background: #EEE;
}
section:first-child{
	padding-top: 120px;
}
section.dark{
	background: #222;
}

.fixedWidth > div{
	max-width: 1800px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 50px;
	padding-right: 50px;
}

hr{
    height: 2px;
	margin: 80px 0px;
    background-image: linear-gradient(to right, rgba(250, 190, 0, 0.5), rgba(250, 190, 0, 1.0), rgba(250, 190, 0, 0.5));
}

@media (max-width: 900px){
	section{
		padding: 60px 0px;
	}

	.fixedWidth > div{
		padding-left: 20px;
		padding-right: 20px;
	}

	hr{
		margin: 40px 0px;
	}
}





/** CARDS **/
section .card{
	overflow: hidden;
	padding: 20px;
	border-radius: 10px;
	background: rgba(255,255,255,0.75);
	backdrop-filter: blur(10px);
	webkit-backdrop-filter: blur(10px);
	box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
}
section.dark .card{
	background: rgba(255,255,255,0.25);
	box-shadow: 0px 0px 15px rgba(0,0,0,0.4);
}





/** TEXT **/
p, a, h1, h2, h3, label, li, input, textarea, button{
	font-family: 'Open Sans', sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: #333;
}
p{
	text-align: justify;
	line-height: 1.75rem;
	margin-bottom: 20px;
}
p:last-child{
	margin-bottom: 0px;
}
a{
	font-weight: 600;
	text-decoration: none;
	color: #FABE00;
}
h1, h2, h3, label, button{
	font-weight: 600;
}
h1{
	font-size: 38px;
	text-transform: uppercase;
	margin-top: 50px;
	display: block;
}
h2{
	font-size: 24px;
	margin-top: 25px;
	display: block;
}
h3{
	font-size: 20px;
	margin-top: 20px;
	display: block;
}

.dark p, .dark li, .dark input, .dark textarea{
	color: #BBB;
}
.dark h1, .dark h2, .dark label{
	color: #DDD;
}

@media (max-width: 600px){
	p, a, label, li, input, textarea, button{
		font-size: 16px;
	}
	h1{
		font-size: 24px;
	}
	h2{
		font-size: 18px;
	}
	h3{
		font-size: 16px;
	}
}





/** LISTS **/
ul, ol{
	list-style-position: outside;
	margin-left: 20px;
}
li{
	margin: 5px 0px;
}





/** INPUT **/
input, textarea, button, a.button{
	padding: 10px;
	border-radius: 5px;
}
button, a.button{
	text-transform: uppercase;
	cursor: pointer;
	background: #FABE00;
	color: #FFF;
	box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.25);
	transition: box-shadow 0.3s;
}
button:hover, a.button:hover{
	box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.25);
}
input, textarea{
	width: 100%;
	color: #333;
	border: 2px solid #DDD;
	resize: vertical;
}





/** OVERRIDES **/
.marginNone{
	margin: 0px					!important;
}
.paddingNone{
	padding: 0px				!important;
}
.hidden{
	display: none				!important;
}
.disabled{
	cursor: default				!important;
	opacity: 0.75				!important;
	background: #AAA			!important;
	color: #DDD					!important;
	box-shadow: none			!important;
}
.uppercase{
	text-transform: uppercase	!important;
}
.lowercase{
	text-transform: lowercase	!important;
}
.gold{
	color: #FABE00				!important;
}
.circle{
	border-radius: 50%			!important;
}