/*region globals*/
*{
	box-sizing: border-box;
	font-family: sans-serif;
	color: #FFF;
}
:root{
	overflow: hidden;
}
body{
	display: flex;
	flex-flow: column nowrap;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #333;
	align-items: center;
	padding: 10px;
	margin: 0;
}
.content_dc{
	background-color: #222;
	width: 100%;
	max-width: 500px;
	min-width: 320px;
	flex: 1 1 auto;
	border: 1px solid #444;
	border-radius: 8px;
	box-shadow: 0 0 20px 7px #000;
	text-align: center;
	position: relative;
}
.companiname{
	font: 9pt / 28px sans-serif;
	position: absolute;
	left: 10px;
	top: 10px;
	padding-left: 40px;
	letter-spacing: 2px;
}
.companiname:before{
	content: ' ';
	position: absolute;
	width: 28px;
	height: 28px;
	background: url(images/logo.png);
	background-size: contain;
	left: 0;
}
#lang_bar{
	position: absolute;
	top: 13px;
	right: 16px;
	display: flex;
	flex-flow: row nowrap;
	gap: 12px;
}
#lang_bar > div{
	padding: 5px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 9pt;
}
#lang_bar > div[data-sel='1']{
	background-color: darkorange;
	color: #000;
	font-weight: bold;
	font-size: 10pt;
}
.toolbar{
	position: absolute;
	right: 14px;
	top: 50px;
	width: calc(100% - 48px);
	display: flex;
	flex-flow: row nowrap;
	font: 9pt /40px sans-serif;
	gap: 4px;
	justify-content: flex-end;
	align-items: center;
}
.toolbar > div{
	flex: 0 0 70px;
	border-radius: 4px 4px 0 0;
	cursor: pointer;
	transition: background-color 0.3s linear;
	padding: 0 8px;
}
.toolbar > div[data-sel='1']{
	background-color: #ff8c00;
	cursor: default;
	text-decoration: underline;
	color: #000;
	font-weight: bold;
}
.pages_swp{
	position: absolute;
	top: 90px;
	width: calc(100% - 10px);
	height: calc(100% - 95px);
	border-radius: 0 0 7px;
	border-top: 2px solid #ff8c00;
}
.swiper-slide {
	 color: #fff;
	 background-color: #222;
	 box-shadow: inset 0 0 41px 9px #00000045;
 }
.img_android{
	border: 6px solid #00adff;
	border-radius: 50%;
	padding: 16px;
}
/*endregion*/
/*region Page 1*/
.page1_dc{
	position: relative;
	left: 10px;
	top: 10px;
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	border-radius: 8px;
	overflow: hidden auto;
}
.home_pic{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.4;
}
.home_text{
	position: relative;
	left: 0;
	top: 0;
	width: calc(100% - 60px);
	font: 13pt sans-serif;
	color: #FFF;
	text-align: left;
	padding-top: 10%;
	padding-left: 24px;
	margin-bottom: 30px;
}
.soc_cont{
	display: flex;
	flex-flow: row;
	align-items: center;
	gap: 6px;
	z-index: 2;
	position: absolute;
	bottom: 6px;
	width: 100%;
	justify-content: center;
}
.soc_cont > a{
	display: block;
	text-decoration: none;
	line-height: 40px;
	max-width: 160px;
	padding: 9px 20px;
	background-color: #ff8c00;
	border-radius: 4px;
	color: #000;
}
.soc_insta:before{
	content: ' ';
	width: 28px;
	height: 28px;
	background: no-repeat center /contain url("images/instagram.png");
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}
.soc_fb:before{
	content: ' ';
	width: 28px;
	height: 28px;
	background: no-repeat center /contain url("images/facebook.png");
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}
/*endregion*/
/*region Page 2*/
.page2_dc{
	position: relative;
	left: 10px;
	top: 10px;
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	border-radius: 8px;
	overflow: hidden auto;
}
.gallery_dc{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(4, 1fr);
	grid-column-gap: 4px;
	grid-row-gap: 4px;
}
.gal_thump_dc{
	padding: 8px;
	background-color: #000;
	border-radius: 8px;
	cursor: pointer;
	min-height: 150px;
	position: relative;
}
.gal_thump_dc:nth-child(1){ grid-area: 1 / 1 / 2 / 2; }
.gal_thump_dc:nth-child(2) { grid-area: 1 / 2 / 2 / 3; }
.gal_thump_dc:nth-child(3) { grid-area: 1 / 3 / 2 / 4; }
.gal_thump_dc:nth-child(4) { grid-area: 2 / 1 / 3 / 2; }
.gal_thump_dc:nth-child(5) { grid-area: 2 / 2 / 3 / 3; }
.gal_thump_dc:nth-child(6) { grid-area: 2 / 3 / 3 / 4; }
.gal_thump_dc:nth-child(7) { grid-area: 3 / 1 / 4 / 2; }
.gal_thump_dc:nth-child(8) { grid-area: 3 / 2 / 4 / 3; }
.gal_thump_dc:nth-child(9) { grid-area: 3 / 3 / 4 / 4; }
.gal_thump_dc:nth-child(10) { grid-area: 4 / 1 / 5 / 2; }
.gal_thump_dc:nth-child(11) { grid-area: 4 / 2 / 5 / 3; }
.gal_thump_dc:nth-child(12) { grid-area: 4 / 3 / 5 / 4; }

.gal_thump_dc[data-loaded='0']:before{
	content: '⭮';
	position: absolute;
	width: 60px;
	height: 60px;
	top: calc(50% - 24px);
	left: calc(50% - 24px);
	text-shadow: 0 0 6px black;
	font-size: 32pt;
	animation: spin 2s infinite linear;
}
@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(359deg);
	}
}
.gal_thump_dc > img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 4px;
}
/*endregion*/

/*region Page 3*/
.page3_dc{
	position: relative;
	left: 10px;
	top: 10px;
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	border-radius: 8px;
	overflow: hidden auto;
}
.map_pic{
	position: relative;
	width: 100%;
	height: 50%;
	border-radius: 8px;
	background: center no-repeat url("images/map.png");
}
.map_marker{
	position: absolute;
	/* background-color: rgb(0 0 0 / 20%); */
	width: 148px;
	height: 46px;
	left: 36%;
	top: 54%;
	cursor: pointer;
}
.addres_grid{
	width: 100%;
	margin-top: 30px;
}
.addres_grid > tbody > tr > td:nth-child(1){
	text-align: right;
	padding: 8px 8px 8px 0;
	color: #999;
}
.addres_grid > tbody > tr > td:nth-child(2){
	text-align: left;
	padding: 8px 0 8px 8px;
}
/*endregion*/
/*region Page 4*/
.page4_dc{
	position: relative;
	left: 10px;
	top: 10px;
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	border-radius: 8px;
	overflow: hidden auto;
	padding-top: 40px;
}
/*endregion*/
