/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* END reset */

/* START Micro ClearFix */
.cf:before, .cf:after { content: ""; display: table } /* For modern browsers */
.cf:after { clear: both }
.cf { zoom: 1 } /* For IE 6/7 (trigger hasLayout) */
/* END Micro ClearFix */

:root {
	--highlight: #D66729;
	--text-color-1: #444444;
	--text-color-2: #626262;
	--text-color-disabled: #A8A8A8
}

HTML {
	height: 100%;
}

BODY {
	margin: 0px;
	padding: 0px;
	padding-top: 90px;
	color: var(--text-color-1);
	font-family: Arial, Tahoma, sans-serif;
	font-size: 13px;
	font-weight: normal;
	line-height: 20px;
	display: flow-root;
}
BODY.menuopen {
	overflow: hidden;
}

A {
	font-weight: normal;
	color: var(--text-color-1);
	text-decoration: none;
}
A:hover {
	text-decoration: underline;
	color: var(--highlight);
}
A:visited {
	color: var(--text-color-1);
}
A.main, A.main:visited {
	color: var(--highlight);
	text-decoration: none;
}
A.main:hover {
	color: var(--highlight);
	text-decoration: underline;
}

EM { font-style: italic }
STRONG { font-weight: 500 }

H1 { font-size: 1.875em; border-bottom: 0px dotted #555 }
H2 {
	font-size: 14px;
	font-weight: 500;
}

INPUT[type=checkbox] { position: relative; top: 1px }

INPUT[type=text], INPUT[type=password], INPUT[type=number], TEXTAREA, SELECT {
	box-sizing: border-box;
	border: 1px solid transparent;
	border-radius: 4px;
	height: 38px;
	outline: none;
	font-size: 13px;
	color: #979CA9;
	padding-left: 10px;
	padding-right: 3px;
	resize: none;
	margin: 0;
	font-family: "DM Sans", sans-serif;
	background-color: #F9F9FA;
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:   #BBB;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #BBB;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #BBB;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #BBB;
}

SELECT { padding-right: 0px; height: 28px }

.tr {
	transition: all 0.25s;
	-moz-transition: all 0.25s;
	-webkit-transition: all 0.25s;
	-o-transition: all 0.25s;
	-ms-transition: all 0.25s;
}

.nosel {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.ellipsis {
	white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.ellipsis-multi {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2; /* number of lines to show */
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.center {
	text-align: center;
}
.left {
	float: left;
}
.right {
	float: right;
}

.scale0 {
	transform: scale(0, 0);
	transition-timing-function: ease-in;
}

.wrap {
	word-wrap: break-word;
	-moz-hyphens: auto;
	-webkit-hyphens: auto;
	-o-hyphens: auto;
	hyphens: auto;
}

.break {
	/* These are technically the same, but use both */
	overflow-wrap: break-word;
	word-wrap: break-word;
	
	-ms-word-break: break-all;
	/* This is the dangerous one in WebKit, as it breaks things wherever */
	word-break: break-all;
	/* Instead use this non-standard one: */
	word-break: break-word;
	
	/* Adds a hyphen where the word breaks, if supported (No Blink) */
	-ms-hyphens: auto;
	-moz-hyphens: auto;
	-webkit-hyphens: auto;
	hyphens: auto;
	position: relative;
}

INPUT[type="checkbox"].styled {
	/* remove standard background appearance */
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	/* create custom radiobutton appearance */
	display: inline-block;
	width: 14px;
	height: 14px;
	padding: 2px;
	/* background-color only for content */
	background-clip: content-box;
	border: 1px solid black;
	background-color: transparent;
	border-radius: 2px;
	margin: 3px 3px 0px 5px;
	top: 2px;
}
INPUT[type="checkbox"].styled:active, LABEL:active INPUT[type="checkbox"] {
	background-color: #CCC !important;
}
/* appearance for checked radiobutton */
INPUT[type="checkbox"].styled:checked {
	background-color: #297BE6;
}

.button {
	outline: 1px solid transparent;
	border: none;
	display: inline-block;
	cursor: pointer;
	font-size: 13px;
	font-weight: 500;
	color: white !important;
	padding: 8px 16px;
	line-height: 18px;
	background-color: black;
	text-decoration: none;
	letter-spacing: 0.5px;
	border-radius: 4px;
	display: flex;
	align-items: center;
}
.button.large {
	font-size: 14px;
}
.button:not([disabled]):hover {
	background-color: var(--highlight);
}
.button[disabled] {
	background-color: #CCC;
}
.button .material-icons {
	margin-left: 3px;
	font-size: 18px;
}
.button.withIcon {
	padding-right: 9px;
}

.material-icons {
	opacity: 1;
	max-width: 24px;
	transition: opacity 0.2s;
	transform: rotate(0.03deg);
}
.tippy-content {
	font-size: 13px;
}

/*---------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------*/

#topbar {
	height: 90px;
	width: 100%;
	background-color: white;
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 10%);
}
#topbar .cont {
	width: 1200px;
	height: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
}
#topbar .logo {
	display: block;
	height: 60px;
	width: 135px;
	background: url('/static/images/logo-with-text.webp') center center/contain no-repeat;
}

#topbar .menu {
	display: flex;
	margin-left: 30px;
	align-self: flex-start;
	margin-top: 6px;
}
#topbar .menu .top {
	display: block;
	padding: 30px 20px;
	font-size: 16px;
	position: relative;
}
#topbar .menu > LI:hover .top {
	color: var(--highlight);
	text-decoration: none;
	cursor: pointer;
}
#topbar .menu > LI {
	position: relative;
	border-bottom: 4px transparent;
	height: 80px;
}
#topbar .menu > LI.hasChildren:after {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 16px;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-feature-settings: 'liga';
	-webkit-font-smoothing: antialiased;
	
	content: "expand_more";
	color: #444;
	width: 16px;
	height: 16px;
	position: absolute;
	bottom: 5px;
	left: 50%;
	transform: translateX(-50%);
	display: block;
}
#topbar .menu > LI.hasChildren:hover:after {
	color: var(--highlight);
}
#topbar .menu > LI:hover {
	border-bottom: 4px solid var(--highlight);
}

#topbar .sub {
	display: none;
	position: absolute;
	box-shadow: 2px 2px 2px 0 rgb(0 0 0 / 3%);
	background-color: rgba(245, 245, 245, 0.97);
	min-width: 150px;
	margin-top: 4px;
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
}
#topbar .menu > LI:hover .sub {
	display: block;
}
#topbar .sub LI {
	display: block;
}
#topbar .sub LI.title {
	padding: 10px 20px;
	color: #888;
}
#topbar .sub LI.title:hover {
	background-color: unset;
}
#topbar .sub LI:not(:last-of-type) {
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
#topbar .sub LI:hover {
	background-color: rgba(0, 0, 0, 5%);
}
#topbar .sub A {
	color: #5F5F5F;
	display: block;
	white-space: nowrap;
	padding: 10px 20px;
}
#topbar .sub A.sub2 {
	padding: 10px 20px 10px 40px;
}

#topbar .sub LI:hover A {
	color: #2E2E2E;
	text-decoration: none;
}

#topbar .langs {
	margin-left: auto;
}
#topbar .langs A {
	display: inline-block;
	width: 25px;
	height: 19px;
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	border-radius: 3px;
	vertical-align: top;
}
#topbar .langs A:not(.current) {
	filter: grayscale(1);
	opacity: 0.7;
}
#topbar .langs A.RO {
	background-image: url('/static/images/RO.svg');
}
#topbar .langs A.EN {
	background-image: url('/static/images/EN.png');
}


#imageSlider {
	height: calc(100vh - 90px);
	padding: 0;
	width: 100%;
	position: relative;
}
#imageSlider .slides, #imageSlider .slides LI {
	width: 100%;
	height: 100%;
}
#imageSlider .slides LI {
	display: none;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	top: 0;
}
#imageSlider .slides LI:after {
	content: '';
	display: block;
	position: absolute;
	z-index: 1;
	bottom: 137px;
	left: 50%;
	transform: translateX(-50%);
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	animation-name: insert;
	animation-duration: 0.2s;
	animation-delay: 0.6s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	opacity: 0;
	height: 111px;
	width: 70%;
}
@keyframes insert {
	from { opacity: 0 }
	to { opacity: 1 }
}
#imageSlider .slides LI.shown {
	/*display: block;*/
}
#imageSlider .slides LI:first-child {
	display: block;
}
#imageSlider .slides LI[data-index="1"] {
	background-image: url('/static/images/slide1.webp');
}
#imageSlider .slides LI[data-index="1"]:after {
	background-image: url('/static/images/slide1_text.webp');
	max-width: 426px;
}
#imageSlider .slides LI[data-index="2"] {
	background-image: url('/static/images/slide2.webp');
}
#imageSlider .slides LI[data-index="2"]:after {
	background-image: url('/static/images/slide2_text.webp');
	max-width: 431px;
}
#imageSlider .slides LI[data-index="3"] {
	background-image: url('/static/images/slide3.webp');
}
#imageSlider .slides LI[data-index="3"]:after {
	background-image: url('/static/images/slide3_text.webp');
	max-width: 382px;
}
#imageSlider .slides LI[data-index="4"] {
	background-image: url('/static/images/slide4.webp');
}
#imageSlider .slides LI[data-index="4"]:after {
	background-image: url('/static/images/slide4_text.webp');
	max-width: 496px;
}

#imageSlider .controls {
	position: absolute;
	top: 50%;
	background-color: rgba(0, 0, 0, 0.5);
	width: 40px;
	height: 40px;
	transform: translateY(-50%);
	color: white;
	border-radius: 50%;
	cursor: pointer;
	box-sizing: border-box;
	padding-top: 1px;
	transition: all 0.3s;
	z-index: 1;
	-webkit-tap-highlight-color: transparent;
}
#imageSlider .controls:hover {
	background-color: black;
}
#imageSlider .controls:active {
	background-color: var(--highlight);
}
#imageSlider .controls .material-icons {
	font-size: 38px;
}
#imageSlider .controls.prev {
	left: 30px;
}
#imageSlider .controls.next {
	right: 30px;
	padding-left: 2px;
}

#imageSlider .index {
	position: absolute;
	bottom: 20px;
	left: 0;
	height: 16px;
	width: 100%;
	display: flex;
	justify-content: center;
}
#imageSlider .index LI {
	box-sizing: border-box;
	width: 16px;
	height: 16px;
	border: 2px solid white;
	margin-left: 5px;
	border-radius: 50%;
	cursor: pointer;
}
#imageSlider .index LI.shown {
	display: block;
	background-color: white;
}
#imageSlider .index LI:first-child {
	margin-left: 0;
}

SECTION P, SECTION H1, SECTION H2 {
	text-align: center;
}
H1 {
	font-size: 42px;
	line-height: 42px;
}
H2 {
	font-size: 25px;
	line-height: 25px;
}

SECTION {
	padding: 60px 0;
}
SECTION P {
	color: var(--text-color-disabled);
	font-size: 15px;
	line-height: 28px;
}
SECTION .cont, #pageLabel .cont {
	width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 0 20px;
}

SECTION.light {
	width: 100%;
	background-color: white;
}
SECTION H1 {
	margin-bottom: 15px;
	line-height: 45px;
}
SECTION H2 {
	margin-bottom: 15px;
	line-height: 32px;
}
SECTION.blue {
	background-color: #FAFBFC;
	background-image: url(/static/images/section_blue.webp);
	background-repeat: no-repeat;
	background-position: center top;
}
SECTION.grey {
	background-color: #EEEEEE;
}
SECTION.table {
	padding-bottom: 188px;
	background-color: white;
	position: relative;
}
SECTION.table:after {
	content: "";
	position: absolute;
	display: block;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 128px;
	background: url('/static/images/dark-table-texture.webp') top left/cover no-repeat;
}
SECTION P {
	color: #626262;
}
SECTION A.light {
	color: var(--text-color-disabled);
	font-size: 15px;
	line-height: 21px;
	text-decoration: none;
	border-bottom: 1px dashed var(--text-color-disabled);
	padding-bottom: 1px;
}
SECTION A.highlight {
	color: #626262;
	font-size: 15px;
	line-height: 21px;
	text-decoration: none;
	border-bottom: 1px dashed #626262;
	padding-bottom: 1px;
}

A.tip {
	font-size: 15px;
	line-height: 21px;
	text-decoration: none;
	border-bottom: 1px dashed var(--text-color-2);
	padding-bottom: 1px;
	cursor: help;
	color: var(--text-color-2);
}


.iconButton {
	background-color: var(--highlight);
	box-shadow: inset 0 0 0 1px rgba(0,0,0,.03);
	display: inline-flex;
	width: fit-content;
	text-decoration: none !important;
	border-radius: 5px;
	position: relative;
}
.iconButton.grey {
	background-color: #F7F7F7;
}
.iconButton:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 0;
	z-index: 1;
	transition: all 0.3s;
	background: rgba(0,0,0,.05);
	border-radius: 5px;
}
.iconButton:hover:after {
	width: 100%;
}
.iconButton .icon {
	height: 100%;
	width: 42px;
	height: 42px;
	display: block;
	position: relative;
	background: rgba(0,0,0,.05);
}
.iconButton .icon SPAN {
	font-size: 18px;
	color: rgba(0, 0, 0, 1);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}
.iconButton .text {
	padding: 11px 20px;
	/*color: white;*/
	color: white;
	text-shadow: 1px 1px 2px black;
}
.iconButton.grey .text {
	/*color: #747474;*/
	color: black;
	text-shadow: none;
}
.iconButton:not(.grey):hover .text {
	color: white;
	text-shadow: 1px 1px 2px black;
}

.items-3 {
	width: 100%;
}
.items-3 LI {
	width: calc(33.33% - 20px);
	margin: 0 10px;
	margin-top: 50px;
	float: left;
}
.items-3.quotes LI {
	margin-top: 0;
}
.items-3.sub {
	margin-top: 0;
}
.items-3 LI H3, .items-2 LI H3 {
	font-size: 21px;
	text-align: center;
}
.items-3 .photo, .items-2 .photo {
	display: inline-block;
	width: 100%;
	border: 8px solid #F8F8F8;
	box-sizing: border-box;
	margin-top: 5px;
	transition: all 0.3s;
}
.items-3 .photo:hover, .items-2 .photo:hover {
	scale: 1.05;
	/*transform: rotate(-5deg);*/
}
.items-3 .photo IMG, .items-2 .photo IMG {
	width: 100%;
	height: auto;
	vertical-align: middle;
}
.items-3 .text {
	margin-top: 15px;
	text-align: center;
	color: var(--text-color-2);
	display: block;
}

.counter {
	display: flex;
	align-items: center;
	justify-content: center;
	border-top: 1px solid var(--highlight);
	border-bottom: 1px solid var(--highlight);
	padding: 30px 0 35px 0;
	margin-top: 60px;
}
.counter.simple {
	margin-top: 0;
	border-width: 0;
}
.counter LI {
	width: 20%;
	text-align: center;
	font-family: 'Patua One', sans-serif;
	font-size: 90px;
	line-height: 90px;
	color: var(--highlight);
}
.counter LI SPAN {
	display: block;
	font-size: 25px;
	line-height: 25px;
	font-family: Arial, Tahoma, sans-serif;
	color: var(--text-color-1);
}


.items-2 {
	width: 100%;
}
.items-2 > LI:nth-child(3) {
	clear: left;
}
.items-2 > LI {
	width: calc(50% - 20px);
	margin: 0 10px;
	margin-top: 50px;
	float: left;
}
.items-2 H2 {
	font-size: 25px;
	line-height: 27px;
}
.items-2 H2.colored {
	color: var(--highlight);
	text-align: left;
}
.items-2 P {
	font-size: 14px;
	color: var(--text-color-2);
	line-height: 25px;
	text-align: justify;
	margin-top: 20px;
}

UL.star {
	margin: 0 auto;
	margin-top: 10px;
	width: fit-content;
	box-sizing: border-box;
}
UL.star LI {
	padding: 11px 20px 9px 42px;
	position: relative;
	font-size: 15px;
	width: fit-content;
	margin-top: 0;
}
UL.star LI:after {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-feature-settings: 'liga';
	-webkit-font-smoothing: antialiased;
	
	content: 'star';
	color: black;
	width: 24px;
	height: 24px;
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
}

SECTION .moretext {
	font-size: 35px;
	max-width: 500px;
	margin: 0 auto;
}

UL.quotes LI {
	position: relative;
}
UL.quotes LI:after {
	content: "";
	width: 55px;
	height: 40px;
	background: url('/static/images/blockquote.png');
	position: absolute;
	left: -5px;
	top: 3px;
}
BLOCKQUOTE {
	font-size: 17px;
	line-height: 31px;
	display: block;
	height: auto;
	margin: 0 0 35px 25px;
	top: 15px;
	position: relative;
	text-align: left;
}

UL.providers A.provider {
	display: block;
	text-align: center;
	border-radius: 5px;
	background-color: rgba(0, 0, 0, 0.04);
}
UL.providers A.provider IMG {
	vertical-align: top;
}
UL.providers A.provider:hover {
	background-color: rgba(0, 0, 0, 0.1);
}

FOOTER {
	background-color: #545454;
	color: white;
	padding-top: 10px;
}
FOOTER .cont {
	width: 1200px;
	margin: 0 auto;
}
FOOTER H1 {
	font-size: 21px;
	line-height: 25px;
	margin-bottom: 15px;
	text-align: left;
}
FOOTER .main .cont > DIV {
	width: calc(25% - 20px);
	margin: 0 10px;
	float: left;
}

FOOTER P {
	color: #CCCCCC;
	text-align: left;
}
FOOTER P:not(:first-child) {
	margin-top: 20px;
}
FOOTER .social LI {
	width: 43px;
	height: 43px;
	background-color: #FCFCFC;
	display: block;
	float: left;
	margin-left: 5px;
}
FOOTER .social LI:first-child {
	margin-left: 0;
}
FOOTER .social LI A {
	display: block;
	height: 100%;
	width: 100%;
	filter: grayscale(1);
	transition: all 0.25s;
	background-size: 50% 50%;
	background-repeat: no-repeat;
}
FOOTER .social LI A:hover {
	filter: grayscale(0);
}
FOOTER .social .fb A {
	background-color: #1877F2;
	background-image: url('/static/images/fblogo.png');
	background-position: 11px center;
}
FOOTER .social .fb A:hover {
	background-position: 11px 9px;
}
FOOTER .social .tw A {
	background-color: #1D9BF0;
	background-image: url('/static/images/twlogo.svg');
	background-position: 11px center;
}
FOOTER .social .tw A:hover {
	background-position: 11px 9px;
}
FOOTER .social .ta A {
	background-color: #579341;
	background-image: url('/static/images/talogo.webp');
	background-position: 8px center;
	background-size: 60%;
}
FOOTER .social .ta A:hover {
	background-position: 8px 11px;
}
FOOTER .social .bk A {
	background-color: #0C3B7C;
	background-image: url('/static/images/bklogo.png');
	background-position: 15px center;
	background-size: 40%;
}
FOOTER .social .bk A:hover {
	background-position: 15px 11px;
}
FOOTER SECTION {
	padding: 30px 0;
}
FOOTER SECTION:not(:last-of-type) {
	border-bottom: 1px solid rgba(255,255,255,.1);
}
FOOTER A, FOOTER A:visited {
	font-size: 13px;
	color: #CCCCCC;
}
FOOTER A:hover {
	color: var(--highlight);
}
FOOTER .dev {
	position: relative;
	padding-right: 16px;
}
FOOTER .dev:hover:after {
	color: var(--highlight);
}
FOOTER .dev:after {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 14px;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-feature-settings: 'liga';
	-webkit-font-smoothing: antialiased;
	
	content: 'open_in_new';
	color: #CCCCCC;
	width: 14px;
	height: 14px;
	position: absolute;
	top: 50%;
	right: 0px;
	transform: translateY(-60%);
}

H2.colored {
	color: var(--highlight);
}

.col2auto {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}
.contact .col2auto > LI {
	flex: 1 1 0;
	margin: 0 20px;
}
.col2auto > LI.right {
	margin-left: 25px;
}
.col2auto > LI.full {
	width: min-content;
	flex: 1 1 auto;
}
.col2auto .break {
	flex-basis: 100%;
	height: 0;
	margin-bottom: 40px;
}
.col2auto P {
	font-size: 14px;
	color: var(--text-color-2);
	line-height: 25px;
	text-align: justify;
}
.col2auto P:not(:first-of-type) {
	margin-top: 15px;
}

.divider-top {
	border-top: 1px solid var(--highlight);
}
A.img IMG {
	transition: all 0.2s;
}
A.img:hover IMG {
	scale: 1.01;
}
.items-3.regular .photo:hover {

}

.download {
	display: inline-block;
	width: 172px;
	box-sizing: border-box;
	background-color: white;
	margin: 0 auto;
	padding: 25px 15px;
	text-decoration: none !important;
	border-bottom: 5px solid #EEEEEE;
	margin-top: 50px;
}
.download:hover {
	border-bottom-color: var(--highlight);
}
.download .material-icons {
	display: block;
	color: var(--highlight);
	font-size: 44px;
	margin: 0 auto;
	transform: translateX(-9px);
}
.download .text {
	text-align: center;
	font-weight: bold;
	margin-top: 10px;
}
#plai {
	position: fixed;
	width: 100%;
	z-index: -1;
	height: 380px;
	background: url('/static/images/plai_bg.webp') top left/cover no-repeat;
}
#pageLabel {
	margin-top: 304px;
	border-bottom: 2px solid rgba(255, 255, 255, 1);
}
#pageLabel.camere {
	border-bottom: 2px solid rgba(255, 255, 255, 0.5);
	margin-top: 125px;
	display: none;
}
#pageLabel .cont {
	overflow: hidden;
}
#pageLabel .cont .title {
	padding: 12px 24px;
	background-color: rgba(255, 255, 255, 1);
	font-size: 25px;
	line-height: 25px;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
	box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
	display: inline-block;
}
#pageLabel.camere .cont .title {
	background-color: rgba(255, 255, 255, 0.5);
}
.picHeader IMG {
	vertical-align: middle;
	width: 100%;
}

SECTION.room H1 .colored {
	font-size: 30px;
	color: var(--highlight);
}

.room .subtitle {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.room .subtitle LI {
	position: relative;
	padding-left: 22px;
	white-space: nowrap;
	display: inline-flex;
	margin-top: 10px;
}
.room .subtitle LI:not(:last-of-type) {
	margin-right: 12px;
}
.room .subtitle LI:after {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 18px;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-feature-settings: 'liga';
	-webkit-font-smoothing: antialiased;
	
	color: var(--highlight);
	display: block;
	position: absolute;
	top: -1px;
	left: 0;
	transform: rotate(0.03deg);
}
.room .subtitle LI.users:after {
	top: 0;
	content: "people";
}
.room .subtitle LI.tv:after {
	content: "live_tv";
}
.room .subtitle LI.wifi:after {
	content: "wifi";
}
.room .subtitle LI.ac:after {
	top: 0;
	content: "air";
}
.room .subtitle LI.living:after {
	top: 0;
	content: "home";
}
.room .subtitle LI.balcon:after {
	top: 0;
	content: "balcony";
}
.room .subtitle LI.dressing:after {
	top: 0;
	content: "checkroom";
}
.room .subtitle LI.complet:after {
	top: 0;
	content: "refresh";
}
.room .subtitle LI.fireplace:after {
	top: 0;
	content: "fireplace";
}
.room .subtitle LI.audio:after {
	top: 0;
	content: "media_bluetooth_on";
}
.room .subtitle LI.grill:after {
	top: 0;
	content: "outdoor_grill";
}
.room .subtitle LI.panorama:after {
	top: 0;
	content: "panorama";
}

.room .features {
	width: 100%;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	margin-top: 50px;
}
.room .features LI {
	flex: 1 1 0;
	margin: 0 10px;
}
.room .features LI.feature {
	box-sizing: border-box;
	padding: 20px;
	background-image: url('/static/images/stripes.png');
	flex: 0 0 276px;
}
.room .features LI.feature > DIV {
	text-align: center;
}
.room .features LI.feature .material-icons {
	color: var(--highlight);
	font-size: 50px;
	display: inline-block;
	width: 50px;
	height: 50px;
	transform: translateX(-14px);
}
.room .features LI.feature .number {
	font-family: 'Patua One', sans-serif;
	font-size: 50px;
	line-height: 1;
}
.room .features LI.feature .label {
	color: #A8A8A8;
	margin-top: 8px;
	font-size: 15px;
}
.room .features LI P {
	color: #626262;
	text-align: left;
}
.room .features LI P:not(:first-of-type) {
	margin-top: 20px;
}

SECTION.gallery .gallery {
	width: 100%;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}
SECTION.gallery LI {
	flex: 0 0 276px;
	box-sizing: border-box;
	float: left;
}
SECTION.gallery LI.photoheader {
	background-color: white;
	padding: 8px;
	max-width: 344px;
}
SECTION.gallery LI.photoheader IMG {
	width: 100%;
}
SECTION.gallery LI.photos {
	flex: 1 1 0;
	display: flex;
	flex-wrap: wrap;
}
SECTION.gallery IMG {
	vertical-align: middle;
}
SECTION.gallery P {
	color: #626262;
}
SECTION.gallery LI.text {
	padding: 0 44px;
}
SECTION.gallery LI.text P {
	margin-top: 20px;
}
SECTION.gallery A.photo {
	display: block;
	float: left;
	width: 180px;
	height: 165px;
	overflow: hidden;
	padding: 8px;
	background-color: white;
	box-sizing: border-box;
	margin-bottom: 10px;
	margin-right: 10px;
	transition: all 0.2s;
	position: relative;
}
SECTION.gallery.light A.photo {
	background-color: #F0F0F0;
}
SECTION.gallery.grey A.photo {
	background-color: #FFFFFF;
}
SECTION.gallery A.photo:after {
	background: #fff;
	content: "";
	height: 250px;
	left: -110px;
	opacity: .2;
	position: absolute;
	top: -50px;
	transform: rotate(35deg);
	transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
	width: 50px;
	z-index: 1;
}
SECTION.gallery A.photo:before {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-feature-settings: 'liga';
	-webkit-font-smoothing: antialiased;
	
	background-color: rgba(255, 255, 255, 0.8);
	position: absolute;
	bottom: -40px;
	left: 50%;
	transform: translateX(-50%) rotate(0.03deg);
	width: calc(100% - 16px);
	content: "zoom_in";
	box-sizing: border-box;
	padding: 5px 10px;
	transition: all 0.2s;
	color: var(--highlight);
}
SECTION.gallery A.photo:hover:before {
	bottom: 8px;
}
SECTION.gallery UL.full A.photo {
	width: 220px;
	height: 201px;
}
SECTION.gallery A.photo IMG {
	object-fit: cover;
	display: block;
	width: 100%;
	height: 100%;
}
SECTION.gallery A.photo:hover:after {
	left: 150%;
	transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

#rezervaAcum {
	background-color: var(--highlight);
	filter: grayscale(50%);
	transition: all 0.2s;
}
#rezervaAcum A {
	padding: 50px 30px;
	display: block;
	text-align: center;
	color: white;
	font-size: 25px;
	text-decoration: none;
	line-height: 30px;
}
#rezervaAcum:hover {
	opacity: 1;
	filter: none;
}

.faqs .title {
	font-size: 21px;
	margin-bottom: 15px;
}
.faqs .q {
	padding: 10px 30px;
	background: rgba(0, 0, 0, .02);
	position: relative;
	font-weight: bold;
	margin-top: 30px;
}
.faqs .q:before {
	content: "»";
	position: absolute;
	top: 50%;
	left: 15px;
	transform: translateY(-55%);
}
.faqs .a {
	margin-top: 10px;
	color: #626262;
	padding: 0 10px;
}

.col2auto.data LI {
	display: flex;
	align-items: flex-start;
}
.col2auto.data LI .material-icons {
	font-size: 50px;
	display: block;
	color: var(--highlight);
	padding-right: 50px;
}
.col2auto.data LI .right P {
	margin-top: 5px;
}
.col2auto.data LI .right P:first-of-type {
	font-size: 24px;
}
.col2auto.data LI .right A {
	color: var(--highlight);
	font-size: 18px;
}
.col2auto.data LI .right A.tel {
	color: #626262;
	border-bottom: 1px dotted #626262;
	text-decoration: none;
}

.col3auto {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}
.col3auto LI {
	margin: 0 10px;
	flex: 1 1 0;
}
.col3auto LI P.title {
	font-size: 21px;
}
.col3auto LI P {
	text-align: left;
}
.col3auto LI P.subtitle {
	color: #A8A8A8;
	font-size: 13px;
}
.col3auto LI.first P {
	text-align: right;
}

.contact .social {
	border-top: 1px solid var(--highlight);
	display: flex;
	margin-top: 10px;
	max-width: 160px;
}
.contact .social.full {
	border-top: none;
	max-width: unset;
}
.contact .social A {
	display: block;
	width: 45px;
	height: 45px;
	border: 1px solid rgba(0,0,0,.08);
	background-color: white;
	box-shadow: inset 0 0 5px 0 rgb(0 0 0 / 8%);
	margin-right: 3px;
	margin-top: 15px;
	transition: all 0.2s;
	background-repeat: no-repeat;
	filter: grayscale(100%);
	opacity: 0.6;
}
.contact .social A.mail {
	background-image: url('/static/images/mail.svg');
	background-position: 14px center;
	background-size: 40%;
	
}
.contact .social A.fb {
	background-image: url('/static/images/facebook.svg');
	background-position: 13px center;
	background-size: 40%;
}
.contact .social A.linkedin {
	background-image: url('/static/images/linkedin.svg');
	background-position: 15px center;
	background-size: 35%;
}
.contact .social A.twitter {
	background-image: url('/static/images/twlogo_black.svg');
	background-position: 15px center;
	background-size: 40%;
}
.contact .social A.tripadvisor {
	background-image: url('/static/images/tripadvisor_black.svg');
	background-position: 14px center;
	background-size: 40%;
}
.contact .social A.booking {
	background-image: url('/static/images/booking_black.svg');
	background-position: 14px center;
	background-size: 40%;
}
.contact .social A:hover {
	filter: none;
	opacity: 1;
}

SECTION.gallery P, SECTION.activitati P {
	color: #626262;
}
SECTION.gallery DIV.gallery {
	margin-top: 50px;
}

.activitati .items-3 LI, .activitati .items-2 LI {
	margin-top: 50px;
}
.activitati .items-3 .photo, .activitati .items-2 .photo {
	margin-bottom: 5px;
	text-align: center;
	max-width: 500px;
	/*height: 144px;*/
}
.activitati .items-3 .photo IMG, .activitati .items-2 .photo IMG {
	display: block;
	object-fit: cover;
}
.activitati .items-3 P, .activitati .items-2 P {
	font-size: 13px;
	line-height: 21px;
}

.activitati .pret {
	text-align: center;
	margin-top: 15px;
}
.activitati .pret .material-icons {
	vertical-align: bottom;
}
.activitati .pret.on .material-icons {
	position: relative;
	top: 1px;
}
.activitati .items-2 {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}

FOOTER .maps {
	width: 100%;
	margin-top: 50px;
	width: calc(100% - 1px);
	border: 0;
}

.items-3.quotes {
	margin-top: 75px;
}

SECTION.vatra IMG {
	width: 376px;
}
SECTION.vatra .stramosi {
	width: 100%;
	max-width: 100%;
}
.col2auto.faqs {
	margin-top: 60px;
}

#burger {
	position: fixed;
	top: 15px;
	right: 15px;
	background-color: white;
	height: 40px;
	width: 41px;
	border-radius: 50%;
	cursor: pointer;
	z-index: 100;
	box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
	-webkit-tap-highlight-color: transparent;
	display: none;
}
#burger I {
	color: black;
	font-size: 33px;
	position: absolute;
	top: 4px;
	left: 4px;
}

.items-2.obiective .photo {
	max-width: 100%;
}
.col2auto.gazde {
	margin: 0 auto;
	justify-content: center;
	width: fit-content;
}
.col2auto.gazde LI {
	margin-top: 40px;
}
.col2auto.gazde LI .photo IMG {
	width: 100%;
	max-width: 380px;
}






@media (max-width: 1200px) {
	BODY {
		padding: 0;
	}
	
	#topbar {
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1000;
		background-color: rgba(0, 0, 0, 0.2);
		backdrop-filter: blur(8px);
		user-select: none;
		-webkit-tap-highlight-color: transparent;
		display: block;
		visibility: hidden;
	}
	BODY.menuopen #topbar {
		visibility: visible;
	}
	#topbar .cont {
		width: 310px;
		flex-direction: column;
		position: absolute;
		top: 0;
		right: -320px;
		background-color: white;
		transition: right 0.2s;
	}
	BODY.menuopen #topbar .cont {
		right: 0;
	}
	#topbar .menu {
		width: 100%;
		height: 100%;
		overflow-y: auto;
		flex-direction: column;
		box-sizing: border-box;
		margin: 0;
		margin-top: 6px;
	}
	#topbar .menu > LI {
		height: auto;
	}
	#topbar .sub {
		display: block;
		position: static;
		background-color: white;
		box-shadow: none;
	}
	#topbar .sub LI:not(:last-of-type) {
	
	}
	
	/* all links */
	#topbar .sub A, #topbar .sub A.sub2, #topbar .menu A.top {
		font-size: 16px;
	}
	/* --------- */
	
	#topbar .sub A {
		padding-left: 40px;
		color: var(--highlight);
	}
	#topbar .sub LI.title {
		padding-left: 40px;
		display: none;
	}
	#topbar .sub A.sub2 {
		padding-left: 40px;
	}
	#topbar .menu .top {
		padding: 12px 20px;
		line-height: 22px;
		color: #444444;
	}
	#topbar .menu > LI:hover .top {
		color: unset;
	}
	#topbar .menu A.top {
		color: var(--highlight);
		position: relative;
	}
	#topbar .menu A.top:after {
		font-family: 'Material Icons';
		font-weight: normal;
		font-style: normal;
		font-size: 15px;
		line-height: 1;
		letter-spacing: normal;
		text-transform: none;
		display: inline-block;
		white-space: nowrap;
		word-wrap: normal;
		direction: ltr;
		-webkit-font-feature-settings: 'liga';
		-webkit-font-smoothing: antialiased;
		
		content: "east";
		vertical-align: middle;
		margin-left: 4px;
		position: relative;
		top: -1px;
	}
	#topbar .menu > LI:hover {
		border: none;
	}
	#topbar .logo {
		flex: 0 0 60px;
		margin-top: 12px;
	}
	#topbar .menu > LI.hasChildren:after {
		bottom: unset;
		top: 14px;
		left: unset;
		right: 20px;
		transform: none;
	}
	#topbar .menu > LI.hasChildren:hover:after {
		color: inherit;
	}

	
	SECTION .cont, #pageLabel .cont {
		width: 100%;
	}
	.items-3 LI {
		float: none;
		width: 100%;
		margin-left: 0;
		margin-right: 0;
		margin-top: 50px;
		text-align: center;
	}
	.items-3.regular LI:first-of-type {
		margin-top: 0;
	}
	
	.items-2 LI {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
		margin-top: 50px;
	}
	
	.activitati LI P {
		text-align: justify;
	}
	.activitati .items-2 P {
		font-size: 15px;
		line-height: 25px;
	}
	
	FOOTER .main .cont > DIV {
		float: none;
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
	
	FOOTER .maps {
		width: 100%;
		margin-top: 20px;
	}
	
	FOOTER H1 {
		margin-top: 30px;
	}
	
	FOOTER SECTION {
		padding-top: 0;
	}
	
	FOOTER SECTION.copy {
		padding: 30px 0;
	}
	FOOTER SECTION.copy .cont > DIV {
		float: none;
		width: 100%;
		text-align: center;
	}
	FOOTER SECTION.copy .right {
		margin-top: 20px;
	}
	
	.counter {
		width: 100%;
		flex-wrap: wrap;
		padding-top: 0;
	}
	.counter LI {
		width: 50%;
		min-width: 100px;
		margin-top: 30px;
	}
	
	#imageSlider {
		height: 100vh;
	}
	
	SECTION H2 {
		text-align: center !important;
	}
	
	.items-2 H2 {
		line-height: 32px;
	}
	.items-3.quotes {
		margin-top: 60px;
	}
	
	.col2auto {
		flex-direction: column;
	}
	.col2auto > LI, .col2auto > LI.right, .col2auto > LI.full, .col2auto.faqs > LI {
		flex: 1 1 auto;
		margin-left: 0;
		margin-right: 0;
		width: 100%;
	}
	.col2auto.history LI:not(:first-of-type) {
		margin-top: 20px;
	}
	.col2auto.faqs > LI H3 {
		margin-top: 50px;
	}
	.col2auto.data > LI:last-of-type {
		margin-top: 30px;
	}
	
	
	SECTION.vatra IMG {
		width: 100%;
		max-width: 500px;
		vertical-align: middle;
	}
	SECTION.vatra .history LI {
		text-align: center;
	}
	.items-3 LI A.photo {
		max-width: 500px;
	}
	
	.break:after {
		font-family: 'Material Icons';
		font-weight: normal;
		font-style: normal;
		font-size: 24px;
		line-height: 1;
		letter-spacing: normal;
		text-transform: none;
		display: inline-block;
		white-space: nowrap;
		word-wrap: normal;
		direction: ltr;
		-webkit-font-feature-settings: 'liga';
		-webkit-font-smoothing: antialiased;
		
		content: "more_horiz";
		color: var(--highlight);
		width: 24px;
		height: 24px;
		position: absolute;
		top: 5px;
		left: 50%;
		transform: translateX(-50%);
		display: block;
	}
	
	.picHeader IMG {
		width: 100%;
		height: 100%;
		min-height: 225px;
		display: block;
		object-fit: cover;
	}
	
	.room .features {
		flex-direction: column;
		margin-top: 30px;
	}
	.room .features LI, .room .features LI.feature {
		flex: 1 1 auto;
		margin: 10px 0;
		width: 100%;
	}
	
	UL.gallery {
		flex-direction: column;
		align-items: center !important;
	}
	DIV.gallery {
		flex-direction: row;
		align-items: center !important;
		justify-content: center;
	}
	UL.gallery LI {
		width: 100%;
		flex: 1 1 auto;
	}
	UL.gallery LI.text {
		margin-top: 30px;
	}
	UL.gallery LI.photos {
		margin-top: 30px;
		justify-content: center;
	}
	SECTION.gallery .cont > P {
		text-align: justify;
	}
	.col2auto.faqs {
		margin-top: 0;
	}
	.col2auto.gazde LI {
		margin-left: 0;
		margin-right: 0;
	}
	#burger {
		display: block;
	}
	
	.items-2.obiective .photo {
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
		display: block;
	}
}