/*** base ***/

:root {
	--color-accent: #ED3237;
	--color-text: #1a1a1a;
	--color-link:  #2f2f2f;
	--color-grey: #434343;
	--color-placeholder: #676767;
	--color-lg: #979797;
	--color-light:  #f1f1f1;
	--color-border:  #f5f5f5;
	--color-lbg: #fefefe;
	--color-mid: #e0e0e0;
	--color-error: #9e0e0e;
	--color-ok:  #56de00;
	--color-white: #fff;
	--color-logo: #303030;
	--rgba-white: rgba(255,255,255,0.7);
	--rgba-dark: rgba(0,0,0,0.7);
}
body, html { 
	margin: 0; 
	padding: 0; 
	width: 100%; 
	min-height: 100vh; 
	height: auto; 
	font-size: 14px; 
	-webkit-tap-highlight-color:transparent;
	font-family: 'Noto Sans Display', sans-serif;
	/*overscroll-behavior: none;*/
	background: linear-gradient(to bottom, var(--color-border) 0%, var(--color-mid) 100%);
	background-attachment: fixed;
}
* { 
	box-sizing: border-box; 
}
*, *::before, *::after {
	box-sizing: border-box;
}
a {
	text-decoration: none;
	color: var(--color-link);
}
h1 {
	font-size: 24px;
}
h3 {
	text-align: center;
}
h1,h2,h3,h4,h5,h6 {
	color: var(--color-text);
}
.no-scroll {
	overflow: hidden;
}
.grecaptcha-badge{
	visibility: collapse !important;  
}
input[type="submit"]:disabled {
	filter: grayscale(100%);
	transition: all 0.2 ease;
}
input, textarea {
	border:  1px solid var(--color-light);
	border-radius: 4px;
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-text); 
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    overflow: hidden;
}
::-webkit-scrollbar-thumb {
    background: var(--color-grey); 
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
:focus{
    outline:none;
}
div.clear{
    clear:both;
}  
.btn {
	padding:  5px 15px;
	height: 35px;
	border:  1px solid var(--color-accent);
	background: var(--color-accent);
	color:  var(--color-white);
	text-align: center;
	border-radius:  4px;
	cursor:  pointer;
}
.btn-light {
	background:  var(--color-white);
	color: var(--color-accent);
}
.r-90 {
	transform: rotate(90deg);
}
.r-180 {
	transform: rotate(180deg);
}
.r-270 {
	transform: rotate(270deg);
}
.circle {
	border-radius: 50%;
}
p {
	margin-top: 0;
}
/*** loader ***/

#loader {
	background: rgba(0,0,0,0.85);
	border-radius: 15px;
	position: fixed;
	z-index: 999999999;
	left: 50%;
	bottom: 0px;
	transform: translate(-50%, 110%);
	transition: all 0.05s ease;
}
#loader.active {
	transform: translate(-50%, -50%);
	transition: all 0.1s ease;
}

/*** wrapper ***/

#wrapper {
	width: 100%;
	height:  auto;
	min-height: 100vh;
	position: relative;
	padding:  0;
	z-index: 0;
}
.container {
	position: relative;
	width: 100%;
	max-width: 1200px;
	height: auto;
	margin: 0 auto;
	padding: 10px 15px;
	background: var(--color-white);
	color: var(--color-text);
	box-shadow: 0 0 10px var(--rgba-white);
}
#main-1.block {
	margin-left: -15px;
	width: calc(100% + 30px);
	padding: 15px;
	margin-top: -30px;
}
.block img {
	max-width: 100%;
}
.split {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
.split__item {
	width: 100%;
	margin-bottom: 20px;
}
.hp {
	padding: 20px 0;
	overflow-x: hidden;
}
.hp iframe {
	width: 540px;
	aspect-ratio: 540 / 303;
}
.hp h2, .block.hp > .pre {
	width: 100%;
	text-align: center;
	text-transform: uppercase;
}
.hp h2 {
	font-weight: 600;
}
.hp img {
	max-width: 100%;
}
/*** header ***/

#header {
	position: fixed;
	left:  0;
	top:  0;
	z-index: 150;
	height:  70px;
	width:  100%;
	color:  var(--color-text);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	transition: all 0.3s ease;
}
#header .container {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: var(--color-white);
	border-bottom:  1px solid var(--color-border);
	transition: all 0.3s ease;
}
#header.expanded {
	height: 100vh;
	z-index:  999;
	background:  rgba(0,0,0,0.85);
	transition: all 0.3s ease;
}
#header.expanded .container {
	transition: all 0.3s ease;
}
.h-row {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}
#h-left, #h-right {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	transition: all 0.3s ease;
}
#h-right {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
}
#h-left {
	justify-content: flex-start;
	align-items: flex-start;
}
#header #logo {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	font-size: 32px;
	line-height: 38px;
	height: 60px;
	width:  auto;
	text-align: center;
	padding: 0;
	margin: 0;
	text-transform: uppercase;
}
#header #logo svg, #header #logo img {
	height: 60px;
	max-width: 40vw;
	aspect-ratio: 203 / 60;
	transition: all 0.2s ease; 
}
#header #logo svg .fil0 {
	fill: var(--color-accent);
}
#header #logo svg .fil1 {
	fill: var(--color-logo);
}

#spacer {
	flex-grow: 0;
}
#header.expanded #menu, #header.expanded #h-right {
	max-height: 50vh;
	padding-right: 15px;
	overflow: visible;
	height:  auto;
	padding:  30px 0;
	opacity: 1;
	transition: all 0.3s ease;
}
#mode-select {
	height: 28px;
	padding: 3px 10px;
	margin-right: 15px;
	background: var(--color-text);
	border: 0;
	font-size: 20px;
}

/*** menu ***/

#menu {
	height:  30px;
	font-size: 18px;
	letter-spacing: 0.3px;
	list-style: none;
	margin-right: -15px;
	color:  var(--color-white) !important;
	display: flex;
		
	align-items: center;
	justify-content: flex-end;
	justify-self: flex-end;

	max-height: 0;
	opacity: 0;
	overflow: hidden;
	flex-direction: column;
	transition: all 0.3s ease;
}
.menu__item  {
	padding: 5px 15px;
	margin:  0;
	display: block;
	color:  var(--color-text);
	border-radius: 5px;
	cursor: pointer;
	position: relative;
	transition: all 0.2s ease;
}
.menu__item:hover {
	transition: all 0.2s ease;
}
.menu__item.active {
	transition: all 0.2s ease;
}
.menu__item::after {
	transform: translate(-50%, 0);
	background: var(--color-accent);
	display: block;
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	z-index: 31;
	width: 0;
	height: 2px;
	transition: all 0.2s ease;
}
.menu__item:hover::after, .menu__item.active::after {
	width: calc(100% - 10px);
	transition: all 0.2s ease;
}
#mmenu {
	position: absolute;
	right: 20px;
	top: 10px;
	display:  block;
	background:  var(--color-border);
	border:  0;
	color:  var(--color-placeholder);
	text-align: center;
	padding:  10px 0;
	font-size: 18px;
	border-radius:  4px;
	width:  70px;
	height:  40px;
}
/*** main ***/
#main-1 {
	background: var(--color-grey);
	color: #fff;
}
#main-1 h1 {
	color: #fff;
	text-transform: uppercase;
	text-align: center;
}
.block p.pre {
	text-align:  left;
	text-transform: uppercase;
	font-size: 12px;
}
.block h2 {
	text-transform: uppercase;
}
#main-1 p.pre {
	text-align: center;
}
.blocks {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	background: var(--color-accent);
}
.blocks__item {
	color: #fff;
	padding: 10px;
	line-height: 20px;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.blocks__item span {
	text-transform: uppercase;
	font-size: 18px;
	width: 100%;
	display: flex;
	padding-bottom: 10px;
}
.blocks__item:nth-child(even) {
	background: rgba(0,0,0,0.15);
}
.blocks__item img, .blocks__item iframe {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
/*** content ***/

#content {
	padding-top: 60px;
	min-height: 100vh;
	position: relative;
}
#content .container {
	padding-top: 30px;
	padding-bottom: 80px;
	min-height: calc(100vh - 81px);
}
.block_header {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	border-bottom : 1px solid var(--color-border);
	margin-bottom: 10px;
}
.block_header h3 {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 16px;
}
.block_header i {
	padding:  0 5px;
}
.block_header a {
	margin-left:  10px;
	font-size: 14px;
	font-weight: 200px;
	white-space: nowrap;
	letter-spacing: -0.3px;
}
.split-cont {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
}
.small-cont {
	width: 100%;
}
.small-cont h3 {
	margin: 0 0 10px;
}
.left-cont {
	width: 100%;
	border: 1px solid var(--color-border);
	border-radius: 4px;
	margin-bottom: 20px;
}
.left-cont h2 {
	width: 100%;
	border-bottom: 1px solid var(--color-border);
	background: var(--color-border);
	margin: 0;
	padding: 5px 10px;
	font-size: 18px;
	position: relative;
}
.left-cont h2:after {
	content: "\f078";
	font-family: "ForkAwesome";
	position: absolute;
	right: 15px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	top: 50%;
	transform: translate(0, -50%) rotate(0deg);
	transition: all 0.2s ease;
}
.left-cont.expanded h2:after {
	transform: translate(0, -50%) rotate(180deg);
	transition: all 0.2s ease;
}

/*** left menu ***/
.left-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	max-height: 0;
	transform-origin: 50% 0;
	transform: scale(1, 0);
	transition: all 0.2s ease;
}
.left-menu.expanded {
	max-height: 100vh;
	transform-origin: 50% 0;
	transform: scale(1, 1);
	transition: all 0.2s ease;
}
.left-menu.sub {
	transform: scale(1, 0);
	transform-origin: 50% 0;
	max-height: 0;
	transition: all 0.2s ease;
}
.left-menu-item a {
	font-size: 13px;
	line-height: 20px;
	padding: 3px;
	border-radius: 4px;
	transition: all 0.2s ease;
}
.left-menu-item.expanded > .left-menu.sub {
	transform: scale(1, 1);
	max-height: 1000px;
	transition: all 0.2s ease;
}
.left-menu-item.expanded > .left-menu-arrow {
	transform: rotate(180deg);
	transition: all 0.2s ease;
}
.left-menu-item.active > a {
	font-weight: 600;
	color: var(--color-accent);
}
.left-menu-item {
	padding: 3px 10px 3px 25px;
	position: relative;
}
.left-menu-item:hover > a {
	background: var(--color-accent);
	color: #fff;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
	transition: all 0.2s ease;
}
.left-menu-arrow {
	font-size: 12px;
	position: absolute;
	left: 5px;
	top: 0;
	width: 20px;
	text-align: center;
	cursor: pointer;
	line-height: 25px;
	transition: all 0.2s ease;
}

/*** footer ***/

#footer {
	color:  var(--color-text);
	min-height:  20px;
	z-index: 10;
	padding: 20px;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
	border-top:  1px solid var(--color-border);
}

#dev, #copy, #engine {
	color:  var(--color-text);
	font-size: 12px;
}
#dev a {
	color: var(--color-text);
	text-decoration: none;
	padding:  1px 5px;
	border-radius: 4px;
	transition: all 0.2s ease;
}
#dev a:hover {
	background: rgba(0,0,0,0.7);
	color:  var(--color-white);
	transition: all 0.2s ease;
}

/*** breadcrumbs ***/

#breadcrumbs {
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.breadcrumbs__item {
	margin-right: 10px;
	font-size: 12px;
	color: var(--color-text);
}
.breadcrumbs__item:first-child i {
	margin-right: 5px;
	color: var(--color-text);
}

/*** lightbox ***/

#lightbox, .modal {
	position: fixed;
	z-index: 9999999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.85);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transform: scale(1, 0);
	transform-origin: 50% 50%;
	/*transition: all 0.2s ease;*/
}
.modal-b {
	top: unset;
	bottom: 0;
	justify-content: flex-end;
	transform-origin: 50% 100%;
}
#lightbox.visible, .modal.visible {
	transform: scale(1, 1);
	/*transition: all 0.2s ease;*/
}
#lightbox-wrapper {
	background: var(--rgba-dark) url(/images/loading.svg) 50% 50% no-repeat;
	border-radius: 0;
	padding: 2px;
}
#lightbox-wrapper, .modal-wrapper {
	position: relative;
	box-shadow: 5px 5px 10px rgba(0,0,0,0.3);
	max-width: 95%;
	max-height: 90%;
	transform: scale(1,0.3);
	transform-origin: 50% 50%;
	transition: all 0.2s ease;
}
#lightbox.visible #lightbox-wrapper, .modal.visible .modal-wrapper {
	transform: scale(1,1);
	transition: all 0.2s ease;
}
#lightbox-content, .modal-content {
	width: 100%;
	height: 100%;
}
.modal-b .modal-wrapper {
	max-width: 100%;
	max-height: 90vh;
	width: 100%;
}
.modal-b .modal-content {
	background: var(--color-white);
	padding: 25px;
	width: 100%;
	border-top-left-radius: 48px;
	border-top-right-radius: 48px;
}
#lightbox-content {
	min-height: 200px;
	min-width: 200px;
	padding: 0;
	display: flex;
}
#lightbox-content img {
	max-width: 100%;
	max-height: 100%;
	display: block;
	margin: 0;
}
.lightbox-btn {
	position: absolute;
	top: 0;
	opacity: 0.01;
	cursor: pointer;
	height: 100%;
	width: 50%;
	z-index: 4;
	line-height: calc(100%);
	text-align: center;
	text-shadow: 3px 3px 5px rgba(0,0,0,0.3);
	transition: all 0.2s ease-in;
}

.lightbox-btn i {
	position: absolute;
	left: 20px;
	text-align: center;
	top: 50%;
	width: 40px;
	color: rgba(255,255,255,0.7);
	transform: translate(0, -50%);
	font-size: 32px;
	transition: all 0.2s ease-in;
}
.lightbox-btn:hover {
	opacity: 0;
	transition: all 0.2s ease-in;
}
.lightbox-btn:hover i {
	color:  rgba(255,255,255,0.8);
	transition: all 0.2s ease-in;
}
#lightbox-left {
	left: 0;
}
#lightbox-right {
	right: 0;
}
#lightbox-right i {
	left: unset;
	right: 20px;
}
#share {
	position: absolute;
	top:  2px;
	right: 2px;
	width: 30px;
	height: 30px;
	font-size: 20px;
	line-height: 30px;
	text-align: center;
	margin: 0;
	padding: 0 5px;
	border-radius: 0;
	border-bottom-left-radius: 5px;
	border:  0;
	z-index: 5;
	background: rgba(0,0,0,0.7);
	color:  #fff;
}
#share i {
	margin: 0;
	padding: 0;
	font-size: 18px;
	line-height: 30px;
}
#lightbox-download {
	font-size: 14px;
	color: #fff;
	padding: 2px 5px !important;
}
#lightbox-download i {
	font-size: 18px
}
#lightbox-count {
	position: absolute;
	top:  2px;
	left: 2px;
	padding: 3px 5px;
	text-align: center;
	border-radius: 0;
	border-bottom-right-radius: 5px;
	border:  0;
	z-index: 2;
	background: rgba(0,0,0,0.7);
	color:  #fff;
	font-size: 10px;
}
#lightbox-info {
	background: var(--rgba-dark);
	color: var(--color-light);
	padding: 5px 15px;
	border-radius: 4px;
	font-size: 10px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	margin-top: 5px;
	text-transform: uppercase;
	max-width: 90vw;
	flex-wrap: wrap;
}
#lightbox-info i {
	color: var(--color-green);
	margin-right: 10px;
	font-size: 14px;
}
#lightbox-info img {
	width: 14px;
	margin: 0 10px;
}
#lightbox-info span {
	white-space: nowrap;
	display: flex;
	align-items: center;
}

/*** cookies ***/
#cookies {
	position: fixed;
	bottom: 10px;
	left: 50%;
	width: 90vw;
	height: auto;
	padding: 20px;
	z-index: 100;
	border-radius: 4px;
	box-shadow: 2px 2px 5px var(--rgba-dark);
	background: var(--color-text);
	color: var(--color-white);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	transform: translate(-50%, 0);
}
#cookies-text {
	font-size: 16px;
}
#cookies-btn {
	margin-top: 20px;
	font-size: 16px;
	color: #fff;
}
/*** socials ***/
.socials {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-evenly;
}
.socials__item {
	font-size: 14px;
	line-height: 12px;
	padding: 3px 10px;
}
.socials__item i {
	font-size: 18px;
}
/*********** CSlider ************/
.cslider {
	width: 100%;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	flex-direction: row;
	margin-bottom: 50px;
}
.cslider__controls {
	width: 50px;
	font-size: 48px;
	border: 0;
	cursor: pointer;
	background: transparent;
}
.cslider__wrapper {
	width: calc(100% - 140px);
	position: relative;
	overflow: hidden;
	height: 250px;
}
.cslider__inner {
	width: 10000000px;
	left: 0;
	position: absolute;
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: flex-start;
	transition: all 0.2s ease;	
}
.cslider__item {
	width: calc(100vw - 100px - 40px);
	height: 250px;
	padding: 0 20px;
	border: 0;
	background: transparent;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}
.cslider.animating .cslider__item {
	transform-origin: 50% 50%;
	transform: scale(0.5, 0.5);
	transition: all 0.2s ease;
}
.cslider__img img {
	max-width: 100%;
	max-height: 100%;
}


/*** search ***/
#search {
	justify-content: flex-start;
	padding-top: 50px;
}
.search-btn {
	border: 0;
	width: 30px;
	height: 30px;
	padding: 0;
	color: var(--color-link);
	line-height: 30px;
	text-align: center;
	background: transparent;
	margin: 0;
	cursor: pointer;
	font-size: 20px
}
#search_wrapper {
	border-radius: 4px;
}
#search_module {
	position: relative;
}
#search_field {
	width:  100%;
	min-width: 90vw;
		
	border:  1px solid var(--color-border);
	color: var(--color-gery);
	padding:  10px 65px 10px 25px;
	border-radius: 4px;
	height: 60px;
	font-size: 18px;
	cursor: text;
}
#search_field::placeholder {
	color:  var(--color-placeholder);
}
#search_button {
	display: block;
	cursor: pointer;
	position: absolute;
	right: 0px;
	top: 0px;
	width:  45px;
	height: 60px;
	background: var(--color-grey);
	border:  1px solid var(--color-grey);
	color: var(--color-white);
	border-radius: 0px;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;

}
#search_results {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	position: absolute;
	top: 65px;
	left:  0;
	width: 100%;
	height:  0;
	border-radius: 4px;
	overflow-y: scroll;
	background: var(--color-white);
	box-shadow: 5px 5px 15px rgba(0,0,0,0);
	transition: all 0.2s ease;
}
#search_results.active {
	height:  auto;
	min-height: 200px;
	max-height: 50vh;
	border:  0;
	transition: all 0.2s ease;
}
.search_res {
	padding: 5px 15px;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-direction: column;
	position: relative;
	min-height: 20px;
	transition: all 0.2s ease;
}
.search_res-title {
	padding: 5px 15px !important;
	margin:  0 !important;
}
.search-all-res-btn {
	position: absolute;
	right: 15px;
	font-size: 13px;
	top: 50%;
	transform: translate(0, -50%);
}
.search-all-res-btn i {
	font-weight: 200;
	margin-right: 10px;
	font-size: 14px;
}
#search_page .search_res {
	padding: 5px;
}
#search .search_res:hover {
	background: var(--color-light);
	transition: all 0.2s ease;
}
#search .search_res a {
	color: var(--color-link);
	font-size: 14px;
}
#search .search_res span {
	font-size: 10px;
}
#search_results::-webkit-scrollbar {
  width: 4px;
  margin-right:  12px;
}
#search_results::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
#search_results::-webkit-scrollbar-thumb {
  background-color: var(--color-light);
  outline: 1px solid var(--color-grey);
}
#search_page {
	width: 100%;
}
#search_page .search_res {
	padding: 10px 0;
}
#search_page .search_res a {
	color: var(--color-link);
}
.searchword {
	background: var(--color-accent);
	color:  var(--color-white);
} 

/*** tooltips ***/

#tooltip {
	display: block;
	position: fixed;
	left: 50%;
	bottom: -200px;
	max-width: 50vw;
	user-select: none;
	max-height: 0;
	transition: all 0.2s ease;
	background: var(--color-light);
	color: var(--color-text);
	z-index: 9999999999;
}
#tooltip.error {
	background: var(--color-error);
	color:  var(--color-white);
	transition: all 0.2s ease;
}
#tooltip.active {
	bottom: 0;
	max-height: 300px;
	transform: translateX(-50%);
	transition: all 0.2s ease;
}
#tooltip-message {
	margin: 10px 60px 10px 25px;
	font-size: 16px;
	line-height: 25px;
}
#tooltip-close {
	cursor: pointer;
	position: absolute;
	right: 10px;
	top: 50%;
	width: 25px;
	height: 25px;
	line-height: 25px;
	font-size: 25px;
	transform: translateY(-50%);
}

/*** slider ***/
#slider {
	width:  calc(100% + 30px);
	transform: translate(-15px, -30px);
}
#slider::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -1px;
	height: 40px;
	width: 100%;
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0, var(--color-grey) 80%);
	z-index: 10;
}
.slider {
	position: relative;
	aspect-ratio: 2 / 1;
}
.slider__wrapper {
	overflow: hidden;
	position: relative;
	aspect-ratio: 2 / 1;
	z-index: 9;
}
.slider__inner {
	position: absolute;
	width: 99999px;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-direction: row;
	transition: all 0.4s ease;
}
.slider__item {
	aspect-ratio: 2 / 1;
	width:  100vw;
	position: relative;
}
.slider__image {
	width: 100%;
	aspect-ratio: 2 / 1;
}
.slider__title {
	position: absolute;
	left: 10%;
	top:  15%;
	font-size: 24px;
	color:  #fff;
	font-weight: 700;
	text-shadow: 2px 2px 15px rgba(0,0,0,0.5);
}
.slider__text {
	position: absolute;
	left: 10%;
	top:  25%;
	width: 40%;
	font-weight: 400;
	font-size: 16px;
	color:  #fff;
	text-shadow: 2px 2px 15px rgba(0,0,0,0.5);
}
.slider__link {
	position: absolute;
	top: 70%;
	left: 10%;
	font-size: 16px;
	color:  #fff;
	text-shadow: 2px 2px 15px rgba(0,0,0,0.5);
}
.slider__btn {
	position: absolute;
	top:  0;
	width:  5%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-size: 18px;
	color:  #fff;
	border: 0;
	background: rgba(0,0,0,0);
	opacity:  0.1;
	z-index: 11;
	transition: all 0.2s ease;
}
.slider__btn:hover {
	opacity:  1;
	background: linear-gradient(90deg, rgba(0,0,0,0) 0, rgba(0,0,0,0.3) 70%);
	transition: all 0.2s ease;
}
.slider__btn.slider__prev {
	left:  0;
}
.slider__btn.slider__next {
	right:  0;
}
.slider__btn.slider__prev:hover {
	background: linear-gradient(90deg, rgba(0,0,0,0.3) 30%, rgba(0,0,0,0) 100%);
}
.slider__dots {
	position: absolute;
	bottom:  5px;
	left:  50%;
	z-index: 11;
	transform: translate(-50%, 0);
}
.slider__dot {
	width: 12px;
	height: 12px;
	padding: 0;
	margin-right:  5px;
	border-radius: 50%;
	border:  1px solid #fff;
	background: #fff;
	cursor: pointer;
	box-shadow: inset 0 0 5px rgba(0,0,0,0.3), 0 0 5px rgba(0,0,0,0.2);
}
.slider__dot.active {
	background: var(--color-accent);
	transition: all 0.2s ease;
}
/*** map ***/
#map {
	width: calc(100% + 50px);
	transform: translate(-25px);
	height: 500px;
}
#map iframe {
	overflow:hidden;
	background:none !important;
	height:500px;
	width:100%;
	border: 0 !important;
}

/*** Categories module ***/
#subcats {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}
.subcats__item {
	padding: 3px;
	margin: 5px 10px 5px 0;
}

/*** product module ***/
#products {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	width: calc(100% + 20px);
	transform: translate(-10px);
}
.products__item {
	width: calc(50% - 20px);
	margin: 0 10px 20px;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	border: 1px solid var(--color-border);
	border-radius: 4px;
	overflow: hidden;
}
.products__item-image {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.products__item-image img {
	width: 100%;
	height: auto;
	display: inline-block;
}
.products__item-details {
	width: 100%;
	border-top: 1px solid var(--color-border);
	padding: 5px 10px;
}
.products__item-title {
	font-size: 13px;
}

/*** animation ***/
.ani {
	opacity: 0.01;
	transition: all 0.5s ease-in;
}
.ani-t {
	transform: translate(0, 50%);
	transition: all 0.5s ease-out;
}
.ani-l {
	transform: translate(-100%, 0);
	transition: all 0.5s ease-out;
}
.ani-r {
	transform: translate(100%, 0);
	transition: all 0.5s ease-out;
}
.ani-b {
	transform: translate(0, -50%);
	transition: all 0.5s ease-out;
}
.animated {
	transform: translate(0, 0);
	opacity: 1;
	transition: all 0.5s ease-out;
}
/*** media queries ***/

@media screen and (min-width: 500px) {
	
	
}
@media screen and (min-width: 750px) {
	h3 {
		text-align: left;
	}
	#logo svg {
		max-width: unset;
	}
	.slider__title {
		font-size: 32px;
	}
	#search_field {
		min-width: 400px;
	}
	.slider__btn {
		font-size: 36px;
	}
	#dev, #copy, #engine {
		font-size: 13px;
	}
	#footer .container {
		flex-direction: row;
	}
	.split-cont {
		flex-direction: row;
	}
	.left-cont {
		width: 200px;
	}
	.small-cont {
		width: calc( 100% - 20px - 200px);
	}
	.left-cont h2:after {
		display: none;
	}
	.left-menu {
		transform: scale(1,1);
		max-height: unset;
	}
	.products__item {
		width: calc(33% - 20px);
	}
}
@media screen and (min-width: 1000px) {
	.cslider__item {
		width: calc((100vw - 180px) / 2);
	}
	.split {
		flex-direction: row;
	}
	.split__item {
		width: calc(50% - 10px);
	}
	#main-1.block {
		margin-left: -25px;
		width: calc(100% + 50px);
		padding: 25px;
	}
	#content {
		padding-top: 81px;
	}
	.breadcrumbs__item {
		font-size: 13px;
	}
	#slider {
		width:  calc(100% + 50px);
		transform: translate(-25px, -30px);
	}
	.slider__title {
		font-size: 56px;
	}
	.container {
		padding-left: 25px;
		padding-right: 25px;
	}
	#menu {
		flex-direction: row;
		max-height: unset;
		opacity: 1;
		overflow: visible;
	}
	#header .container {
		flex-direction: row;
	}
	#h-right {
		max-height: unset;
		opacity: 1;
		overflow: visible;
		align-items: flex-end;
	}
	.menu__item {
		font-size: 14px;
	}
	#spacer {
		flex-grow: 1;
	}
	#mmenu {
		display:  none;
	}
	#footer {
		flex-direction: row;
		justify-content: space-between;
	}
	#cookies {
		width: auto;
		flex-direction: row;
	}
	#cookies-btn {
		margin-top: unset;
		margin-left: 20px;
	}
	.left-cont {
		width: 300px;
	}
	.small-cont {
		width: calc( 100% - 20px - 300px);
	}
}
@media screen and (min-width: 1200px) {
	.menu__item {
		font-size: 16px;
	}
	.lightbox-btn {
		display:  block;
	}
	.slider__item  {
		width: 1200px;
	}
	.cslider__item {
		width: calc(600px - 50px - 40px);
	}
	.products__item {
		width: calc(25% - 20px);
	}
}
@media screen and (min-width: 1350px) {

}
@media screen and (min-width: 1800px) {
	.container {
		max-width: 1400px;
	}
	.slider__item {
		width: 1400px;
	}
	.cslider__item {
		width: calc(700px - 50px - 40px);
	}
}
