/*
	Theme Name: RSA 2026
	Theme URI: https://rsaviadana.it
	Description: Custom Wordpress theme
	Version: 1.0
	Author: Gabriel Nastase 
	Author URI: https://www.gabrielnastase.com
	Tags: HTML5, CSS3
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}

/* jost-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Jost';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/jost-v15-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* jost-700 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Jost';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/jost-v15-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }

  /* baskervville-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Baskervville';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/baskervville-v20-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
.serif {
    font-family: 'Baskervville';
  font-style: normal;
  font-weight: 500;
}
body {
	font-family: 'Jost', sans-serif;
    font-weight: normal;
	color:#2e2e2e;
    font-size: 1.6rem;
    overflow-x: hidden;
    background-color: #fff;
}
/* clear */

.clear {
    clear: both;
    height: 0;
}
img {
	max-width:100%;
	vertical-align:bottom;
    height: auto;
}
a {
	color:#2e2e2e;
	text-decoration:none;
    transition: all 200ms;
}
a:hover {
	color:#123274;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
.breadcrumbs a {
    color:#1639ff;
}
.breadcrumbs {
    color:#1639ff;
}
.privacy-policy main a, .cookie-policy main a {
    text-decoration: underline;
}
input:focus {
	outline:0;
	border:1px solid #000;
}

h1, h2, .h2 {
    font-size: 4rem;
    font-weight: 500;
    font-family: 'Baskervville', serif;
    color: #123274;
}

h3 {
    font-size: 2.6rem;
    font-family: 'Baskervville', serif;
    font-weight: 400;
    color: #123274;
}
h4 {
    font-size: 2.2rem;
    font-weight: 500;
}
button, input, select, textarea {
    border: solid 1px #E2E9ED;
    background: #ECF3F7;
}
p {
    line-height: 1.1;
    font-size: 1.8rem;
}

.uppercase {
    text-transform: uppercase;
}
.white {
    color: #fff;
}
.blu {
    color: #2A2AD3;
}
.dark {
    color: #fff;
}
.dark a {
    color: #fff;
}
.bg-gradient-blu {
    background: rgb(7,69,222);
    background: linear-gradient(90deg, #123274 0%, #4164A3 100%);
}

.rounded, .rounded img, .rounded video {
    border-radius: 16px;
}
.not-rounded, .not-rounded img, .not-rounded video {
    border-radius: 0px;
}
.float-right {
    float: right;
}
/* Icon 1 */

#nav-icon1 {
  width: 25px;
  height: 25px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
    display: none;
}

#nav-icon1 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #123274;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
  top: 0px;
}

#nav-icon1 span:nth-child(2) {
  top: 10px;
}

#nav-icon1 span:nth-child(3) {
  top: 20px;
}

#nav-icon1.open span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon1.open span:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.hvr-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* Shrink */
.hvr-shrink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-shrink:hover, .hvr-shrink:focus, .hvr-shrink:active {
  -webkit-transform: scale(0.97);
  transform: scale(0.97);
}

/* Pulse */
@-webkit-keyframes hvr-pulse {
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@keyframes hvr-pulse {
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
.hvr-pulse {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-pulse:hover, .hvr-pulse:focus, .hvr-pulse:active {
  -webkit-animation-name: hvr-pulse;
  animation-name: hvr-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

input, textarea {
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    transition: all 200ms;
    margin-top: 5px;
    background: rgba(255, 255, 255, 1);
    border: solid 2px #ebefec;
    box-shadow: 0 5px 10px rgba(40, 85, 36, 0);
}
textarea {
    max-height: 120px;
}
input:hover, textarea:hover {
    background: rgba(255, 255, 255, .9);
}
input:focus, textarea:focus {
    box-shadow: 0 5px 10px rgba(40, 85, 36, 0.221);
    border: solid 2px #fff;
    border: none;
}
input[type="checkbox"], input[type="radio"] {
    width: auto!important;
}
.wpcf7-submit {
    border: none;
    background: #123274;
    color: #fff;
    max-width: 90px;
    font-weight: 800;
    text-transform: uppercase;
}
.wpcf7-submit:hover {
    background: #735D43;
}
.wpcf7 input[type="file"] {
    background: none;
}

.bigger {font-size: 6rem; margin: 0;}
p.bigger {
    font-size: 2.2rem;
}
.fullheight {
    min-height: 100vh;
}

.height-100 {
    height: 100%;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.outer-wrapper {
    max-width: calc( 100% - 140px );
    width: 95%;
	margin:0 auto!important;
    position: relative;
}

.wrapper {
	max-width: 1280px;
	width: 90%;
	margin: 0 auto!important;
	position: relative;
}
.wrapper-1100 {
    max-width: 1100px;
    margin-top: 2em;
}
.narrow-wrapper {
	max-width:800px!important;
	width:95%;
	margin:0 auto;
	position:relative;
}
.narrower {
    max-width: 600px;
    width: 90%;
    margin: 0 auto!important;
}
.no-margin-bottom {
    margin-bottom: 0!important;
}
.no-margin {
    margin: 0!important;
}
.no-gap {
    gap: 0!important;
}
.gap-1 {
    gap: 1em!important;
}
.margin-top {
    margin-top: 40px;
}
.margin-bottom {
    margin-bottom: 40px;
}
.center {
    text-align: center;
}

.align-right {
    text-align: right;
}
.flex-container {
    display: flex;
}
.header-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgb(7,69,222);
    background: linear-gradient(90deg, rgba(7,69,222,.15) 0%, rgba(0, 180, 208, .2) 100%);
    padding: 10px 0;
}
.header-bar a {
    font-weight: normal;
}
.header-bar .right span {
    margin-left: 20px;
}
.header-bar .flex-container {
    justify-content: space-between;
}
/* header */
.header {
    position: fixed;
    width: 100%;
    z-index: 900;
    padding: 60px 0 15px 0;
    top: 0;
    left: 0;
    background: transparent;
    transition: all 500ms;
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,0.9164040616246498) 0%, rgba(255,255,255,1) 100%);
}
.header-scroll {
    padding: 5px 0;
    box-shadow: 0 5px 25px rgba(58, 207, 45, 0.08);
}
.header-scroll .logo img {
    max-width: 80px;
}
.header .flex-container {
    justify-content: space-between;
    align-items: center;
}
.header .nav-left, .header .nav-right {
    width: calc( 50% - 70px );
}
.header .nav-right {
    justify-content: flex-end;
}

.header-icons i, .footer-icons i {
    font-size: 18px;
    margin: 0 8px;
}
.footer-icons i {
    color: #735D43;
    font-size: 24px;
}

/* logo */

.logo {
    width: 180px;
    text-align: center;
    height: auto;
}
.logo img {
    max-width: 120px;
    transition: all 200ms;
}
.header .nav a  {
    color: #123274;
    font-weight: 500;
    font-family: Baskervville, serif;
    border-radius: 20px;
}
.header .nav a:hover {
    color: #123274;
    background: #dcf2fa;
}

/* nav */
.nav {
    font-weight: 800;
    line-height: 0;
    text-transform: uppercase;
}
.nav ul {
    display: flex;
    margin: 0;
    padding: 0;
}
.nav ul li {
    list-style: none;
    margin: 0 7px;
    padding: 0;
    position: relative;
}
.nav ul li a {
    font-size: 1.4rem;
    transition: all 200ms;
    border-bottom: solid 4px transparent;
    padding: 4px 6px 1px 6px;
    height: 10px;
}
.nav ul li a:hover {
    color: #735D43;
}
.nav ul .sub-menu {
    display: block;
    background: #fff;
    position: absolute;
    top: 15px;
    left: 0;
    width: auto;
    padding: 0 20px;
    border-radius: 3px;
    transition: all 200ms ease-out;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0 20px 30px rgba(52, 182, 93, 0.2);
}
.nav ul li:hover .sub-menu {
    visibility: visible;
    opacity: 1;
    top: 25px;
}
.nav ul .sub-menu li {
    display: block;
    margin: 10px 0;
    width: 220px;
    line-height: normal;
}
.nav ul .sub-menu li a {
    font-size: 1.3rem;
    color: #0057d1;
    padding: 3px 0;
    border: none;
    display: block;
    text-transform: uppercase;
}
.nav ul .sub-menu li a:hover {
    color: #0080e1;
}
.nav .current-menu-item a {
    background-color: #dcf2fa;
    border-radius: 20px;
    padding-left: 8px;
    padding-right: 8px;
}
.nav .current-menu-item .sub-menu a {
    border: none;
}
.nav .sub-menu a {
   border-bottom: none!important;
}
.nav .sub-menu .current-menu-item a {
    color: #0044ab;
}
.nav .lang-item a {
    border: none!important;
}
.header .btn {
    margin-left: 0;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.content-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}
.content-padding-s {
    padding: 50px 0;
}
.content-padding-bottom {
    padding-bottom: 100px;
}
.content-padding-top {
    padding-top: 100px;
}
.cover-testata {
    margin-top: 30px;
}
.page-header .flex-container {
    align-items: center;
    justify-content: space-between;
}
.wrap-left {
    padding-left: calc( (100% - 1280px) / 2)!important;
    padding-right: 3%;
}
.wrap-right {
    padding-right: calc( (100% - 1280px) / 2)!important;
    padding-left: 3%;
}
.negative-top {
    margin-top: -50px!imprtant;
    position: relative;
    z-index: 100;
}
.negative-top-100 {
    margin-top: -100px!important;
    position: relative;
    z-index: 100;
}
.negative-bottom-80 {
    margin-bottom: -80px!important;
}
.negative-right {
    margin-right: -80px!important;
}
.margin-top-50 {
    margin-top: 50px!important;
}
.first-content {
    margin-top: 200px;
}
.no-padding-top {
    padding-top: 0;
}
.box-padding {
    padding: 60px;
}
.box-padding-xs {
    padding: 15px;
}
.box-padding-s {
    padding: 30px!important;
    position: relative;
}
.bordered {
    border: solid 1px #ccc;
}

.is-style-checkbox li {
    margin-bottom: 15px;
}

.no-margin .wp-block-column .wp-block-image {
    margin-bottom: 0;
}
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    background: #123274;
     background: linear-gradient(90deg, #123274 0%, #4164A3 100%);
    box-shadow: 0 6px 15px rgba(0, 207, 253, 0.24);
    color: #fff;
    font-weight: 800;
    line-height: 20px;
}
.text-btn-block .wp-block-button__link {
    padding: 0;
}
.text-btn-block .wp-block-button__link::after {
    font-family: "Font Awesome 6 Free"; font-weight: 900; content: "\f061";
    margin-left: 20px;
}

.btn-big {
    font-size: 3rem;
}


.btn i {
    margin-left: 20px;
}


/* sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: -500px;
    width: 380px;
    height: 100%;
    z-index: 400;
    background: rgb(255, 255, 255);
    padding: 120px 2.5%;
    padding-top: 180px;
    color: #fff;
    box-shadow: 15px 5px 50px rgba(0,47,41,.15);
    transition: all 500ms ease-in;
}
.sidebar-open {
    left: 0;
}
.sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-weight: 500;
    font-family: 'Baskervville', serif;
    text-transform: uppercase;
}
.sidebar ul li {
    margin: 10px 0;
}
.sidebar .current-menu-item a {
    color: #123274;
    foont-weight: bold;
}

/* footer */

.footer {
    margin-top: 100px;
    font-size: 1.2rem;
}
.footer p {
    font-size: 1.4rem;
}

.footer .outer-wrapper {
    border-top: solid 1px #dcdcdc;
    padding: 40px 0;
}
.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer ul li {
    margin: 8px 0;
}
.footer .logo-footer img {
    max-width: 150px;
}
/*------------------------------------*\
    PAGES
\*------------------------------------*/


.wp-block-video {
    margin: 0!important;
}

.grid-news {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
}

.loop-block {
    border-radius: 16px;
    margin-bottom: 25px;
    background-color: #fff;
    transition: background 200ms;
}
body.category-news, body.category-news-en {
    background-color: #f4fafd;
}
.loop-block:hover {
    background: #e1e7ec;
}
.loop-block .padding {
    padding: 20px;
}

.date {
    color: rgb(137, 137, 137);
    margin-bottom: 10px;
    display: block;
}
.cards-intro {
    margin-top: 2em!important;
    position: relative;
}
.cards-intro .box-padding-xs {
    padding: 30px;
    padding-bottom: 0;
}
.cards-intro .rounded {
    box-shadow: 0 30px 40px rgba(0, 0, 0, .3);
}
.cards-intro h2 {
    margin-bottom: 0;
}
.testone {
    background-image: url(img/testa.svg);
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: 0 180px;
}
.carta-gialla {
    background: rgb(255,255,0);
    background: linear-gradient(270deg, rgba(255,255,0,1) 0%, rgba(253,190,35,1) 59%);
    position: relative;
    box-shadow: 0 30px 40px rgba(255, 213, 0, 0.3);
    margin-bottom: 0;
}
.carta-verde {
    background: rgb(5,94,46);
    background: linear-gradient(270deg, rgba(5,94,46,1) 0%, rgba(13,30,40,1) 59%);
    position: relative;
    box-shadow: 0 30px 40px rgba(9, 111, 0, 0.25);
    margin-bottom: 0;
}
.carta .wp-block-cover {
    padding: 20px;
}
.carta h3 {
    line-height: 1;
    margin: 0;
}
.carta .text-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin: 0;
    text-transform: uppercase;
}
.carta .text-btn i {
    margin-left: 10px;
}
.card-anima {
    box-shadow: 0 30px 40px rgba(179, 0, 195, 0.25);
    margin-top: 60px;
}
.card-5x1000 {
    box-shadow: 0 30px 40px rgba(0, 111, 195, 0.25);
}
.wp-block-kadence-posts .content-bg {
    border-radius: 16px!important;
    padding: 30px;
    background: linear-gradient(90deg, rgba(2, 134, 249, 0.1) 0%, rgba(0, 164, 189, .1) 100%)!important;
    box-shadow: 0 30px 40px rgba(5, 201, 255, 0.064)!important;
}
.gallery-home {
    margin-top: -500px!important;
    position: relative;
    z-index: 100;
}
.gallery-home .rounded, .gallery-collage .rounded {
    box-shadow: 0 30px 40px rgba(0, 0, 0, .3);
}
.box-shadow-azzurro {
    box-shadow: 0 20px 20px rgba(16, 203, 255, 0.08);
}
.box-shadow-verdino {
    box-shadow: 0 20px 20px rgba(16, 255, 179, 0.08);
}
.box-shadow-giallo {
    box-shadow: 0 20px 20px rgba(255, 211, 16, 0.1);
}
.box-shadow-rosso {
    box-shadow: 0 20px 20px rgba(255, 36, 16, 0.08);
}

.has-button-absolute {
    position: relative;
    padding-bottom: 90px!important;
}
.has-button-absolute .wp-block-buttons {
    position: absolute;
    bottom: 30px;
}

.parent-pageid-32 .kt-accordion-panel-active {
    background: linear-gradient(270deg, rgba(205, 255, 204, 0.58) 0%, rgba(0, 212, 148, 0.21) 100%)!important;
    color: #535353!important;
}
.parent-pageid-32 .kt-accordion-id467_a73353-ee:not( .kt-accodion-icon-style-basiccircle ):not( .kt-accodion-icon-style-xclosecircle ):not( .kt-accodion-icon-style-arrowcircle ) .kt-blocks-accordion-header.kt-accordion-panel-active .kt-blocks-accordion-icon-trigger:after, .parent-pageid-32 .kt-accordion-id467_a73353-ee:not( .kt-accodion-icon-style-basiccircle ):not( .kt-accodion-icon-style-xclosecircle ):not( .kt-accodion-icon-style-arrowcircle ) .kt-blocks-accordion-header.kt-accordion-panel-active .kt-blocks-accordion-icon-trigger:before {
    background: #535353!important;   
}

.nascosto {
    display: none;
}
/*------------------------------------*\
    IMAGES
\*------------------------------------*/



/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/
@media only screen and (max-width:1550px) {

    .header .nav ul li a {
        font-size: 1.2rem;
    }
    .nav ul li {
        margin: 0 2px;
    }
    .header-bar {
        font-size: 1.2rem;
    }
}

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

    .content-padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .content-padding-bottom {
        padding-bottom: 60px;
    }
    .content-padding-top {
        padding-top: 60px;
    }
    .wrapper {max-width: 95%; width: 95%;}
    .outer-wrapper {
        max-width: 95%;
        width: 95%;
        margin:0 auto;
        position: relative;
    }
    .wrapper-1100 {
        max-width: 85%;
    }
    .wrap-left {
        padding-left: 5%!important;
        padding-right: 5%;
    }
    .wrap-right {
        padding-right: 5%!important;
        padding-left: 5%;
    }
    .slider .wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container, .slider .wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container {
        width: 100%;
    }
    .first-content {
        padding-top: 160px;
    }

    h3 {
        font-size: 2rem;
    }
    h2, .h2 {
        font-size: 3rem;
    }
    h4 {
        font-size: 1.8rem;
    }
    .box-padding {
        padding: 30px;
    }


}

@media only screen and (max-width:1150px) {

    #nav-icon1 {
        display: block;
    }
    .header .nav {
        display: none;
    }
    .header {
        padding: 50px 0 10px 0;
    }
    .header .flex-container {
        flex-direction:row-reverse;
    }
    .header-scroll {
        padding: 5px 0;
        box-shadow: 0 5px 25px rgba(58, 207, 45, 0.08);
    }
    .first-content {
        padding-top: 90px;
    }
    .outer-wrapper {
        width: 95%;
    }
    .outer-left {
        padding-left: 2.5%;
    }
    .outer-right {
        padding-right: 2.5%;
    }

    .box-padding-xs {
        padding: 8px;
    }
    .box-padding {
        padding: 15px;
    }
    .cover-header .wp-block-cover__inner-container {
        width: 95%!important;
    }
    .logo {
        width: 100%;
        text-align: center;
    }
    .logo-img {
        width: 180px;
    }
    .header .nav-right {
        display: none;
    }
    .wp-block-columns {
        gap: 1em
    }

}

@media only screen and (max-width: 1000px) {


    h1, h2, .h2 {
        font-size: 2.2rem;
    }
    h3 {
        font-size: 1.8rem;
    }
    .bigger {font-size: 2.2rem; margin: 0;}
    h4 {
        font-size: 1.6rem;
    }
    .wp-block-cover-image.has-parallax, .wp-block-cover.has-parallax {
        background-attachment: scroll;
    }
    .content-padding {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .content-padding-bottom {
        padding-bottom: 40px;
    }
    .content-padding-top {
        padding-bottom: 40px;
    }
    .first-content {
        padding-top: 120px;
    }
    #breadcrumbs {
        font-size: 1.6rem;
    }
    
    .main-slider h2 {
        font-size: 4rem;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    .icone-intro img {
        max-width: 50px;
    }
    .intro .img-absolute-sx {
        position: relative;
        top: 120px;
    }
    .fullheight {
        min-height: 60vh;
        padding: 100px 0 0 0!important;
    }
    .loop-block {
        width: 48%;
    }
    .intro {
        padding-top: 160px;
        margin-top: -120px;
        padding-bottom: 80px;
    }
    .grid-servizi p {
        font-size: 1.6rem;
    }
    .lavori-in-corso {
        margin-top: -200px;
    }
    .kb-form .kadence-blocks-form-field .kb-text-style-field {
        padding: 15px!important;
    }
    .col-info-footer {
        flex-basis: 65%!important;
    }
    .logo-footer {
        max-width: 180px;
    }
    .col-logo-footer {
        flex-basis: 30%!important;
    }
    .pulsante-wa {
        right: 2.5%;
        bottom: 30px;
    }
    .wp-block-button__link {
        font-size: .9em;
    }

}

@media only screen and (max-width: 780px) {
    .gallery-home .wp-block-cover, .gallery-collage .wp-block-cover {
        min-height: 300px!important;
    }
    .gallery-home .wp-block-spacer, .gallery-collage .wp-block-spacer {
        display: none;
    }
    .header-bar .left {
        display: none;
    }
    .header-bar .right {
        display: flex;
        justify-content: space-between;
        width: 100%;
        font-size: 1.1rem;
    }
    .header-bar .right span {
        margin-left: 0;
    }
    .logo img {
        max-width: 80px;
    }
    .video-intro {
        margin-top: 110px!important;
    }
    .cover-testata {
        min-height: 370px!important;
        margin-top: 110px;
    }
    .footer {
        text-align: center;
    }
    .cards-intro {
        margin-top: 1em!important;
    }
    .btn-big {
        font-size: 2rem;
    }
    .wp-block-kadence-posts .content-bg {
        padding: 10px;
    }
    .box-gallery-lachiesa {
        margin-top: 1em;
    }
    .reverse {
        flex-direction: column-reverse;
    }
    .has-large-font-size {
        font-size: 2.4rem!important;
    }
}

@media only screen and (max-width: 600px) {

}




/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.wp-block-cover, .wp-block-cover-image {
    overflow-y: hidden;
    padding: 0;
}
.wp-block-columns-gap-1 {
    gap: 1em!important;
}
.wp-block-columns-gap-3 {
    gap: 3em!important;
}

.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.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;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.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;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

.wp-block-image img {
    height: auto!important;
}
hr {
    opacity: .3;
}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}
