/* Regular 300 */
/* Medium 400 */
/* Semibold 500 */
/* Bold 600 */

/* XS - Extra small devices (portrait phones, less than 576px) */
/* SM - Small devices (landscape phones, 576px and up) */
/* MD - Medium devices (tablets, 768px and up) */
/* LG - Large devices (desktops, 992px and up) */
/* XL - Extra large devices (large desktops, 1200px and up) */

/* CSS rules to specify families */
/* font-family: 'Open Sans', sans-serif; */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800;900&display=swap');

header, nav, section, article, aside, footer
{
   display: block;
}

*
{
	box-sizing: border-box;
}

b
{
	font-weight: bold;
}

i
{
	font-style: italic;
}

sup
{
	vertical-align: super;
	font-size: smaller;
}

body
{
	background-color: black;
	font-family: 'Open Sans', sans-serif;
	color: #000000;
	font-size: 15px;
	font-weight: normal;
}

body a:link
{
	color: #000000;
	text-decoration: none;
	font-weight: bold;
}

body a:visited
{
	color: #000000;
	text-decoration: none;
}

body a:active
{
	color: #000000;
}

body a:hover
{
	color: #000000;
	text-decoration: underline;
}

strong
{
	font-weight: bold;
}

textarea
{
	font-family: 'Euclid Circular B';
}

.section
{
	width: 100%;
}

article
{
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

.constrained
{
	/*max-width: 1280px;*/
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	/*border: solid 1px green;*/
}

.no-pointer-events
{
	pointer-events: none;
}

.disp-none
{
	display: none;
}

.disp-block
{
	display: block;
}

.disp-inline
{
	display: inline;
}

.pos-relative
{
	position: relative;
}


/* Extra small devices (portrait phones, less than 576px) */

/*.disp-xs-none*/
/*{*/
/*	display: none;*/
/*}*/

/*.disp-xs-inline*/
/*{*/
/*	display: inline;*/
/*}*/



/* - General elements - */
/* -------------------- */

label
{
	display: block;
	color: black;
	font-weight: bold;
	font-size: 15px;
	line-height: 20px;
	margin-bottom: 6px;
}

input[type=text],
input[type=password],
.input,
select
{
	display: block;
	color: #333333;
	font-weight: normal;
	font-size: 16px;
	line-height: 22px;
	width: 100%;
	height: 40px;
	border: solid 1px #B7BCD6;
	border-radius: 4px;
	padding-left: 10px;
}

input[type=checkbox]
{
}

input[disabled],
select[disabled]
{
	background-color: #f5f5f5;
}

.checkbox
{
	-webkit-appearance: none;
	display: inline-block;
	vertical-align: middle;
	color: #333333;
	width: 16px;
	height: 16px;
	border: solid 1px #000000;
	border-radius: 0px;
	background-color: #ffffff;
	position: relative;
	cursor: pointer;
}

.checkbox:active, .checkbox:checked:active
{
	/*box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);*/
}

.checkbox:checked
{
	/*box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.1);*/
	background-color: #DFE1E5;
}

.checkbox:checked:after
{
	content: '\2714';
	font-family: "Arial";
	font-size: 14px;
	position: absolute;
	top: 0px;
	left: 0px;
	color: #000000;
}

input[type=radio]
{
}

.radio
{
	-webkit-appearance: none;
	display: inline-block;
	vertical-align: middle;
	color: #333333;
	width: 18px;
	height: 18px;
	border: solid 1px #000000;
	border-radius: 9px;
	background-color: #ffffff;
	position: relative;
	cursor: pointer;
}

.radio:checked:after
{
	content: ' ';
	width: 12px;
	height: 12px;
	border-radius: 5px;
	position: absolute;
	top: 2px;
	left: 2px;
	background: #000000;
	/*box-shadow: inset 0px 0px 10px rgba(0,0,0,0.3);*/
	/*text-shadow: 0px;*/
	/*font-size: 32px;*/
}

.regular-radio:checked
{
	/*background-color: #e9ecee;*/
	/*color: #99a1a7;*/
	/*border: 1px solid #adb8c0;*/
	/*box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.1), inset 0px 0px 10px rgba(0,0,0,0.1);*/
}

.regular-radio:active, .regular-radio:checked:active
{
	/*box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);*/
}

button
{
	width: 201px;
	height: 52px;
	background-color: #FED462;
	color: black;
	font-weight: bold;
	font-size: 18px;
	text-align: center;
	border: none;
	cursor: pointer;
}

button.rounded
{
	border-radius: 5px;
}

button:hover
{
	background-color: #FFC72F;
}

.line-separator
{
	width: 80%;
	border-top: solid 1px #B3C0CE;
	margin-left: auto;
	margin-right: auto;
}

.form-group.has-danger > input,
.form-group.has-danger > select
{
	border: solid 1px red;
}

.form-group.has-success > input,
.form-group.has-success > select
{
	border: solid 1px green;
}

.fv-plugins-icon
{
	margin-top: -4px;
}

/* - Header - */
/* ---------- */

header
{
	width: 100%;
	height: 54px;
	position: fixed;
	top: 0px;
	background-color: #000000;
	z-index: 100;
}

.headerLogo
{
	float: left;
	margin-top: 13px;
	margin-left: 17px;
	transition: margin-left 0.4s;
}

.headerLogoImage
{
	width: 189px;
	height: auto;
	cursor: pointer;
}

.headerMobileIcon
{
	float: right;
	margin-top: 20px;
	margin-right: 18px;
	width: 27px;
	text-align: center;
	transition: margin-right 0.4s;
}

.headerHamburger
{
	display: block;
}

.headerHamburgerImage
{
	width: 27px;
	height: auto;
	cursor: pointer;
}

.headerClose
{
	display: none;
}

.headerCloseImage
{
	width: 15px;
	height: auto;
	cursor: pointer;
}

.headerSpace
{
	height: 54px;
}

.headerMenuBackground
{
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.75);
	transition: opacity 0.4s;
	top: 54px;
	left: 0px;
}

.headerMenuBackground.hidden
{
	opacity: 0;
	pointer-events: none;
}

.headerMenu
{
	position: fixed;
	opacity: 1;
	top: 54px;
	left: 0px;
	width: 100%;
	/*height: auto;*/
	/*background-color: rgba(0, 0, 0, 0.75);*/
	text-align: left;
	transition: top 0.4s, opacity 0.4s;
	z-index: 50;
	/*overflow: hidden;*/
}

.headerMenu.hidden
{
	opacity: 0;
	pointer-events: none;
}

.headerMenuElement
{
	width: 100%;
	height: 53px;
	overflow: hidden;
	line-height: 53px;
	background-color: white;
	border-bottom: solid 1px #C6C6C6;
	cursor: pointer;
	transition: height 0.4s;
}

a.headerMenuElement
{
	display: block;
	padding-left: 26px;
	font-size: 18px;
	font-weight: bold;
	transition: padding-left 0.4s;
}

.headerMenuElement.expanded
{
	/*	height: auto;*/
}

.headerMenuElementTitle
{
	float: left;
	margin-left: 26px;
	font-size: 18px;
	font-weight: bold;
	transition: margin-left 0.4s;
}

.headerMenuElementIcon
{
	float: right;
	margin-top: 26px;
	margin-right: 20px;
	width: 13px;
	height: 8px;
	background-image: url("../images/header_arrow_black@2x.png");
	background-size: cover;
	transition: transform 0.4s, margin-right 0.4s;
}

.headerMenuElement.expanded > .headerMenuElementIcon
{
	transform: rotate(180deg);
}

.headerSubMenu
{
	clear: both;
	width: 100%;
}

.headerSubMenuElement
{
	display: block;
	padding-left: 47px;
	height: 46px;
	line-height: 46px;
	background-color: #FFDD82;
	font-size: 18px;
	font-weight: bold;
	border-top: solid 1px #C6C6C6;
	transition: padding-left 0.4s;
}



/* - Scroll to Top - */
/* ----------------- */

.scrollTop
{
	display: none;
/*	display: none;*/
	cursor: pointer;
	z-index: 900;
	position: fixed;
	bottom: 50px;
	right: 21px;
	opacity: 0;
	transition: opacity 0.5s, bottom 0.5s, right 0.5s, transform 0.5s;
/*	rotation-point: 50% 50%;*/
	transform: rotate(180deg);
}

.scrollTop.visible
{
/*	display: block;*/
	opacity: 0.6;
	transform: rotate(0deg);
}

.scrollTop > img
{
	width: 45px;
	height: auto;
}

.scrollTop.visible:hover
{
	opacity: 0.9;
}


/* - Footer - */
/* ---------- */

footer
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: black;
	padding-top: 17px;
	padding-left: 16px;
	padding-right: 22px;
	padding-bottom: 28px;
}

.footerLogo
{
	/*order: 2;*/
}

.footerLogoImage
{
	width: 74px;
	height: auto;
}

.footerText
{
	width: 240px;
}

.footerTextPrimary
{
	color: #FED462;
	font-size: 12px;
	line-height: 17px;
	margin-bottom: 10px;
	letter-spacing: 0.05em;
}

.footerTextSecondary
{
	color: #FED462;
	font-size: 10px;
	line-height: 14px;
}

.footerTextSecondary a:link,
.footerTextSecondary a:visited,
.footerTextSecondary a:hover,
.footerTextSecondary a:active
{
	color: #FED462;
	font-weight: normal;
}



/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px)
{
	.disp-sm-none
	{
		display: none;
	}

	.disp-sm-inline
	{
		display: inline;
	}

	.disp-sm-block
	{
		display: block;
	}


	/* - Header - */
	/* ---------- */

	.headerLogo
	{
		margin-left: 37px;
	}

	.headerMobileIcon
	{
		margin-right: 38px;
	}

	a.headerMenuElement
	{
		padding-left: 46px;
	}

	.headerMenuElementTitle
	{
		margin-left: 46px;
	}

	.headerMenuElementIcon
	{
		margin-right: 40px;
	}

	.headerSubMenuElement
	{
		padding-left: 67px;
	}



	/* - Scroll to Top - */
	/* ----------------- */

	.scrollTop
	{
		right: 30px;
	}

	
	/* - Footer - */
	/* ---------- */

	footer
	{
		padding-left: 36px;
		padding-right: 42px;
	}
}


/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px)
{
	.disp-md-none
	{
		display: none !important;
	}

	.disp-md-inline
	{
		display: inline;
	}

	.disp-md-block
	{
		display: block;
	}


	/* - Header - */
	/* ---------- */

	header
	{
		height: 108px;
		/*		position: fixed; */
		/*		top: 0px; */
		/*		background-color: #000000; */
		/*		z-index: 100;*/
		transition: top 0.5s;
	}

	.headerLogo
	{
		/*float: left;*/
		margin-top: 34px;
		margin-left: 48px;
	}

	.headerLogoImage
	{
		height: 54px;
		width: auto;
		transition: width 0.5s, height 0.5s, margin-top 0.5s, margin-left 0.5s;
	}

	.headerMobileIcon
	{
		display: none;
		/*float: right;*/
		/*margin-top: 20px;*/
		/*margin-right: 18px;*/
		/*width: 27px;*/
		/*text-align: center;*/
	}

	header.fixed
	{
		position: fixed;
		top: -35px;
	}

	header.fixed .headerLogoImage
	{
		height: 35px;
		width: auto;
		margin-top: 20px;
		margin-left: 0px;
	}

	header.fixed .headerMenu
	{
		margin-top: 65px;
	}

	.headerSpace
	{
		height: 108px;
	}

	.headerSpace.fixed
	{
		height: 73px;
	}

	.headerMenuBackground
	{
		display: none;
	}

	.headerMenu
	{
		position: relative;
		/*opacity: 1;*/
		top: 0px;
		float: right;
		left: auto;
		margin-top: 55px;
		margin-right: 12px;
		width: auto;
		height: auto;
		background-color: inherit;
		overflow: visible;
		/*text-align: left;*/
		/*transition: top 0.4s, opacity 0.4s;*/
		/*z-index: 1000;*/
		transition: margin-top 0.5s, margin-right 0.5s;
	}

	.headerMenu.hidden
	{
		opacity: 1;
		pointer-events: auto;
	}

	.headerMenuElement
	{
		display: inline-block;
		width: auto;
		height: 16px;
		overflow: visible;
		line-height: 16px;
		background-color: inherit;
		border-bottom: none;
		/*color: white;*/
		/*cursor: pointer;*/
		/*transition: height 0.4s;*/
		margin-right: 31px;
		position: relative;
	}

	a.headerMenuElement
	{
		display: inline-block;
		padding-left: 0px;
		padding-right: 0px;
		font-size: 16px;
		/*color: white;*/
		/*font-weight: bold;*/
	}

	.headerMenuElement.expanded
	{
		height: 53px !important;
	}

	header.fixed .headerMenuElement,
	header.fixed .headerMenuElement.expanded
	{
		height: 23px !important;
	}

	.headerMenuElementTitle
	{
		float: none;
		display: inline-block;
		margin-left: 0px;
		font-size: 16px;
		color: white;
		/*font-weight: bold;*/
	}

	.headerMenuElementTitle a:link,
	.headerMenuElementTitle a:hover,
	.headerMenuElementTitle a:visited,
	.headerMenuElementTitle a:active
	{
		color: white;
	}

	.headerMenuElementIcon
	{
		float: none;
		display: inline-block;
		margin-top: 0px;
		margin-right: 0px;
		/*width: 13px;*/
		/*height: 8px;*/
		background-image: url("../images/header_arrow_white@2x.png");
		/*background-size: cover;*/
		/*transition: transform 0.4s;*/
		margin-left: 4px;
	}

	.headerMenuElement.expanded > .headerMenuElementIcon
	{
		transform: rotate(0deg);
	}

	.headerSubMenu
	{
		opacity: 0;
		pointer-events: none;
		clear: none;
		width: auto;
		position: absolute;
		right: 0px;
		padding-top: 17px;
		transition: opacity 0.4s;
	}

	.headerSubMenuElement
	{
		/*display: block;*/
		padding-left: 24px;
		height: 40px;
		line-height: 40px;
		background-color: white;
		font-size: 16px;
		/*font-weight: bold;*/
		border: solid 1px #C6C6C6;
		border-bottom: none;
		padding-right: 20px;
		min-width: 191px;
	}

	.headerSubMenuElement:last-child
	{
		border-bottom: solid 1px #C6C6C6;
	}

	.headerMenuElement:hover .headerSubMenu
	{
		opacity: 1;
		pointer-events: inherit;
	}


	.headerSpace
	{
		/*height: 0px;*/
	}
	
	.headerSpace.fixed
	{
		/*height: 108px;*/
	}


	/* - Scroll to Top - */
	/* ----------------- */

	.scrollTop
	{
		bottom: 60px;
		right: 40px;
	}


	/* - Footer - */
	/* ---------- */

	footer
	{
		padding-top: 31px;
		padding-left: 90px;
		padding-right: 70px;
		padding-bottom: 40px;
	}

	.footerLogo
	{
		order: 2;
	}

	.footerLogoImage
	{
		width: 87px;
	}

	.footerText
	{
		width: 350px;
	}

	.footerTextPrimary
	{
		font-size: 18px;
		line-height: 24px;
		margin-bottom: 11px;
		/*letter-spacing: 0.05em;*/
	}

	.footerTextSecondary
	{
		font-size: 14px;
		line-height: 19px;
	}
}


/* Large devices (desktops, 992px and up) */
@media (min-width: 992px)
{
	.disp-lg-none
	{
		display: none;
	}

	.disp-lg-inline
	{
		display: inline;
	}

	.disp-lg-block
	{
		display: block;
	}


	/* - Header - */
	/* ---------- */

	.headerLogo
	{
		margin-left: 68px;
	}

	.headerMenu
	{
		margin-right: 32px;
	}


	/* - Scroll to Top - */
	/* ----------------- */

	.scrollTop
	{
		bottom: 70px;
		right: 50px;
	}


	/* - Footer - */
	/* ---------- */


}


/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px)
{
	.disp-xl-none
	{
		display: none;
	}

	.disp-xl-inline
	{
		display: inline;
	}

	.disp-xl-block
	{
		display: inline;
	}


	/* - Scroll to Top - */
	/* ----------------- */

	.scrollTop
	{
		bottom: 90px;
		right: 60px;
	}


	/* - Footer - */
	/* ---------- */


}
