@charset "UTF-8";

/*
Theme Name: Adigroup Theme
Author: Roncaglia Design
Author URI: https://www.studioroncaglia.com
Version: 1.0
Year: 2025
*/


/* Variables */
:root {

	--half-content-width: 512px;
	--strict-content-width: 782px;
	--inner-content-width: 1150px;
	--std-content-width: 1500px;
	--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;
	--dark-grey: #262626;


	/* Font Size */
	--font-size-xxxxs: 0.5rem;
	--font-size-xxxs: 0.58rem;
	--font-size-xxs: 0.65rem;
	--font-size-xs: 0.78rem;
	--font-size-sm: 0.88rem;
	--font-size-normal: 1rem;
	--font-size-md: 1.4rem;
	--font-size-lg: 1.6rem;
	--font-size-xl: 1.9rem;
	--font-size-xxl: 2.3rem;
	--font-size-xxxl: 3.2rem;

	--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);
}


@media screen and (min-width: 782px) {
	html{ font-size: 20px }
}

@media screen and (min-width: 1024px) {
	html{ font-size: 22px; }
}


/**
 * 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;
}


body{
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
}

*{
	box-sizing: border-box;
}


.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;
}




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); }
}


.bigtext{
	font-size: var(--font-size-md);
	font-weight: 600;
}

.entry-content p.bigtext{
	margin-bottom: var(--triple-spacing);
}


.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; }




/**
* 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;
}

/*
#topbar-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;
}
*/

#topbar-logo img,
.contattaci-button{
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.site-topbar-inner #open-menu-button{
	-webkit-transition: top 0.3s ease-in-out;
	-moz-transition: top 0.3s ease-in-out;
	-ms-transition: top 0.3s ease-in-out;
	-o-transition: top 0.3s ease-in-out;
	transition: top 0.3s ease-in-out;
}

#home-video{
	-webkit-transition: margin-top 0.3s ease-in-out;
	-moz-transition: margin-top 0.3s ease-in-out;
	-ms-transition: margin-top 0.3s ease-in-out;
	-o-transition: margin-top 0.3s ease-in-out;
	transition: margin-top 0.3s ease-in-out;
}

.contattaci-button:hover{
	cursor: pointer;
	transform: scale(1.03);
}



/**
* 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{
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	text-align: center;
	font-size: var(--font-size-normal);
	font-weight: bold;
	text-transform: uppercase;
	padding: var(--small-spacing) var(--std-spacing);
	display: inline-block;
	margin: var(--std-spacing) auto;
}

.button a:hover{
	filter: brightness(107%);
	-webkit-filter: brightness(107%);
}



/* 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(--dark-blue);
}

.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(--dark-blue);
		margin-right: var(--std-spacing);
		padding-right: var(--std-spacing);
	}

	.post-navigation .nav-links .nav-next .nav-link-content{
		border-left: 1px solid var(--dark-blue);
		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(--white);
	/*	
	background: rgb(255, 255, 255) transparent;
	background: rgba(255, 255, 255, 0.85);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#CCffffff, endColorstr=#CCffffff);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#CCffffff, endColorstr=#CCffffff)";
	*/
}

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


.site-topbar-inner #topbar-logo{
	max-width: 240px;
}

.site-topbar-inner #header-logo{
	margin-left: 0;
}

.site-topbar-inner #open-menu-button{
	position: absolute;
	right: var(--std-spacing);
	top: 43px;
}

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

.site-topbar-inner #open-menu-button{
	top: 37px;
}


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

	.site-topbar-inner #topbar-logo img{ width: 280px; display: inline-block; }
	.site-topbar-inner #open-menu-button{ top: 42px; }
}


@media screen and (min-width: 1024px) {
	.site-topbar-inner #topbar-logo img{ width: auto; }
	.site-topbar-inner #open-menu-button{ top: 47px; }
}




/***
* MENU (FULLSCREEN)
*/

.open-main-menu-icon{
	display: block;
	position: fixed;
	top: 32px;
	right: var(--double-spacing);
}

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

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





/**
 * MENU
 */

#main-menu-wrapper{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 4000;
	/* background-color: var(--black); */
	background: rgba(0,0,0,0.92);
}

.main-menu-wrapper-inner{
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100vh;
	max-width: 1500px;
	margin: 0 auto;
	position: relative;
}

.main-menu{
	display: block;
	width: fit-content;
	margin: 0 auto;
}

.main-menu li{
	list-style: none;
}

.main-menu li a{
	font-size: var(--font-size-xl);
	font-weight: 300;
	color: var(--white);
	margin: 0 auto var(--small-spacing) auto;
	display: block;
	padding: 30px var(--very-small-spacing);
	text-align: center;
	text-transform: uppercase;
	border-top: 1px solid transparent;
	border-bottom: 1px solid transparent;
}

.main-menu li a:hover{
	border-top: 1px solid var(--white);
	border-bottom: 1px solid var(--white);
}


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


.main-menu-wrapper-inner #close-menu-button{
	text-align: right;
	position: absolute;
	top: var(--double-spacing);
	right: var(--double-spacing);
	width: 100%;
}

.main-menu #close-menu-button 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;
}



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

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

}


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

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

}


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

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

	.site-topbar-inner .main-menu li a{
		font-size: var(--font-size-xxxs);
		padding: 0 var(--small-spacing);
	}

}


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

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




/***
* VIDEO
*/


#home-video{
	margin-top: 106px;
}

@media screen and (min-width: 782px) {
	#home-video{ margin-top: 122px; }
}

@media screen and (min-width: 1024px) {
	#home-video{ margin-top: 132px; }
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

.mute-btn {
	position: absolute;
	bottom: 10px;
	right: 10px;
	border: none;
	color: white;
	font-size: 24px;
	padding: 10px 15px;
	border-radius: 50%;
	cursor: pointer;

	/*
	background: rgba(0,0,0,0.5);
	transition: background 0.3s ease;
	*/
}

.mute-btn img{
	width: 20px;
	height: 20px;
}

.mute-btn:hover {
	/*
	background: rgba(0,0,0,0.8);
	*/
}

@media screen and (min-width: 782px) {
	.mute-btn{
		bottom: 20px;
		right: 20px;
	}

	.mute-btn img{
		width: 35px;
		height: 35px;
	}
}





/***
* HEADER
*/


.site-header{
	margin-top: 180px;
	text-align: center;
}

.site-header h1{
	margin-bottom: var(--double-spacing);
}



/*
.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; }
}
*/



/***
* CONTENT
*/

.entry-content section{
	padding: 30px var(--std-spacing) 60px var(--std-spacing);
}

.entry-content section figcaption{
	font-size: var(--font-size-xs);
	margin-left: -7px;
}

.site-footer .widget section{
	padding: 30px var(--std-spacing) 50px var(--std-spacing);
}

@media screen and (min-width: 1024px) {
	.entry-content section{
		padding: 60px var(--std-spacing) 120px var(--std-spacing);
	}

	.site-footer .widget section{
		padding: 60px var(--std-spacing) 100px var(--std-spacing);
	}
}




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

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

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

.wp-block-group.has-black-background-color{
	color: var(--white);
}

#a-chi-ci-rivolgiamo{
	background-image: url("images/section-3-background-pattern.jpg");
	background-repeat: repeat;
	background-position: center top;
	padding-top: 35px;
	padding-bottom: 135px;
}

#tipologie-clienti-section{
	margin-top: -75px;
	padding-top: 0;
}

#tipologie-clienti-section .wp-block-columns{
	margin-bottom: 100px;
}

#tipologie-clienti-section .wp-block-column{
	background-color: var(--white);
	padding-top: 15px;
	border-top-left-radius: 40px;
	border-top-right-radius: 40px;
}

#tipologie-clienti-section .wp-block-column h3{
	text-transform: uppercase;
	margin-top: var(--std-spacing);
	font-size: var(--font-size-md);
}




#i-nostri-servizi{
	padding-top: 120px;
	padding-bottom: 170px;
}

#i-nostri-servizi .wp-block-group figure{
	width: 33.3%;
	text-align: center;
}

#i-nostri-servizi h2{
	font-size: var(--font-size-lg);
}

#i-nostri-servizi p{
	width: 66.6%;
	padding: var(--double-spacing) 0;
	border-top: 1px solid var(--white);
}


#brand-di-eccellenza-section h2{
	font-size: var(--font-size-xl);
	margin-bottom: var(--std-spacing);
}


#privacy-policy-content h2{
	font-size: var(--font-size-normal);
	text-align: left;
  text-transform: initial;
  margin-top: 15px;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

#privacy-policy-content{
	font-size: var(--font-size-xxs);
}




/***
 * ANIMATIONS
 */


/***
* FOOTER
*/

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

.site-footer h3{
	font-weight: 500;
	font-size: var(--font-size-sm);
}

.site-footer .wp-block-separator.first-separator{
	width: 50px !important;
	height: 2px;
	background-color: #fff;
}

.site-footer .wp-block-separator{
	height: 1px;
	border: 0;
	background-color: #808080;
	margin: var(--small-spacing) 0;
	width: auto;
}

.site-footer .footer-social-row img{
	margin-right: var(--small-spacing);
}

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

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

.site-footer .contattaci-column img{
	vertical-align: middle;
}


/***
* COPYRIGHT
*/

.copyright{
	font-size: var(--font-size-xxs);
}

.copyright #credits{
	font-size: var(--font-size-xxxs);
}
