@charset "UTF-8";

:root {
	--base-font-face: 'Manrope';
	--base-font-size: 18px;
	--base-font-weight: 400;
	--heading-font-face: 'Merriweather';
	--heading-font-weight: 500;
	--primary-color: rgba(0, 157, 68, 1); /* Green */
	--secondary-color: rgba(241, 225, 205, 1); /* Beige */
	--background-color: rgba(247, 242, 235, 1); /* Light beige */
	--highlight-color: rgba(160, 135, 19, 1); /* Golden beige */
	--dark-highlight-color: rgba(60, 40, 30, 1); /* Dark brown */
	--border-radius: 12px;
	--floating-wrapper-border: 1px solid rgba(160, 135, 19, 0.5);
}

html {
	scroll-behavior: smooth;
}
body {
	background: #222;
	color: rgba(0, 0, 0, 0.8);
	font-family: var(--base-font-face);
	font-size: var(--base-font-size);
	font-weight: var(--base-font-weight);
	text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--heading-font-face);
	font-weight: var(--heading-font-weight);
}
h1 {
	margin: 0 0 15px 0;
	border-bottom: 3px solid var(--highlight-color);
	font-size: 26px;
}
h2 {
	margin: 30px 0 10px 0;
	font-size: 24px;
}
h3 {
	margin: 25px 0 10px 0;
	font-size: 20px;
}
h4 {
	margin: 25px 0 10px 0;
	font-size: 18px;
}
h5 {
	margin: 20px 0 10px 0;
	font-size: 18px;
}
h6 {
	margin: 20px 0 10px 0;
	font-size: 18px;
}

.content-wrapper {
	background: hsl(210, 30%, 97%);
}

.h-em {
	margin: 50px 0 15px 0;
	padding: 10px 15px;
	background: rgba(0, 0, 0, 0.05);
	color: #333;
	border-radius: var(--border-radius-normal);
}


/* Breadcrumbs */
.breadcrumbs-wrapper {
	padding: 5px 0;
	font-size: 85%;
	color: #777;
}
.breadcrumbs-body {
	margin: 0 auto;
	padding: 0 15px;
	list-style-type: none;
}
.breadcrumbs-body > li {
	display: inline-block;
}
.breadcrumbs-body > li.inner:before {
	content: "»";
	padding: 0 10px;
}


/* Footer */
.footer {
	color: rgba(255, 255, 255, 0.3);
}
.footer p {
	margin: 0;
}
.footer-body {
	padding: 0 15px;
}
.footer-row {
	padding: 15px 0;
	text-align: center;
}
.footer-body a {
	color: rgba(255, 255, 255, 0.6);
	transition: all ease 0.25s;
	text-decoration: none;
}
.footer-body a:hover, .footer-body a:active, .footer-body a:focus {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
}
.footer-row-bottomline {
	text-align: center;
	font-size: 10px;
	color: rgba(255, 255, 255, 0.1);
	line-height: normal;
}
.footer-row-bottomline a {
	color: rgba(255, 255, 255, 0.3);
	transition: all ease 0.25s;
	text-decoration: none;
}
.footer-row-bottomline a:hover, .footer-row-bottomline a:active, .footer-row-bottomline a:focus {
	color: rgba(255, 255, 255, 0.4);
	text-decoration: none;
}


/* Back to top */
#back-to-top {
	display: block;
	visibility: hidden;
	position: fixed;
	bottom: -50px;
	right: 20px;
	z-index: 9999;
	width: 40px;
	height: 40px;
	font-size: 20px;
	text-align: center;
	line-height: 40px;
	background: #d21;
	color: rgba(255, 255, 255, 0.8);
	cursor: pointer;
	border: 0;
	text-decoration: none;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	border-radius: var(--border-radius-max);
	opacity: 0;
	transition: all ease 0.25s;
}
#back-to-top.btt-visible {
	visibility: visible;
	bottom: 20px;
	opacity: 0.5;
}
#back-to-top.btt-visible:hover, #back-to-top.btt-visible:active, #back-to-top.btt-visible:focus {
	opacity: 1;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}


/* Site map */
.site-map-tree {
}
.site-map-tree > li > div {
	padding-bottom: 5px;
}
.site-map-tree h2, .site-map-tree h3, .site-map-tree h4, .site-map-tree h5, .site-map-tree h6 {
	margin: 0;
	padding: 0 0 5px 0;
	font-size: 20px;
	line-height: 24px;
	font-weight: bold;
	border: none;
}
.site-map-tree p {
	margin: 0;
	padding: 0;
}


/* Detail-table */
.detail-table {
	width: auto;
	border-collapse: collapse;
	margin-bottom: 15px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	font-size: 16px;
}
.detail-table > tr, .detail-table > tbody > tr {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.detail-table > tr:nth-child(odd), .detail-table > tbody > tr:nth-child(odd) {
	background: rgba(0, 0, 0, 0.05);
}
.detail-table td, .detail-table th {
	padding: 5px 5px;
}
.detail-table th {
	vertical-align: bottom;
}
.detail-table td {
	vertical-align: top;
}
.detail-table-icon-16, .detail-table-icon-24, .detail-table-icon-36, .detail-table-icon-48, .detail-table-icon-60 {
	display: block;
	height: auto;
}
.detail-table-icon-16 {
	width: 16px;
}
.detail-table-icon-24 {
	width: 24px;
}
.detail-table-icon-36 {
	width: 36px;
}
.detail-table-icon-48 {
	width: 48px;
}
.detail-table-icon-60 {
	width: 60px;
}


/* Cookie consent preferences */
#cookie-consent-preferences {
	position: fixed;
	z-index: 99;
	left: 0;
	bottom: 0;
	padding: 0;
}
#cookie-consent-preferences button {
	border: none;
	padding: 0;
	margin: 0;
	width: 32px;
	height: 32px;
	font-size: 16px;
	border-top-right-radius: 5px;
	background: #eee;
	color: #777;
}
#cookie-consent-preferences button:hover, #cookie-consent-preferences button:active, #cookie-consent-preferences button:focus {
	transition: all ease 0.25s;
	background: ddd;
	color: #333;
}

.panel, .floating-wrapper {
	background: var(--floating-wrapper-background);
	border: var(--floating-wrapper-border);
	border-radius: var(--border-radius-normal);
	box-shadow: var(--floating-wrapper-shadow);
}
.floating-wrapper {
	padding: var(--floating-wrapper-padding);
}
.floating-wrapper + .floating-wrapper {
	margin-top: var(--floating-wrapper-margin);
}
.modal-body {
	border-radius: var(--border-radius-normal);
}
.form-control {
	border-radius: var(--border-radius-small);
	padding: 0 14px;
	border-color: hsl(212, 15%, 85%);
}
textarea.form-control {
	padding: 8px 14px;
	border-radius: 17px;
}
.form-hint-block {
	padding-left: 10px;
}
.btn, .form-control, .input-group-addon {
	border-radius: var(--border-radius-max);
	transition: all ease 0.25s;
}
.btn {
	padding-left: 17px;
	padding-right: 17px;
}
.modal-content, .panel, legend {
	border-radius: var(--border-radius-normal);
}
.modal-header, .panel-heading {
	border-top-left-radius: var(--border-radius-normal);
	border-top-right-radius: var(--border-radius-normal);
}
.modal-footer, .panel-footer {
	border-bottom-left-radius: var(--border-radius-normal);
	border-bottom-right-radius: var(--border-radius-normal);
}
.panel-heading {
	padding: var(--floating-wrapper-padding);
	border-bottom: 1px solid #ddd;
}
.panel-default > .panel-heading, .panel-default > .panel-footer {
	padding: var(--floating-wrapper-padding);
	background: #fff;
}

/* Account */
.panel-login .panel-heading,
.panel-register .panel-heading,
.panel-forgot-password .panel-heading,
.panel-reset-password .panel-heading {
	background: #f7f7f7;
	border: none;
}
.field-fmregister-captcha > img {
	display: inline-block;
	padding-bottom: 5px;
}
.login-logo {
	margin: 15px auto;
	max-width: 250px;
}
.account-page-wrapper {
	padding: 30px 15px 15px 15px;
	background: #fff;
}
.nav-tabs > li > a.account-nav-tab {
	display: flex;
	gap: 5px;
}
.account-nav-icon {
}
.account-nav-label {
	font-weight: normal;
}
@media (max-width: 639px) {
	.account-nav-label {
		display: none;
	}
}


/* Homepage */
.lithea-page-home {
	margin: 0;
	padding: 0;
	border: none;
	background: none;
	box-shadow: none;
}
.content-body--home {
	padding-top: 0;
}


/* Pages */
.content-wrapper--page {
	/* background: #fff; */
}


/* Banners */
.banner-container-page-top {
	padding: 15px;
}
.internal-banner-container {
	border-radius: var(--border-radius-normal);
	box-shadow: var(--floating-wrapper-shadow);
	overflow: hidden;
}

/* Select2 */
.select2-container--bootstrap .select2-selection {
	border-radius: 17px;
	padding: 0 17px;
	line-height: 34px;
}
.select2-container--bootstrap .select2-search--dropdown .select2-search__field {
	border-radius: 17px;
	padding: 0 17px;
	height: 34px;
}
.select2-dropdown--below {
	border-bottom-left-radius: 17px;
	border-bottom-right-radius: 17px;
}
.select2-dropdown--above {
	border-top-left-radius: 17px;
	border-top-right-radius: 17px;
}
.select2-container--bootstrap .select2-results > .select2-results__options {
	max-height: 278px;
}
.select2-container--bootstrap .select2-results__option {
	padding: 4px 17px;
}

/* Phone number input */
.pni-search-input-group {
	padding: 4px;
	background: #fff;
}
.pni-search-wrapper input {
	height: 30px;
	padding: 0px 15px;
	border: 1px solid #ccc;
	border-right: none;
	border-radius: 15px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.pni-search-wrapper .input-group-addon {
	/* It is an anchor */
	border: 1px solid #ccc;
	border-left: none;
	border-radius: 15px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.default-button {
	display: block;
	width: fit-content;
	padding: 5px 15px;
	margin: 20px;
	font-size: 20px;
	color: var(--highlight-color);
	background: #fff;
	border: 2px solid var(--highlight-color);
	border-radius: var(--border-radius-max);
	transition: all ease 0.25s;
	scroll-behavior: smooth;
}
.default-button:hover, .default-button:active, .default-button:focus {
	letter-spacing: 0.5px;
	color: #fff;
	background: var(--highlight-color);
	text-decoration: none;
}
.section-divider {
	border: none;
	height: 2px;
	width: 100%;
	background: linear-gradient(
		to right,
		transparent,
		var(--highlight-color),
		transparent
	);
	margin: 25px auto;
	border-radius: 2px;
}

/* Sections */
.default-section {
	/* padding: 50px 0; */
}
.default-section h2 {
	color: var(--highlight-color);
	text-align: center;
	scroll-behavior: smooth;
}
.default-section h2:after {
	content: "";
	display: block;
	height: 2px;
	width: 100%;
	background: linear-gradient(
		to right,
		transparent,
		var(--highlight-color),
		transparent
	);
	margin-top: 10px;
	border-radius: 2px;
}

/* Locations Page */
.locations-map-container {
	display: flex;
	justify-content: center;
	align-items: start;
	gap: 25px;
	width: 100%;
	padding: 50px 0;
	min-height: 610px;
	overflow: visible;
}
.locations-map {
	width: 60%;
}
.locations-map-info {
	width: 30%;
}
.locations-map-info img {
	display: block;
	width: 120px;
	height: auto;
	margin: 15px 0;
}
.romania-map {
	fill: rgba(0, 157, 68, 0.4);
	overflow: visible;
}
.romania-map-not-present {
	
}
.romania-map-present {
	fill: rgba(0, 157, 68, 0.8);
	transition: all ease 0.4s;
	transform-box: fill-box;
	transform-origin: center;
	vector-effect: non-scaling-stroke;
	cursor: pointer;
}
.romania-map-present:hover, .romania-map-present:active, .romania-map-present:focus {
	fill: rgba(0, 157, 68, 1);
	transform: scale(1.02);
}
.default-tile-container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	width: 100%;
	gap: 25px;
}
.default-tile-container .default-button {
	margin: 20px 20px 20px 0;
}
.default-tile-image {
	border-radius: var(--border-radius);
	width: 50%;
	overflow: hidden;
}
.default-tile-image img {
	display: block;
	width: 100%;
	height: auto;
}
.default-tile-info {
	width: 45%;
}
.locations-map-contact-us {
	scroll-behavior: smooth;
	scroll-margin-top: 120px;
}

/* About us timeline */
.about-us-cta .default-tile-container {
	flex-direction: row;
}
.about-us-timeline-container {
	display: flex;
	flex-direction: column;
	gap: 28px;
	margin: 25px 0;
}
.about-us-timeline-item {
	display: grid;
	grid-template-columns: 140px 60px 1fr;
	align-items: start;
	column-gap: 20px;
	padding-bottom: 50px;
}
.about-us-timeline-year {
	font-family: Merriweather, serif;
	font-size: 22px;
	line-height: 1.1;
	color: var(--text-color);
	text-align: right;
	padding-top: 5px;
}
.about-us-timeline-line {
	position: relative;
	min-height: 100%;
	display: flex;
	justify-content: center;
}
.about-us-timeline-line::before {
	content: "";
	position: absolute;
	top: 18px;
	bottom: -28px;
	width: 2px;
	background: linear-gradient(
		to bottom,
		var(--highlight-color),
		rgba(180, 145, 40, 0.15)
	);
}
.about-us-timeline-item:last-child .about-timeline-line::before {
	display: none;
}
.about-us-timeline-dot {
	position: relative;
	z-index: 2;
	width: 18px;
	height: 18px;
	margin-top: 10px;
	border-radius: 50%;
	background: var(--main-color);
	border: 3px solid var(--background-color);
	box-shadow: 0 0 0 2px var(--highlight-color);
}
.about-us-timeline-content {
	padding: 5px 0 8px;
}
.about-us-timeline-content h3 {
	margin: 0 0 10px;
	font-size: 22px;
	line-height: 1.15;
	color: var(--text-color);
}
.about-us-timeline-content p {
	margin: 0;
	font-size: 18px;
	line-height: 1.65;
	color: var(--text-color);
}

/* About us features */
.about-us-features-intro p {
	margin: 20px 0;
}
.about-us-features-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 25px;
}
.about-us-features {
	padding: 15px;
}
.about-us-feature {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	width: 45%;
	gap: 25px;
}
.about-us-feature:nth-child(even) {
	flex-direction: row-reverse;
}
.about-us-feature:nth-child(even) .about-us-feature-info {
	text-align: right;
}
.about-us-feature-icon {
	display: block;
	width: 150px;
	height: auto;
}
.about-us-feature-icon img {
	display: block;
	width: 100%;
	height: auto;
}
.about-us-feature-info {
	flex: 1;
}
.about-us-feature-info h3 {
	color: var(--highlight-color);
}

/* Partners */
.partners-grid-container {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	flex-wrap: wrap;
	gap: 50px;
	padding: 25px;
}
.partner-icon {
	width: 200px;
	height: auto;
}
.partner-icon img {
	display: block;
	width: 100%;
	height: auto;
}

/* Animations */

.animation-below {
	animation-name: section-below;
	animation-duration: 1s;
}
.animation-below-hp-h1 {
	animation-name: section-below-hp-h1;
	animation-duration: 1s;
}
@keyframes section-below {
	0% {
		transform: translateY(3%);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}
@keyframes section-below-hp-h1 {
	0% {
		transform: translateY(5%);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 0.9;
	}
}

/* Media queries */
@media (max-width: 991px) {
	.about-us-timeline-item {
		grid-template-columns: 110px 44px 1fr;
		column-gap: 16px;
	}
	.about-us-timeline-year {
		font-size: 22px;
	}
	.about-us-timeline-content h3 {
		font-size: 26px;
	}
	.about-us-timeline-content p {
		font-size: 17px;
	}
	.about-us-feature {
		width: 100%;
	}
	
}

@media (max-width: 720px) {
	.default-tile-container {
		flex-direction: column;
		gap: 0;
	}
	.default-tile-container .default-button {
		margin: 20px auto;
		font-size: 17px;
	}
	.locations-map-container {
		flex-direction: column;
	}
	.locations-map,
	.locations-map-info,
	.default-tile-image,
	.default-tile-info {
		width: 100%;
	}
	.locations-map-info,
	.default-tile-info {
		text-align: center;
	}
	.locations-map-info ul {
		text-align: left;
	}
	.locations-map-info img {
		margin: 15px auto;
	}
	.default-section h2 {
		font-size: 20px;
	}
	.about-us-timeline-item {
		grid-template-columns: 1fr;
		row-gap: 12px;
	}
	.about-us-timeline-year {
		text-align: left;
		padding-top: 0;
		color: var(--highlight-color);
	}
	.about-us-timeline-line {
		justify-content: flex-start;
		padding-left: 8px;
	}
	.about-us-timeline-line::before {
		top: 9px;
		bottom: auto;
		left: 17px;
		right: 0;
		width: auto;
		height: 2px;
		background: linear-gradient(
			to right,
			var(--highlight-color),
			rgba(180, 145, 40, 0.15)
		);
	}
	.about-us-timeline-item:last-child .about-timeline-line::before {
		display: block;
	}
	.about-us-timeline-content {
		padding-left: 0;
	}
	.partners-intro {
		text-align: center;
	}
	.partners-grid-container {
		padding: 10px;
		gap: 10px;
	}
	.partner-icon {
		width: 125px;
	}
}

@media (max-width: 540px) {
	.about-us-features-container {
		gap: 10px;
	}
	.about-us-features {
		padding: 0;
	}
	.about-us-feature {
		gap: 10px;
	}
	.about-us-feature-icon {
		width: 100px;
	}
}