@charset "UTF-8";

/*
Theme Name: Pagoruol Theme
Author: Tidiweb Solutions
Author URI: https://www.tidiweb.com
Version: 1.0
Year: 2025
*/


/* Variables */
:root {

	--half-content-width: 512px;
	--strict-content-width: 782px;
	--std-content-width: 1024px;
	--large-content-width: 1280px;
	--wide-content-width: 1920px;
	

	--very-small-spacing: 5px;
	--small-spacing: 10px;
	--std-spacing: 20px;
	--double-spacing: 40px;
	--triple-spacing: 60px;
	--large-spacing: 80px;


	--std-icon-size: 28px;
	--menu-icon-size: 32px;
	--social-icon-size: 24px;

	--circle-diameter: 128px;


	/* Color palette */

	--white: #fff;
	--black: #000;

	--grey: #CCD2DB;
	--mid-grey: #8D98A6;
	--light-grey: #E5E9ED;

	--gold: #DC9632;
	/* 166,100,29 */
	
	--blue: #003272;
	--light-blue: #EDEFF8;
	--dark-blue: #141E28;
	/* 20,30,40 */


	/* Font Size */
	--font-size-xxxxs: 0.5rem;
	--font-size-xxxs: 0.58rem;
	--font-size-xxs: 0.65rem;
	--font-size-xsm: 0.7rem;
	--font-size-xs: 0.75rem;
	--font-size-sm: 0.88rem;
	--font-size-normal: 1rem;
	--font-size-md: 1.2rem;
	--font-size-lg: 1.5rem;
	--font-size-xl: 1.8rem;
	--font-size-xxl: 2.3rem;
	--font-size-xxxl: 3.2rem;
	--font-size-xxxxl: 4rem;
	
	--letter-spacing: normal;

	/* Line Height */
	--normal-line-height: 100%;
	--title-line-height: 120%;
	--medium-line-height: 135%;
	--high-line-height: 150%;
	--very-high-line-height: 180%;
	--double-line-height: 200%;
}

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	-webkit-text-size-adjust: 100%;
	box-sizing: border-box;
	font-size: 18px;
	color: var(--primary-text-color);
	line-height: var(--high-line-height);
}


.my-account-page{
    background-color: #f8f2eb;
}


/**
 * Reset specific elements to make them easier to style in other contexts.
 */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
form,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
	padding: 0;
	margin: 0;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}


.flex{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	-webkit-box-orient: horizontal;
	-moz-box-orient: horizontal;
	-webkit-box-direction: normal;
	-moz-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;

	flex-wrap: wrap;
}


body{
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	line-height: 150%;
	background-color: #F8F2EB;
}

*{
	box-sizing: border-box;
}

h1,h2,h3,h4{
	line-height: normal;
}

h1{ font-size: var(--font-size-xl); }
h2{ font-size: var(--font-size-lg); }
h3{ font-size: var(--font-size-md); }
h4{ font-size: var(--font-size-nd); }

@media screen and (min-width: 782px) {
	h1{ font-size: var(--font-size-xxl); }
	h2{ font-size: var(--font-size-xl); }
	h3{ font-size: var(--font-size-lg); }
	h4{ font-size: var(--font-size-md); }
}

@media screen and (min-width: 1024px) {
	h1{ font-size: var(--font-size-xxxl); }
	h2{ font-size: var(--font-size-xxl); }
}

.entry-title-wrapper{
}

.entry-content h3,
.entry-content h4{
	font-weight: normal;
	line-height: 135%;
}


.borded-title {
  display: flex;
  align-items: center; /* centra verticalmente il testo con le linee */
  text-align: center;
  font-weight: 500;
  max-width: var(--large-content-width);
  margin: var(--double-spacing) auto 0 auto;
}

.borded-title::before,
.borded-title::after {
  content: "";
  flex: 1; /* fa sì che le linee si estendano occupando lo spazio disponibile */
  height: 1px; /* spessore della linea */
  background-color: var(--gold);
  margin: 0 var(--double-spacing); /* distanza tra il testo e le linee */
}



.uppercase{
	text-transform: uppercase;
}

ul{
	margin: 0;
	padding: 0;
}

ul,
ol{
	list-style-position: inside;
}

.empty-list{
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.circle-list{
	list-style-type: circle;
}

.horizontal-list{
	list-style-type: none;
}

.horizontal-list li{
	display: inline-block;
	vertical-align: top;
	margin: var(--small-spacing) var(--small-spacing);
}


.numbered-list{
    list-style: none;
    counter-reset: list-counter;
    padding-left: 0;
    margin-top: var(--std-spacing);
}

.numbered-list li{
    counter-increment: list-counter;
    position: relative;
    padding-left: var(--double-spacing);
    margin-bottom: var(--small-spacing);
}

.numbered-list li::before{
	content: counter(list-counter);
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	color: white;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: var(--font-size-sm);
}

.indented-text{
	padding-left: var(--double-spacing);
}




a{
	text-decoration:none;
}

a:hover{
	cursor: pointer;
}

.clear{ clear:both; }

.alignLeft{ text-align: left; }
.alignRight{ text-align: right; }
.alignCenter{ text-align: center; }
.justified{ text-align:justify; }


.light{ font-weight: 300; }
.normal{ font-weight: 400; }
.medium{ font-weight: 500; }



/**
* TRANSITIONS
*/


h1,h2,h3,h4{
	-webkit-transition: font-size 0.3s ease-in-out;
	-moz-transition: font-size 0.3s ease-in-out;
	-ms-transition: font-size 0.3s ease-in-out;
	-o-transition: font-size 0.3s ease-in-out;
	transition: font-size 0.3s ease-in-out;
}


.home-header,
.site-header,
.half-header{
	-webkit-transition: height 0.5s ease-in-out;
	-moz-transition: height 0.5s ease-in-out;
	-ms-transition: height 0.5s ease-in-out;
	-o-transition: height 0.5s ease-in-out;
	transition: height 0.5s ease-in-out;
}


#header-logo img{
	-webkit-transition: width 0.5s ease-in-out;
	-moz-transition: width 0.5s ease-in-out;
	-ms-transition: width 0.5s ease-in-out;
	-o-transition: width 0.5s ease-in-out;
	transition: width 0.5s ease-in-out;
}


.button a{
	-webkit-transition: background-color 0.3s ease-in-out;
	-moz-transition: background-color 0.3s ease-in-out;
	-ms-transition: background-color 0.3s ease-in-out;
	-o-transition: background-color 0.3s ease-in-out;
	transition: background-color 0.3s ease-in-out;
}

#bottom-bar #telefono-unico-wrapper{
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.site-footer a{
	-webkit-transition: color 0.3s ease-in-out;
	-moz-transition: color 0.3s ease-in-out;
	-ms-transition: color 0.3s ease-in-out;
	-o-transition: color 0.3s ease-in-out;
	transition: color 0.3s ease-in-out;
}



/**
* Gradients
*/

.has-black-to-dark-blue-gradient-background{
	background: rgb(0,0,0);
	background: -moz-linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(32,33,79,1) 60%);
	background: -webkit-linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(32,33,79,1) 60%);
	background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(32,33,79,1) 60%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#20214f",GradientType=1); 
}

.transparent-to-grey,
.has-transparent-to-grey-gradient-background{
	background: #CCD2DB;
	background: -webkit-linear-gradient(270deg, rgba(204, 210, 219, 1) 0%, rgba(204, 210, 219, 0) 100%);
	background: -moz-linear-gradient(270deg, rgba(204, 210, 219, 1) 0%, rgba(204, 210, 219, 0) 100%);
	background: linear-gradient(270deg, rgba(204, 210, 219, 1) 0%, rgba(204, 210, 219, 0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#CCD2DB", endColorstr="#CCD2DB", GradientType=1);
}


/**
 * Title & Text colors
 */

.has-white-color{
	color: var(--white);
}

.has-black-color{
	color: var(--black);
}



/**
* Buttons
*/
.button a{
	text-align: center;
	font-size: var(--font-size-sm);
	padding: var(--small-spacing) var(--std-spacing);
	display: inline-block;
	margin: var(--std-spacing) auto;
	border: 1px solid var(--gold);
	color: var(--gold);
}

.button a:hover{
	background-color: var(--blue);
	color: var(--white);
}


.plus-button a,
.email-button a,
.gold-button a,
.open-contact-button{
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--std-spacing) var(--double-spacing);
  border-radius: var(--double-spacing);
  font-size: var(--font-size-sm);
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.plus-button a{
  border: 1px solid rgba(255,255,255,0.6);
  background: rgba(20,30,40,0.8);
	color: var(--white);
}

.email-button a{
  border: 1px solid rgba(20,30,40,0.8);;
  background: transparent;
	color: var(--white);
}

.gold-button a{
  border: 1px solid rgba(220,150,50,0.6);
  background: transparent;
	color: var(--gold);
}

.open-contact-button{	
  border: 1px solid rgba(255,255,255,0.6);
  background: transparent;
}

.gold-button a::after,
.plus-button a::after,
.email-button a::after,
.open-contact-button::after{
  content: "+";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 17px;
  font-weight: 400;
  margin-left: var(--std-spacing);
  transition: all 0.3s ease;
}

.plus-button a::after,
.email-button a::after{
  background: black;
}

.gold-button a::after{
	background: var(--gold);
  color: var(--white);
}

.email-button a::after{
	color: var(--white) !important;
}

.open-contact-button::after{
	background: var(--gold);
  color: var(--white);
}

.open-contact-button:hover::after {
  background: var(--black);
  color: white;
}

.plus-button a:hover {
  background-color: rgba(255,255,255,0.25);
}

.plus-button a:hover::after {
  background: white;
  color: black;
}

.email-button a:hover{
  background-color: rgba(220,150,50,0.1);	
}

.email-button a:hover::after {
  background: var(--gold);
  color: black;
}

.gold-button a:hover{
  background-color: rgba(220,150,50,0.5);	
}

.gold-button a:hover::after {
  background: var(--gold);
  color: white;
}




/* FORM di CONTATTO */
.contact-us-wrapper .frm_style_stile-formidable.with_frm_style .form-field{
	margin-bottom: 5px !important;
}

@media screen and (min-width: 1024px) {
	.contact-us-wrapper .frm_style_stile-formidable.with_frm_style .form-field{
		margin-bottom: 12px !important;
	}
}

/* PAGINAZIONE ARTICOLI */


.post-navigation{
	margin: 50px 0;
}

.post-navigation .nav-links .nav-previous,
.post-navigation .nav-links .nav-next{
	width: 45%;
	padding: var(--std-spacing) var(--double-spacing);
	border: 1px dashed var(--bittersweet);

	-webkit-border-radius: var(--triple-spacing);
	-moz-border-radius: var(--triple-spacing);
	border-radius: var(--triple-spacing);
}

.post-navigation .nav-links .nav-previous{
	margin-right: 4%;
	text-align: right;
}


.post-navigation .nav-links .nav-next{
	margin-left: 4%;
	text-align: left;
}

.post-navigation .nav-links h4{
	margin-bottom: 0;
	font-size: var(--font-size-xs);
	text-transform: uppercase;
	color: var(--blue);
	line-height: 150%;
}

.post-navigation .nav-links h4:hover{
	color: var(--wheat);
}

.post-navigation .nav-links p{
	font-size: var(--font-size-xs);
	margin-top: var(--very-small-spacing);
	line-height: 135%;
}

.post-navigation .nav-links .nav-link-content,
.post-navigation .nav-links .nav-link-image{
	display: inline-block;
	vertical-align: middle;
}

.post-navigation .nav-links .nav-link-image{
	display: none;
	width: var(--circle-diameter);
	height: var(--circle-diameter);
	background-position: center;
	background-size: cover;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}


.post-navigation .nav-links .nav-permalink{
	font-size: var(--font-size-xs);
	color: var(--gold);
}

.post-navigation .nav-links .nav-permalink:hover{
	color: var(--wheat);
}

@media screen and (min-width: 1024px) {

	.post-navigation .nav-links .nav-link-image{
		display: inline-block;
	}

	.post-navigation .nav-links .nav-previous .nav-link-content{
		border-right: 1px solid var(--gold);
		margin-right: var(--std-spacing);
		padding-right: var(--std-spacing);
	}

	.post-navigation .nav-links .nav-next .nav-link-content{
		border-left: 1px solid var(--gold);
		margin-left: var(--std-spacing);
		padding-left: var(--std-spacing);
	}

	.post-navigation .nav-links .nav-link-content{
		width: calc(100% - 155px);
	}
}



/***
* TOPBAR
*/

.site-topbar{
	position: fixed;
	width: 100%;
	text-align: center;
	padding: 0;
	z-index: 1000;
	top: 0;
	left: 0;
	
	background-color: var(--gold);
	background: rgb(20,30,40) transparent;
	background: rgba(20,30,40, 0.85);
}

.site-topbar-inner{
	margin: 0 auto;
	max-width: var(--std-content-width);
	padding: var(--small-spacing) var(--std-spacing);
}


.site-topbar-inner #topbar-logo,
.site-topbar-inner .main-menu{
	display: inline-block;
	vertical-align: middle;
}

.site-topbar-inner #topbar-logo img{
	display: block;
	width: 24px;
	height: auto;
}

.site-topbar-inner #topbar-logo .desktop{
	display: none;
}

@media screen and (min-width: 782px) {
	.site-topbar-inner #topbar-logo .mobile{ display: none; }
	.site-topbar-inner #topbar-logo .desktop{ display: block; width: 84px; }
}



.site-topbar-inner .main-menu{
	text-align: center;
}



/**
 * BOTTOM BAR
 */

#bottom-bar{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
}

#bottom-bar #telefono-unico-wrapper{
	background-color: var(--blue);
	color: var(--white);
	font-size: var(--font-size-sm);
	line-height: 120%;
	display: block;
	width: 170px;
	margin: 0 var(--double-spacing) var(--very-small-spacing) auto;
	padding: 4px var(--small-spacing);
	border-radius: var(--std-spacing);
}

#bottom-bar #telefono-unico-wrapper:hover{
	color: var(--blue);
	background-color: var(--light-blue);
	cursor: pointer;
}

#bottom-bar #telefono-unico-wrapper:hover a{
	color: var(--blue);
}

#bottom-bar #telefono-unico-wrapper a{
	color: var(--light-blue);
}

#bottom-bar .row-sedi-italia{
	border-top: 1px solid var(--light-blue);
	background-color: var(--gold);
}

#bottom-bar .row-sedi-estero{
	background-color: var(--blue);	
}

#bottom-bar .row-sedi-italia,
#bottom-bar .row-sedi-estero{
	color: var(--white);
	margin-bottom: 0;
	padding: var(--very-small-spacing);
	gap: 0 !important;
}

#bottom-bar .row-sedi-italia p{
	display: none;
	font-size: var(--font-size-xs);
}

#bottom-bar .row-sedi-italia h5,
#bottom-bar .row-sedi-estero h6{
	text-transform: uppercase;
	line-height: normal;
}

#bottom-bar .row-sedi-italia h5{
	font-size: var(--font-size-xxs);
}


@media screen and (min-width: 782px) {

	#bottom-bar .row-sedi-italia h5{
		font-size: var(--font-size-xs);
	}

	#bottom-bar .row-sedi-italia p{
		display: block;
	}
}

@media screen and (min-width: 1024px) {

	#bottom-bar .row-sedi-italia h5{
		font-size: var(--font-size-sm);
	}
}



/**
 * SOCIAL BAR
 */

.social-bar-row{
	padding: var(--std-spacing);
	margin: 0 auto;
	text-align: center;
	max-width: 1024px;
}

.social-bar-row h3{
	font-weight: normal;
}

.social-bar-row img{
	margin: 0 var(--std-spacing);
}





/***
* MENU DESKTOP
*/

.site-topbar-inner .main-menu{
	/* display: none; */
	list-style-type:none;
	position: unset;
	top: unset;
	left: unset;
	height: auto;
	z-index: 2000;
}

.site-topbar-inner .main-menu li{
	display: inline-block;
	vertical-align: middle;
}

.site-topbar-inner .main-menu li a{
	font-size: var(--font-size-xs);
	font-weight: 600;
	color: var(--white);
	margin: 0 4px;
	display: block;
	text-align: center;
	text-transform: uppercase;
	position: relative;
  text-decoration: none;
}

.site-topbar-inner .main-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0; /* posizione sotto il testo */
  width: 0;
  height: 1px; /* spessore della linea */
  background-color: currentColor; /* stesso colore del testo */
  transition: width 0.3s ease; /* velocità e tipo di animazione */
}

.site-topbar-inner .main-menu li a:hover::after {
  width: 100%;
}

.site-topbar-inner .main-menu li.current_page_item a,
.site-topbar-inner .main-menu li.current-page-parent a,
.site-topbar-inner .main-menu li.current_page_item a,
.site-topbar-inner .main-menu li .sub-menu li.current_page_item a{
	font-weight: bold;
}


.site-topbar-inner .main-menu .sub-menu {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transform-origin: top;
    transform: rotateX(-90deg);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out, visibility 0.3s;
}


.site-topbar-inner .main-menu li.language-menu .sub-menu {
	text-align: left;
	width: 50px;
}

.site-topbar-inner .main-menu li.language-menu .sub-menu li:first-child{
	display: none;
}



.main-menu li.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: rotateX(0deg);
}

.site-topbar-inner .main-menu li .sub-menu a{
	font-size: var(--font-size-xxxxs);
	color: var(--white);
}

.site-topbar-inner .main-menu li .sub-menu a:hover{
	color: var(--orange);
}


@media screen and (max-width: 1024px) {
	#home-genesi-section h2{
		font-size: 2.2em !important;
	}

	#home-genesi-section p{
		font-size: 1.4em !important;
	}

	.yacht-page-intro-section h2.has-xxl-font-size{ 
		font-size: 1.8em !important;
	}
	
	.yacht-page-intro-section p{
		font-size: 1.2em !important;
	}
}


/***
* MENU MOBILE
*/

.open-mobile-menu-icon{
	display: block;
	position: absolute;
	top: 15px;
	right: var(--double-spacing);
}

.open-mobile-menu-icon img{
	width: var(--menu-icon-size);
	height: calc( (var(--menu-icon-size) / 4 ) * 3) ;
}

.mobile-menu{
	display: none;
	position: fixed;
	width: 100%;
	height: 100vh;
	z-index: 2000;
	top: 0;
	left: 0;
}


.mobile-menu ul{
	list-style-type: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 4000;  
	display: flex;
	flex-direction: column;
	justify-content: center;

	background-color: var(--gold);
	background: rgb(37, 52, 65) transparent;
	background: rgba(37, 52, 65, 0.9);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#DD253441, endColorstr=#DD253441);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#DD253441, endColorstr=#DD253441)";
}

.mobile-menu ul li a{
	font-size: var(--font-size-xs);
	font-weight: 500;
	color: var(--white);
	margin: 0 auto var(--small-spacing) auto;
	display: block;
	padding: 0 var(--very-small-spacing);
	text-align: center;
	text-transform: uppercase;
}


.mobile-menu li a:hover,
.mobile-menu li.current_page_item a,
.mobile-menu li.current-page-parent a,
.mobile-menu li.current_page_item a,
.mobile-menu li .sub-menu li.current_page_item a{
	color: var(--light-blue);
}


.mobile-menu .close-mobile-menu-icon{
	text-align: right;
	margin: 0 var(--std-spacing) var(--std-spacing) auto;
	position: absolute;
	top: var(--double-spacing);
	right: var(--double-spacing);
}

.mobile-menu .close-mobile-menu-icon a{
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	border: 1px solid var(--white);
	padding: 5px;
	width: var(--double-spacing);
	height: var(--double-spacing);
	text-align: right;
	color: var(--white);
	display: inline-block;
	text-align: center;
}



.mobile-menu ul li ol.language-menu{
	list-style-type: none;
	margin-top: var(--std-spacing);
}

.mobile-menu ul li ol.language-menu li{
	display: inline-block;
	width: 30px;
}


@media screen and (min-width: 1024px) {

	.site-topbar-inner #header-logo{
		margin-left: var(--large-spacing);
	}

	.site-topbar-inner .main-menu{
		display: inline-block;
	}

	.mobile-menu,	
	.open-mobile-menu-icon{
		display: none;
	}

	.site-topbar-inner #header-logo img{
		width: 128px;
	}

	.site-topbar-inner .main-menu li a{
		margin: 0 var(--small-spacing);
	}

}





/***
* HEADER
*/


/*
.home-header,
.site-header,
.half-header{
	overflow: hidden;
	position: relative;
	background-size: cover;
	background-position: center;
}


.home-header{ height: 640px; }
.site-header{ height: 360px; }
.half-header{ height: 360px; }

@media screen and (min-width: 512px) {
	.home-header{ height: 640px; }
	.site-header{ height: 360px; }
	.half-header{ height: 360px; }
}

@media screen and (min-width: 782px) {
	.home-header{ height: 768px; }
	.site-header{ height: 512px; }
	.half-header{ height: 400px; }
}

@media screen and (min-width: 1024px) {
	.home-header{ height: 768px; }
	.site-header{ height: 640px; }
	.half-header{ height: 440px; }
}

@media screen and (min-width: 1280px) {
	.home-header{ height: 840px; }
	.site-header{ height: 720px; }
	.half-header{ height: 512px; }
}

@media screen and (min-width: 1600px) {
	.home-header{ height: 900px; }
	.site-header{ height: 780px; }
	.half-header{ height: 640px; }
}

@media screen and (min-width: 1920px) {
	.home-header{ height: 1024px; }
	.site-header{ height: 840px; }
	.half-header{ height: 640px; }
}
*/


@media screen and (min-width: 1280px) {
}


.header-logo img{
	max-width: 320px;
	padding-top: var(--triple-spacing);
}



/***
* CONTENT
*/

.homepage-content h1{
	margin-bottom: var(--double-spacing);
}

#home-intro-section h2{
	text-transform: uppercase;
	font-size: var(--font-size-lg);
	font-weight: 500;
	line-height: 150%;
}

.site-header h1{
	color: var(--gold);
}

.site-header{	
	margin: var(--large-spacing) auto 0 auto;	
}

.site-content{
	margin: var(--small-spacing) auto var(--std-spacing) auto;	
}

.site-header,
.site-content{
	max-width: var(--large-content-width);
	padding: var(--std-spacing);
}

.entry-content p{
	line-height: 135%;
	margin-bottom: var(--std-spacing);
}

.entry-content figure{
	margin-bottom: 0;
}

.entry-content h2{
	font-weight: 300;
	margin-bottom: var(--std-spacing);
	margin-top: var(--std-spacing);
}

.entry-content h2 strong{
	font-weight: bold;
}

.entry-content .has-background h2{
}

.entry-content h3{
	margin-top: var(--std-spacing);
	margin-bottom: var(--std-spacing);
}


.site section{
	padding: var(--std-spacing) var(--std-spacing);
}

.site section h2{
	margin-bottom: var(--double-spacing);
}


#come-funziona-section{
}

#come-funziona-section h2{
	margin-top: 0;
}

#come-funziona-section .wp-block-column{
	border-radius: var(--double-spacing);
	background-color: var(--white);
	overflow: hidden;
	text-align: center;
}

#come-funziona-section h4{
	font-weight: 400;
	text-transform: uppercase;
	margin-top: var(--std-spacing);
	margin-bottom: var(--small-spacing);
	font-size: var(--font-size-normal);
}

#come-funziona-section p{
	font-size: var(--font-size-sm);
}

#come-funziona-section h4,
#come-funziona-section p{
	padding-left: var(--std-spacing);
	padding-right: var(--std-spacing);
	padding-bottom: var(--std-spacing);
}


#servizi-section .wp-block-column{
	background-color: var(--white);
	border-radius: var(--double-spacing);
	padding: var(--std-spacing);
}


.wp-block-columns{
	gap: var(--small-spacing);
	margin-bottom: 0;
}

#aree-di-competenza-section .wp-block-columns p{
	margin-bottom: 0;
}

#aree-di-competenza-section p{
	line-height: 200%;
}


@media screen and (min-width: 782px) {
	.site section{
		padding: var(--double-spacing) var(--std-spacing);
	}

	.wp-block-columns{
		gap: var(--double-spacing);
	}
}


#grid-perche-scegliere-pagoruol{
	background-color:#fff;
	background: rgba(255, 255, 255, 0.85);
	border-radius: var(--double-spacing);
	overflow: hidden;
	margin: var(--double-spacing) auto;
}

#grid-perche-scegliere-pagoruol .wp-block-columns{
	gap: 0;
}

#grid-perche-scegliere-pagoruol .wp-block-column{
	padding: var(--double-spacing) var(--double-spacing);
	border: 1px solid #ccc;
}

#grid-perche-scegliere-pagoruol .wp-block-column h3{
	font-size: var(--font-size-xl);
	font-weight: normal;
	margin-bottom: 0;
	margin-top: 0;
}

#grid-perche-scegliere-pagoruol .wp-block-column h4{
	font-size: var(--font-size-normal);
}


#normativa-di-riferimento-section{
	display: none;
}

#normativa-di-riferimento-section img{
	border-radius: var(--double-spacing);
}



/***
 * Timeline
 */
#istruzioni-piattaforma .timeline-content .story-content p{
	line-height: 150%;
	font-size: var(--font-size-normal);
	margin-bottom: var(--small-spacing);
}

#istruzioni-piattaforma .timeline-content .story-content ul{
	line-height: 150%;
	font-size: var(--font-size-normal);
	margin: var(--small-spacing) 0;
}

#istruzioni-piattaforma .timeline-content .story-content ul li{
	margin-bottom: var(--small-spacing);
}

#istruzioni-piattaforma .timeline-block-time .story-time p{
	display: inline-block;
	width: 64px;
	height: 64px;
	line-height: 64px;
	border-radius: 50%;
	background-color: var(--gold);
	color: var(--white);
	text-align: center;
	font-size: var(--font-size-lg);
	font-weight: bold;
}


/***
* CONTATTACI SECTION
*/

.close-contact-us-wrapper{
	font-weight: 500;
}

.close-contact-us-wrapper:hover{
	cursor: pointer;
	color: var(--light-grey);
}


.contact-us-section h2{
	text-transform: uppercase;
	font-size: var(--font-size-lg);
	margin: 0 auto var(--double-spacing) auto;
	display: block;
	max-width: var(--std-content-width);
}


.contact-us-wrapper{
	display: none;
	background-image: url("images/contact-us-background-image.jpg");
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
	
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 3000;
	left: 0;
	top: 0;
	overflow-y: scroll;
}

.contact-us-wrapper .wp-block-columns{
	max-width: 1280px;
	margin: 0 auto;
	/* height: 100vh; */
	height: auto;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	padding: var(--double-spacing);
	opacity: 0.93;
}

.contact-us-wrapper figure{
	margin-bottom: 0;
}

.contact-us-wrapper figure img{
	max-width: 240px;
	height: auto;
}

.contact-us-wrapper .frm_forms{
	padding: var(--std-spacing);
	border-radius: var(--std-spacing);
	background-color: rgba(230,220,220,.8);
}

.contact-us-wrapper fieldset{	padding-bottom: 0 !important; }
.contact-us-wrapper .frm_button_submit{ margin-bottom: 0 !important; }


@media screen and (min-width: 782px) {
	.contact-us-wrapper{
		overflow-y: hidden;
	}
}




/***
* FOOTER
*/

.site-footer{
	color: var(--black);
}

.site-footer .wp-block-cover{
	padding: var(--std-spacing) var(--double-spacing);
}

.site-footer h2{
	font-size: var(--font-size-xxxxl);
}

.site-footer .footer-logo img{
	display: block;
	max-width: 120px;
	height: auto;
}

.site-footer ul{
	list-style-type: none;
}

.site-footer a{
	color: var(--black);
}

.site-footer a:hover{
	color: var(--gold);
}


/***
* COPYRIGHT
*/
.copyright{
	padding: var(--small-spacing) var(--std-spacing);
	background-color: var(--dark-blue);
	color: var(--white);
	font-size: var(--font-size-xs);
}
