@charset "UTF-8";
/*@import "/front/resources/fonts/Montserrat/import.css";
::-webkit-scrollbar-track{box-shadow:inset 0 0 1px rgba(0,0,0,.2);-webkit-box-shadow:inset 0 0 1px rgba(0,0,0,.2);background-color:#fff}
::-webkit-scrollbar{width:6px;background-color:#fff}
::-webkit-scrollbar-thumb{border-radius:4px;background-color:hsla(0,0%,62%,.6)}
::-webkit-scrollbar-thumb:hover{background-color:hsla(0,0%,62%,.9)}
*/
:root {
	--color-main:#0177c8;
	--color-main-light:#38a9f7;
	--color-main-dark:#0380d6;
	
	--color-bg-100:#ffffff;
	--color-bg-200:#f4ede9;
	--color-bg-color:#1f809b;
	
	--color-text-100:#3f434b;
	--color-text-200:#aaaaaa;
	
	--font-family-main: "Montserrat";
	--font-family-alt: "Cormorant Infant";
	
	--gap:1rem;
	--gap-dbl:2rem;
	--gap-inv:-1rem;
	
	--width-std:64rem;
	--width-full:60rem;
	--width-lrg:29rem;
	--width-sml:13.5rem;
	
	--font-color-scnd:#3d3d3d;
}

html {
    font-family: var(--font-family-main), "Helvetica", "Arial", sans-serif;
	font-size:16px;
	display:block;
	position: relative;
	width:100%;
	min-height: 100vh;
	margin:0px auto;
    line-height:  1.15;
    text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
body
{
    background-color:var(--color-bg-100);
	color:var(--color-text-100);
    font-size:  .875rem;
    font-weight:  400;
	max-width: 100%;
	overflow: hidden;
	min-height: 100vh;
	position: relative;
	display:block;
	overflow-y: scroll;
	overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
}
a {color:#68cef8; cursor: pointer;}
a > *, button > * {
	pointer-events: none;
	user-select:none;
}
a {
    color: #68cef8;
    cursor: pointer;
}
div {box-sizing:border-box;}
img {margin:0px auto; display: block; vertical-align: middle; padding: 0px;}
main {
	margin:0 auto;
	padding:0;
	display: block;
	padding-top: 6.25rem;
}
h1, h2, h3 {
	color:var(--color-text-100);
	font-family: var(--font-family-alt);
	font-weight: 100;
}
h1 {
	font-size:4.5rem;
	line-height: 1em;
	padding:0;
	margin:0;
	margin-bottom:2rem;
	text-transform: uppercase;
}
h2 {
	font-size:2.5rem;
	line-height: 1em;
	padding:0;
	margin:0;
	margin-bottom:1rem;
	font-weight: 600;
}
p {
	font-size:1.125rem;
	line-height: 1.875rem;
	color:var(--color-text-200);
	margin-bottom: 2rem;
	font-weight: 300;
}
p:last-child {
	margin-bottom:0;
}
section {
	display:block;
	margin: 0 auto;
	padding: var(--gap) 0;
}

#appHolder {
    overflow: hidden;
	filter: blur(2px);
}
#overlay:empty + #sideBar:not(.show) ~ * {
    filter: none;
}
#closeall {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.6);
}
#overlay:empty ~ #closeall {
    display: none;
}
#overlay:empty ~ * {
    filter: none;
}
#noScroll {
	width: 100vw;
    overflow: hidden;
	position: relative;
}
main {
	overflow-y: hidden;
}
footer {
	padding:4rem 0;
	line-height: 1rem;
}
footer section {
	padding:4rem 0;
}
.footerTitle {
	text-transform:uppercase;
	margin-bottom: var(--gap-dbl);
	color:var(--color-text-200);
}
.footerMenu, .footerContacts ul {
	list-style:none;
	display:block;
	margin:0;
	padding: 0;
}
.footerMenu > li {
	margin:0;
	margin-bottom: var(--gap-dbl);
}
.footerContacts {
	flex-grow:1;
}
.footerContacts ul > li {
	margin:0;
	margin-bottom: var(--gap);
}
.footerMenu a, .footerContacts a, .footerContacts span {
	color:inherit;
	text-transform: uppercase;
	text-decoration: none;
}
#credits {
	text-align: center;
}

.ltWidth {
	margin:0 auto;
	width:var(--width-std);
}
.ltColumn {
	margin:var(--gap);
	
	display:flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
}
.ltGrid {
	margin-left:var(--gap);
	margin-right:var(--gap);
	
	display:flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
}
.ltGrid > * {
	margin:var(--gap);
	/*margin-bottom:var(--gap-dbl);*/
	width:var(--width-lrg);
}
.ltColumn > * {
	margin:0 var(--gap);
}
.ltGrid > *.ltFill, .ltColumn > * {
	width:100%;
	flex-grow:1;
	flex-shrink: 1;
}
.gridMaze > * {
	
}
.ltGrid.gridSmall > * {
	width:var(--width-sml);
}
nav {
	position: absolute;
    display: block;
    margin: 0 auto;
    z-index: 22;
    top: 0;
    left: 0;
    width: 100%;
	background-color: var(--color-bg-200);
	
    font-size: .75rem;
    letter-spacing: .1rem;

}
nav .navMenu {
	padding:0 2rem;
	display:flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items:center;
	align-content: center;
}
nav .navMenu a {
	color:inherit;
	text-transform: uppercase;
	text-decoration: none;
}
nav .navMenu a:hover {
	text-shadow: 0 0 .03px var(--color-text-100);
}
nav .navMenu > * {
	padding:2rem;
	flex-shrink: 0;
}
nav .navTopLayer {
	display:none;
}
nav .logoHolder {
	margin-left:auto;
	margin-right:auto;
}
.logoHolder img {
	height: 2.25rem;
}
#homeSlider {
	padding-top:44%;
	overflow: hidden;
	position: relative;
}
#homeSlider img {
	position:absolute;
	top:50%;
	left:50%;
	width:100%;
	max-height: none;
	transform: translate(-50%,-50%);
}
#homeSlider .slide {
	display:none;
}
#homeSlider .slide.current, #homeSlider .slide:only-child {
	display:block;
}
.featuresHolder {
	min-height:36rem;
	background-color: var(--color-bg-color);
	padding:8rem 0 0 0;
	
	--color-text-100:#fff;
	--color-text-200:#a4e8fb;
}
.featuresHolder > * {
	padding:0 4rem;
	display:flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	align-items: stretch;
	align-content: center;
}
.featuresHolder > * > * {
	margin:0 4rem;
	flex-grow:1;
	width: 100%;
}
.featureBtns {
	background-color:var(--color-bg-200);
	height:6.25rem;
}
.featureContent {
	align-items:stretch;
	align-content: flex-start;
	min-height:23rem;
}
.featureData {
	padding-bottom:2rem;
	font-weight: 100;
}
.featureImage {
	margin-bottom:-6.25rem;
	position: relative;
	overflow: hidden;
}
.featureImage img {
	position: absolute;
	top:0;
	left:0;
	height:100%;
}
section {
	display:block;
	padding:7rem 0;
}
#folioHolder {
	
}
#materialsHolder {
	
}
#folioHolder + #materialsHolder {
	padding-top:0;
}
#videoHolder, #videoProduct {
	background-color: var(--color-bg-200);
}
.videoItem {
	text-transform:uppercase;
}
/*
.videoItem .imgHolder img {
	width:100%;
	height:auto;
}
*/
#videoProduct .listingItems {
	align-items:center;
}
.section-title {
	position:relative;
	padding:0;
	padding-bottom: 2rem;
	margin:0;
	margin-bottom: 2rem;
	
	font-weight: 400;
	font-size: 1.875rem;
	line-height: 1.875rem;
}
.section-title::after {
	display: block;
	content:"";
	position:absolute;
	bottom:0;
	left:-2rem;
	width:2rem;
	border-top:1px solid #efd8ce;
}
.seeMoreBar {
	padding: .5rem 0;
	display:flex;
	flex-direction: row;
	align-content: center;
	align-items: center;
}
.seeMoreBar a {
	display:block;
	position: relative;
	padding-right: 1rem;
	cursor: pointer;
	text-transform: uppercase;
	font-size:.75rem;
	color:inherit;
	text-decoration: none;
}
.seeMoreBar a:hover {
	text-decoration: underline;
}
.seeMoreBar a::after {
	display: inline-block;
	font-family: 'Glyphter';
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content:'\0043';
	font-size: inherit;
    line-height: inherit;
	vertical-align: middle;
	margin-left:.5rem;
}
.seeMoreBar a::before {
	vertical-align: middle;
}
.gg-play-button-o {
    display: block;
	position: relative;
    width: 24px;
    height: 24px;
    border-radius: 20px;
	overflow: hidden;
	margin:0 auto;
	
	--ggc-m:var(--color-text-100);
	--ggc-a:var(--color-bg-100);
	--ggs: 2.5;
    color: var(--ggc-m);
    transform: scale(var(--ggs));
}
.listingItems {
	align-items:stretch;
}
.listingItems > *:hover .gg-play-button-o {
	--ggc-m:var(--color-bg-100);
	--ggc-a:var(--color-text-100);
}
.gg-play-button-o::before {
    content: "";
    display: block;
    width: inherit;
    height: inherit;
    background-color: var(--ggc-a);
	opacity: .75;
}
.gg-play-button-o::after {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 0;
    height: 8px;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    margin-left: 1px;
}

.listingItems > * {
	position:relative;
	box-sizing: border-box;
}
.listingItems .imgHolder::before, .galleryVideo::before {
	content:"";
	display:block;
	position: absolute;
	top:var(--gap);
	left:var(--gap);
	bottom:var(--gap);
	right:var(--gap);
	box-sizing: border-box;
	border:1px solid #fff;
	z-index: 1;
}
.listingItems > * .overlay {
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	display:flex;
	z-index: 1;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	align-items: center;
	align-content: center;
	cursor: pointer;
	text-shadow: 0 0 1rem rgba(0,0,0,.75);
	text-decoration: none;
	padding: 0;
    width: 100%;
    background: none;
    border: 0;
    outline: 0;
	padding:2rem;
	box-sizing: border-box;
}
.listingItems > * .overlay:hover {
	text-shadow:none;
}
#ytFrame {
	border:0;
}
/*
#ytFrame {
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	z-index: 6;
	border:0;
}
*/
.listingItems > * a {
	color:inherit;
}
.listingItems > *:hover {
	color:#3f434b;
}
.listingItems .imgHolder:hover::after, .galleryItem:hover::after {
	content:"";
	display:block;
	position: absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	opacity: .8;
	background-color:var(--color-bg-200);
}
.listingItems > * .overlay > * {
	/*width:11rem;*/
	position: relative;
}
.imgHolder {
	position:relative;
	overflow:hidden;
	width:100%;
}
.imgHolder img {
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	height:100%;
	min-width: 100%;
}
.productItem {
	font-size: 1.875rem;
    line-height: 1em;
    color: #fff;
    font-family: var(--font-family-alt);
    font-weight: 100;
    text-transform: uppercase;
}
.productItem .overlay > * {
	width:16rem;
	position: relative;
}
.productItem .imgHolder {
	padding-top:100%;
	padding-bottom:8rem;
}
.productItem:nth-child(4n-2) .imgHolder {
	padding-bottom:0;
}
.productItem:nth-child(4n-1) .imgHolder {
	padding-bottom:0;
}
.productItem:nth-child(4n) .imgHolder {
	margin-top:-8rem;
}

.scrollYlisting {
    width: auto;
    min-width: 0;
    margin: 0 auto 0 0;
    position: relative;
    flex-grow: 0;
    flex-shrink: 1;
    max-width: 100%;
    overflow-y: hidden;
}
.scrollYlisting > * {
    overflow-y: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
}
.scrollYlisting > *::-webkit-scrollbar { /* WebKit */
    width: 0;
    height: 0;
}
.scrollYlisting .listingItems {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: auto;
    max-width: none;
    min-width: 0;
    position: relative;
    overflow-x: scroll;
}
#galleryHolder  .listingItems {
	/*justify-content: center;*/
}
#galleryHolder {
	display: flex;
    flex-direction: row;
    justify-content: center;
}
#galleryHolder .scrollYlisting {
	margin:auto;
}
.scrollYlisting .listingItems > * {
    min-width: 0;
    flex-shrink: 0;
    flex-grow: 0;
}

.materialItem {
	font-size: 1.875rem;
    line-height: 1em;
    color: #fff;
    font-family: var(--font-family-alt);
    font-weight: 100;
    text-transform: uppercase;
}
.materialItem::before {
	top:.5rem;
	left:.5rem;
	bottom:.5rem;
	right:.5rem;
}
.materialItem .imgHolder {
	padding-top:133%;
}
.materialItem a {
	text-decoration:none;
}

.videoItem .overlay > * {
	width:11rem;
	position: relative;
}
.videoItem .imgHolder {
	padding-top:75%;
}
.videoItem .dataHolder {
	margin: var(--gap);
	font-size: 1.875rem;
	line-height: 1.875rem;
	color:var(--color-text-100);
	font-family: var(--font-family-alt);
	font-weight: 100;
}
.paginator {
	width:100%;
	text-align:center; 
}
.paginator button {
	line-height:2.5rem;
	border:1px solid #3f434b;
	color:#3f434b;
	display:inline-block;
	padding:0 2rem;
	background:none;
	background-color:transparent;
	font-size: .75rem;
	text-transform: uppercase;
}
.paginator button:hover {
	cursor:pointer;
	background-color:#f9f9f9;
}
html[lang="ro"] .paginator button::before {
	display:inline;
	content:"mAI MULTE";
}
html[lang="ru"] .paginator button::before {
	display:inline;
	content:"больше";
}
#contactsPage {
	text-align:center;
}
#contactsPage .listingItems {
	padding-top:3rem;
}
.contactsItem {
	padding:2rem;
	color:#3f434b;
	border:1px solid;
	font-size:.75rem;
	text-decoration: none;
	cursor: pointer;
	text-transform: uppercase;
	
	display:flex;
	flex-direction: column;
	flex-wrap: nowrap;
}
.contactsItem .icon {
	font-size:2rem;
	line-height: 2rem;
	text-align: center;
	margin-bottom:auto;
	padding-bottom: 1rem;
}
.contactsItem > span {
	display:block;
}
.contactsItem > span:last-child {
	margin-top:auto;
}
.contactsItem:hover {
	border-color:#1f809b;
	background-color:#1f809b;
	color:#fff;
}
#galleryHolder {
	padding:1rem;
}
.galleryItem {
	margin:1rem;
	position:relative;
}
#textPageContent > div:not(:last-child){
	margin-bottom:8rem;
}
#textPageContent > div:empty {
	display:none;
}
#textSlides img {
	width:100%;
	height:auto;
	max-height:none;
	margin-bottom:2rem;
}
section#folioCategories {
	font-size:.75rem;
	text-transform: uppercase;
	height:6.25rem;
	padding:0;
	background-color: #1f809b;
	color:#f4ede9;
	position: sticky;
    top: 0px;
}
section#folioCategories .scrollYlisting {
	display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow: hidden;
    align-items: center;
    align-content: center;
    justify-content: center;
}
section#folioCategories .scrollYlisting .listingItems {
	margin: 0 1.75rem -1.75rem 1.75rem;
}
section#folioCategories a {
	color: inherit;
    text-decoration: none;
    cursor: pointer;
    height: 6.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 1.75rem;
	padding:0 .5rem;
}
section#folioCategories a:hover {
	color:#fff;
	text-shadow:0 0 1px #fff;
}
section#folioCategories a:first-child {
	margin-left:0;
}
.menuToggler {
    display: block;
    width: 2rem;
    height: 2rem;
    margin: 0;
	border:none;
	outline: none;
	cursor: pointer;
	padding:0;
	background: none;
}
.menuToggler span {
    /*position: absolute;*/
    width: 2rem;
    height: 2px;
    top: 50%;
    display: block;
    margin-top: -2px;
    transition-duration: 75ms;
}
.menuToggler span::before {
    display: block;
    content: "";
    position: absolute;
    width: 2rem;
    height: 1px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    border-radius: 4px;
    background-color: #3f434b;
    transform: translateY(-6px);
}
.menuToggler span::after {
    display: block;
    content: "";
    position: absolute;
    width: 2rem;
    height: 1px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    border-radius: 4px;
    background-color: #3f434b;
    transform: translateY(6px);
}
.show .menuToggler span::after {
    transition-delay: .12s;
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
    transform: rotate(45deg);
}
.show .menuToggler span::before {
    transition-delay: .12s;
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
    transform: rotate(-45deg);
}
@media only screen and (max-width: 1919.5px) {
	
}
@media only screen and (max-width: 1279.5px) {
    
    h1 {
        font-size: 3.5rem;
    }
    
}
@media only screen and (max-width: 1051.5px) {
	:root {
		--width-std:38rem;
		--width-full:34rem;
		--width-lrg:16rem;
		--width-sml:10rem;
	}
	section {
		padding-top:3.5rem;
		padding-bottom:3.5rem;
	}
	h1 {
		font-size:3rem;
		text-align: center;
	}
	.galleryItem img {
		height:27rem;
	}
	.featuresHolder {
		background:none;
		overflow-x: hidden;
		padding: 4rem 0 0 0;
	}
	.featureContent {
		min-height: 0;
		flex-direction: column;
		position:relative;
		align-items: center;
	}
	.featureContent > * {
		
		width:var(--width-full);
	}
	.featureData {
		order: 2;
		margin: 0;
		z-index: 1;
		position:relative;
		padding-bottom: 4rem;
	}
	.featureData > * {
		position: relative;
	}
	.featureData::before {
		content:"";
		display:block;
		position: absolute;
		bottom:0;
		top:-5.75rem;
		left:50%;
		transform: translateX(-50%);
		width:100%;
		width:100vw;
		background-color: var(--color-bg-color);
	}
	.featureImage {
		order: 1;
		margin: 0;
		margin-bottom: 2rem;
		z-index: 2;
		position:relative;
	}
	.featureImage img {
		width: 100%;
		height: auto;
		position: relative;
	}
	.featureBtns .seeMoreBar {
		margin:0 auto;
		justify-content: center;
	}
	.featureBtns div:last-child {
		display:none;
	}
	nav .navTopLayer {
		display:flex;
	}
	nav .navBottomLayer {
		position:absolute;
		width:100%;
		top:100%;
		flex-direction: column;
		flex-wrap: nowrap;
		background-color: var(--color-bg-100);
		padding:2rem 0;
		box-shadow: 0 1px 1px rgb(0 0 0 / 10%);
		justify-content: flex-start;
	}
	nav:not(.show) .navBottomLayer {
		display: none;
	}
	nav .navBottomLayer .logoHolder {
		display:none;
	}
	nav .navBottomLayer > * {
		width:100%;
		position: relative;
	}
	nav .navBottomLayer > *:not(:last-child)::after {
		display: block;
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		width: 2rem;
		border-top: 1px solid #efd8ce;
	}
	nav.show {
		position:fixed;
		top:0;
		bottom:0;
	}
	nav.show .navBottomLayer {
		top:6.25rem;
		bottom:0;
	}
	.materialItem {
		font-size: 1.25rem;
    	font-weight: 600;
	}
	#contactsPage .ltGrid.gridSmall > * {
		width: var(--width-lrg);
	}
}
@media only screen and (max-width: 635.5px) {
	:root {
		--width-std:26rem;
		--width-full:22rem;
		--width-lrg:22rem;
		--width-sml:10rem;
	}
	h1 {
		font-size:1.75rem;
		font-weight:900;
	}
	nav .navMenu.navTopLayer {
		height:6.25rem;
		padding:0;
	}
	nav .navMenu.navTopLayer > * {
		padding: 2rem 1rem;
	}
	section {
		padding-top:2rem;
		padding-bottom:2rem;
	}
	.logoHolder img {
		height:2rem;
	}
	.productItem .imgHolder {
		padding-bottom:0;
	}
	.productItem:nth-child(4n) .imgHolder {
		margin-top:0;
	}
	.galleryItem img {
		height:18rem;
	}
	.footerContacts {
		width:100% !important;
		flex-shrink: 0;
	}
	#contactsPage .ltGrid.gridSmall > * {
		width: 100%;
	}
}
@media only screen and (max-width: 443.5px) {
	:root {
		--width-std:20rem;
		--width-full:16rem;
		--width-lrg:16rem;
		--width-sml:16rem;
	}
	.featuresHolder > * {
		padding:0 2rem;
	}
	.featuresHolder > *  > * {
		width:100%;
	}
	.footerMenu > li {
		margin-bottom: var(--gap);
	}
	main > * {
		padding-left: 0;
    	padding-right: 0;
	}
	.ltColumn, .ltColumn > *, .ltGrid {
		margin-left:0;
		margin-right:0;
	}
	*:not(.scrollYlisting) > .ltGrid > * {
		width:100%;
		margin-left:0;
		margin-right:0;
	}
	.scrollYlisting > .ltGrid > * {
		margin-left:0;
	}
	.ltWidth {
		width:auto;
		margin:0 2rem;
	}
	.galleryItem img {
		max-height:16rem;
	}
	.materialItem {
		font-size: 1.75rem;
    	font-weight: normal;
	}
}
.scrollYlisting .listingItems::after {
	display:block;
	content:"";
	width:1px;
	flex-shrink: 0;
    flex-grow: 0;
	margin-left:-1px;
}
/*
1052/1024/992/496/248
65.75/64/62/31/15.5

636/608/576/304/192
39.75/38/36/19/12

444/416/384/384/192
27.75/26/24/24/12

348/320/288/288/288
21.75/20/18/18/18

*/
#overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    background-color: rgb(160 160 160 / 31%);
    z-index: 667;
}
#overlay:empty {
    display: none !important;
}
#galleryOverlay {
    position: absolute;
    top: 0;
    left: 0;
    padding: 3rem;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}
#closeOverlay {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 667;
    width: 3rem;
    height: 3rem;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 1.5rem;
}
#closeOverlay span {
    position: absolute;
    width: 1.25rem;
    height: 2px;
    transition-duration: .15s;
    transition-property: transform;
    border-radius: 4px;
    background-color: #cdcdcd;
    top: 50%;
    display: block;
    margin-top: -2px;
    transition-duration: 75ms;
    transition-delay: .12s;
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
    transform: rotate(45deg);
}
#closeOverlay span::after {
    display: block;
    content: "";
    position: absolute;
    width: 1.25rem;
    height: 2px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    border-radius: 4px;
    background-color: inherit;
    bottom: 0;
    transition: bottom 75ms ease,transform 75ms cubic-bezier(.215,.61,.355,1) .12s;
    transform: rotate(-90deg);
}
#galleryOverlay button.arrows {
    width: 3rem;
    height: 3rem;
    position: absolute;
    top: 50%;
    left: 3rem;
    border-radius: 50%;
    outline: none;
    border: none;
    cursor: pointer;
    background-color: #000;
    z-index: 11;
    transform: translate(-50%,-50%);
}
.arrowPrev::after {
    content: "";
    display: block;
    width: .75rem;
    height: .75rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-135deg);
    margin-left: .125rem;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}
.arrowNext::after {
    content: "";
    display: block;
    width: .75rem;
    height: .75rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
    margin-left: -.125rem;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}
#galleryOverlay button.arrows.arrowNext {
    left: auto;
    right: 3rem;
    transform: translate(50%,-50%);
}
.galleryImage {
    display: none;
    flex-grow: 1;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.galleryImage.current {
    display: block;
}
.galleryImage img {
    display: none;
}
.galleryImage picture:last-child img {
    display: block;
}
.videoPlayerHolder .overlay {
	display:none;
}
.videoPlayerHolder .overlay:nth-last-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    background-color: rgba(0,0,0,.35);
    color: #fff;
    padding: 15%;
    font-size: 2.25rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    outline: none;
    border: none;
    width: 100%;
    height: 100%;
	box-sizing: border-box;
}

html[lang="ro"] .dex-folioholder::before {
	content:"Portofoliu";
}
html[lang="ru"] .dex-folioholder::before {
	content:"Портофолио";
}
html[lang="ro"] .dex-folioseeall::before {
	content:"explorează portofoliu";
}
html[lang="ru"] .dex-folioseeall::before {
	content:"наши работы";
}

html[lang="ro"] .dex-materialholder::before {
	content:"Materiale";
}
html[lang="ru"] .dex-materialholder::before {
	content:"Материалы";
}
html[lang="ro"] .dex-materialsseeall::before {
	content:"Vezi materiale";
}
html[lang="ru"] .dex-materialsseeall::before {
	content:"Материалы";
}

html[lang="ro"] .dex-videoholder::before {
	content:"Descoperă prin video lucrările noastre";
}
html[lang="ru"] .dex-videoholder::before {
	content:"Наши видео";
}
html[lang="ro"] .dex-videoseeall::before {
	content:"Vezi toate";
}
html[lang="ru"] .dex-videoseeall::before {
	content:"Посмотреть еще";
}


html[lang="ro"] .footerTitle.txtFolio::before {
	content:"PORTOFOLIU";
}
html[lang="ru"] .footerTitle.txtFolio::before {
	content:"Портофолио";
}

html[lang="ro"] .footerTitle.txtPages::before {
	content:"Pagini";
}
html[lang="ru"] .footerTitle.txtPages::before {
	content:"Страницы";
}

html[lang="ro"] .footerTitle.txtContacts::before {
	content:"Contacte";
}
html[lang="ru"] .footerTitle.txtContacts::before {
	content:"Контакты";
}
















