@font-face {
	font-family: 'beeicon';
	font-display: auto;
	src: url('/css/fonts/beeicon.eot?v=1.0.5');
	src: url('/css/fonts/beeicon.eot?#iefix&v=1.0.5') format('embedded-opentype'), url('/css/fonts/beeicon.woff2?v=1.0.5') format('woff2'), url('/css/fonts/beeicon.woff?v=1.0.5') format('woff'), url('/css/fonts/beeicon.ttf?v=1.0.5') format('truetype'), url('/css/fonts/beeicon.svg?v=1.0.5#beeicon') format('svg');
	font-weight: normal;
	font-style: normal
}

html, 
body {
	padding: 0;
	margin: 0;
	font-family: 'Roboto', sans-serif;
	font-size: 12pt; 
	overflow: hidden;
	overflow-y: auto;
}

html {
	background: #fff;
	background-position: top center;
	background-repeat: no-repeat;
	scroll-behavior: smooth;
}

html.pg-common-designer, 
html.pg-common-designer body {
	overflow: hidden;
}

* {
	box-sizing: border-box;
}

input[type=checkbox]:before {
	display: inline-block;
	border-radius: 3px; 
	background: #fff; 
	border: 2px solid #fff;
	margin: 0px 0px 0px -2px; 
	box-shadow: 0px 0px 0px 2px #b0b0b0;
	width: 14px; 
	height: 14px; 
	position: relative;
	content: ' ';
	transition: all 0.4s;
}

input[type=checkbox]:checked:before {
	display: inline-block;
	border-radius: 3px; 
	background: #ff00a6; 
	border: 2px solid #fff;
	margin: 0px 0px 0px -2px; 
	box-shadow: 0px 0px 0px 2px #ff00a6;
	width: 14px; 
	height: 14px; 
	position: relative;
	content: ' ';
}

input[type=checkbox]:indeterminate:before {
	display: inline-block;
	border-radius: 0px; 
	background: #b0b0b0; 
	border: 7px 3px solid #fff;
	margin: -3px 0px 0px -3px; 
	box-shadow: 0px 0px 0px 1px #b0b0b0;
	width: 12px; 
	height: 4px; 
	position: relative;
	content: ' ';
}

input[type=radio]:before {
	display: inline-block;
	border-radius: 50px; 
	background: #fff; 
	border: 2px solid #fff;
	margin: 0px 0px 0px -2px; 
	box-shadow: 0px 0px 0px 2px #b0b0b0;
	width: 14px; 
	height: 14px; 
	position: relative;
	content: ' ';
	transition: all 0.4s;
}

input[type=radio]:checked:before {
	display: inline-block;
	border-radius: 50px; 
	background: #ff00a6; 
	border: 2px solid #fff;
	margin: 0px 0px 0px -2px; 
	box-shadow: 0px 0px 0px 2px #ff00a6;
	width: 14px; 
	height: 14px; 
	position: relative;
	content: ' ';
}

input[type=text], 
input[type=url], 
input[type=submit], 
input[type=button] {
	-webkit-appearance: none;
	-webkit-border-radius: 0;
}

:focus {
	outline: 0;
}

a {
	text-decoration: none;
	color: #ff00a6;
}

hr {
	height: 1px; 
	background: #ccc;
	border: 0;
}

textarea {
	resize: vertical;
}

button, 
a.hrefLikeButton, 
input[type=submit], 
input[type=button] {
	box-sizing: border-box;
	font-size: 14pt;
	padding: 9px 20px 11px;
	background: #eee;
	border:0;
	border-radius: 100px !important; 
	text-decoration: none;
	display: inline-block;
	text-align: center;
	/*border-bottom: 3px solid #bbb;*/
}

.btn-green {
	background: #8dbb3f !important;
	/*border: 2px solid #00803e !important;*/
	/*border-bottom: 3px solid #080 !important;*/
	color: #fff;
}

.btn-blue {
	background: #00aeef !important;
	/*border: 2px solid #0096cc !important;*/
	/*border-bottom: 3px solid #048 !important;*/
	color: #fff;
}

.btn-red {
	background: #e00 !important;
	/*border: 2px solid #a00 !important;*/
	/*border-bottom: 3px solid #a00 !important;*/
	color: #fff;
}

select, 
textarea, 
input[type=text], 
input[type=search], 
input[type=date], 
input[type=tel], 
input[type=email], 
input[type=date], 
input[type=url], 
input[type=password], 
input[type=number] {
	padding: 8px 12px;
	border: 1px solid #d4d4d4;
	/*border-bottom: 3px solid #ccc;*/
	-webkit-appearance: none;
	font-size: 14pt;
	box-sizing: border-box;
	border-radius: 25px;	
	-webkit-user-select: auto; /* Safari */        
	-moz-user-select: auto; /* Firefox */
	-ms-user-select: auto; /* IE10+/Edge */
	user-select: auto; /* Standard */
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	display: block;
}

input[type="date"]::-webkit-clear-button, 
input[type="time"]::-webkit-clear-button, 
input[type="date"]::-ms-clear, 
input[type="time"]::-ms-clear {
    display: none;
}

input[type="checkbox"].on-off-checker:after {
	display: block;
	border-radius: 100px; 
	width: 26px; 
	height: 26px; 
	position: absolute;
	top: 4px; 
	left: 4px; 
	background: #ccc;
	content: '';
	transition: all 0.4s;
}

input[type="checkbox"].on-off-checker:before {
	display: block;
	border-radius: 100px;
	border: 2px solid #ccc;
	background: #eee;
	width: 60px;
	height: 30px;
	content: '';
	position: relative;
	top: 0;
	left: 0;
	transition: all 0.4s;
}

input[type="checkbox"].on-off-checker:checked:after {
	left: 33px; 
	background: #8dbb3f;
}

input[type="checkbox"].on-off-checker:checked:before {
	border: 2px solid #8dbb3f;
	background: #eaede5;
}

input[type="checkbox"].on-off-checker {
	position: relative;
	width: 68px;
	height: 40px;
	padding: 0;
	margin: 0 3px;
	top: 2px;
	line-height: 0;
	border: 0;
	background: transparent;
	-webkit-appearance: none;
}

input[type="checkbox"].on-off-checker-smaller:after {
	display: block;
	border-radius: 100px;
	width: 22px;
	height: 22px;
	position: absolute;
	top: 4px;
	left: 5px;
	background: #ccc;
	content: '';
	transition: all 0.4s;
}

input[type="checkbox"].on-off-checker-smaller:before {
	display: block;
	border-radius: 100px;
	border: 2px solid #ccc;
	background: #eee;
	width: 50px;
	height: 26px;
	content: '';
	position: relative;
	top: 0;
	left: 0;
	transition: all 0.4s;
}

input[type="checkbox"].on-off-checker-smaller:checked:after {
	left: 27px;
	background: #8dbb3f;
}

input[type="checkbox"].on-off-checker-smaller:checked:before {
	border: 2px solid #8dbb3f;
	background: #eaede5;
}

input[type="checkbox"].on-off-checker-smaller {
	position: relative;
	width: 54px;
	height: 30px;
	padding: 0;
	margin: 0 3px;
	top: 2px;
	line-height: 0;
	border: 0;
	background: transparent;
	-webkit-appearance: none;
}

.error {
	padding: 10px; 
	margin: 10px 0; 
	background: #e00;
	color: #fff;
	text-align: center;
	border-radius: 5px; 
}

header {
	display: block;
	padding: 0;
	width: 100%; 
	position: fixed;
	top: 0;
	z-index: 500;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

div#nav-icon label {
	display: block;
	background: rgba(255, 255, 255, 1);
	height: 2px;
	width: 26px;
	margin: 0 0 7px;
	border-radius: 10px;
}

div#nav-icon {
	position: absolute;
	top: 47px;
	right: 20px;
	padding: 0px 20px 20px;
	cursor: pointer;
	z-index: 10;
}

header > div {
	/*max-width: 1200px; */
	position: relative;
	margin: 0 auto;
	padding: 20px 20px;
}

header svg.mobile {
	display: none;
}

svg.main-brand {
	/*width: 240px; */
	height: 77px; 
	margin: -10px 0 -15px;
	position: relative;
	z-index: 10;
	/*display: block;*/
	/*margin: 0 auto;*/
}

svg.main-brand.main-brand-first {
	height: 92px; 
	margin: -25px 0 -15px;
}

div.company-image-container {
	height: 400px; 
	background-size: cover;
	/*object-fit: cover;*/
	/*display: block;*/
}

div.company-brand-container {
	text-align: center;
}

div.company-brand-container img {
	width: 200px; 
	border-radius: 1000px; 
	margin: -100px 0 20px; 
	border: 5px solid #fff;
}

section.company-header h3 {
	text-align: center;
	font-size: 16pt; 
	color: #c4161c;
}

section.pg-content {
	display: block;
	margin: 0 auto 20px; 
	max-width: 1200px; 
	padding: 0 20px; 
	border-radius: 10px; 
}

section.pg-content-small {
	max-width: 500px; 
}

section.pg-content-white {
	padding: 20px;
	background: #fff;
	border-radius: 5px; 
	box-shadow: 0 0 20px rgba(10, 10, 10, 0.01);
}

section.pg-content-centered {
	text-align: center;
}

section.pg-content-larger {
	font-size: 16pt; 
	line-height: 22pt;
}

section.pg-content-bordered {
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	padding: 10px 20px 30px; 
}

section.pg-slider-top > div {
	height: 100%; 
	background-position: center;
	background-size: cover;
	border-radius: 5px; 
}

section.pg-slider-top {
	margin-top: 20px; 
	height: 230px; 
}

#nav-icon {
	width: 18px;
	height: 16px;
	margin: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
	display: none;
}

#nav-icon span {
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #777;
	border-radius: 9px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) {
	top: 0px;
}

#nav-icon span:nth-child(2) {
	top: 8px;
}

#nav-icon span:nth-child(3) {
	top: 16px;
}

html.to-menu-opened #nav-icon span:nth-child(1) {
	top: 7px;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
}

html.to-menu-opened #nav-icon span:nth-child(2) {
	opacity: 0;
	left: 50px;
}

html.to-menu-opened #nav-icon span:nth-child(3) {
	top: 7px;
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	-o-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

header > div > table {
	width: 100%; 
	border-spacing: 0;
}

header > div > table > tbody > tr > td:first-child {
	width: 200px; 
}

header > div > table > tbody > tr > td:last-child {
	text-align: right;
}

header > div > table > tbody > tr > td {
	/*position: relative;*/
}

header > div > table > tbody > tr > td > ul > li > span, 
header > div > table > tbody > tr > td > ul > li > a {
	/*text-transform: uppercase;*/
	color: #333;
	text-decoration: none;
	display: block;
	margin: 0;
	padding: 15px 20px;
	/*font-family: 'Spartan', sans-serif;*/
	/*height: 71px;*/
	font-size: 14pt; 
}

header > div > table > tbody > tr > td > ul > li {
	padding: 0;
	margin: 0;
	/*border-bottom: 2px solid transparent;*/
	display: inline-block;
	transition: border-bottom .4s;
	border-radius: 5px; 
}

header > div > table > tbody > tr > td > ul > li:hover a {
	color: #888; 
}

header > div > table > tbody > tr > td > ul > li:hover {
	/*background: rgba(0, 0, 0, 0.1);*/
	/*border-bottom: 2px solid #aaa;*/
}

header > div > table > tbody > tr > td > ul > li.is-active a {
	color: #7bb542; 
	/*font-weight: bold;*/
	/*color: #fff; */
}

header > div > table > tbody > tr > td > ul > li.is-active {
	/*background: #7bb542;*/
	/*border-bottom: 2px solid #333;*/
}

header > div > table > tbody > tr > td > ul {
	display: inline-block;
	list-style: none;
	padding: 0;
	margin: -30px auto;
	z-index: 8;
	position: relative;
	/*margin: -25px 0;*/
	/*float: right;*/
}

header > div > label {
	position: relative;
	z-index: 9;
}

.menu-custom {
	z-index: 11; 
}

.menu-custom > li > ul li a.hrefLikeButton {
	color: #ff00a6;
}

.menu-custom > li > ul li a:not(.hrefLikeButton) {
	/*color: #fff;*/
	color: #555;
	display: block;
}

.menu-custom > li > ul li > p {
	padding-left: 8px; 
	padding-right: 10px; 
}

.menu-custom > li > ul li > span.links {
	padding-left: 8px; 
	padding-right: 10px; 
	display: block;
}

.menu-custom > li > ul li {
	/*color: #fff;*/
	padding: 5px 10px; 
	white-space: nowrap;
}

.menu-custom > li > ul {
	position: absolute;
	top: 90px; 
	right: 0;
	border-bottom: 0px solid #000;
	border-left: 2px solid #000;
	border-right: 2px solid #000;
	border-top: 0px solid #000;
	background: #fff;
	list-style: none;
	padding: 0 10px; 
	margin: 0;
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition: all 0.4s;
}

.menu-custom > li:hover > ul {
	top: 60px; 
	border-bottom: 2px solid #000;
	border-top: 5px solid #000;
	max-height: calc(100vh - 140px);
	padding: 10px 10px; 
	opacity: 1;
	transition: 0.1s all 0.4s;
}

h1 label {
	display: inline-block;
	margin: 0;
	padding: 0 20px;
	background: #fff;
}

h1 {
	color: #555;
	font-size: 26pt; 
	text-align: center;
	/*background: #D5D6D7;*/
	margin: 20px 0 50px;
	padding: 0;
	font-weight: 200;
}

#mainWindowContainer {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%; 
	height: 100%; 
	background: rgba(0, 0, 0, 0.7);
	z-index: 110;
}

#mainWindowContainer.opened {
	display: block;
}

#mainWindow {
	margin: 0 auto;
	background: #fff;
	max-width: 600px; 
	border-radius: 10px; 
}

#mainWindowHeader {
	position: relative;
}

#mainWindowHeader label {
	font-size: 14pt; 
	padding: 10px;
	margin: 0; 
	border-bottom: 1px solid #ccc;
	display: block;
}

#mainWindowHeader span {
	position: absolute;
	color: #e00;
	font-size: 16pt; 
	top: 0;
	right: 0;
	padding: 10px 20px; 
	display: block;
	cursor: pointer;
}

#mainWindowContent {
	max-height: 80vh;
	overflow: hidden;
	overflow-y: auto;
	padding: 10px; 
}

div.pg-distance {
	/*height: 50px; */
}

.top-distance {
	height: 80px; 
}

.default-configure img {
	width: 100%; 
	height: 350px; 
	object-fit: cover;
}

.default-configure td h2 {
	font-weight: normal;
	padding: 0 0 30px; 
	margin: 0 0 30px; 
	border-bottom: 3px solid rgba(0, 0, 0, 0.1); 
	font-size: 36pt; 
	white-space: nowrap;
	color: #777; 
}

.right {
	text-align: right;
}

.default-configure td {
	vertical-align: top;
}

.default-gallery, 
.default-configure {
	width: calc(100% + 40px); 
	border-spacing: 20px; 
	margin: 0 -20px; 
}

.default-configure-img {
	width: 75%; 
}

.default-gallery td img {
	width: 100%; 
}

.default-gallery td {
	width: 33.33%; 
}

#slideshow { 
	margin: 0; 
	position: relative; 
	height: 620px; 
}

#slideshow > div img { 
	width: 100%; 
	height: 100%; 
	object-fit: cover;
	object-position: center;
}

#slideshow > div { 
	position: absolute;
	top: 0;
	left: 0;
	width: 100%; 
	height: 620px; 
}

.universal-content {
	box-shadow: 0 8px 8px rgba(0, 0, 0, 0.2);
	padding: 0 0 20px;
	margin: 10px 0 40px;
}

.rules-bottom {
	background-image: url('data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOTIuMTcgMjcuNzIiPjxkZWZzPjxzdHlsZT4uY2xzLTF7ZmlsbDojOTY5ODliO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjEwMC4zNSIgd2lkdGg9IjIiIGhlaWdodD0iMjcuNzIiLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjE1MC41MyIgeT0iMTAuMDQiIHdpZHRoPSIyIiBoZWlnaHQ9IjE3LjY3Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxMTAuODkiIHk9IjEwLjA0IiB3aWR0aD0iMSIgaGVpZ2h0PSIxNy42NyIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iMTIwLjkyIiB5PSIxMC4wNCIgd2lkdGg9IjEiIGhlaWdodD0iMTcuNjciLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjEzMC45NiIgeT0iMTAuMDQiIHdpZHRoPSIxIiBoZWlnaHQ9IjE3LjY3Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxNDEiIHk9IjEwLjA0IiB3aWR0aD0iMSIgaGVpZ2h0PSIxNy42NyIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iMTYxLjA3IiB5PSIxMC4wNCIgd2lkdGg9IjEiIGhlaWdodD0iMTcuNjciLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjE3MS4xIiB5PSIxMC4wNCIgd2lkdGg9IjEiIGhlaWdodD0iMTcuNjciLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjE4MS4xNCIgeT0iMTAuMDQiIHdpZHRoPSIxIiBoZWlnaHQ9IjE3LjY3Ii8+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxOTEuMTciIHk9IjEwLjA0IiB3aWR0aD0iMSIgaGVpZ2h0PSIxNy42NyIvPjxyZWN0IGNsYXNzPSJjbHMtMSIgd2lkdGg9IjIiIGhlaWdodD0iMjcuNzIiLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjEwMC4zNSIgd2lkdGg9IjIiIGhlaWdodD0iMjcuNzIiLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjUwLjE4IiB5PSIxMC4wNCIgd2lkdGg9IjIiIGhlaWdodD0iMTcuNjciLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjEwLjU0IiB5PSIxMC4wNCIgd2lkdGg9IjEiIGhlaWdodD0iMTcuNjciLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjIwLjU3IiB5PSIxMC4wNCIgd2lkdGg9IjEiIGhlaWdodD0iMTcuNjciLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjMwLjYxIiB5PSIxMC4wNCIgd2lkdGg9IjEiIGhlaWdodD0iMTcuNjciLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjQwLjY0IiB5PSIxMC4wNCIgd2lkdGg9IjEiIGhlaWdodD0iMTcuNjciLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjYwLjcxIiB5PSIxMC4wNCIgd2lkdGg9IjEiIGhlaWdodD0iMTcuNjciLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjcwLjc1IiB5PSIxMC4wNCIgd2lkdGg9IjEiIGhlaWdodD0iMTcuNjciLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjgwLjc4IiB5PSIxMC4wNCIgd2lkdGg9IjEiIGhlaWdodD0iMTcuNjciLz48cmVjdCBjbGFzcz0iY2xzLTEiIHg9IjkwLjgyIiB5PSIxMC4wNCIgd2lkdGg9IjEiIGhlaWdodD0iMTcuNjciLz48L3N2Zz4=');
	background-size: 100px; 
	background-position: bottom center;
	background-repeat: repeat-x;
}

#what-we-made li span {
	width: 60px; 
	height: 60px; 
	text-align: center;
	border-radius: 100px; 
	color: #802121;
	border: 1px solid #888; 
	display: block;
	margin: 10px auto;
	padding: 12px 0;
	font-size: 20pt; 
}

#what-we-made li label {
	display: block;
	padding: 0px 0 5px; 
	margin: -20px 0 0;
}

#what-we-made li {
	display: inline-block;
	width: calc((100% / 5) - 4px);
	text-align: center;
	border-left: 2px dashed #aaa;
	padding: 0;
	margin: 0;
}

#what-we-made {
	list-style: none;
	width: 100%; 
	padding: 0;
	margin: 30px 0 0;
	position: relative;
	border-right: 2px dashed #aaa;
}

#timeline-content img {
	width: 100%; 
	display: block;
	margin: 20px 0;
}

#timeline-content svg {
	width: 100%; 
}

#timeline-content svg#dim-layer {
	margin: 0 -120px;
	width: calc(100% + 250px); 
}

.team-content section {
	text-align: center;
}

.team-content ul li img {
	width: 200px; 
	height: 256px; 
	object-fit: cover;
}

.team-content ul li strong {
	display: block;
	margin: 10px 0;
	padding: 0;
}

.team-content ul li label {
	display: block;
	margin: 10px 0;
	padding: 0;
}

.team-content ul li {
	display: inline-block;
	width: calc((100% / 4) - 20px);
	padding: 35px 10px;
	margin: 10px;
	position: relative;
}

.team-content ul {
	list-style: none;
	padding: 40px 0 0;
	margin: 0;
	position: relative;
	width: 100%;
}

.team-content {
	background: url(/images/team-bg.png);
}

.partner-content ul li img {
	height: 120px; 
	display: block;
	mix-blend-mode: multiply
}

.partner-content ul li a {
	display: block;
	margin: 10px; 
	padding: 0;
}

.partner-content ul li {
	display: inline-block;
	padding: 0;
	margin: 0;
}

.partner-content ul {
	list-style: none;
	padding: 10px; 
	margin: 10px 0;
	text-align: center;
}

.partner-content h1 label {
	background: #d5d6d7;
}

.partner-content h1 {
	background: #c0c2c3;
}

.partner-content {
	background: #d5d6d7;
	padding: 10px 0;
	margin: 50px 0;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2), 0 -5px 10px rgba(0, 0, 0, 0.2);
}

.design-ltr > div > hr, 
.design-rtl > div > hr {
	display: block;
	margin: 20px 50px; 
	padding: 0;
	height: 2px; 
	background: #aaa; 
}

.design-ltr > div > img, 
.design-rtl > div > img {
	padding-top: 20px;
	width: 100%; 
}

.design-ltr > div > h2 {
	background-position: 0px 20px;
}

.design-rtl > div > h2 {
	background-position: right 0px top 20px;
}

.design-ltr > div > h2, 
.design-rtl > div > h2 {
	padding: 30px 0;
	text-align: center;
	background-image: url('data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA4Ni40OSA4Ni40OSI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1ODU5NWI7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTQ5Mi4zMSw0MTg3LjU0SDQ3Ni44NGEyNy44NCwyNy44NCwwLDAsMC0yNi43NS0yNi43NXYtMTUuNDdINDQ4djE1LjQ3YTI3Ljg0LDI3Ljg0LDAsMCwwLTI2Ljc1LDI2Ljc1SDQwNS44MXYyLjA2aDE1LjQ3QTI3Ljg0LDI3Ljg0LDAsMCwwLDQ0OCw0MjE2LjM1djE1LjQ3aDIuMDZ2LTE1LjQ3YTI3Ljg0LDI3Ljg0LDAsMCwwLDI2Ljc1LTI2Ljc1aDE1LjQ3Wm0tMTcuNTMsMEg0NTAuMDl2LTI0LjY5QTI1Ljc2LDI1Ljc2LDAsMCwxLDQ3NC43OCw0MTg3LjU0Wm0tNTEuNDQsMi4wNkg0NDh2MjQuNjlBMjUuNzYsMjUuNzYsMCwwLDEsNDIzLjM0LDQxODkuNloiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC00MDUuODEgLTQxNDUuMzIpIi8+PC9zdmc+');
	background-size: 50px 50px; 
	background-repeat: no-repeat;
}

.design-ltr > div:nth-child(1) {
	padding-right: 40px; 
}

.design-rtl > div:nth-child(1) {
	padding-left: 40px; 
}

.design-ltr > div:nth-child(1), 
.design-ltr > div:nth-child(2), 
.design-rtl > div:nth-child(1), 
.design-rtl > div:nth-child(2) {
	width: 50%; 
}

.design-ltr > div:nth-child(1), 
.design-ltr > div:nth-child(2) {
	float: left;
}

.design-ltr:after {
	float: none;
	clear: left;
	content: '';
	display: block;
}

.design-ltr {
}

.design-rtl > div:nth-child(1), 
.design-rtl > div:nth-child(2) {
	float: right;
}

.design-rtl:after {
	float: none;
	clear: right;
	content: '';
	display: block;
}

.design-rtl {
}

.pg-content-separator-left td, 
.pg-content-separator-right td {
	padding: 0;
}

.pg-content-separator-left tr td:nth-child(2), 
.pg-content-separator-right tr td:nth-child(2) {
	width: 1160px; 
}

.pg-content-separator-left tr td:nth-child(1), 
.pg-content-separator-left tr td:nth-child(2), 
.pg-content-separator-right tr td:nth-child(2), 
.pg-content-separator-right tr td:nth-child(3) {
	border-bottom: 2px dashed #aaa; 
}

.pg-content-separator-left, 
.pg-content-separator-right {
	width: 100%; 
	padding: 20px 0;
	margin: 0;
	border-spacing: 0;
}

.pg-design-bottom > div p {
	margin: 5px 0;
}

.pg-design-bottom > div {
	text-align: center;
	margin: -84px 0 0;
	font-size: 22pt; 
}

.pg-design-bottom {
	padding: 30px 20px 0 !important;
	position: relative;
}

#contact-here {
	width: 100%; 
	border-spacing: 0;
	padding: 10px 0 30px; 
}

#contact-here tr:nth-child(1) td:nth-child(1), 
#contact-here tr:nth-child(1) td:nth-child(3) {
	border-bottom: 2px dashed #aaa; 
}

#contact-here tr:nth-child(1) td:nth-child(2) a {
	display: block;
	font-size: 18pt; 
	padding: 5px 20px; 
	color: #555;
}

#contact-here tr:nth-child(1) td:nth-child(2) {
	border: 2px solid #aaa; 
	width: 10px; 
	white-space: nowrap;
}

#contact-section table td ul li:nth-child(1) {
	background-image: url('data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA4MC4yNSA4MC4yNSI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM0MTQwNDI7fS5jbHMtMntmaWxsOiNmZmY7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTU0MS4wNiwxMjcwMy44OWE0MC4xMyw0MC4xMywwLDEsMC00MC4xMiw0MC4xM0E0MC4xMiw0MC4xMiwwLDAsMCw1NDEuMDYsMTI3MDMuODlaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNDYwLjgxIC0xMjY2My43NykiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik00OTIuNDUsMTI3MDAuNzZjMS4xMiw0LjY3LDcuMTIsMTAuNDYsMTEuNTcsMTEuNTdhNC4yNSw0LjI1LDAsMCwwLDQuOS0yLjY3aDBhNC4xNCw0LjE0LDAsMCwxLDYuODktMS41Nmw2LjIzLDYuMjNhNC40NCw0LjQ0LDAsMCwxLDAsNmwtNC4yMyw0LjIzYy00LjQ0LDQuNDUtMTYuMjQtLjQ1LTI2LjY5LTEwLjlzLTE1LjEzLTIyLjI1LTEwLjktMjYuN2w0LjIyLTQuMjNhNC40Niw0LjQ2LDAsMCwxLDYsMGw2LjIzLDYuMjNhNC4xNSw0LjE1LDAsMCwxLTEuNTYsNi45aDBBNCw0LDAsMCwwLDQ5Mi40NSwxMjcwMC43NloiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC00NjAuODEgLTEyNjYzLjc3KSIvPjwvc3ZnPg==');
}

#contact-section table td ul li:nth-child(2) {
	background-image: url('data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA4MC4yNCA4MC4yNSI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM0MTQwNDI7fS5jbHMtMntmaWxsOiNmZmY7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTU0Mi42NywxMjgyOS4wOWE0MC4xMyw0MC4xMywwLDEsMC00MC4xMiw0MC4xM0E0MC4xMyw0MC4xMywwLDAsMCw1NDIuNjcsMTI4MjkuMDlaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNDYyLjQyIC0xMjc4OC45NykiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MTUuMjIsMTI4MjkuMDlsMTQuMjMsMTQuMjN2LTI4LjQ1Wm0wLDAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC00NjIuNDIgLTEyNzg4Ljk3KSIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ4OS44LDEyODI5LjA5bC0xNC4yMy0xNC4yMnYyOC40NVptMCwwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNDYyLjQyIC0xMjc4OC45NykiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MjcuMTEsMTI4NDYuNzksNTEyLjI5LDEyODMybC0zLjc5LDMuNzhhOC40MSw4LjQxLDAsMCwxLTExLjkxLDBsLTMuNzktMy43OEw0NzgsMTI4NDYuNzlhNS4yOSw1LjI5LDAsMCwwLTEuNTEsM2g1Mi4xNWE1LjI5LDUuMjksMCwwLDAtMS41MS0zWm0wLDAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC00NjIuNDIgLTEyNzg4Ljk3KSIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTQ3OCwxMjgxMS4yN2wyMC43OCwyMC43N2E1LjM1LDUuMzUsMCwwLDAsNy41NywwbDIwLjc4LTIwLjc3YTUuMjksNS4yOSwwLDAsMCwxLjUxLTNINDc2LjQ3YTUuMjksNS4yOSwwLDAsMCwxLjUxLDNabTMyLjIyLDYuMTYiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC00NjIuNDIgLTEyNzg4Ljk3KSIvPjwvc3ZnPg==');
}

#contact-section table td ul li:nth-child(3) {
	background-image: url('data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA4MC4yNSA4MC4yNSI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM0MTQwNDI7fS5jbHMtMntmaWxsOiNmZmY7fTwvc3R5bGU+PC9kZWZzPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTU0Ny41MiwxMjk2MWE0MC4xMyw0MC4xMywwLDEsMC00MC4xMiw0MC4xM0E0MC4xMiw0MC4xMiwwLDAsMCw1NDcuNTIsMTI5NjFaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNDY3LjI3IC0xMjkyMC44NSkiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik01MDcuNCwxMjkzNi4xOGExOCwxOCwwLDAsMC0xOCwxOGMwLDEyLjI5LDE2LjA3LDMwLjMzLDE2Ljc1LDMxLjFhMS42MywxLjYzLDAsMCwwLDIuNDEsMGMuNjktLjc3LDE2Ljc2LTE4LjgxLDE2Ljc2LTMxLjFBMTgsMTgsMCwwLDAsNTA3LjQsMTI5MzYuMThabTAsMjdhOSw5LDAsMSwxLDktOUE5LDksMCwwLDEsNTA3LjQsMTI5NjMuMTdaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNDY3LjI3IC0xMjkyMC44NSkiLz48L3N2Zz4=');
}

#contact-section table td ul li:nth-child(4) {
	background-image: url('data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA4MC4yNSA4MC4yNSI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOnRyYW5zcGFyZW50O30uY2xzLTJ7ZmlsbDojNTg1OTViO308L3N0eWxlPjwvZGVmcz48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik01NDcuNTIsMTMwNTguNDVhNDAuMTMsNDAuMTMsMCwxLDAtNDAuMTIsNDAuMTNBNDAuMTIsNDAuMTIsMCwwLDAsNTQ3LjUyLDEzMDU4LjQ1WiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTQ2Ny4yNyAtMTMwMTguMzMpIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSI0MC45OCIgY3k9IjQwLjEyIiByPSI3LjMyIi8+PC9zdmc+');
}

#contact-section table td ul li {
	background-position: 0px 10px; 
	background-size: 40px 40px; 
	background-repeat: no-repeat;
	padding: 20px 0 20px 60px;
	margin: 0;
	text-align: left;
}

#contact-section table td ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: inline-block;
}

#contact-section table tr td:nth-child(2) svg {
	height: 340px; 
	display: block;
}

#contact-section table tr td:nth-child(2) {
	background-size: cover;
	background-position: center;
	background-image: url('/images/site/contact-bg.jpg');
	padding: 0;
	margin: 0;
	position: relative;
}

#contact-section table td {
	width: 50%; 
	padding: 50px 20px; 
	text-align: right;
}

#contact-section table {
	width: 100%; 
	background: #d5d6d7;
	border-spacing: 0;
}

#contact-section {
	margin: 50px 0 0;
}

#contact-section h1 {
	background: transparent;
}

#map {
	width: 100%;
	height: 500px; 
}

footer table td {
	padding: 0 20px;
	vertical-align: top;
}

footer table td li span, 
footer table td li a {
	color: #777; 
	display: block;
	text-decoration: none;
	padding: 5px; 
}

footer table td li {
	text-align: left;
	font-size: 11pt; 
}

footer table li {
	list-style: none;
	min-width: 200px; 
}

footer table {
	margin: 10px auto 40px; 
	border-spacing: 0;
}

footer > div {
	background: #aaa; 
	color: #555; 
	font-size: 9pt; 
	padding: 10px; 
	margin: 0 -10px -20px;
}

footer svg {
	width: 200px; 
	padding-top: 10px; 
}

footer {
	background-color: #ddd;
	/*background-image: url('data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMDIuNzEgMjcuNzIiPjxkZWZzPjxzdHlsZT4uY2xzLTEsLmNscy0ye2ZpbGw6bm9uZTtzdHJva2U6Izk2OTg5YjtzdHJva2UtbWl0ZXJsaW1pdDoxMDt9LmNscy0xe3N0cm9rZS13aWR0aDoycHg7fTwvc3R5bGU+PC9kZWZzPjxsaW5lIGNsYXNzPSJjbHMtMSIgeDE9IjEwMS4zNSIgeDI9IjEwMS4zNSIgeTI9IjI3LjcyIi8+PGxpbmUgY2xhc3M9ImNscy0xIiB4MT0iMSIgeDI9IjEiIHkyPSIyNy43MiIvPjxsaW5lIGNsYXNzPSJjbHMtMSIgeDE9IjUxLjE4IiB4Mj0iNTEuMTgiIHkyPSIxNy42NyIvPjxsaW5lIGNsYXNzPSJjbHMtMiIgeDE9IjkxLjMyIiB4Mj0iOTEuMzIiIHkyPSIxNy42NyIvPjxsaW5lIGNsYXNzPSJjbHMtMiIgeDE9IjgxLjI4IiB4Mj0iODEuMjgiIHkyPSIxNy42NyIvPjxsaW5lIGNsYXNzPSJjbHMtMiIgeDE9IjcxLjI1IiB4Mj0iNzEuMjUiIHkyPSIxNy42NyIvPjxsaW5lIGNsYXNzPSJjbHMtMiIgeDE9IjYxLjIxIiB4Mj0iNjEuMjEiIHkyPSIxNy42NyIvPjxsaW5lIGNsYXNzPSJjbHMtMiIgeDE9IjQxLjE0IiB4Mj0iNDEuMTQiIHkyPSIxNy42NyIvPjxsaW5lIGNsYXNzPSJjbHMtMiIgeDE9IjMxLjExIiB4Mj0iMzEuMTEiIHkyPSIxNy42NyIvPjxsaW5lIGNsYXNzPSJjbHMtMiIgeDE9IjIxLjA3IiB4Mj0iMjEuMDciIHkyPSIxNy42NyIvPjxsaW5lIGNsYXNzPSJjbHMtMiIgeDE9IjExLjA0IiB4Mj0iMTEuMDQiIHkyPSIxNy42NyIvPjxsaW5lIGNsYXNzPSJjbHMtMSIgeDE9IjIwMS43MSIgeDI9IjIwMS43MSIgeTI9IjI3LjcyIi8+PGxpbmUgY2xhc3M9ImNscy0xIiB4MT0iMTAxLjM1IiB4Mj0iMTAxLjM1IiB5Mj0iMjcuNzIiLz48bGluZSBjbGFzcz0iY2xzLTEiIHgxPSIxNTEuNTMiIHgyPSIxNTEuNTMiIHkyPSIxNy42NyIvPjxsaW5lIGNsYXNzPSJjbHMtMiIgeDE9IjE5MS42NyIgeDI9IjE5MS42NyIgeTI9IjE3LjY3Ii8+PGxpbmUgY2xhc3M9ImNscy0yIiB4MT0iMTgxLjY0IiB4Mj0iMTgxLjY0IiB5Mj0iMTcuNjciLz48bGluZSBjbGFzcz0iY2xzLTIiIHgxPSIxNzEuNiIgeDI9IjE3MS42IiB5Mj0iMTcuNjciLz48bGluZSBjbGFzcz0iY2xzLTIiIHgxPSIxNjEuNTciIHgyPSIxNjEuNTciIHkyPSIxNy42NyIvPjxsaW5lIGNsYXNzPSJjbHMtMiIgeDE9IjE0MS41IiB4Mj0iMTQxLjUiIHkyPSIxNy42NyIvPjxsaW5lIGNsYXNzPSJjbHMtMiIgeDE9IjEzMS40NiIgeDI9IjEzMS40NiIgeTI9IjE3LjY3Ii8+PGxpbmUgY2xhc3M9ImNscy0yIiB4MT0iMTIxLjQyIiB4Mj0iMTIxLjQyIiB5Mj0iMTcuNjciLz48bGluZSBjbGFzcz0iY2xzLTIiIHgxPSIxMTEuMzkiIHgyPSIxMTEuMzkiIHkyPSIxNy42NyIvPjwvc3ZnPg==');*/
	background-repeat: repeat-x;
	background-size: 120px; 
	background-position: top center;
	padding: 40px 10px 20px; 
	text-align: center;
}

#mainInContent {
	min-height: 100vh; 
}

#gallery-container > div img {
	display: inline-block;
	margin: 5px 5px 2px; 
	width: calc(33vw - 10px); 
	height: calc(33vw - 10px); 
	object-fit: cover;
	transform: scale(1, 1);
	transition: all 0.6s;
	position: relative;
	z-index: 2;
	box-shadow: 0 0 0 rgba(0, 0, 0, 0.7);
}

#gallery-container > div img:hover {
	transform: scale(1.1, 1.1);
	z-index: 3;
	box-shadow: 0 0 50px rgba(0, 0, 0, 0.7);
}

#gallery-container > div {
	text-align: center;
	margin-bottom: 20px; 
}

#gallery-container {
	padding: 0;
	margin: 0;
}

#gallery-container > ul > li {
	display: inline-block;
	margin: 2px; 
	padding: 5px 10px; 
	cursor: pointer;
}

#gallery-container > ul {
	text-align: center;
	list-style: none;
	padding: 0;
	margin: 10px 5px;
}

#gallery-opened img, 
#gallery-opened iframe {
	width: calc(100% - 40px); 
	margin: 0 20px 20px; 
	border: 0;
	padding: 0;
}

#gallery-opened iframe {
	height: calc(100vw * 0.6);
}

#gallery-opened {
	text-align: center;
}

#gallery-top-links a {
	display: inline-block;
	padding: 10px 20px; 
	margin: 5px; 
	color: #777;
	font-size: 11pt; 
	border-radius: 100px; 
	border: 2px solid #f4f4f4;
}

#gallery-top-links {
	padding: 30px 20px 20px;
	text-align: center;
}

.footer-lang-select a {
	display: inline-block;
	padding: 5px 15px; 
	border-radius: 40px; 
	margin: 0 10px; 
	color: #555;
	font-size: 11pt; 
}

.footer-lang-select a.footer-lang-selected {
	background: rgba(255, 255, 255, 0.9);
}

.footer-lang-select {
	text-align: center;
}

.splide__track {
	overflow: initial !important; 
}

.splide__pagination {
	bottom: -25px !important;
}

.splide__pagination__page.is-active {
	background: #DC2026 !important;
}

header .icon {
	display: inline-block;
	padding: 0px;
	text-decoration: none;
	color: #888;
	font-size: 18px;
	line-height: 50px;
	width: 50px;
	height: 50px;
	text-align: center;
	background: none;
	transition: background 0.3s ease, color 0.3s ease;
	text-shadow: 0 0 15px #fff, 0 0 3px #fff, 0 0 3px #fff;
}

.show-mobile {
	display: none;
}

.footer-social a {
	padding: 20px; 
	font-size: 14pt; 
}

.kitchen-size label {
	font-size: 9pt; 
	display: block;
	padding: 0 0 5px 5px; 
	color: #aaa; 
}



.bi {
	display: inline-block;
	font: normal normal normal 14px/1 beeicon;
	font-size: inherit;
	text-transform: none;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

.bi-fw {
	width: 1.28571429em;
	text-align: center
}

.bi-spin {
	animation: icon-spin 2s infinite linear
}

.bi-pulse {
	animation: icon-spin 1s infinite steps(8)
}

@keyframes icon-spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(359deg);
	}
}

.bi-plus:before {
	content: "\f067"
}

.bi-question:before {
	content: "\f128"
}

.bi-minus:before {
	content: "\f068"
}

.bi-trash-o:before {
	content: "\f014"
}

.bi-volume-off:before {
	content: "\f026"
}

.bi-volume-down:before {
	content: "\f027"
}

.bi-volume-up:before {
	content: "\f028"
}

.bi-camera:before {
	content: "\f030"
}

.bi-video-camera:before {
	content: "\f03d"
}

.bi-image:before {
	content: "\f03e"
}

.bi-photo:before {
	content: "\f03e"
}

.bi-picture-o:before {
	content: "\f03e"
}

.bi-arrows:before {
	content: "\f047"
}

.bi-step-backward:before {
	content: "\f048"
}

.bi-play:before {
	content: "\f04b"
}

.bi-pause:before {
	content: "\f04c"
}

.bi-stop:before {
	content: "\f04d"
}

.bi-step-forward:before {
	content: "\f051"
}

.bi-question-circle:before {
	content: "\f059"
}

.bi-info-circle:before {
	content: "\f05a"
}

.bi-ban:before {
	content: "\f05e"
}

.bi-arrow-left:before {
	content: "\f060"
}

.bi-arrow-right:before {
	content: "\f061"
}

.bi-arrow-up:before {
	content: "\f062"
}

.bi-arrow-down:before {
	content: "\f063"
}

.bi-exclamation-circle:before {
	content: "\f06a"
}

.bi-eye:before {
	content: "\f06e"
}

.bi-eye-slash:before {
	content: "\f070"
}

.bi-exclamation-triangle:before {
	content: "\f071"
}

.bi-warning:before {
	content: "\f071"
}

.bi-calendar:before {
	content: "\f073"
}

.bi-random:before {
	content: "\f074"
}

.bi-bar-chart:before {
	content: "\f080"
}

.bi-bar-chart-o:before {
	content: "\f080"
}

.bi-feed:before {
	content: "\f09e"
}

.bi-rss:before {
	content: "\f09e"
}

.bi-copy:before {
	content: "\f0c5"
}

.bi-files-o:before {
	content: "\f0c5"
}

.bi-money:before {
	content: "\f0d6"
}

.bi-rotate-left:before {
	content: "\f0e2"
}

.bi-undo:before {
	content: "\f0e2"
}

.bi-quote-left:before {
	content: "\f10d"
}

.bi-quote-right:before {
	content: "\f10e"
}

.bi-info:before {
	content: "\f129"
}

.bi-exclamation:before {
	content: "\f12a"
}

.bi-calendar-o:before {
	content: "\f133"
}

.bi-rss-square:before {
	content: "\f143"
}

.bi-eur:before {
	content: "\f153"
}

.bi-euro:before {
	content: "\f153"
}

.bi-dollar:before {
	content: "\f155"
}

.bi-usd:before {
	content: "\f155"
}

.bi-youtube:before {
	content: "\f167"
}

.bi-female:before {
	content: "\f182"
}

.bi-male:before {
	content: "\f183"
}

.bi-trash:before {
	content: "\f1f8"
}

.bi-area-chart:before {
	content: "\f1fe"
}

.bi-pie-chart:before {
	content: "\f200"
}

.bi-line-chart:before {
	content: "\f201"
}

.bi-question-circle-o:before {
	content: "\f29c"
}

.bi-clock-o:before {
	content: "\f017"
}

.bi-download:before {
	content: "\f019"
}

.bi-lock:before {
	content: "\f023"
}

.bi-pencil:before {
	content: "\f040"
}

.bi-edit:before {
	content: "\f044"
}

.bi-pencil-square-o:before {
	content: "\f044"
}

.bi-key:before {
	content: "\f084"
}

.bi-sign-out:before {
	content: "\f08b"
}

.bi-sign-in:before {
	content: "\f090"
}

.bi-upload:before {
	content: "\f093"
}

.bi-dashboard:before {
	content: "\f0e4"
}

.bi-tachometer:before {
	content: "\f0e4"
}

.bi-cloud-download:before {
	content: "\f0ed"
}

.bi-cloud-upload:before {
	content: "\f0ee"
}

.bi-unlock-alt:before {
	content: "\f13e"
}

.bi-search:before {
	content: "\f002"
}

.bi-envelope-o:before {
	content: "\f003"
}

.bi-check:before {
	content: "\f00c"
}

.bi-close:before {
	content: "\f00d"
}

.bi-remove:before {
	content: "\f00d"
}

.bi-times:before {
	content: "\f00d"
}

.bi-home:before {
	content: "\f015"
}

.bi-repeat:before {
	content: "\f01e"
}

.bi-rotate-right:before {
	content: "\f01e"
}

.bi-refresh:before {
	content: "\f021"
}

.bi-map-marker:before {
	content: "\f041"
}

.bi-chevron-left:before {
	content: "\f053"
}

.bi-chevron-right:before {
	content: "\f054"
}

.bi-chevron-up:before {
	content: "\f077"
}

.bi-chevron-down:before {
	content: "\f078"
}

.bi-shopping-cart:before {
	content: "\f07a"
}

.bi-external-link:before {
	content: "\f08e"
}

.bi-phone:before {
	content: "\f095"
}

.bi-twitter:before {
	content: "\f099"
}

.bi-facebook:before {
	content: "\f09a"
}

.bi-facebook-f:before {
	content: "\f09a"
}

.bi-chain:before {
	content: "\f0c1"
}

.bi-link:before {
	content: "\f0c1"
}

.bi-pinterest:before {
	content: "\f0d2"
}

.bi-envelope:before {
	content: "\f0e0"
}

.bi-linkedin:before {
	content: "\f0e1"
}

.bi-file-text-o:before {
	content: "\f0f6"
}

.bi-angle-double-left:before {
	content: "\f100"
}

.bi-angle-double-right:before {
	content: "\f101"
}

.bi-angle-double-up:before {
	content: "\f102"
}

.bi-angle-double-down:before {
	content: "\f103"
}

.bi-angle-left:before {
	content: "\f104"
}

.bi-angle-right:before {
	content: "\f105"
}

.bi-angle-up:before {
	content: "\f106"
}

.bi-angle-down:before {
	content: "\f107"
}

.bi-mobile:before {
	content: "\f10b"
}

.bi-mobile-phone:before {
	content: "\f10b"
}

.bi-spinner:before {
	content: "\f110"
}

.bi-youtube-play:before {
	content: "\f16a"
}

.bi-instagram:before {
	content: "\f16d"
}

.bi-file-pdf-o:before {
	content: "\f1c1"
}

.bi-file-word-o:before {
	content: "\f1c2"
}

.bi-file-excel-o:before {
	content: "\f1c3"
}

.bi-file-powerpoint-o:before {
	content: "\f1c4"
}

.bi-file-image-o:before {
	content: "\f1c5"
}

.bi-file-photo-o:before {
	content: "\f1c5"
}

.bi-file-picture-o:before {
	content: "\f1c5"
}

.bi-file-archive-o:before {
	content: "\f1c6"
}

.bi-file-zip-o:before {
	content: "\f1c6"
}

.bi-file-audio-o:before {
	content: "\f1c7"
}

.bi-file-sound-o:before {
	content: "\f1c7"
}

.bi-file-movie-o:before {
	content: "\f1c8"
}

.bi-file-video-o:before {
	content: "\f1c8"
}

.bi-paper-plane:before {
	content: "\f1d8"
}

.bi-send:before {
	content: "\f1d8"
}

.bi-paper-plane-o:before {
	content: "\f1d9"
}

.bi-send-o:before {
	content: "\f1d9"
}

.bi-user-o:before {
	content: "\f2c0"
}



@media screen and (min-width: 611px) {


}

@media screen and (max-width: 610px) {

	header svg {
		/*height: 50px;*/
		width: 200px; 
		margin: 20px 0;
	}
	
	#nav-icon {
		display: block;
	}

	header > div > table > tbody > tr > td > ul {
		display: none;
	}

	html.to-menu-opened, 
	html.to-menu-opened body {
		overflow: hidden;
		overflow-y: hidden;
	}

	html.to-menu-opened header > div > table > tbody > tr > td > ul {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%; 
		/*height: 100%; */
		/*background: #094272;*/
		background: rgba(255, 255, 255, 0.9);
		/*background: rgba(0, 0, 0, 0.9);*/
		padding-top: 160px; 
		padding-bottom: 20px; 
	}

	header > div > table > tbody > tr > td > ul li {
		display: block;
		margin: 0 0 0 20px;
		border-bottom: 0;
		border-left: 2px solid transparent;
		text-align: left;
	}

	header > div > table > tbody > tr > td > ul > li > span, 
	header > div > table > tbody > tr > td > ul > li > a {
		padding: 20px 15px; 
	}

	header > div > table > tbody > tr > td > ul li.is-active {
		border-bottom: 0;
		/*border-left: 2px solid #27294E;*/
	}

	header > div > table > tbody > tr > td:first-child {
		position: relative;
		z-index: 10;
	}

	#mainWindow {
		max-width: calc(100vw - 20px);
	}

	section.pg-slider-top {
		margin-top: 10px; 
		height: 100px; 
	}

	section.pg-content {
		margin: 10px auto 10px; 
		padding: 10px;
	}

	section.pg-content-small {
		max-width: calc(100vw - 40px);
	}

	.menu-custom > li > ul {
		right: 10px; 
		max-width: calc(100vw - 40px);
	}

	#header-menu-container {
		width: 200px;
		white-space: nowrap;
	}

	h1 {
		font-size: 16pt; 
	}

	#what-we-made li span {
		margin-bottom: 20px; 
	}

	#what-we-made li label {
		margin: 20px 0 0;
	}

	#what-we-made li {
		width: calc((100% / 2) - 4px);
		border: 0;
		border-bottom: 2px dashed #aaa;
	}

	#what-we-made li:last-child {
		border-bottom: 0;
	}

	#what-we-made {
		text-align: center;
		border: 0;
		margin-top: -40px; 
	}

	.timeline-table img, 
	.timeline-table svg {
		height: 150vw; 
	}

	.timeline-table {
		width: 100%; 
	}

	.team-content ul li img {
		width: 130px;
		height: 166px;
	}

	.team-content ul li {
		width: calc((100% / 2) - 20px);
		font-size: 10pt; 
		padding: 15px 10px;
	}

	.team-content {
		background-size: 68.8px;
	}

	.team-content ul {
		padding: 30px 0 0;
	}

	.partner-content ul li img {
		height: 80px; 
	}

	.design-rtl > div > h2, 
	.design-ltr > div > h2 {
		background-position: 0 20px; 
	}

	.design-rtl > div, 
	.design-ltr > div {
		margin: 20px 0;
		float: none !important;
		width: initial !important;
	}

	.design-rtl > div:nth-child(1), 
	.design-ltr > div:nth-child(1) {
		padding: 0 30px !important;
	}

	.design-rtl > div:nth-child(2), 
	.design-ltr > div:nth-child(2) {
		padding: 0 !important;
	}

	.design-ltr, 
	.design-rtl {
		padding: 10px 0 !important;
	}
	
	.design-ltr > div > img, 
	.design-rtl > div > img {
		padding-top: 0px;
	}

	.pg-content-separator-left tr td:nth-child(1), 
	.pg-content-separator-left tr td:nth-child(3), 
	.pg-content-separator-right tr td:nth-child(1), 
	.pg-content-separator-right tr td:nth-child(3) {
		display: none;
	}

	.pg-design-bottom > div {
		margin: 0;
	}

	#contact-section table tr td:nth-child(2) {
		display: none;
	}

	footer table td ul {
		margin: 0;
		padding: 20px 0 0;
	}

	footer table td li span, 
	footer table td li a {
		font-size: 12pt; 
		padding: 10px 5px; 
	}

	footer table td {
		display: block;
	}

	header > div > table > tbody > tr > td:last-child {
		padding-right: 60px; 
	}


	.show-desktop {
		display: none !important;
	}

	.show-mobile {
		display: initial;
	}

	#gallery-container > div img {
		width: calc(50vw - 10px); 
		height: calc(50vw - 10px); 
	}

	.default-configure td h2 {
		font-size: 24pt; 
		white-space: pre-wrap;
	}

}