/* CSS Variables */
:root{
	--blue:#3C1CC4;
	--blue-opacity-50: #3C1CC480;
	--blue-opacity-5: #3C1CC40D;
	--green:#7BD128;
	--light-green: #D0F1B1;
	--black:#1F1A17;
	--grey:#6D6E76;
	--grey-bg: #F5F4FC;
	--white: #FFFFFF;
	--highlight-subtitle:#E8E4F8;
	--bg-icon-box:#F6F6F6;
	--bg-menu:#EDF5FE;
	--stroke-inputs:#E6E6E6;
	--bg-project-n-product:#F3FFE7;
	--stroke-2:#D3D3D3;
	--bg-cat-articol:#E8E4F8;
}

html, body, div, main, 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 */
main, article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* General styling */
*, :before, :after {
  -webkit-box-sizing: border-box;
	box-sizing: border-box;
}
:root {
  -webkit-tap-highlight-color: transparent; /* no more color over a link when tapped, usually iOS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; /* antialiasing, Mozilla only */
  -webkit-font-smooth: always; /* text has no sharp edges, Safari only */
}
html {
	-ms-overflow-style: scrollbar; /* scrollbar in case of overflow for IE */
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
body {
	min-height: 100vh;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-justify-content: space-between;
	justify-content: space-between;
  font: 16px/1.75 'Inter', arial, sans-serif;
  background: #FFF;
	color:var(--black);
}
html, body{
	overflow-x:hidden;
}
h1, h2, h3, h4, h5, h6,
h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a,
article h1 a, article h2 a, article h3 a, article h4 a, article h5 a, article h6 a  {
	margin-bottom: 20px;
  text-rendering: optimizeLegibility;
	line-height: 1.25;
	font-weight: bold;
	color:var(--blue);
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a{
	text-decoration:none;
}
article ul li,
article ol li,
article p {
	word-break: break-word;
}
article table tr:first-child{
	background:#d5d5d5!important;
}
article table tr:nth-child(odd){
	background:#f9f7f6;
}
article table tr:nth-child(even){
	background:#fff;
}
span {
  display: inline;
}
a {
	color:var(--blue);
  cursor: pointer;
	text-decoration: none;
	transition:.4s;
}
a:hover{
	color:var(--green);
}
a:not([class]):focus {
  outline: none;
	box-shadow: none;
}
img, iframe {
	max-width: 100%;
	height: auto;
}
img.size-portrait-thumbnail {
	width:auto;
	max-width:unset;
}
i:not([class]), em, cite, dfn {
	font-style: italic;
}
ul, ol {
  margin: 0 0 25px 20px;
}
ol {
	list-style: decimal;
	list-style-position:inside;
}
ul {
	list-style: disc;
	list-style-position:inside;
}
nav ul, nav ol {
  margin: 0;
  list-style: none;
}
b, strong, th, legend {
	font-weight: bold;
}
small {
	font-size: 75%;
}
sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
  vertical-align: baseline;
}
sub {
	bottom: -.25em;
}
sup {
	top: -.5em;
}
abbr[title] {
  text-decoration: underline dotted;
}
abbr[data-original-title], abbr[title] {
  cursor: help;
}
del {
  text-decoration: line-through;
}
table {
	margin-bottom: 20px;
  -webkit-overflow-scrolling: touch;
}
th, td {
	border: 1px solid #eceeef;
	padding: 10px;
}
caption {
	font-size:13px;
  padding: 10px 0;
  caption-side: bottom;
}
figcaption {
  font-size:13px;
}
legend {
	margin-bottom: 5px;
}
label {
	display: block;
	cursor: pointer;
}
button, input, textarea {
	font-family: inherit;
	line-height: normal;
	margin: 0;
}
textarea {
	min-height: 80px;
	resize: vertical;
}
[type="submit"], [type="reset"], [type="button"],
[type="text"], [type="email"], [type="tel"], [type="search"],
button {
  -webkit-appearance: none;
  -moz-appearance: none;
	appearance: none;
}
button, [type="submit"], [type="reset"], [type="button"] {
  cursor: pointer;
}
textarea:focus, button:focus,
div[contenteditable="true"]:focus, [class~="btn"]:focus,
[type="text"]:focus, [type="tel"]:focus, [type="email"]:focus, [type="password"]:focus, [type="submit"]:focus {
  outline: 0;
}
[hidden] {
	display: none;
}
[tabindex="-1"]:focus {
  outline: 0 !important;
}
p + h2, p + h3, p + h4,
ul + h2, ul + h3, ul + h4,
ol + h2, ol + h3, ol + h4,
code + h2, code + h3, code + h4,
table + h2, table + h3, table + h4,
blockquote + h1, blockquote + h2, blockquote + h3, blockquote + h4 {
  margin-top: 35px;
}
/* WordPress Core */
.alignnone {
  margin: 5px 20px 5px 0;
}
.aligncenter,
div.aligncenter  {
  display: block;
  margin: 30px auto 40px auto;
}
div.aligncenter{
	width: 90%!important;
	margin: 0 auto;
	padding:10px;
	border:1px solid #41ee6e;
}
div.aligncenter img{
	width: 100%;
}
.alignright {
  float:right;
  margin: 5px 0 20px 20px;
}
.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
a img.alignnone {
  margin: 5px 20px 20px 0;
}
a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption {
  background: #fff;
  max-width: 100%;
  text-align: left;
}
.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  padding: 0;
  width: auto;
	margin-bottom: 10px;
}
.wp-caption p.wp-caption-text,
.wp-block-image figcaption{
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
	text-align: center;
	font-style: italic;
	margin:0px;
}
.full-width {
	width:100%;
	overflow:hidden;
}
.has__gallery .gallery{
	margin: auto -6px;
	padding: 6px 0;
	line-height: 1;
	overflow-x: hidden;
}
.has__gallery .gallery .gallery-item {
	float: left;
	margin: 0;
	text-align: center;
	padding: 6px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.has__gallery .gallery .gallery-caption,
.has__gallery .gallery .gallery-icon {
	margin: 0;
}
.has__gallery .gallery .gallery-caption {
	font-size: 13px;
	margin: 4px 0;
}
.has__gallery .gallery-columns-1 .gallery-item {
	width: 100%;
}
.has__gallery .gallery-columns-2 .gallery-item {
	width: 50%;
}
.has__gallery .gallery-columns-3 .gallery-item {
	width: 33.333%;
}
.ie8 .has__gallery .gallery-columns-3 .gallery-item,
.ie7 .has__gallery .gallery-columns-3 .gallery-item {
	width: 33%;
}
.has__gallery .gallery-columns-4 .gallery-item {
	width: 25%;
}
.has__gallery .gallery-columns-5 .gallery-item {
	width: 20%;
}
.has__gallery .gallery-columns-6 .gallery-item {
	width: 16.665%;
}
.has__gallery .gallery-columns-7 .gallery-item {
	width: 14.285%;
}
.has__gallery .gallery-columns-8 .gallery-item {
	width: 12.5%;
}
.has__gallery .gallery-columns-9 .gallery-item {
	width: 11.111%;
}
.has__gallery .gallery img {
	max-width: 100%;
	height: auto;
	border: none;
	padding: 0;
	border-radius:15px;
}
@media(max-width:1200px){
	.has__gallery .gallery-columns-4 .gallery-item,
	.has__gallery .gallery-columns-5 .gallery-item,
	.has__gallery .gallery-columns-6 .gallery-item,
	.has__gallery .gallery-columns-7 .gallery-item,
	.has__gallery .gallery-columns-8 .gallery-item,
	.has__gallery .gallery-columns-9 .gallery-item {
		width:33%;
	}
}
@media(max-width:767px){
	.has__gallery.gallery-columns-2 .gallery-item,
	.has__gallery .gallery-columns-3 .gallery-item,
	.ie8 .has__gallery .gallery-columns-3 .gallery-item,
	.ie7 .has__gallery .gallery-columns-3 .gallery-item,
	.has__gallery .gallery-columns-4 .gallery-item,
	.has__gallery .gallery-columns-5 .gallery-item,
	.has__gallery .gallery-columns-6 .gallery-item,
	.has__gallery .gallery-columns-7 .gallery-item,
	.has__gallery .gallery-columns-8 .gallery-item,
	.has__gallery .gallery-columns-9 .gallery-item {
		width: 100%;
	}
}
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
  white-space: nowrap;
	height: 1px;
	width: 1px;
	overflow: hidden;
}
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}
html.js, html.no-js, html {
    margin-top: 0 !important;
}
/* End of WordPress Core */
/* General Theme Style */
.h-align{
  text-align:center;
}
.clear:after,
.clear:before,
.row:after,
.row:before{
	clear:both;
	display:block;
	width:100%;
	content:'';
}
.container{
	width:100%;
	max-width:1540px;
	padding:0px 15px;
	margin:0 auto;
	display:block;
	position:relative;
}
.container:before,
.container:after{
	content:"";
	display:block;
	clear:both;
}
.img-abs{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	top:0;
	left: 0;
}
section.screen{
	padding:70px 0;
}
main section.screen:first-of-type{
	padding-top:20px;
}
main{
	min-height:43vh;
}
@media(max-width:850px){
	main{
		min-height:60vh;
	}
	section.screen{
		padding:50px 0;
	}
}
@media(max-width:767px){
	main{
		min-height:auto;
	}
	section.screen{
		padding:30px 0;
	}
}
/* Row */
.row{
	display: block;
	width: 100%;
}
.row > .item{
	display: inline-block;
	padding: 15px;
	vertical-align: top;
}
.row > .item.item19{
	width: 19%;
}
.row > .item.item24{
	width: 24%;
}
.row > .item.item32{
	width: 32%;
}
.row > .item.item49{
	width: 49%;
}
.row > .item.item50{
	width: 50%;
	float: left;
}
.row > .item.item65{
	width: 65%;
	float: left;
}
.row > .item.item35{
	width: 35%;
	float: left;
}
.row > .item.full-item{
	width: 100%;
}
/* Flex */
.flex-row, .flex-row.reverse, .flex-column, .flex-column.reverse{
	display: flex;
}
.flex-row{
	flex-direction: row;
}
.flex-column{
	flex-direction: column;
}
.flex-row.reverse{
	flex-direction: row-reverse;
}
.flex-column.reverse{
	flex-direction: column-reverse;
}
.flex-item{
	padding: 0 10px;
	position: relative;
}
.flex-item.item10{
	flex: 1 1 10%;
}
.flex-item.item20{
	flex: 1 1 20%;
}
.flex-item.item30{
	flex: 1 1 30%;
}
.flex-item.item40{
	flex: 1 1 40%;
}
.flex-item.item45{
	flex: 1 1 45%;
}
.flex-item.item50{
	flex: 1 1 50%;
}
.flex-item.item55{
	flex: 1 1 55%;
}
.flex-item.item60{
	flex: 1 1 60%;
}
.flex-item.item70{
	flex: 1 1 70%;
}
.flex-item.item80{
	flex: 1 1 80%;
}
.flex-item.item90{
	flex: 1 1 90%;
}
.grid{
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap:wrap;
}
.grid > .inner{
	padding:15px;
}
.grid.grid-4 > .inner{
	flex: 1 1 25%;
	max-width: 25%;
}
.grid.grid-3 > .inner{
	flex: 1 1 33%;
	max-width: 33%;
}
.grid.grid-2 > .inner{
	flex: 1 1 50%;
	max-width: 50%;
}
@media(max-width:850px){
	.grid.grid-4 > .inner, .grid.grid-3 > .inner{
		flex: 1 1 50%;
		max-width: 50%;
	}
}
@media(max-width:767px){
	.grid.grid-4 > .inner, .grid.grid-3 > .inner, .grid.grid-2 > .inner{
		flex: 1 1 100%;
		max-width: 100%;
		padding:20px 0;
	}
	.flex-item.item50{
		padding: 10px 0;
	}
}
/* Form Adds */
 span.wpcf7-list-item{
  margin: 0;
}
.wpcf7-not-valid-tip{
  font-size: 12px;
  color:#ff0000;
  line-height: 16px;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output{
  border: none;
	font-size: 16px;
  padding: 0;
  margin:20px 0 0;
  line-height: 18px;
	font-weight:bold;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.sent .wpcf7-response-output{
	color: #fff;
	display: inline-block;
	padding: 14px;
	border-radius: 20px;
}
.wpcf7 form.invalid .wpcf7-response-output{
	background: #ff0000;
}
.wpcf7 form.sent .wpcf7-response-output {
	background: green;
}
.wpcf7-form input[type=checkbox],
form input[type=checkbox] {
  position: relative;
  visibility: hidden;
	width: auto;
	display: inline-block;
	padding: 0;
	line-height: 0;
}
.wpcf7-form input[type=checkbox]+span:before,
form input[type=checkbox]+span:before{
  display: block;
  position: absolute;
  content: '';
  height: 16px;
  width: 16px;
  top: 0px;
  border: 1px solid #D3D3D3;
  left: 0;
	border-radius:4px;
}
.wpcf7-form input[type=checkbox]+span:after,
form input[type=checkbox]:checked+span:before{
	display: block;
  position: absolute;
  height: 16px;
  width: 16px;
  top: 2px;
  left: 0;
  visibility: hidden;
  border-radius: 4px;
  background-image: url('../img/tick.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 11px;
  background-position: center;
}
.wpcf7-form input[type=checkbox]:checked+span:before,
form input[type=checkbox]:checked+span:before{
  background-color: var(--green);
}
.wpcf7-form input[type=checkbox]:checked+span:after,
form input[type=checkbox]:checked+span:before {
  visibility: visible
}
.form, .form-container {
  display: inline-block;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.form input:not([type="submit"]):not([type="checkbox"]),
.form textarea, form textarea,
form input:not([type="submit"]):not([type="checkbox"]),
.form select, form select {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #D3D3D3;
  padding: 10px;
  font-size: 16px;
  line-height: 1;
  transition: 0.4s;
}
.form input:not([type="submit"]):not([type="checkbox"]):focus, form input:not([type="submit"]):not([type="checkbox"]):focus,
.form textarea:focus, form textarea:focus,
.form select:focus, form select:focus {
  border: 1px solid var(--green);
}
.form .item br {
  display: none;
}
.form .item label,
form label {
  text-align: left;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
	position: relative;
}
form .woocommerce-form__label{
	line-height:1.1;
	margin-bottom:10px;
}
.form .item.terms-item span {
  display: block;
  text-align: left;
  margin-bottom: 6px;
}
.form .item.terms-item span.wpcf7-form-control-wrap label {
  font-size: 14px;
  line-height: 16px;
}
.form .item.terms-item span.wpcf7-form-control-wrap label span{
  display: inline-block;
  width: 90%;
	padding-left: 14px;
	font-size: 14px;
	margin-left: 0;
}
form input[type=checkbox]+span{
	font-size: 14px;
	vertical-align: middle;
	margin-left: 10px;
}
form input[type=checkbox]+span:tick.before,
form input[type=checkbox]:checked+span:before{
	top:6px;
}
form abbr.required{
	text-decoration: none!important;
	cursor: default!important;
	border-bottom: 0!important;
	margin-left: -3px;
}
.form a{
	color:var(--blue);
	text-decoration:underline;
}
.form a:hover{
	color:var(--black);
}
.form .btn {
  margin-top: 30px;
}
.wpcf7-spinner{
	position: absolute!important;
	margin-top: 40px!important;
}
textarea{
	height: 163px;
	resize: none;
}
form input[type="submit"], .form input[type="submit"]{
	min-width: 160px;
	text-align: center;
}
@media(max-width:767px){
  .form .item.item50,
	.form .item.full-item{
    width: 100%;
		padding: 15px 0;
  }
	.form .item.terms-item span.wpcf7-form-control-wrap label span{
		font-size: 12px;
	}
}
/* Buttons */
.btn, .button, .facetwp-reset, .wc-forward, .facetwp-reset, .button{
	display: inline-block;
	padding: 12px 20px;
	text-decoration: none;
	cursor: pointer;
	transition:.4s;
	font-size: 16px;
	line-height: 1;
	border-radius:50px;
	font-weight: 500;
}
.btn.blue, .facetwp-reset,
.button.checkout-button,
.place-order .button{
	background-color:var(--blue);
	border:1px solid var(--blue);
	color:#fff;
}
.btn.blue:hover, .facetwp-reset:hover, .button.checkout-button:hover,
.place-order .button:hover{
	background-color:transparent;
	color:var(--blue);
}
.btn.white, .button{
	background-color:transparent;
	border:1px solid var(--blue);
	color:var(--blue);
}
.btn.white:hover, .button:hover{
	background-color:var(--blue);
	color:#fff;
}
.btn.esg {
	background-color:transparent;
	border:1px solid var(--white);
	color:var(--white);
}
.btn.esg:hover {
	background-color: var(--blue);
	border:1px solid var(--blue);
}
a.restore-item{
	display: none;
}
a.checkout-button:after{
	display: none;
}
/* Fonts */
h1, .main-title,
.fs-screen .section-title-container.wysiwyg-title h1,
.fs-screen .section-title-container.wysiwyg-title h2,
.fs-screen .section-title-container.wysiwyg-title h3,
.fs-screen .section-title-container.wysiwyg-title h4,
.fs-screen .section-title-container.wysiwyg-title h5,
.fs-screen .section-title-container.wysiwyg-title h6{
	font-size: 60px;
}
h2, .section-title, .page-hero h1, body.woocommerce-account .section-title,
.content-header h1,
.section-title-container.wysiwyg-title h1,
.section-title-container.wysiwyg-title h2,
.section-title-container.wysiwyg-title h3,
.section-title-container.wysiwyg-title h4,
.section-title-container.wysiwyg-title h5,
.section-title-container.wysiwyg-title h6{
	font-size: 50px;
}
.section-title span{
	color:var(--green);
}
.section-title-container del{
	text-decoration: none;
	background-color: #E8E4F8;
	padding: 2px 6px;
	border-radius:6px;
}
h3, .product_title{
	font-size: 40px;
}
h4{
	font-size: 30px;
}
h5, h6{
	font-size: 24px;
}
.section-info, .section-title-container.wysiwyg-title p{
	font-size: 18px;
	line-height: 1.66;
	font-weight: 500;
}
.info h1{
	font-size: 36px;
}
.info h2{
	font-size: 30px;
}
.info h3{
	font-size: 28px;
}
.info h4{
	font-size: 26px;
}
.info h5, .info h6{
	font-size: 24px;
}
.info p{
	margin-bottom:20px;
}
.product_title{
	margin-bottom: 0;
}
time{
	color:var(--green);
	font-weight:600;
}
.content-body a{
  text-decoration:underline;
}
.content-body blockquote{
	font-size:30px;
	font-weight:500;
	line-height:40px;
	color:var(--blue);
	margin:20px 0;
}
.content-body p,
.content-body li{
	font-size: 18px;
}
@media(max-width:1700px){
	.info h1{
		font-size: 32px;
	}
	.info h2{
		font-size: 26px;
	}
	.info h3{
		font-size: 22px;
	}
	.info h4{
		font-size: 20px;
	}
	.info h5, .info h6{
		font-size: 18px;
	}
	h1, .main-title,
	.fs-screen .section-title-container.wysiwyg-title h1,
	.fs-screen .section-title-container.wysiwyg-title h2,
	.fs-screen .section-title-container.wysiwyg-title h3,
	.fs-screen .section-title-container.wysiwyg-title h4,
	.fs-screen .section-title-container.wysiwyg-title h5,
	.fs-screen .section-title-container.wysiwyg-title h6{
		font-size: 50px;
	}
	h2, .section-title, .page-hero h1, body.woocommerce-account .section-title,
	.content-header h1,
	.section-title-container.wysiwyg-title h1,
	.section-title-container.wysiwyg-title h2,
	.section-title-container.wysiwyg-title h3,
	.section-title-container.wysiwyg-title h4,
	.section-title-container.wysiwyg-title h5,
	.section-title-container.wysiwyg-title h6{
		font-size: 40px;
	}
	h3, .product_title{
		font-size: 35px;
	}
	h4{
		font-size: 28px;
	}
	.content-body blockquote{
		font-size:26px;
		line-height:36px;
	}
}
@media(max-width:1200px){
	h1, .main-title,
	.fs-screen .section-title-container.wysiwyg-title h1,
	.fs-screen .section-title-container.wysiwyg-title h2,
	.fs-screen .section-title-container.wysiwyg-title h3,
	.fs-screen .section-title-container.wysiwyg-title h4,
	.fs-screen .section-title-container.wysiwyg-title h5,
	.fs-screen .section-title-container.wysiwyg-title h6{
		font-size: 40px;
	}
	h2, .section-title, .page-hero h1, body.woocommerce-account .section-title,
	.content-header h1,
	.section-title-container.wysiwyg-title h1,
	.section-title-container.wysiwyg-title h2,
	.section-title-container.wysiwyg-title h3,
	.section-title-container.wysiwyg-title h4,
	.section-title-container.wysiwyg-title h5,
	.section-title-container.wysiwyg-title h6{
		font-size: 35px;
	}
	h3, .product_title{
		font-size: 28px;
	}
	.section-info, .section-title-container.wysiwyg-title p{
		font-size: 16px;
	}
}
@media(max-width:850px){
	h2, .section-title, .page-hero h1, body.woocommerce-account .section-title,
	.content-header h1,
	.section-title-container.wysiwyg-title h1,
	.section-title-container.wysiwyg-title h2,
	.section-title-container.wysiwyg-title h3,
	.section-title-container.wysiwyg-title h4,
	.section-title-container.wysiwyg-title h5,
	.section-title-container.wysiwyg-title h6{
		font-size: 30px;
	}
	h3, .product_title {
		font-size: 26px;
	}
}
@media(max-width:767px){
	h2, .section-title, .page-hero h1, body.woocommerce-account .section-title,
	.content-header h1,
	.section-title-container.wysiwyg-title h1,
	.section-title-container.wysiwyg-title h2,
	.section-title-container.wysiwyg-title h3,
	.section-title-container.wysiwyg-title h4,
	.section-title-container.wysiwyg-title h5,
	.section-title-container.wysiwyg-title h6{
		font-size: 27px;
	}
	h3, .product_title {
		font-size: 24px;
	}
	h4{
		font-size: 22px;
	}
	h5, h6{
		font-size: 20px;
	}
	.info h1{
		font-size: 30px;
	}
	.info h2{
		font-size: 24px;
	}
	.info h3{
		font-size: 22px;
	}
	.info h4{
		font-size: 20px;
	}
	.info h5, .info h6{
		font-size: 18px;
	}
	.content-body p,
	.content-body li{
		font-size: 16px;
	}
}
/* Section title */
.section-title-container{
	max-width: 890px;
	margin: 0 auto;
	margin-bottom:50px;
}
.section-title-container .section-title{
	margin-bottom:10px;
}
@media(max-width:850px){
	.section-title-container{
		max-width: 700px;
		margin-bottom: 35px;
	}
}
/* Woocomemrce General Settings */
div > header {
	position:static;
}
.quantity{
	border-radius: 10px;
	border: 1px solid var(--light-grey, #d4d4d4);
	display:inline-block;
	padding:5px;
}
.quantity input {
  -moz-appearance: textfield;
  appearance: none;
  width: 30px!important;
  height: 30px;
	padding:0!important;
  text-align: center;
}
.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity button {
  margin: 0 5px;
  box-shadow: none;
  color: var(--green);
  transition: 0.4s;
  width: 20px;
  height: 20px;
  font-size: 21px;
  line-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
	box-shadow:none;
	background-color:transparent;
}
.quantity button:hover {
	color:var(--blue);
}
.quantity input, .quantity input:focus, .quantity input:focus-visible,
.quantity button, .quantity input:active{
	border:0!important
}
a.remove{
	text-indent: unset!important;
}
a.remove svg{
	--remove-color:#ABA8A8;
}
a.remove:hover svg{
	--remove-color:var(--green);
}
a.remove::before{
	display: none!important
}
.cod-produs{
	color:#777777;
	margin:5px 0;
}
/* filters*/
.filters h2{
	font-size: 24px;
	line-height: 30px;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #D3D3D3;
	color:var(--black);
	font-weight:500;
}
.facetwp-facet{
	font-size: 16px;
}
@media(max-width:767px){
	.facetwp-facet {
    margin-bottom: 30px!important;
	}
	.filters h2{
		font-size: 20px;
		line-height: 22px;
	}
}
/* facet pagination */
.facetwp-pager{
	text-align: center;
	margin:40px 0 0;
}
.facetwp-pager a{
	color:var(--black);
}
.facetwp-pager a, .facetwp-pager .active{
	text-decoration: none;
	margin: 3px 6px;
	padding: 3px 10px;
	border-radius:3px;
	line-height:1;
	font-weight: normal!important;
}
.facetwp-pager .active,
.facetwp-pager a:hover{
	background-color: var(--green);
	color:#fff;
	font-weight: normal;
}
/* facet selections */
.woocommerce .facetwp-counts{
	display: inline-block;
	font-weight: bold;
	color: var(--dark-blue);
	margin-right: 10px;
	font-size: 16px;
}
.woocommerce .facetwp-selections{
	display: inline-block;
}
.woocommerce .facetwp-selections ul{
	margin: 0;
	margin-left: -7px;
}
.woocommerce .facetwp-selections ul li{
	padding: 10px;
	border:1px solid #dedede;
	margin:7px;
	font-size: 14px;
	line-height: 16px;
	color:var(--black);
}
.woocommerce .facetwp-selections ul li .facetwp-selection-value{
	font-weight: 500;
}
.woocommerce .facetwp-checkbox{
	background-image:url('../img/facet-noselect.png');
	background-position: 0 7px;
}
.woocommerce .facetwp-checkbox.checked{
	background-image:url('../img/facet-select.png');
}
.woocommerce .facetwp-counter {
	display: none;
}
/** woocoommerce errors, messages */
.woocommerce-notices-wrapper{
	width: 100%;
	max-width: 1540px;
	padding: 0px 15px;
	margin: 0 auto;
}
.woocommerce-error, .woocommerce-message .woo-message-wrapper{
	text-align: left;
	background-color: #fff;
	color: var(--blue);
	padding: 20px;
	border-radius: 10px;
	margin-left: 0;
	border:2px solid var(--blue);
	font-weight: 500;
}
body.single-product .woocommerce-message{
	position:fixed;
	background:rgba(0,0,0,0.5);
	width: 100%;
	height:100%;
	top:0;
	left:0;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	padding:40px 0;
	z-index: 9999;
}
body.single-product .woocommerce-message .woo-message-wrapper{
	color: #000;
	max-width:770px;
	padding:35px 13px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	position:relative;
	margin:5px 0;
}
body.single-product .woocommerce-message .woo-message-wrapper .notice-dismiss{
	cursor: pointer;
	position: absolute;
	top:10px;
	right: 10px;
	width: 15px;
	height: 15px;
	background-image:url('../img/close-notif.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-color: transparent;
	transition: background-color .3s ease;
	border: 0;
	border-radius: 100%;
}
body.single-product .woocommerce-message .woo-message-wrapper .notice-dismiss:hover {
	background-color: var(--bg-menu)
}
body.single-product .woocommerce-message .woo-message-wrapper .woo-message-list {
	margin: 0 0 10px 0;
	padding: 10px 20px 10px 0;
	max-height: 50vh;
	list-style: none;
}
body.single-product .woocommerce-message .woo-message-wrapper .woo-message-list img {
	height: 100%;
}
body.single-product .woocommerce-message .woo-message-wrapper .woo-message-list > li:not(:last-of-type) {
	border-bottom: .5px solid var(--blue);
	margin-bottom: 20px;
}
body.single-product .woocommerce-message .woo-message-wrapper .woo-message-list li .title-section {
	margin-bottom: 20px;
}
body.single-product .woocommerce-message .woo-message-wrapper .woo-message-list li .title-section .title {
	font-size: 18px;
	font-weight: 700;
	color: var(--blue);
}
body.single-product .woocommerce-message .woo-message-wrapper .woo-message-list li .title-section .subtitle {
	font-size: 14px;
	color: #000;
}
body.single-product .woocommerce-message .woo-message-wrapper .woo-message-list li .details {
	padding-left: 20px;
}
body.single-product .woocommerce-message .woo-message-wrapper .woo-message-list li strong {
	color: var(--blue);
}
body.single-product .woocommerce-message .woo-message-wrapper .woo-message-info-list {
	padding: 10px 0;
	margin-bottom: 0;
}
body.single-product .woocommerce-message .woo-message-wrapper .woo-message-info-list li {
	font-size: 12px;
	list-style: inside;
}
body.single-product .woocommerce-message .woo-message-wrapper p.continue {
	width: 100%;
	font-size: 14px;
	font-weight: 600;
	color: var(--blue);
	text-align: center;
	margin-bottom: 10px;
}
body.single-product .woocommerce-message .woo-message-wrapper .navigation {
	margin: 0 auto;
}
body.single-product .woocommerce-message .woo-message-wrapper .navigation .button {
	color: var(--blue);
	padding: 12px 20px;
	text-decoration: none;
	display: inline-block;
}
body.single-product .woocommerce-message .woo-message-wrapper .navigation .button:hover {
	background-color: var(--blue);
	color: #fff;
}
body.single-product .woocommerce-message .woo-message-wrapper .navigation .button.wc-forward{
	order:2;
	margin-left: 10px;
	background-color: var(--blue);
	color: #fff;
}
body.single-product .woocommerce-message .woo-message-wrapper .navigation .button.wc-forward:hover {
	background-color: #fff;
	color: var(--blue);
}
/* Add to cart Notifications */
@keyframes slideInFade {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
body.single-product .woo-custom-message{
  position:fixed;
  bottom:2%;
  left:2%;
	padding-right:2%;
  z-index: 10;
  animation: slideInFade 0.5s ease-in-out;
}
body.single-product .woocommerce-message .woo-message-wrapper .woo-message-list li .details .info {
	position: relative;
}
body.single-product .woo-message-info-list {
	--lines: 6;          /* total visible lines across the whole UL */
  --lh: 1.25rem;       /* line-height used by LI items */
  line-height: var(--lh);
  max-height: calc(var(--lines) * var(--lh));
	overflow-y: auto;
	scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none;
  position: relative;
}
/* Chrome/Safari/Edge (WebKit/Blink) */
body.single-product .woo-message-info-list::-webkit-scrollbar {
  width: 0;
  height: 0;  /* also hides horizontal if any */
}

/* Optional fade at the bottom */
body.single-product .woocommerce-message .woo-message-wrapper .woo-message-list li .details .info::after {
  content: "";
  position: absolute;
	bottom: 0;
	left: 0;
	height: 1em;
	width: 100%;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, var(--bg, #fff));
}
@media(max-width:768px) {
	body.single-product .woocommerce-message .woo-message-wrapper {
		padding: 25px 13px;
	}
	body.single-product .woocommerce-message .woo-message-wrapper .woo-message-list {
		padding-right: 0;
		margin-bottom: 0;
	}
	body.single-product .woocommerce-message .woo-message-wrapper .woo-message-list > li {
		padding: 0 10px;
	}
	body.single-product .woocommerce-message .woo-message-wrapper .woo-message-list > li > .flex-row {
		align-items: center;
	}
	body.single-product .woocommerce-message .woo-message-wrapper .woo-message-list img {
		margin-bottom: 10px;
	}
	body.single-product .woocommerce-message .woo-message-wrapper .woo-message-list li .details {
		padding-left: 0;
	}
	body.single-product .woocommerce-message .woo-message-wrapper .woo-message-list li > .flex-row .info {
		display: none;
	}
	body.single-product .woocommerce-message .woo-message-wrapper .woo-message-list li .title-section,
	body.single-product .woocommerce-message .woo-message-wrapper .woo-message-text {
		text-align: center;
	}
	body.single-product .woocommerce-message .woo-message-wrapper p.continue {
		font-size: 12px;
	}
	body.single-product .woocommerce-message .woo-message-wrapper .navigation .button {
		font-size: 14px;
		padding: 10px 15px;
	}
}

.woo-custom-message a,
.cere_oferta_cart .woocommerce-message .woo-message-wrapper a,
.product_page .woocommerce-message .woo-message-wrapper a,
.woocommerce-message .woo-message-wrapper a{
	color:#fff;
	text-decoration:underline;
	padding: 0;
	margin-left: 10px;
	font-weight: bold;
}
.woocommerce-message .woo-message-wrapper .navigation .button:first-of-type {
	margin-left: 0;
}
.woocommerce-error{
	display: flex;
	flex-direction: column-reverse;
}
/* Slick dots */
.slick-dots {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 1rem 0;
  list-style-type: none;
}
.slick-dots li {
  margin: 4px!important;
	max-width:unset;
	padding: 0 !important;
	width: 10px !important;
  height: 10px !important;
}
.slick-dots button {
  display: block!important;
  width: 9px!important;
  height: 9px!important;
  padding: 0!important;
  border: none!important;
  border-radius: 100%!important;
  background-color: #fff!important;
	border:1px solid var(--green)!important;
  text-indent: -9999px!important;
	transition:.4s;
}
.slick-dots button:before{
	display:none!important;
}
.slick-dots li.slick-active button {
  background-color: var(--green)!important;
	border:1px solid var(--green)!important;
}
/* Pagination */
.ws-navigation{
	display: block;
	width: 100%;
	text-align: center;
}
.ws-navigation ul{
	margin: 0;
	list-style: none;
}
.ws-navigation ul li{
	display: inline-block;
	padding: 5px 8px;
}
.ws-navigation ul li a{
	display: inline-block;
	text-decoration: none;
	line-height: 1;
	position: relative;
	color:var(--black);
}
.ws-navigation ul li a:before{
	display: block;
	content:'';
	position: absolute;
	width: 22px;
	height: 22px;
	top:50%;
	left: 50%;
	transform:translate(-50%, -50%);
	background-color: var(--green);
	opacity: 0;
	border-radius:4px;
	z-index: -1;
	transition: .4s;
}
.ws-navigation ul li a:hover svg{
	color:var(--green);
}
.ws-navigation ul li.next a:before, .ws-navigation ul li.last a:before{
	display:none;
}
.ws-navigation ul li.next svg, .ws-navigation ul li.last svg{
	transform:rotate(-180deg)
}
.ws-navigation ul li.active a:before,
.ws-navigation ul li a:hover:before{
	opacity: 1;
}
.ws-navigation ul li.active a,
.ws-navigation ul li a:hover{
	color: #fff;
}
/* Breadcrumbs */
.woocommerce-breadcrumb .breadcrumb-separator {
  color: var(--dark-blue);
	padding: 0 8px!important;
}
.woocommerce-breadcrumb .breadcrumb-separator:after {
  color: var(--dark-blue)!important;
  font-weight: normal!important;
  opacity: 1!important
}
.woocommerce-breadcrumb a:first-of-type {
  text-indent: -9999px;
  color: transparent;
  position: relative;
  width: 20px;
  display: inline-block;
  vertical-align: middle
}
.woocommerce-breadcrumb a:first-of-type:before {
  content: "";
  background-image: url('../img/home_icon.svg');
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  display: inline-block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0
}
@media(max-width: 1780px) {
	.woocommerce-breadcrumb a:first-of-type:before {
	  width: 17px;
	  height: 17px
	}
	.woocommerce-breadcrumb a:first-of-type {
	  width: 17px;
		height: 22px;
	}
}
@media(max-width: 1200px) {
  .woocommerce-breadcrumb a:first-of-type {
    width: 14px
  }
	.woocommerce-breadcrumb{
		font-size: 14px;
	}
}
/* Single Article Settings */
.share-article ul, .article-tags ul{
	margin: 0;
	padding: 0;
	display: block;
}
.share-article ul{
	margin-top:10px;
}
.share-article ul li, .article-tags ul li{
	list-style: none;
	display: inline-block;
	margin-bottom: 0;
}
.share-article ul li a{
	vertical-align: middle;
	line-height: 0;
}
.share-article ul li a svg{
  --share-post:var(--black);
}
.share-article ul li a:hover svg{
  --share-post:var(--green);
}
.article-tags li a{
	padding: 8px 12px;
	margin:5px;
	padding-bottom: 7px;
	display: block;
	border:1px solid #E5E5E5;
	text-decoration: none;
  font-size:14px;
	line-height: 16px;
	color:#6C757D;
	font-weight: bold;
	border-radius: 5px;
	text-transform: uppercase;
}
.article-tags li a:hover{
	background-color: var(--blue);
  border:1px solid var(--blue);
	color:#fff;
}
.category_label {
	display: inline-block;
	border-radius:16px;
	background-color:#D7E2FF;
	color:var(--blue);
	font-size:14px;
	line-height:16px;
	padding: 6px 10px;
	font-weight: 600;
	z-index: 1;
}
/* Post previews */
.post-preview a{
	display: block;
}
.post-preview .inner{
	position:relative;
}
.post-preview .inner .category_label{
	position:absolute;
	top:20px;
	left:20px;
}
.post-preview h3{
	display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
	color:var(--black);
	transition:.4s;
}
.post-preview .read-more{
	font-weight:500;
	color:var(--red);
	transition:.4s;
}
.post-preview a:hover .read-more{
	color:var(--orange);
}
.post-preview figure{
	width: 100%;
	position: relative;
	overflow:hidden;
	border-radius:10px;
}
.post-preview figure img{
	transition:.4s;
}
.post-preview p{
	color:var(--grey);
	font-size:16px;
}
.post-preview a:hover h3{
	color:var(--blue);
}
.post-preview a:hover figure img{
	transform:scale(1.2);
}
/**/
.post-preview-portrait{
	text-align: left;
}
.post-preview-portrait figure{
	aspect-ratio: 2/1;
}
.post-preview-portrait h3,
.post-preview-portrait h2{
	font-size: 24px;
	line-height: 32px;
	margin:10px 0;
}
.post-preview-portrait h3,
.post-preview-portrait h2{
	min-height: 63px;
	display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-preview-portrait .inner-content p:not(.read-more){
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom:10px;
}
.post-preview-portrait time{
	margin-top:30px;
	display: block;
}
@media(max-width:1200px){
	.post-preview-portrait h3{
		font-size: 20px;
		line-height: 30px;
	}
	.post-preview-portrait h3{
		min-height: 60px;
	}
}
@media(max-width:850px){
	.post-preview-portrait h3{
		font-size: 18px;
		line-height: 26px;
	}
	.post-preview-portrait h3{
		min-height: 53px;
	}
}
@media(max-width:767px){
  .post-preview-portrait h3{
		min-height: auto;
	}
	.post-preview .read-more{
		font-size: 14px;
		line-height: 16px;
	}
}
/****/
.post-preview-footer h3{
	text-transform:unset;
	color:#fff;
	font-weight:600;
	font-size: 16px;
  line-height: 22px;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-preview-footer a:hover h3{
	color:var(--green);
}
/****/
.post-preview-project .inner{
	width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: end;
	transition:.4s;
}
.post-preview-project .featured{
	position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
	transition:.4s;
}
.post-preview-project .featured:before{
	display: block;
	content:'';
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color:rgba(0,0,0,0.4);
	z-index: 1;
	border-radius:10px;
	transition:.4s;
}
.post-preview-project a:hover .featured:before{
	border-radius:0;
}
.post-preview-project .category_label,
.post-preview-project .inner-content{
	z-index: 2;
}
.post-preview-project .inner-content{
	position: relative;
	padding: 20px;
}
.post-preview-project .inner-content h3,
.post-preview-project .inner-content p{
	color:#fff;
	transition: .4s;
}
.post-preview-project .inner-content h3{
	font-size: 30px;
	margin-bottom:10px;
	line-height: 1.1;
}
.post-preview-project .inner-content p{
	display: flex;
	flex-direction: row;
	align-items: center;
}
.post-preview-project .category_label{
	background-color:#fff;
}
.post-preview-project .inner-content svg{
	transition: .4s;
	margin-left: 5px;
	--arrow-color:#fff;
}
.post-preview-project a:hover .inner{
	border: 6px solid var(--green);
	border-radius:10px;
}
.post-preview-project a:hover .featured{
	border-radius:0;
}
.post-preview-project a:hover .inner-content p,
.post-preview-project a:hover .inner-content h3{
	color:var(--green);
}
.post-preview-project a:hover .inner-content svg{
	--arrow-color: var(--green);
	margin-left: 12px;
}
@media(max-width:767px){
	.post-preview-project .inner{
		aspect-ratio: 1.2/1;
	}
}
/* Animation*/
@keyframes opacityPulse {
  from {
    opacity: 0;
  }
  to{
    opacity: 1;
  }
}
.opacity-pulse{
	animation-name: opacityPulse;
  animation-duration: 2s;
  animation-iteration-count: infinite;
	animation-direction: alternate;
}
.line-vector{
	z-index: -1;
	transform:scale(0.9);
}
@media(max-width:850px){
	.line-vector{
		transform:scale(0.7);
	}
}
@media(max-width:767px){
	.line-vector{
		transform:scale(0.4);
	}
}
.green-text {
	color: var(--green);
}
.grecaptcha-badge{
	display: none!important;
}
