/*** base ***/

:root {
	--color-accent: #02495A;/*03647B 048FAF 2CA4C0*/
	--color-text: #01252E;
	--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.05);
	--rgba-accent: rgba(36,111,68,0.5);
}
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-border) 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;
	padding-top: 0;
	margin-top: 0;
}
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;
	font-family: 'Noto Sans Display', sans-serif;
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-border); 
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    overflow: hidden;
}
::-webkit-scrollbar-thumb {
    background: var(--color-mid); 
    border-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-question {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: fixed;
	right: 20px;
	bottom: 30px;
	width: 80px;
	height: 80px;
	border-radius: 50% !important;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.15);
	font-size: 12px;
}
.btn-calc {
	bottom: 120px;
}
.btn-question i {
	font-size: 24px;
}
.question {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;

}
.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;
}
.c-img {
	max-width: 100%;
	aspect-ratio: 1;
	height: auto;
	border-radius: 16px;
}
/*** 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-dark);
}
.split {
	display: flex;
	flex-direction: column-reverse;
	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-left-radius: 16px;
	border-bottom-right-radius: 16px;
	border-bottom:  0px 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;
	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: 325 / 60;
	transition: all 0.2s ease; 
}
#header #logo svg .fil5 {
	fill: var(--color-text);
}
#header #logo svg .fil1 {
	/*fill: var(--color-logo);*/
}

#spacer {
	flex-grow: 0;
}
#header.expanded #menu, #header.expanded #h-right {
	max-height: 90vh;
	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;
	max-width: 100%;
	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  {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	cursor: pointer;
	position: relative;
	transition: all 0.2s ease;
}
.menu__item-filler {
	flex-grow: 1;
}
.menu__item a {
	padding: 5px 15px;
	margin:  0;
	color:  var(--color-text);
	white-space: nowrap;
	position: relative;
}
.menu__item:hover {
	transition: all 0.2s ease;
}
.menu__item.active {
	transition: all 0.2s ease;
}
.menu__item > a::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__chevron {
	color: var(--color-accent);
	display: flex;
	height: 28px;
	width: 28px;
	position: absolute;
	right: 20%;
	top: 0;
	transform: rotate(0deg);
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: all 0.2s ease;
}
.dropdown.visible .menu__chevron {
	transform: rotate(180deg);
	transition: all 0.2s ease;
}
.menu__item > a:hover::after, .menu__item.active > a::after {
	width: calc(100% - 10px);
	transition: all 0.2s ease;
}
.menu__item .submenu {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	max-height: 0;
	width: 100%;
	position: relative;
	top: calc(100%);
	left: 0;
	flex-wrap: nowrap;
	padding: 0 5px;
	overflow-x: hidden;
	overflow-y: hidden;
	border-radius: 16px;
	box-shadow: 0 0 15px rgba(0,0,0, 0);
	transition: all 0.5s ease;
}
.menu__item.dropdown.visible .submenu {
	max-height: calc(60vh);
	padding: 20px 10px;
	overflow-y: scroll;
	background: var(--color-white);
	transition: all 0.5s ease;
}
.sm__item {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}
.sp__parent {
	width: 100%;
	font-size: 14px;
	font-weight: 600;
	border-bottom: 1px solid var(--color-accent);
}
.sp__child {
	font-weight: 200;
	font-size: 13px;
}
#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:  100px;
	height:  40px;
}
#mmenu i {
	white-space: nowrap;
	margin-right: 10px;
}
/*** main ***/
#content #benefits {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: space-between;
	background: transparent;
	border: 0;
	padding: 0;
	margin-bottom: 0;
	box-shadow: none;
	flex-wrap: wrap;
}
.benefit {
	color: #fff;
	padding: 10px;
	line-height: 20px;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
	background: var(--color-white);
	border-radius: 16px;
	box-shadow: 0 0 15px var(--rgba-dark);
	padding: 25px;
	margin-bottom: 20px;
	width: 20%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-width: 45vw;
	color: var(--color-text);
}
.benefit__icon {
	font-size: 48px;
	margin-bottom: 10px;
	color: var(--color-accent);
}
.benefit__text {
	font-size: 12px;
}
.benefit__text span {
	font-weight: 600;
}

/*** content ***/

#content {
	padding-top: 100px;
	padding-bottom: 50px;
	min-height: 100vh;
	position: relative;
}
#content .container {
	padding-top: 15px;
	padding-bottom: 15px;
	border-radius: 16px;
	margin-bottom: 20px;
}
.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;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}
#footer .container {
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
	padding: 15px 25px;
	background: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
}

#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);
}

/*** feedback ***/
.feeds {
	width: 100%;
	display: flex;
	align-items: stretch;
	justify-content: space-around;
	flex-direction: row;
	flex-wrap: wrap;
}
.feeds.all {
	align-items: flex-start;
	justify-content: space-between;
}
.feeds.all .feeds__item:nth-child(n+5) {
	transform: scale(1,0);
	max-height: 0;
	margin: 0;
	transition: all 0.2s ease-out;
}
.feeds.all.expanded .feeds__item:nth-child(n+5) {
	transform: scale(1,1);
	max-height: calc(100vh);
	margin: 50px auto 15px;
	transition: all 0.2s ease-out;
}
.feed-showall {
	margin: 0 auto;
}
.feeds__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	width: calc(25% - 20px);
	min-width: calc(100% - 20px);
	cursor: pointer;
	margin-top: 50px;
	border-radius: 10px;
	position: relative;
	max-width: 330px;
	margin-bottom: 15px;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.15);
}
.feeds__icon {
	position: absolute;
	overflow: hidden;
	width: 110px;
	height: 110px;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.15);
	margin-top: -50px;
	margin-left: -10px;
	left: 0;
	top: 0;
	border-radius: 50%;
	background: #fff;
}
.feeds__icon img {
	border-radius: 50%;
	object-fit: cover;
	width: calc(100% - 8px);
	height: calc(100% - 8px);
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.feeds__title {
	font-size: 18px;
	background: var(--color-accent);
	color: #fff !important;
	font-weight: 600;
	margin: 0;
	text-align: right;
	line-height: 25px;
	padding-right: 20px;
	padding-left: 110px;
	height: 75px;
	width: 100%;
	margin: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
.feeds__date {
	font-size: 12px;
	font-weight: 200;
	width: 100%;
	text-align: right;
	margin-top: 15px;
	color: var(--color-text);
	text-shadow: var(--rgba-dark);
}
.feeds__text {
	padding: 20px;
	font-weight: 200;
	font-size: 14px;
	text-align: left;
	width: 100%;
	min-height: calc(100% - 75px);
	background: var(--color-white);
	color:  var(--color-darkgrey);
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.feeds__text p {
	margin: 0;
}

.feeds.all .feeds__item {
	position: relative;
}

#feedbacks, #faqs, #lightbox, .modal {
	position: fixed;
	z-index: 9999999;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	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% 0;
	transition: all 0.2s ease-in-out;
}
#feedbacks.visible, #faqs.visible, #lightbox.visible, .modal.visible {
	transform: scale(1, 1);
	transition: all 0.2s ease-in-out;
}
#feedbacks-wrapper, #faqs-wrapper, #lightbox-wrapper {
	background: #fff;
	border-radius: 10px;
	box-shadow: 5px 5px 10px rgba(0,0,0,0.3);
	padding: 25px;
}
#feedbacks-form {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
#feedbacks-form input, #feedbacks-form textarea {
	width: 100%;
	padding: 10px;
	font-size: 14px;
	margin-bottom: 10px;
}
#feedbacks-form textarea {
	min-height: 100px;
}
/*** gallery ***/
.gallery {
	width: calc(100% + 16px);
    display: flex;		
	flex-wrap: wrap;
	flex-direction: row;
	margin: 0 -8px;
	padding-top: 10px;
	justify-content: space-between;
}
.gallery .fi {
	position: relative;
	cursor: pointer;
	z-index: 99;
	margin: 0 4px 8px;
	width: calc(50% - 8px);
	aspect-ratio: 1;
}
.fi-filler {
	flex-grow: 1;
}
.gallery .fi-image {
	border-radius: 4px;
	overflow: hidden;
	width: 100%;
}
.gallery .fi-image, .gallery .gi-image {
	border:  0;
	position: relative;
	z-index: 1;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 1;
}
.fi-image img {
	position: absolute;
	z-index: 1;
	left: 50%;
	top: 30%;
	transform: translate(-50%, -30%);
	max-width: calc(100% * 3 / 2);
	max-height: calc(100% * 3 / 2);
}
.gallery .gi-image img {
	width: 100%;
}
/*** 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: 16px;
	line-height: 12px;
	padding: 3px 10px;

	display: flex;
	flex-direction: row;
	align-items: center;
}
.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-accent);
	color: var(--color-white);
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
	z-index: 9999999999;
}
#tooltip.error {
	background: var(--color-error);
	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-cont {
	padding: 0 !important;
	overflow: hidden;
}
#slider {
	position: relative;
	z-index: 3;
	width:  100%;
}

.slider {
	position: relative;
	z-index: 5;
	aspect-ratio: 14 / 4;
}
.slider__wrapper {
	overflow: hidden;
	position: relative;
	aspect-ratio: 14 / 4;
	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: 14 / 4;
	width:  100vw;
	position: relative;
}
.slider__image {
	width: 100%;
	z-index: 12;
	aspect-ratio: 14 / 4;
}
.slider__title {
	display: none;
	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;
	bottom: 10px;
	height: auto !important;
	left: 4%;
	font-size: 12px;
	padding: 2px 5px;
	z-index: 13;
}
.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;
	text-shadow: 3px 3px 8px rgba(0,0,0,0.3);
	background: linear-gradient(90deg, rgba(255,255,255,0) 0%, var(--rgba-accent) 100%);
	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, var(--rgba-accent) 0%, rgba(255,255,255,0) 100%);
}
.slider__dots {
	position: absolute;
	bottom:  5px;
	left:  50%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	z-index: 11;
	transform: translate(-50%, 0);
}
.slider__dot {
	width: 24px;
	height: 24px;
	padding: 0;
	margin-right:  5px;
	border: 0;
	background: transparent;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.slider__dot:after {
	display: flex;
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #fff;
	border:  1px solid #fff;
	box-shadow: inset 0 0 5px rgba(0,0,0,0.3), 0 0 5px rgba(0,0,0,0.2);
	transition: all 0.2s ease;
}
.slider__dot.active:after {
	background: var(--color-accent);
	transition: all 0.2s ease;
}
/*** map ***/
#content .map {
	padding: 0 !important;
	overflow: hidden;
}
#map {
	width: calc(100%);
	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) {
	.gallery .fi {
		width: calc((100%) / 3 - 8px);
	}
	
}
@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;
	}
	.benefit, .feeds__item {
		min-width: 20%;
	}
	.slider__btn {
		font-size: 36px;
	}
	#dev, #copy, #engine {
		font-size: 13px;
	}
	.gallery .fi {
		width: calc((100%) / 4 - 8px);
	}
	#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) {
	.menu__chevron {
		display: none;
	}
	.slider__link {
		bottom: 40px;
		font-size: 14px;
		padding: 5px 15px;
	}
	.c-img {
		margin-left: 40px;
		width: 450px;
		max-width: unset;
	}
	.submenu {
		justify-content: flex-start !important;
	}
	.menu__item.dropdown:hover .submenu {
		max-height: calc(60vh);
		padding: 20px 10px;
		overflow-y: scroll;
		background: var(--color-white);
		transition: all 0.5s ease;
	}
	.cslider__item {
		width: calc((100vw - 180px) / 2);
	}
	.gallery .fi {
		width: calc((100%) / 5 - 8px);
	}
	.benefit__text {
		font-size: 14px;
	}
	.split {
		flex-direction: row;
	}
	.split__item {
		width: calc(50% - 10px);
	}
	#content {
		padding-top: 100px;
	}
	.breadcrumbs__item {
		font-size: 13px;
	}
	#slider {
		width:  100%;
	}
	.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;
		position: static;
	}
	.menu__item .submenu {
		position: absolute;
		flex-direction: row;
		flex-wrap: wrap;
		overflow: hidden !important;
		box-shadow: 0 0 15px rgba(0,0,0,0.05);
	}
	.sm__item {
		width: auto;
		padding: 0 10px;
	}
	#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;
	}
	.gallery .fi {
		width: calc((100%) / 6 - 8px);
	}
	.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) {
	.gallery .fi {
		width: calc(100% / 6 - 8px);
	}
}
@media screen and (min-width: 1800px) {
	.container {
		max-width: 1400px;
	}
	.slider__item {
		width: 1400px;
	}
	.cslider__item {
		width: calc(700px - 50px - 40px);
	}
}
