/*=== BEGIN STYLE RESET ===*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, 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 {
	background: transparent;
	border: 0;
	margin: 0;
	padding: 0;
}
ol, ul {
	list-style: none;
}
table{border-collapse:collapse; width:100%;}
td{vertical-align:top;}
/* Make HTML 5 elements display block-level for consistent styling */
header, nav, article, footer, address {
    display: block;
}

/*=== END RESET ===*/
::-moz-selection {
    background: #000;
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #000;
    color: #fff;
    text-shadow: none;
}

/*=== Clearfix ===*/
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}
.cf {
    zoom: 1;
}

/*=== ELEMENTS ===*/
* {
	box-sizing: border-box;
}
img {max-width: 100%;}
body {
	font-family: "arial", sans-serif!important;
	font-size: 10px;
	line-height: 12px;
	background-image: url(/siteart/background.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}
header {
	background-color: #AAAAAA;
	-webkit-box-shadow:0 0px 7px #000000;
	-moz-box-shadow:0 0px 7px #000000;
	box-shadow:0 0px 7px #000000;
}
footer {
	background-color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
	-webkit-box-shadow:0 0px 7px #000000;
	-moz-box-shadow:0 0px 7px #000000;
	box-shadow:0 0px 7px #000000;
	padding-bottom: 84px;
}
footer p {
	padding: 84px 0 58px;
}
footer .partners img {
	width: 575px;
}
a:link, a:visited, a:active {text-decoration:none;color: unset;}
a:hover {text-decoration:none;}
hr{border:#000 1px solid;}
h1, h3, h4 {
	font-size: 28px;
	line-height: 40px;
}
.button-container {
	gap: 20px;
}
.default-page button, .about-page button, .thank-you-page button {
	height: 50px;
    padding: 0px 20px;
    font-weight: 800;
	cursor: pointer;
	width: 100%;
	font-size: 16px;
}
button.set-width {
	width: max-content;
}
button.primary {
	border: 2px solid #072642;
	background-color: #072642;
	color: #ffffff;
}
button.primary:hover {
	background-color: unset;
	color: #072642;
}
button.secondary {
	border: 2px solid #072642;
	background-color: unset;
	color: #072642;
}
button.secondary:hover {
	background-color: #072642;
	color: #ffffff;
}

/*=== GLOBAL ===*/
.flex-container {
	display: flex;
}
.flex-vertical {
	flex-direction: column;
}
.flex-horizontal {
	flex-direction: row
}
.flex-width {
	flex-grow: 1;
	flex-shrink: 1;
	flex-basis: 100%;
}
.flex-height {
	height: 100%;
}
.set-width {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: auto;
    width: max-content;
}
.flex-wrap {
	flex-wrap: wrap;
}

.justify-center {
	justify-content: center;
}
.justify-right {
	justify-content: flex-end;
}
.justify-left {
	justify-content: flex-start;
}
.justify-between {
	justify-content: space-between;
}
.justify-evenly {
	justify-content: space-evenly;
}

.align-center {
	align-items: center;
}
.align-top {
	align-items: flex-start;
}
.align-bottom {
	align-items: flex-end;
}
.align-all-center {
	align-items: center;
	justify-content: center;
}

.text-left {
	text-align: left;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}

.left-icon {
	margin-right: 15px;
}
.right-icon {
	margin-left: 15px;
}

.mobile-only {
	display: none;
}

.max-width {
	max-width: 1405px;
	width: 90%;
	margin: 0 auto;
}

.clickable {
	cursor: pointer;
}

header .logo {
	width: 191px;
	margin: 7px 0;
}


/*=== RESPONSIVE ===*/
@media only screen and (min-width: 2000px) {

}
@media only screen and (max-width: 725px) {
	.mobile-only {
		display: flex;
	}
	.desktop-only {
		display: none;
	}
	.flex-horizontal {
		flex-direction: column;
	}

	button.set-width {
		width: 100%;
	}
}

@media only screen and (max-width: 375px) {
	header .logo {
		width: 150px;
		margin: 7px 0;
	}
}
