
/* Basic Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
/* html {overflow-y: scroll;} */
body { line-height: 1.5; -webkit-font-smoothing: antialiased; }
img, figure, picture, video, canvas, svg { display: block; max-width: 100%; }
img {height: auto;}
input, button, textarea, select { font: inherit; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }
#root, #__next { isolation: isolate; }

/* Variables */
:root {
	/* Layout */
	--max-width: 1200px;
	--max-width-medium: 1024px;
	--max-width-small: 860px;
	--max-width-tiny: 680px;
	
	--padding-inline: 20px;
	--padding-section: 100px;
	
	--padding-section-medium: 40px;
	--padding-section-small: 30px;
	--padding-section-mobile: 20px;
	
	/* Colors */
	
	/* https://maketintsandshades.com/#2F4999,BE1616 */
	--color-primary:	#BE1616;
	--color-secondary: #2F4999;
	--color-title: #263A7A;
	--color-white: #FFF;
	
	--bg-one: #F6F7F9;
	--bg-two: #EFF6FF;
	--bg-white: #FFF;
	--bg-blue: #C2DCFF;
	
	--box-shadow: 0 5px 30px rgba(7, 36, 86, .08);
	--box-shadow-hover: 0 5px 30px rgba(7, 36, 86, .1);
	
	--font-titillium: "Titillium Web";
}

body {
	font-family: var(--font-titillium);
	font-size: 17px;
	line-height: 1.6;
	color: #333;
}

h1, h2, h3, h4, h5, h6 {
	color: var(--color-title);
}

a:has(h3) {
	text-decoration: none;
}

figure {
	margin: 20px 0;
}

hr {
	display: block;
	opacity: .1;
	max-width: 100%;
	height: 1px;
	background-color: #333;
	border: none;
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.content-wrap > hr {
	margin-block-start: 2rem;
}

/* === Buttons === */

.button-wrap {
	margin-block: 30px;
}

a.button,
button.button {
	--button-font-size: 1rem;
	--button-color: #FFF;
	--button-bg-color: #3e68ff;
	--button-bg-hover-color: #0037fe;
	--button-bg-focus-color: #0029be;
	font-size: var(--button-font-size);
}

a.button {
	text-decoration: none;
}

button.button {
	border: none;
	background-color: transparent;
	font-family: inherit;
	padding: 0;
	cursor: pointer;
}

a.button,
button.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: start;
	background-color: var(--button-bg-color);
	color: #fff;
	border-radius: 8px;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.18);
	padding: 0.25em 1.75em;
	min-width: 10ch;
	min-height: 44px;
	text-align: center;
	line-height: 1.1;
	transition: 220ms all ease-in-out;
}
a.button:hover, a.button:active,
button.button:hover,
button.button:active {
	background-color: var(--button-bg-hover-color);
}
a.button:focus,
button.button:focus {
	outline-style: solid;
	outline-color: transparent;
	box-shadow: 0 0 0 4px var(--button-bg-focus-color);
}
a.button-small,
button.button-small {
	font-size: .8rem;
}
a.button-block,
button.button-block {
	width: 100%;
}

a.button-center {
	margin-inline: auto;
}

/* === Buttons End === */

/* Default Wrap - Centered Content */

.wrap {
	width: 100%;
	max-width: var(--max-width);
	padding-inline: var(--padding-inline);
	margin: 0 auto;
}

.page-narrow .wrap {
	max-width: var(--max-width-small);
}

.section {
	padding: var(--padding-section) 0;
	border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.section-page-header {
	padding-block: var(--padding-section-medium);
	border-bottom: 1px solid rgba(0, 0, 0, .05);
	background-color: var(--bg-one);
}

section.page-content {
	padding-block: var(--padding-section-medium);
}

.site-content {

}

/* Info bar */

.header-info {
	background: var(--color-secondary);
	color: #FFF;
	width: 100%;
	padding-block: 10px;
}

.header-info-wrap {
	display: flex;
	max-width: var(--max-width);
	padding-inline: var(--padding-inline);
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
}

.header-info-wrap p {
	margin: 0;
	display: block;
}

a.info-tel {
	display: inline-block;
	text-decoration: none;
	margin-left: auto;
	font-size: 18px;
	color: var(--color-secondary);
	background: #FFF;
	padding: 8px 14px;
	margin-left: 5px;
	border-radius: 3px;
	line-height: 1;
	border: 1px solid transparent;
	transition: all .3s;
}

a.info-tel:hover {
	color: var(--color-primary);
	border: 1px solid #FFF;
}

@media only screen and (max-width: 880px) {
	.info-name {
		max-width: 230px;
		font-size: 13px;
		line-height: 1.2;
	}
	.header-info-wrap p span {
		display: none;
	}
	a.info-tel {
		font-size: 15px;
	}
}/* 880px */


/* Top Bar */
.page-header {
	width: 100%;
	background: var(--color-primary);
	/* position: fixed; */
	/* height: 70px; */
}

.site-content {
	/* padding-top: 70px; */
}

.header-wrap {
	width: 100%;
	max-width: var(--max-width);
	padding-inline: var(--padding-inline);
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

/* Menu */

.top-nav-container {
	position: relative;
	z-index: 2;
}

.top-nav-container ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.logo {
	display: flex;
	align-items: center;
	gap: 4px;
	padding-block: 10px;
}

.logo-img img {
	display: block;
	width: 80px;
	height: 80px;
	transition: all .2s;
}

.logo:hover .logo-img img {
	transform: scale(1.1,1.1);
}

.logo a {
	text-decoration: none;
	font-size: 24px;
	line-height: 1;
	font-weight: 400;
	transition: all .3s;
}

.logo a:link,
.logo a:visited {
	color: var(--color-white);
}

.logo a:hover {
	color: var(--color-white);
}

.logo-text {
	margin-left: 4px;
}

.logo .site-description {
	display: none;
	/* max-width: 250px; */
	line-height: 1.2;
	font-size: 16px;
	margin-top: 0;
	color: var(--color-white);
}

@media only screen and (max-width: 880px) {
	
	.header-wrap {
		padding: 0 20px;
	}
	
	.logo a {
		font-size: 20px;
	}
	
	.logo .site-description {
		
	}
	
}/* 880px */

@media only screen and (max-width: 640px) {
	.logo-img img {
		width: 70px;
		height: 70px;
	}
}/* 640px */

.top-nav {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

.top-nav > li {
	display: block;
	height: 100%;
}

.top-nav a {
	text-decoration: none;
	/* text-transform: uppercase; */
	font-size: 17px;
	font-weight: 600;
	line-height: 1;
	display: inline-block;
	height: 100%;
	padding: 24px 16px;
	color: var(--color-white);
	opacity: .9;
}

.top-nav a,
.top-nav a:active,
.top-nav a:visited {
	color: #f3f3f3;
}

.top-nav a:hover {
	background:rgba(0, 0, 100, .05);
	color: var(--color-white);
}

.top-nav .current-menu-item > a,
.top-nav .current-menu-ancestor > a {
	color: var(--color-white);
	background:rgba(0, 0, 100, .02);
}

.top-nav .current-menu-item > a {
	background:rgba(0, 0, 100, .05);
}

/* Submenu */

.top-nav li {
	position: relative;
}

.top-nav .menu-item-has-children {
	position: relative;
}

.top-nav .menu-item-has-children > a::after {
	content: "+";
	display: inline-block;
	padding-left: 5px;
	transform: translateY(-2px);
}

.top-nav ul.sub-menu {
	display: block;
	position: absolute;
	left: 0;
	width: 200px;
	background: var(--color-primary);
}

.top-nav ul.sub-menu a {
	display: block;
	width: 100%;
	padding: 14px;
	border-bottom: 1px solid rgba(0, 0, 0, .15);
	font-size: 16px;
	font-weight: normal;
	line-height: 1.4;
}

.top-nav ul.sub-menu a:hover {
	background:rgba(0, 0, 0, .15);
}

.top-nav ul.sub-menu {
	display: none;
	border-top: 3px solid rgba(255, 255, 255, 0.3);
}

.top-nav .menu-item-has-children:hover ul.sub-menu {
	display: block;
}

/* Ham Icon */

.ham-icon {
	text-indent: -9999px;
	width: 32px;
	height: 32px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='40' width='40' fill='%23FFFFFF'%3E%3Cpath d='M4.792 30.292v-3.125h30.416v3.125Zm0-8.709v-3.166h30.416v3.166Zm0-8.75V9.667h30.416v3.166Z'/%3E%3C/svg%3E");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
	transform: scale(1, 1);
	transition: all .3s;
}

.ham-icon:hover {
	transform: scale(1.1, 1.1);
}

.ham-icon.close {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='40' width='40' fill='%23FFFFFF'%3E%3Cpath d='M10.458 31.75 8.25 29.542 17.792 20 8.25 10.458l2.208-2.208L20 17.792l9.542-9.542 2.208 2.208L22.208 20l9.542 9.542-2.208 2.208L20 22.208Z'/%3E%3C/svg%3E");
}

.ham-icon {display: none;}

@media only screen and (max-width: 880px) {
	.ham-icon {
		display: block;
	}
	
	.top-nav-container {
		display: none;
	}
	
	.top-nav-container.menu-visible {
		display: block;
		width: 100%;
	}
	
	.top-nav {
		flex-direction: column;
		border-top: 20px solid transparent;
		margin-left: -20px;
	}
	
	.top-nav a {
		width: 100%;
		display: block;
		border-top: 1px solid rgba(0, 0, 0, .1);
		padding: 16px 10px;
	}
	
	/* Submenu */
	
	.top-nav ul.sub-menu {
		display: block;
		position: relative;
		width: 100%;
		background: transparent;
		border-top: 0;
		border-bottom: 0;
		margin-top: 0;
	}

	.top-nav ul.sub-menu a {
		display: block;
		width: 100%;
		padding: 16px 16px 16px 36px;
		border-bottom: 1px solid rgba(0, 0, 0, .01);
		font-size: 16px;
		line-height: 1.5;
		background:rgba(0, 0, 100, .02);
	}

	.top-nav ul.sub-menu a:hover {
		background:rgba(0, 0, 100, .05);
	}

	.top-nav ul.sub-menu {
		display: block;
		border-top: none;
	}

	.top-nav .menu-item-has-children:hover ul.sub-menu {
		/* display: block; */
	}
	
	
	
}/* 880px */


/* Page Header */

.breadcrumb {margin-bottom: 10px;}

.breadcrumb,
.breadcrumb a {
	color: #888;
	text-decoration: none;
	font-size: 15px;
	line-height: 1;
}

.breadcrumb a:hover {
	text-decoration: underline;
}

.page-title {
	font-size: clamp(1.6rem, 1.5rem + 1.2vw, 2.5rem);
	line-height: 1.1;
	max-width: 700px;
}

.post-image {
	margin-bottom: 1.5rem;
}

.post-image img {
	transition: all .3s;
}

.post-image:hover img {
	opacity: .8;
}

/* Cards */

.cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
}

@media (max-width: 1200px) {
	.cards {
		gap: 20px;
	}
}

@media (max-width: 600px) {
	.cards {
		gap: 40px;
	}
}

.card {
	
}


.card-content {
	position: relative;
	padding: 0 0 40px;
	border-radius: 4px;
	box-shadow: var(--box-shadow);
	background: #FFF;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
	overflow: hidden;
	transition: all .3s;
}

.card-content:hover {
	box-shadow: var(--box-shadow-hover);
}

a.badge {
	display: inline-block;
	position: absolute;
	left: 0;
	top: 20px;
	background: var(--color-secondary);
	color: #FFF;
	padding: 5px 12px;
	text-decoration: none;
	font-size: 13px;
	line-height: 1;
	text-transform: uppercase;
}

.card-image {
	display: block;
	width: 100%;
	overflow: hidden;
}

.card-image img {
	display: block;
	border-radius: 4px 4px 0 0;
	margin: 0;
	transition: all .3s ease;
}

.card:has(a:hover) .card-image img {
	transform: scale(1.1,1.1);
}

.card-image img.wp-post-image {
	margin: 0 0;
}



.post-categories a {
	display: inline-block;
	font-size: 12px;
	text-transform: uppercase;
	padding: 2px 8px;
	background:rgba(0, 0, 0, 0.05);
	color: #898989;
	text-decoration: none;
	margin-right: 14px;
}

.post-categories,
.card .card-title,
.card .card-excerpt,
.card .card-button {
	padding-inline: 20px;
}

.card .card-title {
	line-height: 1.2;
	text-wrap: balance;
	color:inherit;
}

.card .card-title > a:link, 
.card .card-title > a:visited{
	text-decoration: none;
	color:var(--color-title);
	transition: all .3s;
}

.card .card-title > a:hover{
	color:var(--color-secondary);
}

.card .card-button {
	margin-top: auto;
}

/* Footer */

footer.site-footer {
	background: var(--color-secondary);
}

.site-footer,
.site-footer a {
	text-decoration: none;
	color: inherit;
}

/* Footer Widgets */

.footer-widgets {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 60px;
	padding: var(--padding-section) var(--padding-inline);
	min-width: 0;
	overflow-wrap: break-word;
	word-break: break-word;
	color: #c6d5ff
}

.footer-widget-logo {
	padding-right: 20px;
}

.footer-widget-logo a:has(img) {
	display: block;
	max-width: 200px;
	margin-bottom: 1rem;
}


.footer-widget ul,
.footer-widget ol {
	list-style: none;
	padding: 0;
}

.footer-widget ul li a:link,
.footer-widget ul li a:visited {
	color: #c6d5ff;
	line-height: 2;
	transition: all .3s;
}

.footer-widget ul li a:hover {
	color: #FFF;
	text-decoration: underline;
}

.footer-logo {
	width: 80%;
	max-width: 180px;
	margin-bottom: 20px;
}

.w-title {
	font-size: 1rem;
	line-height: 1.2;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 1.2rem;
	color: #FFF;
}

.w-title:not(first-child) {
	margin-top: 2rem;
}

.footer-end {
	background: rgba(0, 0, 0, .2);
	padding: 30px 0;
}

.footer-end,
.footer-end a {
	color: #96aff9;
	transition: all .3s;
}

.footer-end a:link,
.footer-end a:visited {
	color: #96aff9;
}

.footer-end a:hover {
	color: #FFF;
	text-decoration: underline;
}

.footer-legal a {
	display: inline-block;
	margin-right: 14px;
}

.footer-legal a:last-child {margin-right: 0;}

.footer-legal a:hover {}

.footer-legal,
.copyright {
	font-size: 15px;
	line-height: 1.6;
}

.foo-colors {
	width: 100%;
	display: flex;
	border-top: 4px solid white;
}

.foo-colors .fooc1,
.foo-colors .fooc2,
.foo-colors .fooc3 {
	display: block;
	height: 6px;
	width: 33.333%;
}

.foo-colors .fooc1 {background: #2F4999}
.foo-colors .fooc2 {background: #FDCE07}
.foo-colors .fooc3 {background: #EC1C24}

/* COOKIE START */

.cookie-wrap {
	/* font-family: "Roboto", Arial, sans-serif; */
}

.cookie-wrap {
	--cookie-color: var(--color-primary);
	--cookie-linkcolor: #a1bdff;
	--cookie-bg: #252525;
	display: flex;
	flex-direction: column;
	gap: 10px;
	color: #FFF;
	background: var(--cookie-bg);
	border-bottom: 10px solid var(--cookie-color);
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	min-width: 0;
	width: 360px;
	max-width: calc(100% - 20px);
	padding: 20px;
	border-radius: 6px 6px 0 0;
	font-size: 15px;
	text-shadow: 1px 1px 2px rgba(0,0,0,.4);
	line-height: 1.5;
	overflow: hidden;
	z-index: 101;
}

.cookie-button {
	display: block;
	max-width: 400px;
	margin-inline: auto;
	background: var(--cookie-color);
	border: 1px solid var(--cookie-color);
	color: #e8ebff;
	cursor: pointer;
	padding: 10px 30px;
	text-align: center;
	border-radius: 4px;
	transition: all .3s;
}

.cookie-button:hover {
	background: var(--cookie-bg);
}

.cookie-text p {
	margin: 0 0 10px;
	color: #FFF;
}

.cookie-text a {
	color: var(--cookie-linkcolor);
	text-decoration: none;
	transition: all .3s;
}

.cookie-text a:hover {
	text-decoration: underline;
	opacity: .9;
}

/* COOKIE END */


/* GALLERY */

.gallery:after {content:"";display:table;clear:both;}

img.aligncenter, div.aligncenter, figure.aligncenter, img.wp-post-image {display:block; margin:0 auto;}
img.alignright, div.alignright, figure.alignright {float:right; margin:1em 0 1em 2em;}
img.alignleft, div.alignleft, figure.alignleft, img.wp-post-image.attachment-thumb {float:left; margin:1em 1em 2em 0;}
figure {max-width: 100%; height: auto; margin:0 0;}
p img.alignright, p img.alignleft {margin-top:0;}


.gallery figure img {max-width:100%; height:auto; margin:0 auto; display:block;}


.gallery figure {float:left; margin:0 2% 1em 0;}


.gallery.gallery-columns-1 figure {width:100%; margin:0 0 1em 0; float:none;}


.gallery.gallery-columns-3 figure {width:32%;}
.gallery.gallery-columns-3 figure:nth-of-type(3n+3) {margin-right:0;}
.gallery.gallery-columns-3 figure:nth-of-type(3n+4) {clear:left;}


.gallery.gallery-columns-2 figure {width:49%;}
.gallery.gallery-columns-2 figure:nth-of-type(even) {margin-right:0;}
.gallery.gallery-columns-2 figure:nth-of-type(odd) {clear:left;}


.gallery.gallery-columns-4 figure {width:23.25%;}
.gallery.gallery-columns-4 figure:nth-of-type(4n+4) {margin-right:0;}
.gallery.gallery-columns-4 figure:nth-of-type(4n+5) {clear:left;}


.gallery.gallery-columns-5 figure {width:18%;}
.gallery.gallery-columns-5 figure:nth-of-type(5n+5) {margin-right:0;}
.gallery.gallery-columns-5 figure:nth-of-type(5n+6) {clear:left;}


.gallery.gallery-columns-6 figure {width:14.2%;}
.gallery.gallery-columns-6 figure:nth-of-type(6n+6) {margin-right:0;}
.gallery.gallery-columns-6 figure:nth-of-type(6n+7) {clear:left;}


.gallery.gallery-columns-7 figure {width:12%;}
.gallery.gallery-columns-7 figure:nth-of-type(7n+7) {margin-right:0;}
.gallery.gallery-columns-7 figure:nth-of-type(7n+8) {clear:left;}


.gallery.gallery-columns-8 figure {width:10.2%;}
.gallery.gallery-columns-8 figure:nth-of-type(8n+8) {margin-right:0;}
.gallery.gallery-columns-8 figure:nth-of-type(8n+9) {clear:left;}


.gallery.gallery-columns-9 figure {width:8.85%;}
.gallery.gallery-columns-9 figure:nth-of-type(9n+9) {margin-right:0;}
.gallery.gallery-columns-9 figure:nth-of-type(9n+10) {clear:left;}


@media (max-width:767px) {
	img.alignright, div.alignright, figure.alignright, img.alignleft, div.alignleft, figure.alignleft, img.wp-post-image.attachment-thumb {display:block; margin:1em auto; float:none;}
	.gallery.gallery-columns-4 figure, .gallery.gallery-columns-5 figure, .gallery.gallery-columns-6 figure, .gallery.gallery-columns-7 figure, .gallery.gallery-columns-8 figure, .gallery.gallery-columns-9 figure {width:100%; margin:0 0 1em 0; float:none;}
}

.wp-caption {
	width: 100% !important;
	max-width: 100%;
}

.wp-caption img {
	width: 100%;
	height: auto;
	display: block;
}


/* GALLERY */

.gallery-wrap {
	margin-block: 70px;
}

.gallery-items {
	margin-top: 20px;
	width: 100%;
	max-width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 20px;
}

.gallery-items a.gal-item {
	display: block;
	width: 100%;
	overflow: hidden;
}

.gallery-items a.gal-item img {
	aspect-ratio: 1.62 / 1;
	object-fit: cover;
	transition: all .3s;
}

.gallery-items a.gal-item:hover img {
	transform: scale(1.1,1.1);
}


/* Section */

.section-header {
	max-width: var(--max-width-tiny);
	margin-inline: auto;
	display: flex;
	gap: .8rem;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding-block-end: 60px;
}

.section-title {
	color: var(--color-title);
	text-wrap: balance;
	max-width: 700px;
	line-height: 1.2;
	text-align: center;
	font-size: clamp(1.6rem, 1.3rem + 1.6vw, 2.5rem);
	font-weight: 600;
}

.section-footer {
	max-width: var(--max-width-tiny);
	margin-inline: auto;
	margin-top: 3rem;
	display: flex;
	gap: 12px;
	padding: 20px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.section-footer h3 {
	color: var(--color-title);
	line-height: 1.1;
	margin: 0;
}

.section-header p,
.section-footer p {
	opacity: 1;
	color: #9498a7;
}

.section-footer .button {
	margin-top: 10px;
}


/* SERVICII - Prima pagina */

.section-servicii {
	background-color: var(--background-alt);
}

/* CONTACT PAGE */

.contact-page-info {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

@media only screen and (max-width: 900px) {
	.contact-page-info {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}/* 900px */

.contact-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

@media only screen and (max-width: 480px) {
	.contact-grid {
		grid-template-columns: repeat(1, 1fr);
	}
}/* 480px */

.contact-grid-item {
	padding: 30px 20px;
	background: #FFF;
	border: 1px solid #d3e2ff;
	border-radius: 6px;
	
	min-width: 0;
	overflow-wrap: break-word;
	word-break: break-word;
}

.contact-grid-item.grid-item-full {
	grid-column: 1 / -1;
}

.c-icon-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	--size: 36px;
	width: var(--size);
	height: var(--size);
}

.c-icon {
	--icon-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-heart' viewBox='0 0 16 16'%3E%3Cpath d='m8 2.748-.717-.737C5.6.281 2.514.878 1.4 3.053c-.523 1.023-.641 2.5.314 4.385.92 1.815 2.834 3.989 6.286 6.357 3.452-2.368 5.365-4.542 6.286-6.357.955-1.886.838-3.362.314-4.385C13.486.878 10.4.28 8.717 2.01zM8 15C-7.333 4.868 3.279-3.04 7.824 1.143q.09.083.176.171a3 3 0 0 1 .176-.17C12.72-3.042 23.333 4.867 8 15'/%3E%3C/svg%3E");
	display: block;
	width: 100%;
	height: 100%;
	background-color: var(--color-secondary);
	-webkit-mask-image: var(--icon-svg);
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	mask-image: var(--icon-svg);
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	
	word-break: break-all;
	overflow-wrap: break-word;
}

.c-icon-pin {
	--icon-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-geo-alt' viewBox='0 0 16 16'%3E%3Cpath d='M12.166 8.94c-.524 1.062-1.234 2.12-1.96 3.07A32 32 0 0 1 8 14.58a32 32 0 0 1-2.206-2.57c-.726-.95-1.436-2.008-1.96-3.07C3.304 7.867 3 6.862 3 6a5 5 0 0 1 10 0c0 .862-.305 1.867-.834 2.94M8 16s6-5.686 6-10A6 6 0 0 0 2 6c0 4.314 6 10 6 10'/%3E%3Cpath d='M8 8a2 2 0 1 1 0-4 2 2 0 0 1 0 4m0 1a3 3 0 1 0 0-6 3 3 0 0 0 0 6'/%3E%3C/svg%3E");
}

.c-icon-email {
	--icon-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-envelope' viewBox='0 0 16 16'%3E%3Cpath d='M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm2-1a1 1 0 0 0-1 1v.217l7 4.2 7-4.2V4a1 1 0 0 0-1-1zm13 2.383-4.708 2.825L15 11.105zm-.034 6.876-5.64-3.471L8 9.583l-1.326-.795-5.64 3.47A1 1 0 0 0 2 13h12a1 1 0 0 0 .966-.741M1 11.105l4.708-2.897L1 5.383z'/%3E%3C/svg%3E");
}

.c-icon-clock {
	--icon-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-clock' viewBox='0 0 16 16'%3E%3Cpath d='M8 3.5a.5.5 0 0 0-1 0V9a.5.5 0 0 0 .252.434l3.5 2a.5.5 0 0 0 .496-.868L8 8.71z'/%3E%3Cpath d='M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16m7-8A7 7 0 1 1 1 8a7 7 0 0 1 14 0'/%3E%3C/svg%3E");
}

.c-icon-phone {
	--icon-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-telephone' viewBox='0 0 16 16'%3E%3Cpath d='M3.654 1.328a.678.678 0 0 0-1.015-.063L1.605 2.3c-.483.484-.661 1.169-.45 1.77a17.6 17.6 0 0 0 4.168 6.608 17.6 17.6 0 0 0 6.608 4.168c.601.211 1.286.033 1.77-.45l1.034-1.034a.678.678 0 0 0-.063-1.015l-2.307-1.794a.68.68 0 0 0-.58-.122l-2.19.547a1.75 1.75 0 0 1-1.657-.459L5.482 8.062a1.75 1.75 0 0 1-.46-1.657l.548-2.19a.68.68 0 0 0-.122-.58zM1.884.511a1.745 1.745 0 0 1 2.612.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.68.68 0 0 0 .178.643l2.457 2.457a.68.68 0 0 0 .644.178l2.189-.547a1.75 1.75 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.6 18.6 0 0 1-7.01-4.42 18.6 18.6 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877z'/%3E%3C/svg%3E");
}

.c-icon-bank {
	--icon-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-bank' viewBox='0 0 16 16'%3E%3Cpath d='m8 0 6.61 3h.89a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5H15v7a.5.5 0 0 1 .485.38l.5 2a.498.498 0 0 1-.485.62H.5a.498.498 0 0 1-.485-.62l.5-2A.5.5 0 0 1 1 13V6H.5a.5.5 0 0 1-.5-.5v-2A.5.5 0 0 1 .5 3h.89zM3.777 3h8.447L8 1zM2 6v7h1V6zm2 0v7h2.5V6zm3.5 0v7h1V6zm2 0v7H12V6zM13 6v7h1V6zm2-1V4H1v1zm-.39 9H1.39l-.25 1h13.72z'/%3E%3C/svg%3E");
}

.contact-grid-item h4 {
	margin-bottom: 1rem;
	color: var(--color-secondary);
}

.map-section iframe {
	display: block;
}

/* CF7 */

.wpcf7 {
	--cf7-bg: #edf3ff;
	--cf7-border: #d3e2ff;
	--cf7-border-focus: #3478ff;
	max-width: 600px;
	padding: 20px 30px;
	background: var(--cf7-bg);
	border: 1px solid var(--cf7-border);
	border-radius: 8px;
}

@media only screen and (max-width: 640px) {
	.wpcf7 {
		padding: 20px 10px;
	}
}/* 640px */

.form-group{
	margin-top: 20px;
}

.form-group.form-header {
	margin-bottom: 30px;
}

.form-group-first {margin-top: 0;}

.form-group p {
	margin: 0;
}

.wpcf7 select,
.wpcf7 input:not([type=radio],[type=checkbox]),
.wpcf7 textarea {
	font-size: 1rem;
	color: #363636;
	line-height: 1.4;
	appearance: none;
	border: 1px solid var(--cf7-border);
	padding: 0.7rem;
	border-radius: 0.3rem;
	display: block;
	width: 100%;
}

.wpcf7 select:focus,
.wpcf7 input:focus,
.wpcf7 textarea:focus {
	outline: none;
	border-color: var(--cf7-border-focus);
}

.wpcf7 textarea {
	max-width: 100%;
	min-height: 80px;
	max-height: 260px;
}

.wpcf7 label {
	display: inline-block;
	margin-bottom: 4px;
	line-height: 1.5;
}

.wpcf7 input[type=submit] {
	width: auto;
}


.wpcf7 .wpcf7-list-item label:has(input[type="checkbox"])  {
	display: flex;
	align-items: center;
	margin-top: 10px;
	margin-bottom: 10px;
	cursor: pointer;
	margin-right: 5px;
}

.wpcf7 .wpcf7-list-item input[type="checkbox"] {
	width: 16px;
	height: 16px;	
}

.wpcf7 .wpcf7-not-valid-tip {
	line-height: 1.2;
	font-size: 0.9rem;
	margin-top: 4px;
}

.wpcf7-radio {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-top: 10px;
}

.wpcf7-list-item-label {
	margin-left: 6px;
}

.wpcf7-list-item {
	display: block;
	margin: 0;
}

/* Mesaje */

.wpcf7 form .wpcf7-response-output {
	margin: 0 0 20px 0;
	padding: 1rem 1rem;
	border-radius: 4px;
	border-width: 1px;
	line-height: 1.3;
	background: #fff3d4;
	opacity: 1;
	transition: opacity 0.3s ease;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450;
	background: #e3ffe5;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	border-color: #dc3232;
	background: #ffd2d2;
}

.wpcf7 form.spam .wpcf7-response-output {
	border-color: #f56e28;
	background: #ffceb5;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #ffb900;
	background: #fff3d4;
}

::-webkit-input-placeholder { /* WebKit browsers */
color: rgba(0, 0, 0, 0.3) !important;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
color: rgba(0, 0, 0, 0.3) !important;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
color: rgba(0, 0, 0, 0.3) !important;
}

.wpcf7 input.wpcf7-submit {
	display: block;
	/* width: 100%; */
	font-size: 1.1rem;
	padding: 1rem 2.5rem;
	background: rgb(0, 182, 0);
	color: #FFF;
	cursor: pointer;
	transition: all .3s;
}

.wpcf7 input.wpcf7-submit:hover {
	background: rgb(0, 131, 0);
}

.wpcf7 input.wpcf7-submit:disabled {
	background: #a7b6c7;
}

.formular-title {
	margin-bottom: 16px;
}

.formular-subtitle {
	color: #8E8E8E;
}


/* Galerie imagini */
.gallery {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 2rem;
}


/* BIG HEADER */

.header-big {
	padding: 140px 20px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
}

.header-big-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(47, 73, 153,.4);
	z-index: 0;
}

.header-big-content {
	width: 100%;
	max-width: 700px;
	position: relative;
	z-index: 1;
}

.header-big-title {
	font-size: clamp(1.5rem, 0.699rem + 3.205vw, 2.75rem);
	line-height: 1.2;
	font-weight: 400;
	color: var(--color-white);
	text-wrap: balance;
}

/* Content with Sidebar */

/* single */

.content-with-sidebar {
	width: 100%;
	max-width: 100%;
	display: grid;
	grid-template-columns: auto 350px;
	gap: 40px;
}

@media (max-width: 1200px) {
	.content-with-sidebar {
		grid-template-columns: auto 300px;
		gap: 20px;
	}
}

@media (max-width: 900px) {
	.content-with-sidebar {
		grid-template-columns: 100%;
	}
}

.content-principal {
	
}

.content-sidebar {

}

.sidebar-widgets {
	
}

.sidebar-widget {
	color: #555;
	margin-bottom: 30px;
	padding: 30px;
	background: var(--bg-white);
	box-shadow: var(--box-shadow);
}

.sidebar-widget .widget-title {
	color: inherit;
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 1em;
}

.sidebar-widget:last-child {
	border-bottom: none;
}

.sidebar-widget ul {
	padding: 0;
	list-style: none;
}

.sidebar-widget ul li a {
	text-decoration: none;
	line-height: 1.4;
	color: inherit;
	display: inline-block;
	margin-bottom: .6rem;
	transition: all .3s ease;
}

.sidebar-widget ul li a:hover {
	color: var(--color-secondary);
	text-decoration: underline;
}



/* Article content */

.content-wrap > * + * {
	--flow-space: 1em;
	margin-block-start: var(--flow-space, 1em);
}

/* https://www.marcbacon.com/tools/clamp-calculator/ */

.content-wrap h2 {
	font-size: clamp(1.6rem, 1.489rem + 0.593vw, 2rem);
	line-height: 1.2;
}

.content-wrap h3 {
	font-size: clamp(1.3rem, 1.15rem + 0.6vw, 1.6rem);
	font-weight: 500;
	line-height: 1.2;
}

.content-wrap h4 {
	font-size: clamp(1.1rem, 1rem + 0.4vw, 1.3rem);
	line-height: 1.2;
}

.content-wrap ol,
.content-wrap ul,
.content-wrap p {
	font-size: clamp(1rem, 0.963rem + 0.198vw, 1.2rem);
}

.content-wrap > figure.wp-caption:not(:first-child) {
	margin-block: 2rem;
}

.content-wrap figure.wp-caption a img {
	display: block;
	transition: all .3s ease;
}

.content-wrap figure.wp-caption:hover a img {
	opacity: .8;
}

.content-wrap figcaption.wp-caption-text {
	color: #888;
	font-size: .9rem;
	font-style: italic;
	margin: 4px 0 8px;
}

.content-form {
	margin-block: 40px;
}

/* PARTENERI */

.partener-section {
	/* background-color: #edfaff; */
	background-color: #e8ebf5;
	/* background-image: linear-gradient(rgba(196, 238, 255, 0.8), rgba(237, 250, 255, 0.96)), url(svgbg/puzzle.svg); */
	background-repeat: repeat;
	padding-block: var(--padding-section);
}

.partener-cards {
	display: grid;
	gap: 1rem;
	/* grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
	grid-template-columns: repeat(auto-fit, minmax(200px, 100px));
	place-content: center;
}

.partener-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 20px;
	align-items: center;
	max-width: 200px;
	background: #FFF;
	border-radius: 4px;
	transition: all .3s ease;
	text-decoration: none;
	border: 1px solid transparent;
}

.partener-image {
	display: block;
	width: 100px;
	max-width: 100px;
	/* height: 150px; */
	aspect-ratio: 1 / 1;
	object-fit: contain;
	transition: all .3s ease;
}

.partener-card:hover {
	border: 1px solid var(--color-secondary);
}

.partener-name {
	font-size: .9rem;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
}

.partener-desc {
	display: none;
	font-size: .95rem;
	color: #555;
}


/* CTA Global */

.cta-section {
	background-color: var(--bg-white);
	padding-block: 100px;
}

.cta-global {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.cta-box {
	background: #fff;
	padding: 3rem 2rem;
	border-radius: 6px;
	box-shadow: var(--box-shadow);
	text-align: center;
	transition: all .3s;
}

.cta-box:hover {
	box-shadow: var(--box-shadow-hover);
}

.cta-before {
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 15px;
	opacity: .8;
	margin-bottom: 10px;
}


.cta-box h2 {
	font-size: 1.5rem;
	line-height: 1.2;
	margin-bottom: 1rem;
}
.cta-box p {
	margin-bottom: 1.5rem;
	color: #333;
}

@media (max-width: 768px) {
	.cta-global {
		flex-direction: column;
	}
	.cta-box {
		flex: 1 1 100%;
	}
}



/* HERO */

.hero-section {
	width: 100%;
	height: calc(100vh - 200px);
	background: #EDF5FF;
}


/* SWIPER */

.swiper {
	width: 100%;
	height: 100%;
	max-height: 100%;
	background: transparent;
	/*--swiper-theme-color: #007aff;*/
	--swiper-theme-color: #FFF;
}

.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	/* Center slide text vertically */
	display: flex;
	justify-content: center;
	align-items: center;
	background: none;
}

.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction{
	bottom:30px;
	left:0;
	width:100%
}

@media screen and (max-width: 800px) {

	.swiper-button-prev,
	.swiper-button-next {
		/* display: none; */
		top: calc(100% - 40px);
		opacity: .8;
		display: none;
	}
	
	.swiper-horizontal>.swiper-pagination-bullets,
	.swiper-pagination-bullets.swiper-pagination-horizontal,
	.swiper-pagination-custom,
	.swiper-pagination-fraction {
		bottom: 25px;
		width: 100%;
	}
}

/* HERO Slides */

.hero-slide {
	position: relative;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.hero-slide:after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(1, 0, 82, .15), rgba(1, 0, 82, .6));
	/* z-index: 30; */
}

.hero-slide-content {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 20px;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background: linear-gradient((0, 49, 188, 0.05), (0, 49, 188, 0.45));
	color: #FFF;
	z-index: 10;
}

.hero-slide-content .slide-titlu {
	font-size: 50px;
	line-height: 1;
	font-weight: 700;
	margin: 0;
	max-width: 780px;
	text-shadow: 4px 4px 4px rgba(0, 0, 0, .18);
}

.hero-slide-content .slide-titlu,
.hero-slide-content .slide-subtitlu {
	color: #FFF;
}

.hero-slide-content .slide-subtitlu {
	margin: 20px 0 10px;
	font-size: 22px;
	font-weight: normal;
	line-height: 1.3;
	max-width: 600px;
	opacity: 1;
	color: #eeeeee;
	text-shadow: 2px 2px 2px rgba(0, 0, 0, .28);
}

@media only screen and (max-width: 600px) {
	
	.hero-slide-content .slide-titlu {
		font-size: 33px;
		line-height: 1.1;
	}
	
	.hero-slide-content .slide-subtitlu {
		font-size: 18px;
		line-height: 1.2;
	}
}/* 600px */

/* Reviews */

section.section-reviews {
	background: #f8f5f0;
	position: relative;
	max-width: 100%;
	overflow: hidden;
}

/* Echipa */

.echipa-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.membru-echipa {
	
}

@media only screen and (max-width: 586px) {
	
	.membru-echipa {
		display: grid;
		align-content: center;
	}
	
	.membru-echipa-wrap {
		max-width: 320px;
		margin-inline: auto;
	}
	
}/* 586px */


.membru-content {
	display: flex;
	flex-direction: column;
}

.membru-nume {
	font-size: 22px;
	line-height: 1.2;
	margin-bottom: 10px;
}

.membru-functie {
	color: #828188;
	font-size: 1rem;
	line-height: 1.2;
}

@media only screen and (max-width: 680px) {
	.membru-echipa {
		padding-bottom: 10px;
	}
	.membru-nume {
		font-size: 1.2rem;
	}
	.membru-functie {
		font-size: .9rem;
	}
}/* 680px */

.membru-img {
	display: block;
	width: 100%;
	position: relative;
	overflow: hidden;
	margin-bottom: 10px;
	border-radius: 4px;
}

.membru-img img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: center;
	margin-bottom: 1rem;
	transition: all .3s;
}

.membru-img:hover img {
	transform: scale(1.1,1.1);
}

.membru-bio {
	margin-top: 12px;
}







