/* CSS Document */
:root {
	--color1: rgba(99, 38, 10, 1);
	--color1-1: rgba(99, 38, 10, 0.1);
	--color1-2: rgba(99, 38, 10, 0.2);
	--color1-3: rgba(99, 38, 10, 0.3);
	--color1-5: rgba(99, 38, 10, 0.5);
	--color1-7: rgba(99, 38, 10, 0.7);

	--color2: rgba(187, 168, 136, 1);
	--color2-3: rgba(187, 168, 136, 0.3);
	--color2-5: rgba(187, 168, 136, 0.5);
	--color2-7: rgba(187, 168, 136, 0.7);

	--color3: rgba(37, 34, 38, 1);
	
	--color4: rgba(245, 240, 227, 1);
	--color4-1: rgba(245, 240, 227, 0.1);
	--color4-3: rgba(245, 240, 227, 0.3);
	--color4-7: rgba(245, 240, 227, 0.7);

	--color5: rgba(89, 163, 162, 1);
	--color5-1: rgba(89, 163, 162, 0.1);
	--color5-3: rgba(89, 163, 162, 0.3);
	--color5-5: rgba(89, 163, 162, 0.5);
	--color5-7: rgba(89, 163, 162, 0.7);
	
	/*--color5: rgba(155, 204, 159, 1);
	--color5-1: rgba(155, 204, 159, 0.1);
	--color5-3: rgba(155, 204, 159, 0.3);
	--color5-5: rgba(155, 204, 159, 0.5);
	--color5-7: rgba(155, 204, 159, 0.7);*/
	
	--color6: rgba(239, 86, 70, 1);
	--color6-7: rgba(239, 86, 70, 0.7);
	--color6-3: rgba(239, 86, 70, 0.3);

	--color-gray1: rgba(232, 232, 232, 1);
	--color-gray1-0: rgba(232, 232, 232, 0);
	--color-gray1-5: rgba(232, 232, 232, 0.5);
	--color-gray1-7: rgba(232, 232, 232, 0.7);
	--color-gray2: rgba(136, 136, 136, 1.0);
	--color-gray2-3: rgba(136, 136, 136, 0.3);
	--color-gray2-5: rgba(136,136,136,0.5);
}

@font-face {
  font-family: "font_regular";
  font-style: normal;
  font-weight: normal;
  src: url("/inc/Dalton Maag - Foco.ttf") format("truetype");
}
@font-face {
  font-family: "font_regular";
  font-style: normal;
  font-weight: bold;
  src: url("/inc/Dalton Maag - Foco Bold.ttf") format("truetype");
}
@font-face {
  font-family: "font_light";
  font-style: normal;
  font-weight: normal;
  src: url("/inc/Dalton Maag - Foco Light.ttf") format("truetype");
}
@font-face {
  font-family: "font_light";
  font-style: normal;
  font-weight: bold;
  src: url("/inc/Dalton Maag - Foco.ttf") format("truetype");
}
@font-face {
  font-family: "font_bold";
  font-style: normal;
  font-weight: normal;
  src: url("/inc/Dalton Maag - Foco Bold.ttf") format("truetype");
}


/*
@font-face {
  font-family: "roboto_regular";
  font-style: normal;
  font-weight: normal;
  src: url("inc/font_roboto_regular.ttf") format("truetype");
}
@font-face {
  font-family: "ProximaNova-Bold";
  src: url("/inc/ProximaNova-Bold.eot?#iefix") format("embedded-opentype"), url("/inc/ProximaNova-Bold.woff") format("woff"), url("/inc/ProximaNova-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "ProximaNova-Light";
  src: url("/inc/ProximaNova-Light.eot?#iefix") format("embedded-opentype"), url("/inc/ProximaNova-Light.woff") format("woff"), url("/inc/ProximaNova-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "ProximaNova-Regular";
  src: url("/inc/ProximaNova-Regular.eot?#iefix") format("embedded-opentype"), url("/inc/ProximaNova-Regular.woff") format("woff"), url("/inc/ProximaNova-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "ProximaNova-Semibold";
  src: url("/inc/ProximaNova-Semibold.eot?#iefix") format("embedded-opentype"), url("/inc/ProximaNova-Semibold.woff") format("woff"), url("/inc/ProximaNova-Semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "PFDinTextCompPro-Light";
  src: url("/inc/PFDinTextCompPro-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}

*/
@keyframes fade_out {
	0% {
		opacity: 1;
		left: 0px;
	}
	99% {
		opacity: 0;
		left: 0px;
	}
	100% {
		opacity: 0;
		left: -999px;
	}
}

@keyframes pulse_shadow {
	0% {
		box-shadow: 0 0 3em 0 var(--color1);
	}
	100% {
		box-shadow: 0 0 0em 0 var(--color1);
	}
}

@keyframes black_friday {
	0% {
		background-color: rgba(0, 0, 0, 1);
	}
	100% {
		background-color: rgba(200, 0, 0, 1);
	}
}

.animation_pulse_shadow {
	animation-name: pulse_shadow;
	animation-duration: 2s;
	animation-timing-function: linear;
	animation-delay: 0s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}


@keyframes live_frames {
	0% {
		transform: scale(0.8) rotate(-10deg);
	}
	100% {
		transform: scale(1.1) rotate(10deg);
	}
}

.live {
	animation-name: live_frames;
	animation-duration: 0.5s;
	animation-timing-function: linear;
	animation-delay: 0s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}

@keyframes soon_frames {
	0% {
		transform: rotate(0deg);
	}
	48% {
		transform: rotate(0deg);
	}
	52% {
		transform: rotate(180deg);
	}
	100% {
		transform: rotate(180deg);
	}
}

.soon {
	animation-name: soon_frames;
	animation-duration: 3s;
	animation-timing-function: linear;
	animation-delay: 0s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}

a {
	font-size: inherit;
	color: var(--color1);
	font-family: inherit;
	font-style: normal;
	text-decoration: none;
	transition: 0.5s;
}
a:hover {
	color: var(--color1);
	text-decoration: underline;
}

a.dashed {
	text-decoration: underline;
	text-decoration-color: var(--color1);
	text-decoration-style: dotted;
}

a.admin {
	background-color: rgba(128,128,128,.2);
	border-radius: 2px;
	color: rgba(0,0,0,.4);
	font-size: 50%;
	padding: 2px;
	position: absolute;
	right: 5px;
	z-index: 1000;
}

a.shadow {
}
a.shadow:hover {
	text-shadow: 0 0 20px #000;
}

a.none {
	text-decoration: none;
}

a.none:hover {
	text-decoration: none;
}

.t_center		{text-align: center; vertical-align: top;}
.t_left			{text-align: left; vertical-align: top;}
.t_right		{text-align: right; vertical-align: top;}

.t_center_sm	{font-size: smaller; text-align: center; vertical-align: top;}
.t_left_sm		{font-size: smaller; text-align: left; vertical-align: top;}
.t_right_sm		{font-size: smaller; text-align: right; vertical-align: top;}

.t_middle		{vertical-align: middle;}
.t_bottom		{vertical-align: bottom;}

.w25 { width: 25%; margin: auto; position: relative; }
.w50 { width: 50%; margin: auto; position: relative; }
.w75 { width: 75%; margin: auto; position: relative; }
.w100 { width: 100%; margin: auto; position: relative; overflow: auto; }
.wa { width: auto; margin: auto; position: relative; }

.block_center { margin: auto; }

.block {
	display: block;
}

.narrow {
	/*font-family: "PFDinTextCompPro-Light";*/
}

.sm {
	font-size: 80%;
}

.tiny {
	font-size: 55%;
}

.norm {
	font-family: 'font_regular';
	font-style: normal;
	font-weight: normal;
	font-size: 12pt;
}

.white_text {
	color: #fff;
}
.white_text a {
	color: var(--color2);
}

.color2 {
	color: var(--color2);
}

.color5 {
	color: var(--color5);
}

.gray {
	opacity: 0.5;
}

.gray2 {
	opacity: 0.25;
}

.gray_bg {
	background-color: var(--color-gray1);
}

.gray2_bg {
	background-color: var(--color-gray2);
}

.color_light {
	color: var(--color5);
}

.color6 {
	color: var(--color6);
}

.color_bg {
	background-color: var(--color1-5);
}

.light_bg {
	background-color: var(--color5-1);
}

.light3_bg {
	background-color: var(--color5-3);
}

.light5_bg {
	background-color: var(--color5-5);
}


.color1_5_bg {
	background-color: var(--color1-5);
}

.color2_3_bg {
	background-color: var(--color2-3);
}


.transparent_bg {
	background-color: rgba(0, 0, 0, 0.5);
}

.transparent_w_bg {
	background-color: rgba(255, 255, 255, 0.8);
}

.img_bg {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.bold {
	font-family: 'font_bold';
	font-weight: normal;
}

.medium {
	font-family: 'font_regular';
	font-weight: bolder;
}

.light {
	font-family: 'font_light';
	font-weight: normal;
}

.strike {
	text-decoration: line-through;
	text-decoration-color: #f00;
}

.hidden {
	display: none !important;
}

.sticky {
	position: sticky;
}

.pointer {
	cursor: pointer;
}

.huge {
	font-size: 150%;
}

.padding {
	padding: 1em 1em;
}

.padding_r {
	padding-right: 1em;
}

.padding_l {
	padding-left: 1em;
}

.padding_h {
	padding-left: 1em;
	padding-right: 1em;
}

.padding_h3 {
	padding-left: 3em;
	padding-right: 3em;
}

.padding_v {
	padding-top: 1em;
	padding-bottom: 1em;
}

.padding_v2 {
	padding-top: 2em;
	padding-bottom: 2em;
}

.padding_v3 {
	padding-top: 3em;
	padding-bottom: 3em;
}

.padding_t {
	padding-top: 1em;
}

.padding_t3 {
	padding-top: 3em;
}

.padding_b {
	padding-bottom: 1em;
}

.padding_b2 {
	padding-bottom: 2em;
}

.padding_b3 {
	padding-bottom: 3em;
}

.shadow {
	box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.3);
}

.shadow_in {
	box-shadow: inset 0 0 5em 0 rgba(0, 0, 0, 0.1);
}

.invert1_5 {
	background-color: var(--color1-5);
	border-radius: 4px;
	color: #fff;
	padding: 0.2em 0.4em;
}

.invert1 {
	background-color: var(--color1);
	border-radius: 4px;
	color: #fff;
	padding: 0.2em 0.4em;
}

.invert5 {
	background-color: var(--color5);
	border-radius: 4px;
	color: #fff;
	padding: 0.2em 0.4em;
	text-decoration: none;
	display: inline-block;
}

.invert5:hover {
	display: inline-block;
	background-color: var(--color5-7);
	border-radius: 4px;
	color: #fff;
	padding: 0.2em 0.4em;
	text-decoration: none;
}

.invert6 {
	display: inline-block;
	background-color: var(--color6);
	border-radius: 4px;
	color: #fff;
	padding: 0.2em 0.4em;
	text-decoration: none;
}

a.invert6:hover {
	display: inline-block;
	background-color: var(--color6-7);
	border-radius: 4px;
	color: #fff;
	padding: 0.2em 0.4em;
	text-decoration: none;
}

.invert_gray1 {
	background-color: var(--color-gray1);
	border-radius: 4px;
	color: #000;
	padding: 0.2em 0.4em;
}

.invert_gray2 {
	background-color: var(--color-gray2);
	border-radius: 4px;
	color: #fff;
	padding: 0.2em 0.4em;
}

.line_bottom {
	display: inline-block;
	border-bottom: 2px solid var(--color1);
}

.flip {
	transform: rotateY(0deg);
	transition: 1s;
}
.flip:hover {
	transform: rotateY(360deg);
}

.flip_img img {
	transform: rotateY(0deg);
	transition: 1s;
}
.flip_img:hover img {
	transform: rotateY(360deg);
}

::selection {
	color: #fff;
	background-color: var(--color1-5);
}

::-moz-selection {
	color: #fff;
	background-color: var(--color1-5);
}

body {
	font-family: 'font_regular', Tahoma, serif;
	background-color: #fff;
	color: #000;
	margin: 0px;
	padding: 0px;
	font-size: 12pt;
	line-height: 1.5;
}

table {
	font-size: inherit;
	font-family: inherit;
	color: inherit;
	border: 0px;
	border-spacing: 0px;
}

table.list {
	margin: auto;
}

table.border td {
	border: 1px solid #888;
	border-collapse: collapse;
}

table.rows td {
	border-bottom: 1px solid #bbb;
}

tr {
	font-size: inherit;
	font-family: inherit;
	color: inherit;
	border: 0px;
}

td {
	font-size: inherit;
	font-family: inherit;
	color: inherit;
	border: 0px;
	padding: 0px;
}

.list0 td {
	padding: 0px 0px;
}

.list td, .list th {
	padding: 4px 4px;
}

.cols3 td, .cols3 th {
	width: 33.333%;
}

form td {
	padding: 4px 4px;
}

th {
	font-size: smaller;
	font-family: inherit;
	color: inherit;
	border: 0px;
	background-color: var(--color-gray1);
	padding: 4px 2px;
	border-right: 1px solid #fff;
}

table.highlight tr:hover,
tr.highlight:hover {
	background-color: var(--color-gray1);
}

div {
	position: relative;
	font-size: inherit;
	font-family: inherit;
}

.border {
	border: 1px solid #888;
}

div.top {
	font-size: 120%;
	padding: 4px 20px;
	position: sticky;
	top: 0;
	color: #888;
	background-color: rgba(0,0,0, 0.5);
	box-shadow: 0 0 5px 0 rgba(0,0,0, 0.5);
	z-index: 9999;
}

div.menu {
	/*background-color:  var(--color-gray1);
	text-align: center;*/
	/*display: inline-block;*/
}
div.menu a {
	color: #fff;
}

div.menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

@media screen {
	.only_full {
		display: block;
	}
	.only_mobile {
		display: none;
	}

	div.menu ul {
		display: flex;
		align-items: flex-start;
		justify-content: center;
		flex-wrap: wrap;
	}
	
	.menu {
		display: block;
	}
	
	.hamburger {
		display: none;
	}
}
@media screen and (max-width: 1200px) {
	.only_full {
		display: none;
	}
	.only_mobile {
		display: block;
	}

	div.menu ul {
		display: block;
	}
	
	div.menu li {
		width: 100%;
		text-align: center;
	}
	
	.menu {
		display: none;
	}
	
	.hamburger {
		display: block;
	}
}


div.menu li {
	list-style: none;
	position: relative;
}
div.menu li::before {
	content: '';
	margin-right: 0;
	margin-left: 0;
}

div.menu li a {
	display: block;
	padding: 0.1em 0.5em;
	text-decoration: none;
	vertical-align: middle;
	border-bottom: 3px solid transparent;
}
div.menu li a:hover {
	/*background-color: var(--color1-1);*/
	border-bottom: 3px solid var(--color6);
}

div.menu li ul {
	display: none;
	float: none;
	position: absolute;
	background-color:  var(--color-gray1);
	box-shadow: 0 0 10px 0 rgba(0,0,0,.2);
	top: 48px; /* ? */
	left: 0px;
	z-index: 1000;
}

div.menu li:hover ul {
	display: block;
}

div.menu li ul li {
	width: 100%;
	text-align: left;
}

div.menu li ul li a {
	display: block;
	padding: 0.5em 1em;
	height: auto;
	border-left: 4px solid transparent;
	border-bottom: 0px;
}

div.menu li ul li a:hover {
	border-left: 4px solid var(--color1);
	border-bottom: 0px;
}

.hamburger {
	text-align: left;
}
.hamburger a {
	color: var(--color1);
}

div.content {
	margin: auto;
	text-align: left;
	vertical-align: top;
	background-color: var(--color4-3);
	min-height: 70vh;
}

div.head {
	text-align: left;
	background-color: var(--color2);
	padding: 1em 1em;
	font-size: 150%;
	
}

.head a {
	color: #fff;
}

div.head_transparent {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	background-color: var(--color2-7);
	/*background-color: transparent;*/
	z-index: 1000;
}

div.menu_transparent {
	background-color: var(--color-gray1-7);
	z-index: 1000;
}

div.bottom {
	padding: 2em 0em;
	background-color: var(--color3);
	
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
}

div.bottom > div {
	padding: 1em;
}

div.bottom a {
	/*color: var(--color1);*/
}

div.admin_stat {
	opacity: 0;
	left: -999px;
	position: fixed;
	font-size: 70%;
	top: 200px;
	text-align: left;
	color: #000;
	z-index: 2000;
	padding: 10px;
	background-color: rgba(128,128,128,.2);


	animation-name: fade_out;
	animation-duration: 4s;
	animation-timing-function: ease-in;
	animation-delay: 0s;
	animation-iteration-count: 1;
	animation-direction: normal;
	animation-fill-mode: forwards;
}

div.login {
	position: absolute;
	top: 5px;
	right: 10px;
	z-index: 2000;
	
	text-align: right;
	color: #000;
	font-size: 80%;
	padding: 0.5em 0em;
}

div.lang {
	position: absolute;
	top: 5px;
	left: 10px;
	text-align: left;
	z-index: 2000;
}

div.element {
	float: left;
	font-size: inherit;
	font-family: inherit;
	color: inherit;
	padding: 5px;
}

div.element_right {
	float: right;
	font-size: inherit;
	font-family: inherit;
	color: inherit;
	padding: 5px;
}

div.element_light {
	float: left;
	font-size: inherit;
	font-family: inherit;
	color: #000;
	padding: 5px;
	background-color: #fdd;
	border-radius: 10px;
}

div.parallax_element {
	overflow: auto;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: scroll;
	background-position: center center;
	padding: 3em 1em;
	position: relative;
	/*box-shadow: inset 0px 0px 50px rgba(0,0,0,.7);
	text-shadow: 0px 0px 10px rgba(0,0,0,1);*/
	box-sizing: border-box;
	background-blend-mode: multiply;

	/*display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;*/
}

div.desc {
	padding: 0pt 0px 20pt 0px;
	/*border-top: 1px solid var(--color-gray1);*/
}

div.card {
    display: block;
	position: relative;
	background-color: #fff;
	border-radius: 0.2em;
	box-shadow: 0px 0px 0.5em 0px rgba(0,0,0,.1);
	padding: 1em;
	margin-left: auto;
	margin-right: auto;
	overflow: auto;
}
div.card_black {
	position: relative;
	background-color: var(--color2);
	color: #fff;
	border-radius: 0.2em;
	box-shadow: 0px 0px 0.5em 0px rgba(0,0,0,.1);
	padding: 0.5em;
	margin: 0em auto;
	overflow: auto;
}

div.close_button {
	position: absolute;
	top: 0.2em;
	right: 0.2em;
	cursor: pointer;
    opacity: 0.5;
}

div.close_button:hover {
    opacity: 1;
}

div.black {
	background-color: var(--color3);
	color: #fff;
}

div.black a {
	color: var(--color2);
}

div.divider {
	background-image: url(/files/site/monitor-window.svg);
	background-repeat: no-repeat;
	background-position: center;
	height: 150px;
}

div.modal {
	display: none;
	position: fixed;
	top: 0px;
	bottom: 0px;
	right: 0px;
	left: 0px;
	z-index: 9999;
	padding-top: 100px;
}

div.modal_bg {
	position: fixed;
	top: 0px;
	bottom: 0px;
	right: 0px;
	left: 0px;
	background-color: rgba(0,0,0,0.5);
	overflow: auto;
}

div.modal_card {
	/*
	position: relative;
	overflow: auto;
	height: 80%;
	width: auto;
	margin: auto;
	top: 60px;
	*/
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
	height: 100%;
}

div.tile {
	border: 2px solid var(--color1-5);
	border-radius: 4px;
	transition: 0.5s;
	overflow: hidden;
}
div.tile:hover {
	box-shadow: 0px 0px 20px 0px var(--color1-5);
}

div.tile img {
	transition-duration: 3s;
	transform: scale(1.0);
}

div.tile:hover img {
	transition-duration: 10s;
	transform: scale(1.3);
}

div.tile_desc {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: auto;
}

div.tile_header {
	padding: 0.5em 20px;
	background-color: var(--color1-5);
	border-top: 1px solid var(--color1);
	border-bottom: 1px solid var(--color1);
	font-size: 150%;
	transition: 0.5s;
}
div.tile_header h3 {
	color: #fff;
}

div.tile_header_dark {
	padding: 0.5em 20px;
	background-color: var(--color2-7);
	border-top: 1px solid var(--color2);
	border-bottom: 1px solid var(--color2);
	font-size: 150%;
	transition: 0.5s;
}
div.tile_header_dark h3 {
	color: #fff;
}

div.tile:hover div.tile_header {
	background-color: var(--color1-7);
}

div.tile_text {
	padding: 0.5em 20px;
	background-color: rgba(255, 255, 255, 1);
	height: 5em;
	overflow-y: hidden;
	opacity: 0.7;
	color: #000;
}

div.tile_text_fade {
	background-color: var(--color-gray1-5);
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
	height: 3em;
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
}

div.tile_button {
	/*background-color: var(--color-gray1-5);*/
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 0.5em 0em;
	text-align: center;
}

div.tile_price {
	position: absolute;
	top: 0.5em;
	right: 0.5em;
	height: auto;
	width: auto;
	padding: 0.5em 1em;
	color: #000;
	background-color: var(--color4-7);
	border-radius: 4px;
	text-align: right;
	border: 1px solid var(--color4);
}

@media screen {
	div.block1 {
		width: 1200px;
		box-sizing: border-box;
		margin: 0 auto;
	}
	
	div.block2 {
		width: 50%;
		box-sizing: border-box;
	}

	div.block3 {
		width: 33.333%;
		box-sizing: border-box;
	}

	div.block4 {
		width: 25%;
		box-sizing: border-box;
	}
	
}
@media screen and (max-width: 1200px) {
	div.block1 {
		width: 100%;
		box-sizing: border-box;
	}
	
	div.block2 {
		width: 100%;
		box-sizing: border-box;
	}

	div.block3 {
		width: 50%;
		box-sizing: border-box;
	}

	div.block4 {
		width: 50%;
		box-sizing: border-box;
	}
}
@media screen and (max-width: 600px) {
	div.block1 {
		width: 100%;
		box-sizing: border-box;
	}
	
	div.block2 {
		width: 100%;
		box-sizing: border-box;
	}

	div.block3 {
		width: 100%;
		box-sizing: border-box;
	}

	div.block4 {
		width: 100%;
		box-sizing: border-box;
	}
}

@keyframes pulse_darken {
	0% {
		background-color: rgba(0,0,0,0.2);
	}
	100% {
		background-color: rgba(0,0,0,0.7);
	}
}

div.flex_top {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
}

div.flex_top_start {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
}

div.flex_bottom_start {
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	flex-wrap: wrap;
}

div.flex_bottom {
	display: flex;
	align-items: flex-end;
	justify-content: space-evenly;
	flex-wrap: wrap;
}

div.flex_bottom_center {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	flex-wrap: wrap;
}

div.flex_stretch {
	display: flex;
	align-items: stretch;
	justify-content: center;
	flex-wrap: wrap;
}

div.flex_space {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

div.flex_center {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

div.flex_center_start {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
}

div.flex_center_end {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
}

div#main_rotator {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}
div#main_rotator ul li {
	float: left;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	list-style: none;
	content: '';
	overflow: hidden;
}
div#main_rotator ul li.show {
	z-index: 500;
}
li.main_rotator_element {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;

	text-align: center;
	overflow: auto;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}


.personal_item {
	display: block;
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
	margin: 1em;
	transition: 0.5s;
	border-radius: 4px;
	overflow: hidden;
}

.personal_item:hover {
	box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.personal_item h3 {
}

.personal_head {
	width: 100%;
	height: 12em;
	overflow: hidden;
	position: relative;
}

.personal_img {
	background-size: cover;
	background-position: center center;
	transition: 1s;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	filter: brightness(80%);
}

.personal_item:hover .personal_img {
	transition: 10s;
	transform: scale(1.2);
	filter: brightness(100%);
}

.personal_body {
	width: 100%;
	height: 5em;
	background-color: #fff;
	padding: 1em;
	overflow: hidden;
	position: relative;
}

.personal_title {
	position: absolute;
	left: 1em;
	bottom: 0em;
}

.personal_text p {
	margin: 0;
	overflow: hidden;
}

.blog {
	max-height: 21em;
}


.task_item {
	display: block;
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
	margin: 1em;
	transition: 0.5s;
	border-radius: 4px;
	overflow: hidden;
	background-color: #fff;
}

.task_item:hover {
	box-shadow: 0px 0px 20px 0px var(--color1-5);
}

.task_item a {
	display: block;
	text-decoration: none;
	color: #000;
}

.task_head {
	width: 100%;
	height: 13em;
	overflow: hidden;
	position: relative;
}

.task_img {
	background-size: cover;
	background-position: center center;
	transition: 0.5s;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	opacity: 1;
}

.task_item:hover .task_img {
	transform: scale(1.05);
	filter: blur(0px) brightness(100%);
}

.task_item:hover .task_img_open {
	filter: blur(10px) brightness(130%);
}

.task_item:hover .task_done {
	opacity: 0.5;
}

.task_body {
	width: 100%;
	background: rgba(0, 0, 0, 0.1);
	padding: 0.5em 1em;
	transition: 500ms;
}

.task_item:hover .task_body {
	background: var(--color5-3);
	/*color: #fff;*/
}

.task_title {
	padding: 0.5em 0;
}

.task_title h3 {
	font-family: 'font_regular';
	margin: 0 0 0.3em 0;
}

.task_anons p {
	margin: 0;
	overflow: hidden;
}

.task_done {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
	transition: 0.5s;
}


.mail_container {
	position: fixed;
	bottom: 1em;
	right: 1em;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	z-index: 1000;
}

.mail_icon {
	width: auto;
	height: auto;
	color: #fff;
	background-color: var(--color1);
	border-radius: 50%;
	padding: 0.5em;
	font-size: 150%;
}

.mail_text {
	width: auto;
	height: auto;
	color: #fff;
	background-color: rgba(0,0,0,0.5);
	border-radius: 0.3em;
	padding: 0.5em 1em;
	margin-right: 0.5em;
	font-size: 80%;
}

div.news_block {
	padding: 1em;
}

a.news {
	display: block;
	width: 100%;
	color: #000;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
a.news:hover {
	color: #000;
	text-decoration: none;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

a.news:hover {
	transition-duration: 1s;
	transform: scale(1.02);
}

.fade_up_down {
	position: absolute;
	top: 50%;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(to bottom, transparent, #fff);
}

.news_img {
	width: 100%;
	height: 10em;
	background-position: center center;
	background-size: cover;
	overflow: hidden;
}

.news_date {
	position: absolute;
	top: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.3);
	padding: 4px 8px;
	font-size: 80%;
	color: #fff;
}

.news_title {
	position: absolute;
	bottom: 0;
	left: 1em;
	color: #fff;
	font-size: 150%;
	text-shadow: 0 0 10px rgba(0, 0, 0, 1);
}

.news_body {
	padding: 1em;
	height: 5em;
	overflow: hidden;
}

.news_body * {
	margin: 0.5em 0 0 0;
}

.news_img_block {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.news_img_block img {
	max-height: 100px;
	margin-bottom: 1em;
	margin-right: 1em;
}

.button_more {
	display: block;
	width: auto;
	padding: 1em 0;
	background-color: var(--color5);
	color: #fff;
	text-decoration: none;
	text-align: center;
	margin: 1em 0;
	border-radius: 4px;
}

.button_more:hover {
	color: #fff;
	text-decoration: none;
	background-color: var(--color5-7);
}

.review_slider__list {
}

.review {
	margin: 0.5em;
	box-sizing: border-box;
	height: 100%;
}

.review img {
	margin: auto auto;
	max-width: 100%;
	max-height: 15em;
	-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.05);
			box-shadow: 0 0 15px rgba(0,0,0,0.05);
	border-radius: 4px;
	cursor: pointer;
}

.slick-dots {
	list-style: none;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
	opacity: 1;
	position: relative;
	padding: 0;
}

.slick-dots li {
	display: block;
	width: 0.8em;
	height: 0.3em;
	margin: 0.2em;
	background-color: var(--color1-3);
	border-radius: 2px;
	border: 0px solid var(--color1);
	cursor: pointer;
}

.slick-dots li.slick-active {
	background-color: var(--color1);
}

.slick-dots li:hover {
	background-color: var(--color1-7);
}

.slick-dots button {
	display: none;
}

.slick-prev {
	position: absolute;
	left: 0;
	top: 30%;
	padding: 1em 0.5em;
	cursor: pointer;
	z-index: 100;
}

.slick-next {
	position: absolute;
	right: 0;
	top: 30%;
	padding: 1em 0.5em;
	cursor: pointer;
	z-index: 100;
}

.slick-prev img,
.slick-next img {
	height: 8vw;
}

.review_slider__list .slick-track {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
}


.close_modal {
	position: absolute;
	top: 0.2em;
	right: 0.2em;
	cursor: pointer;
	opacity: 0.5;
}
.close_modal:hover {
	opacity: 1;
}

.marathon_link {
	display: inline-block;
	cursor: pointer;
}

.marathon_link:hover {
	background-color: var(--color1-5);
}

.marathon_prev {
	position: absolute;
	left: 0;
	height: 50%;
	width: auto;
	top: 25%;
	cursor: pointer;
}

.marathon_next {
	position: absolute;
	right: 0;
	height: 50%;
	width: auto;
	top: 25%;
	cursor: pointer;
}

.marathon_status {
	background-color: var(--color6);
	font-family: 'font_light';
	font-size: 50%;
	color: #fff;
	padding: 0.2em 0.4em;
	border-radius: 4px;
	font-weight: normal;
}

.review_text {
	font-style: italic;
	font-size: 80%;
}

#form_name {
	width: 100%;
}

#form_contact {
	width: 100%;
}

#form_email {
	width: 100%;
}

#form_text {
	width: 100%;
}



div#notifications {
	position: fixed;
	left: -200vw;
	bottom: 0px;
	z-index: 2000;
	max-height: 70vh;
	max-width: 80vw;
	overflow-y: auto;
	padding: 1em;
	background-color: rgba(0,0,0,0.5);
	box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.4);
	font-size: 80%;
}

div.new_notification {
	position: relative;
	padding: 1em;
	border-radius: 0em 1em 1em 1em;
	background-color: rgba(255,255,255,1);
	margin: 1em 0em;
	box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.4);
}


a.button {
	display: inline-block;
}
a.button:hover {
	text-decoration: none;
}

input, select, textarea, button, a.button {
	font-family: inherit;
	font-size: inherit;
	border: 0px solid var(--color1);
	background-color: var(--color5-3);
	padding: 0.5em 1em;
	margin: 2px 0px;
	color: inherit;
	border-radius: 4px;
	box-sizing: border-box;
}

textarea {
	border-top: 1px solid #888;
	border-left: 1px solid #888;
	border-right: 1px solid #888;
}

input[type="number"] {
	width: 10em;
}

input[type="image"] {
	border: 0;
	background: transparent;
}

input[type="submit"], button, a.button {
	font-family: 'font_regular';
	font-size: inherit;
	cursor: pointer;	
	color: #fff;
	padding: 0.5em 2em;
	text-align: center;
	border: 0px;
	border-bottom: 3px solid var(--color3);
	background-color: var(--color5);
	/*background: linear-gradient(to bottom, var(--color1),  var(--color2));*/
	transition: 0.5s;
	/*appearance: button;
	-webkit-appearance: button;*/
}
input[type="submit"]:hover, button:hover, a.button:hover {
	color: #fff;
	/*box-shadow: 0px 0px 10px 0px var(--color1);*/
	background-color: var(--color5-7);
	border-color: var(--color6);
}

input[type="submit"]:disabled, button:disabled {
	background-color: #ccc;
}
input:hover, select:hover, textarea:hover {
	background-color: var(--color5-1);
}
input:focus, select:focus, textarea:focus {
	background-color: #fff;
	box-shadow: 0px 0px 20px 0px var(--color5-3);
}

input[readonly] {
	filter: grayscale(50%);
}

#login_form input#login {
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	border-radius: 10px 10px 0px 0px;
}
#login_form input#pw {
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	border-radius: 0px 0px 0px 0px;
	border-top: 0px;
}
#login_form input#submit {
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	border-radius: 0px 0px 10px 10px;
	border-top: 0px;
}

label {
	display: inline-block;
	cursor: pointer;
	padding: 0em 1em;
	border-radius: 0.5em;
	/*line-height: 3em;*/
}

input[type="radio"] {
	display: none;
}
input[type="radio"] + label::before {
	content: "";
	display: inline-block;

	width: 1em;
	height: 1em;
	font-size: 1em;
	font-weight: bold;
	color: #fff;
	text-align: center;
    line-height: 1em;
	border-radius: 1em;

	margin-right: 10px;
	background-color: var(--color-gray1);
	box-shadow: inset 0 0 8px 0 rgba(0, 0, 0, .2);
	vertical-align: middle;
}

input[type="radio"]:checked + label::before {
	content: "\2713";
	/*text-shadow: 1px 1px 1px rgba(0, 0, 0, .2);*/
	background-color: var(--color1);
}

input[type="radio"]:hover + label::before {
	box-shadow: inset 0 0 16px 0 rgba(0, 0, 0, .3);
}

input[type="radio"] + label {
	/*background-color: var(--color1-1);*/
	/*border: 2px solid transparent;*/
}
input[type="radio"]:checked + label {
	/*background-color: var(--color1-1);*/
	/*border: 2px solid var(--color1);*/
	/*box-shadow: 0 0 1em 0 var(--color-gray1);*/
}
input[type="radio"] + label:hover {
	/*box-shadow: 0 0 1em 0 var(--color-gray1);*/
}


input[type="checkbox"] {
	display: none;
}

input[type="checkbox"] + label {
	width: 100%;
	display: inline-block;
	cursor: pointer;
	position: relative;
    line-height: 1.1em;
	/*padding: 4px 4px 4px 20px;*/
}

input[type="checkbox"] + label::before {
	content: "";
	display: inline-block;

	width: 1em;
	height: 1em;
	font-size: 1em;
	font-weight: bold;
	color: #fff;
	text-align: center;
    line-height: 1em;

	margin-right: 10px;
	background-color: var(--color-gray1);
	box-shadow: inset 0 0 8px 0 rgba(0, 0, 0, .2);
	vertical-align: middle;
}

input[type="checkbox"]:checked + label::before {
	content: "\2713";
	text-shadow: 1px 1px 1px rgba(0, 0, 0, .2);
	background-color: var(--color1);
}

input[type="checkbox"]:hover + label::before {
	box-shadow: inset 0 0 16px 0 rgba(0, 0, 0, .3);
}

input[type="range"] {
	padding: 0;
}

input[type="text"].test_answer {
	min-width: 50%;
	max-width: 100%;
	box-sizing: border-box;
}

label img {
	vertical-align: middle;
}

img {
	border: 0px;
	border-radius: 1px;
	max-width: 100%;
	max-height: 80vh;
}

.mh100 { max-height: 100%; }

img.plain {
	border: 0px;
	border-radius: 0px;
}

img.round {
	border-radius: 50%;
}

.inline {
	height: 1em;
	vertical-align: middle;
}

.menu .inline2 {
	height: 1.5em;
	vertical-align: middle;
}

.inline2 {
	height: 2em;
	vertical-align: middle;
}

img#logo {
	max-width: 100%;
	display: block;
	margin: 0 auto;
}
@media screen {
	img#logo {
		width: 200px;
	}
}
@media screen and (max-width: 1200px) {
	img#logo {
		width: 300px;
	}
}
@media screen and (max-width: 600px) {
	img#logo {
		width: 300px;
	}
}

p {
}

span.required {
	color: #F30;
}

span.red {
	padding: 10px;
	background-color: var(--color1);
	color: #fff;
	margin-right: 10px;
}

h1 {
	font-family: 'font_bold';
	font-weight: normal;
}
h2 {
	font-family: 'font_bold';
	font-weight: normal;
}
h3 {
	font-family: 'font_bold';
	font-weight: normal;
}

strong {
	font-weight: bold;
}

hr {
	border-top: 0px;
	border-left: 0px;
	border-right: 0px;
	border-bottom: 2px dotted var(--color1);
	background: none;
}

ul.none {
	margin-top: 0;
	margin-bottom: 50px;
}

ul.none li {
	list-style-type: none;
}

ol li {
	margin-bottom: 0.5em;
}

li br {
	margin-bottom: 0.5em;
}

video {
	max-width: 100%;
}


progress[value] {
	appearance: none;
	height: 1em;
	color: var(--color2);
	background-color: #fff;
	border: 1px solid var(--color3);
}
progress[value]::-webkit-progress-bar {
    background-color: #fff;
}
progress[value]::-webkit-progress-value {
    background-color: var(--color2);
}
progress[value]::-moz-progress-bar {
    background-color: var(--color2);
}


.color_user			{ color: var(--color2); }
.color_client		{ color: var(--color1); }

.color_red 			{ color: #f00; }
.color_green		{ color: #0b0; }
.color_yellow		{ color: #f9c637; }

u.color {
	text-decoration: underline;
	text-decoration-color: var(--color1);
}

.video iframe {
	display: block;
	margin: 0 auto;
	max-width: 100%;
}

@media only screen {
	.video iframe {
		width:  1200px;
		height:  675px;
	}
}
@media only screen and (max-width: 1200px) {
	.video iframe {
		width:  100vw;
		height:  56.25vw;
	}
}

.webinar iframe {
	display: block;
	margin: 0 auto;
	max-width: 100%;
}

@media only screen {
	.webinar iframe {
		width:  50vw;
		height:  28.125vw;
	}
}
@media only screen and (max-width: 1200px) {
	.webinar iframe {
		width:  100vw;
		height:  56.25vw;
	}
}

.big_list li::marker {
	color: var(--color1);
	font-size: 200%;
	padding: 0;
	margin: 0;
}

.big_list li {
	border-bottom: 1px solid var(--color1-3);
	padding-bottom: 1em;
}

.big_list ul li::marker {
	content: '»\0a0';
	white-space: pre;
}

.bg_rb {
	background-position: 95% 100%;
	background-repeat: no-repeat;
	background-size: auto 30%;
}

a.button_light {
	background-color: var(--color6);
	color: #fff;
	border-color: var(--color3);
}
a.button_light:hover {
	background-color: var(--color6-7);
	border-color: var(--color6);
}

.marker1 p {
	background-color: var(--color1-5);
}

.marker5 p {
	background-color: var(--color5-5);
}

.about_slider a {
	display: block;
	margin: auto;
}

.fixed-height-container {
	position: relative;
	width: 100%;
	height: 500px;
	max-height: 30vh;
}

.fixed-height-container-blog {
	position: relative;
	width: 100%;
	height: 200px;
}

amp-img.contain img {
	object-fit: contain;
	margin-left: 0;
	margin-right: auto;
}

.course_whom {
	background-color: var(--color5-3);
	padding: 1em;
	height: 100%;
	border-radius: 4px;
	border-left: 50px solid var(--color5);
	position: relative;
}
.course_whom::before {
	position: absolute;
	top: 1em;
	left: -45px;
	content: url(/files/site/mark_result.png);
	color: #fff;
}

.course_result {
	background-color: var(--color2-5);
	padding: 1em;
	height: 100%;
	border-radius: 4px;
	border-left: 50px solid var(--color2);
	position: relative;
}
.course_result::before {
	counter-increment: list1;
	position: absolute;
	top: 0em;
	left: -35px;
	content: counter(list1);
	font-family: font_bold;
	font-size: 250%;
	color: #fff;
}

.quote {
	background-color: var(--color2-3);
	border: 1px solid var(--color2);
	border-bottom: 5px solid var(--color2);
	padding: 1em 2em;
	font-style: italic;
	border-radius: 0 1em 1em 1em;
	position: relative;
	width: 700px;
	max-width: 90vw;
	margin: 3em auto;
}
.quote::before {
	display: inline-block;
	content: '«';
	font-size: 300%;
	color: var(--color2);
	position: absolute;
	top: -0.4em;
	left: 0.1em;
}
.quote::after {
	display: inline-block;
	content: '»';
	font-size: 300%;
	color: var(--color2);
	position: absolute;
	bottom: -0.5em;
	right: 0.2em;
}

.tariff_head {
	text-align: center;
	background-color: var(--color1-5);
	color: #fff;
	padding: 0.3em;
}

.tarif_min {
	background-color: var(--color1-1);
	padding: 0 0 1em 0;
	border: 1px solid var(--color1-5);
	border-radius: 4px;
}

.tarif_med {
	background-color: var(--color1-2);
	padding: 0 0 1em 0;
	border: 1px solid var(--color1-5);
	border-radius: 4px;
}

.tarif_max {
	background-color: var(--color1-3);
	padding: 0 0 1em 0;
	border: 1px solid var(--color1-5);
	border-radius: 4px;
}

s.old {
	text-decoration-thickness: 1px;
	text-decoration-color: var(--color6);
}

.tarif_slider {
	margin-left: var(--bs-gutter-x,-.75rem);
	margin-right: var(--bs-gutter-x,-.75rem);
}

.tarif_slider .slick-list {
	padding-left: 2em;
	padding-right: 2em;
}

.live1 {
    /*border: 1px solid var(--color1);*/
    border-radius: 1em;
    padding: 1em;
    background-color: var(--color-gray2-3);
    height: 100%;
}

.video_preview {
	border-radius: 4px;
}

.test_variant {
    padding: 0.5em;
}
.test_ok, .test_ok + label {
    background-color: var(--color5-3);
}

.test_error, .test_error + label {
    background-color: var(--color6-3);
}

.consult_item {
	padding: 1em;
	border: 1px solid var(--color1);
	border-radius: 4px;
	width: 100%;
}

.lecture:hover {
	background-color: var(--color4);
	/*border-bottom: 1px solid var(--color5);*/
}

blockquote {
	font-style: italic;
	padding: 1em 0 1em 1em;
	background-color: var(--color1-1);
	border-left: 3px solid var(--color1-5);
}

blockquote p:last-child {
	margin-bottom: 0;
}

.black_friday {
	padding: 2px 4px;
	border-radius: 4px;
	color: #fff;
	animation-name: black_friday;
	animation-duration: 1s;
	animation-timing-function: linear;
	animation-delay: 0s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}

.cke_notifications_area {
	display: none;
}

#cookie-consent {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: transparent;
	padding: 2rem 2rem 1rem 2rem;
	text-align: start;
	z-index: 9997;
	justify-content: center;
}

#decline-cookies {
	position: absolute;
	top: -0.5rem;
	right: -0.5rem;
	width: auto;
	padding: 0 0.5rem;
	border-radius: 0.5rem;
}

.cookie-card {
	background-color: rgba(0, 0, 0, 0.8);
	width: 500px;
	max-width: 100%;
	position: relative;
	padding: 1rem 0.5rem 0 0.5rem;
	border-radius: 1rem;
	font-size: 80%;
}


