/*
Theme Name: Augustus
Author: Ready Digital
Author URI: https://www.readydigital.it/
Text Domain: augustus
*/
@charset "UTF-8";

@import url('fonts/icons/icomoon/style.css');

@font-face {
    font-family: 'fragmentserif_regular';
    src: url('fonts/fonnts.com-ppfragment-serifregular-webfont.woff2') format('woff2'),
    url('fonts/fonnts.com-ppfragment-serifregular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'helvetica_light';
    src: url('fonts/helveticaneuelight-webfont.woff2') format('woff2'),
    url('fonts/helveticaneuelight-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'helvetica_regular';
    src: url('fonts/helveticaneueroman-webfont.woff2') format('woff2'),
    url('fonts/helveticaneueroman-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}



:root {
    --dark: rgb(32, 32, 32);
    --dark-cream: rgb(228, 218, 202);
    --cream: rgb(235, 224, 207);
    --light-cream: rgb(243, 234, 223);
    --light2-cream: rgb(243, 234, 223, 0.5);
    --light: rgb(247, 247, 247);
    --dark-blue: rgb(37, 44, 65);
    --dark-light: rgba(37, 44, 65, 0.5);
    --dark-2light: rgba(37, 44, 65, 0.1);
    --blue: rgb(0, 65, 120);
    --light-blue: rgb(203, 206, 214);
    --gold: rgb(156, 139, 112);
    --gold-light: rgba(195, 165, 119, 0.7);
    --red: rgb(161, 30 ,43);
    --grey: rgb(203, 206, 214);
    --bg-header: rgb(148, 151, 158);
    --bg-light: rgb(250, 250, 245);
    --bg-green-light: rgba(224, 235, 228, 1);
    --f-fragment: 'fragmentserif_regular', sans-serif;
    --f-helvetica-regular: 'helvetica_regular', "Helvetica Neue", Helvetica, Arial, sans-serif;
    --f-helvetica-light: 'helvetica_light', "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.bg-gray {
    background-color: var(--grey);
}
.color-gold{
    color: var(--gold);
}
.color-light{
    color: var(--light);
}
.color-red{
    color: var(--red);
}
.bg-red{
    background-color: var(--red);
}
.bg-gold{
    background-color: var(--gold);
}
.bg-light{
    background-color: var(--bg-light);
}
.bg-spa {
    background-color: var(--bg-green-light);
}
.color-dark{
    color: var(--dark);
}
.bg-dark{
    background-color: var(--dark);
}
.color-dark-blue{
    color: var(--dark-blue);
}
.bg-dark-blue{
    background-color: var(--dark-blue);
}
.color-blue{
    color: var(--blue);
}
.bg-blue{
    background-color: var(--blue);
}
.space-letter-01{letter-spacing: 0.1em;}
 html { scroll-behavior: smooth !important; }

.spacer-px {padding-top: 4.5rem; padding-bottom: 4.5rem; }
.spacer-pt {padding-top: 9rem}
.spacer-pb {padding-bottom: 9rem}
.spacer-mx {margin-top: 4.5rem; margin-bottom: 4.5rem; }
.spacer-mt {margin-top: 9rem}
.spacer-mb {margin-bottom: 9rem}


body {
     background-color: var(--light);
    color: var(--dark);
    font-family: 'helvetica_light', sans-serif ;
    line-height: 1.8rem;
    font-size: 18px;
    overflow-x: hidden;
    font-weight: 500;
    margin: 0;
    text-rendering: optimizeLegibility;
    -webkit-transition: 100ms;
    -o-transition: 100ms;
    transition: 100ms;
    -webkit-transition-property: background-color,  color;
    -o-transition-property: background-color,  color;
    transition-property: background-color,  color;
}
body.dsn-mobile {
    overflow-y: auto;
}

body.no-scroll {
    overflow: hidden;
}

a, a:visited{
    color:var(--blue);
}
a:hover, a:active, a:focus{
    color:var(--gold);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.hover-img {
    
	-webkit-transition: 1.2s cubic-bezier(.165, .84, .44, 1);
		-o-transition: 1.2s cubic-bezier(.165, .84, .44, 1);
			transition: 1.2s cubic-bezier(.165, .84, .44, 1);
}

/* PRELOADER */
#preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #F3EADF;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}

#preloader.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

#preloader-progress-bar {
    width: 100%;
    height: 4px;
    background: #e0e0e0;
    margin-bottom: 8px;
    overflow: hidden;
}
#preloader-progress-bar .fill {
    height: 100%;
    width: 0%;
    background: #333;
    transition: width 0.3s ease;
}
#preloader-percent {
    text-align: center;
    font-family: sans-serif;
    font-size: 14px;
    color: #333;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #ccc;
    border-top-color: #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* PARALLAX */
.parallax {
    height: 600px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: scroll;
    position: relative;
    overflow: hidden; /* previene sbordi del background */
    z-index: 0; /* se altri elementi si sovrappongono */
}

/* HEADER */
.header-wrap{
    position: fixed;
    top: 0;
    width: 100%;
    padding: 22px 50px;
    z-index: 99;
    -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
 }
 .header-wrap .main-logo {
    width: 100px;
    pointer-events: all;
    opacity: 1;
    text-align: center;
}
	 
.header-wrap {
  width: 100%;
  z-index: 3;
  z-index: 999;
}
.menu-black .header-wrap {
    background-color: var(--light);
}
.header-wrap.scrollHeader {
  /*position: sticky !important;*/
  top: 0;
  left: 0;
  right: 0;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.header-wrap.scrollHeader.header-bg {
  border: unset;
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

header .main-logo svg{
    height: 90px;
}

@media (max-width: 991px) {
    header .main-logo svg{
        height: 75px;
    }
}
.header-wrap.scrollHeader.header-bg .main-logo svg .cls-1,
.menu-black .main-logo svg .cls-1{
    fill:#202020
}
.header-wrap.scrollHeader.header-bg .wpml-ls-legacy-dropdown-click a,
.menu-black .wpml-ls-legacy-dropdown-click a,
.header-wrap.scrollHeader.header-bg .dsn-button,
.menu-black .dsn-button,
.menu-black a.dsn-button:visited {
    color: #202020;
 }
 .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
     border-top:none; 
 }
 .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
   
    background: #ffffff;
}
.wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu a {
   
    color:#000;
}

.main-root {
    position: relative;
    overflow: hidden;
}
.bg-light .main-root {
    background-color: var(--bg-light);
}
header .wpml-ls-legacy-dropdown-click {
    width: auto;
    max-width: 100%;
}
.wpml-ls-legacy-dropdown-click a {    
    color: #fff;
    border: none;
    background-color: transparent;
    padding: 5px 10px;
    line-height: 1;
    font-size: 16px;
}

.hero-video {
    position: relative;
    width: 100%;
    height: calc(100vh + 250px);
    overflow: hidden;
}

.hero-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.ellipse-video {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.ellipse-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-title {
    font-size: 7.5rem;
    color: var(--light);
    display: block;
    line-height: 1em;
    font-family: 'fragmentserif_regular', sans-serif;
}

.hero-small-title {
    font-size: 14px;
    color: var(--light);
    display: block;
    font-family: 'helvetica_regular', "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.4rem;
}

.hero-badge {
    position: absolute;
    bottom: 0;
    z-index: 2;
    opacity: 0.5;
/*    left: 50%;
    transform: translateX(-50%);*/
    mix-blend-mode: exclusion;
    pointer-events: none;
}

.bottom-hero{
    bottom: 50px;
}
@media only screen and (max-width: 768px) {
    .bottom-hero{
        bottom: 75px;
    }
}
.hero-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    opacity: 0.5;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    height: 75vh;   
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
/*    top: 50%;
    transform: translateY(-50%);*/
}
.hero-chat-button{
    position: relative;
    right: 100px
}

h1.big {color: var(--gold); font-size: 4.5rem;  font-family: 'fragmentserif_regular', sans-serif;}
.title {color: var(--gold);  font-family: 'fragmentserif_regular', sans-serif;}
.title-dark {color: var(--dark-blue);  font-family: 'fragmentserif_regular', sans-serif;}
.txt-dark{color: var(--dark-blue);}
h2{
  font-size: 3.5rem;  
}

/* PARALLAX A SCORRIMENTO */
.image-wrapper {
    flex: 1;
    /* togli overflow hidden per permettere overflow */
    /* overflow: hidden; */
    position: relative;
    height: 400px;
}

.moving-parallax.hidden {
    opacity: 0;
}

.animate__animated {
    visibility: visible !important;
    opacity: 1 !important;
}

.reveal, .reveal2 {
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed-manual, .reveal2.revealed-manual {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.reveal .icon-lion img {
     display: inline-block;
     float: left;
     width: 42px;     
    height: 60px;
    padding-top: 10px;
    margin-right: 40px;
}
/* MENU */

#hamburgerMenu {
    font-size: 16px;
    padding: 0px 20px;
    cursor: pointer;    
    background: none;
    border: none;
    color: white;
    display: flex;
    align-items: center;
	width: 40px;
	height: 14px;
	margin: 10px 20px 10px 0px;
	-webkit-transform-origin: right;
	    -ms-transform-origin: right;
	        transform-origin: right;
	-webkit-transition: .5s cubic-bezier(.77, 0, .175, 1);
		-o-transition: .5s cubic-bezier(.77, 0, .175, 1);
			transition: .5s cubic-bezier(.77, 0, .175, 1);
}
.menu-black #hamburgerMenu {
    color:var(--dark);
}
#hamburgerMenu .open{
    font-size: 14px;
    letter-spacing: 0.5px;
}

#hamburgerMenu:before {
	content: '';
	position: absolute;
	width: 24px;
	height: 2px;
	left: 0;
	top: 50%;
	-webkit-transform-origin: right;
	    -ms-transform-origin: right;
	        transform-origin: right;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	-webkit-transition: .4s cubic-bezier(.77, 0, .175, 1);
		-o-transition: .4s cubic-bezier(.77, 0, .175, 1);
			transition: .4s cubic-bezier(.77, 0, .175, 1);
}

#hamburgerMenu .hamburger:before,
#hamburgerMenu .hamburger:after {
	content: '';
	position: absolute;
	width: 24px;
	height: 2px;
	-webkit-transition: .4s cubic-bezier(.77, 0, .175, 1);
		-o-transition: .4s cubic-bezier(.77, 0, .175, 1);
			transition: .4s cubic-bezier(.77, 0, .175, 1);
	left: 0;
	top: 0;
        bottom: auto;
}

#hamburgerMenu .hamburger:after {
	top: auto;
	bottom: 0;
}

#hamburgerMenu.active .hamburger:after {
	-webkit-transition: .3s cubic-bezier(.23, 1, .32, 1);
		-o-transition: .3s cubic-bezier(.23, 1, .32, 1);
			transition: .3s cubic-bezier(.23, 1, .32, 1);
	-webkit-transition-delay: 0s;
	     -o-transition-delay: 0s;
	        transition-delay: 0s;
	-webkit-transform: translateY(-9px);
	    -ms-transform: translateY(-9px);
	        transform: translateY(-9px);
}

#hamburgerMenu.active .hamburger:before {
	-webkit-transition: .3s cubic-bezier(.23, 1, .32, 1);
		-o-transition: .3s cubic-bezier(.23, 1, .32, 1);
			transition: .3s cubic-bezier(.23, 1, .32, 1);
	-webkit-transition-delay: 0s;
	     -o-transition-delay: 0s;
	        transition-delay: 0s;
	-webkit-transform: translateY(9px);
	    -ms-transform: translateY(9px);
	        transform: translateY(9px);
}

#hamburgerMenu:before, .hamburger:before, .hamburger:after { background: #f7f7f7; }
.menu-black #hamburgerMenu:before, 
.menu-black .hamburger:before, 
.menu-black  .hamburger:after { background: #202020; }


.header-wrap.scrollHeader.header-bg #hamburgerMenu:before,
.header-wrap.scrollHeader.header-bg .hamburger:before,
.header-wrap.scrollHeader.header-bg .hamburger:after { background: #202020; }
.header-wrap.scrollHeader.header-bg #hamburgerMenu .open{ color:#202020;}
#menuOverlay {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0);
    opacity: 0;
    z-index: 9999;
    overflow-x: hidden;
    overflow-y: hidden;
    pointer-events: none;
    left: 0;
    transform: translateX(-100%);
    transition: transform 0.6s ease-in-out, opacity 0.6s ease, background 0.6s ease-in-out;
}

#menuOverlay.active {
    opacity: 1;
    background: rgba(0, 0, 0, 0.6);
    pointer-events: auto;
    left: 50%;
    transform: translateX(-50%);
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out, background 0.6s ease-in-out;
}

#menuOverlay .menu{
    background:#fff;
    display:inline-block;
    height:100vh;
    overflow:scroll;
    width: 60%;
    padding: 0;
     -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;    
}
#menuOverlay .menu::-webkit-scrollbar {
    display: none;
}
    
#menuOverlay .header-menu{
    height: 124px;
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;
}


#menuOverlay .menu .menu-close {
	position: relative;
        align-items: center;
        display: flex;
	width: 70px; 
        cursor: pointer;
	height: 22px;
        margin: 22px 10px 22px 77px;
	z-index: 3;
	-webkit-transition: .5s cubic-bezier(.77, 0, .175, 1);
		-o-transition: .5s cubic-bezier(.77, 0, .175, 1);
			transition: .5s cubic-bezier(.77, 0, .175, 1);
}
#menuOverlay .menu .menu-close span { 
    left: 30px;
    position: relative;
    font-size: 14px;
}

.warpper .dx{
    position: absolute;
    top: -153px;
    right: 0px;
    max-width: 500px;
    width: 500px;
    box-sizing: content-box;
    border-left: 1px solid var(--dark-2light);
}
.warpper .dx .content-img,
#menuOverlay .menu .box .content-img{
    text-align: right;
    
    width: 100%;
    z-index: 0
}

.warpper .dx .content-img img,
#menuOverlay .menu .box .content-img img{
    width: 100%;
    max-width: 100%;
}
#menuOverlay .menu .warpper li .img,
#menuOverlay .menu .warpper li li .img{
	display:none;
        opacity: 0;
	position:absolute;
	top:-153px;
	right:0px;
	text-align:right;
	background:#fff;
        visibility: hidden;
        z-index: 1;       
}
#menuOverlay .menu .warpper li .img img{	
        opacity: 0;
	 width: 100%;
        max-width: 100%;
        visibility: hidden;
        z-index: 1;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
}
#menuOverlay .menu .warpper li .img.active{
	display:block;
        opacity: 1;
        visibility: visible;
        z-index: 1;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
}
#menuOverlay .menu .warpper li .img.active img{	
        opacity: 1;	
        visibility: visible;        
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
}

#menuOverlay .menu .warpper{
	
	position:relative;
}
#menuOverlay .menu .warpper ul{	
	width:100%;
        height: 100%;
        padding: 0 0px 0px 50px;
        margin-bottom: 0;
}
#menuOverlay .menu .warpper li{
	list-style-type:none;
}

#menuOverlay .menu .warpper li .children{
	position:absolute;
	top:0;
	left:0;
    transform: translateX(-150%);
    transition: transform 1s ease, opacity 1s ease;
	background:#fff;
	height:100%;
	width: calc(100% - 501px);
	z-index: 2;
}
#menuOverlay .menu .warpper li .children.active {
    transform: translateX(0%);
}
#menuOverlay .menu .warpper li .children li .img.active{
	display:block;
}
#menuOverlay .menu .title{
    font-size: 14px;
    font-family: 'helvetica_light';
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: default;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-left: 0;
}
#menuOverlay .menu .back.title{
    padding-left: 77px;
    padding-bottom: 10px;
    padding-top: 10px;
    cursor: pointer;
}
#menuOverlay .menu .back.title span{
    margin-left: 20px;
}

#menuOverlay .menu  .menu-close:before,
#menuOverlay .menu .menu-close:after {
	content: '';
	width: 20px;
	height: 2px;
	background: #111517;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%) rotate(0deg);
	    -ms-transform: translateY(-50%) rotate(0deg);
	        transform: translateY(-50%) rotate(0deg);
	-webkit-transition: .7s cubic-bezier(.77, 0, .175, 1);
		-o-transition: .7s cubic-bezier(.77, 0, .175, 1);
			transition: .7s cubic-bezier(.77, 0, .175, 1);
}
#menuOverlay.active .menu  .menu-close:before {
	-webkit-transform: translateY(-50%) rotate(225deg);
	    -ms-transform: translateY(-50%) rotate(225deg);
	        transform: translateY(-50%) rotate(225deg);
	-webkit-transition: 1s cubic-bezier(.77, 0, .175, 1);
		-o-transition: 1s cubic-bezier(.77, 0, .175, 1);
			transition: 1s cubic-bezier(.77, 0, .175, 1);
	-webkit-transition-delay: 0.1s;
	    -o-transition-delay: 0.1s;
	        transition-delay: 0.1s;
}

#menuOverlay.active .menu  .menu-close:after {
	-webkit-transform: translateY(-50%) rotate(135deg);
	    -ms-transform: translateY(-50%) rotate(135deg);
	        transform: translateY(-50%) rotate(135deg);
	-webkit-transition: 1s cubic-bezier(.77, 0, .175, 1);
		-o-transition: 1s cubic-bezier(.77, 0, .175, 1);
			transition: 1s cubic-bezier(.77, 0, .175, 1);
	-webkit-transition-delay: 0.1s;
	    -o-transition-delay: 0.1s;
	        transition-delay: 0.1s;
}


.warpper  li {
    padding: 0;
     cursor: pointer;
    list-style-type: none;
   
}
.warpper li span.item-voice,
.warpper li a{
    padding: 12px 10px 12px 10px;
   font-size: 32px;
   font-family: 'fragmentserif_regular', sans-serif;
    line-height: 120%;
    font-weight: 400;
    text-decoration: none;
    color: var(--dark);
    position: relative;
    display: block;
    width: 100%;
}
.warpper li a span.item-voice{
    padding: 0px;
}
.warpper li.has-children span:before{
     content: '+';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translate(-50%,-50%);    
    color: var(--dark);
    font-size: 18px;
    
}
#menuOverlay .info-bottom-dx {
    padding: 60px 20px 70px 50px;
}
#menuOverlay .info-bottom-dx ul.social-list {
    margin-top: 50px;
    padding: 0px;
}
.social-menu .social-list li {
    
    padding: 0px;
    list-style: none;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: 1px solid var(--dark-2light);
    line-height: 50px;
    
}

.social-menu .social-list a{
    font-size:14px;
  color: var(--dark);
   text-decoration: none;
    padding: 12px 10px 12px 10px;
    width: 100%;
    height: 100%;
    text-align: center;
    border-radius: 50%;
    transition: all 0.6s ease;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    align-items: center;
}
#menuOverlay .info-bottom-dx  p{
    font-size: 16px;
    color: var(--dark-light);
}
#menuOverlay .info-bottom-dx  h5{
    font-size: 18px;
    color: var(--dark);
} 

@media only screen and (max-width: 1700px){
    .warpper .dx,
    #menuOverlay .menu .box .content-img{        
        max-width: 370px;        
    }
    #menuOverlay .menu .warpper li .children{
	width: calc(100% - 371px);
    }
}
@media only screen and (max-width: 1400px){
    .warpper .dx,
    #menuOverlay .menu .box .content-img{        
        max-width: 300px;        
    }
    #menuOverlay .menu .warpper li .children{
	width: calc(100% - 301px);
    }
    .social-menu .social-list li {
    flex-basis: calc(33.33% - 20px);
    }
    .warpper li span.item-voice, .warpper li a {
    font-size: 26px;
    }
}
@media only screen and (max-width: 1280px){
    #menuOverlay .menu {
        width: 70%;
    }
}
@media only screen and (max-width: 991px){
    #menuOverlay .menu {
        width: 100%;
    }
    #menuOverlay .menu .warpper ul {
        position: relative;    
        padding: 0 0px 50px 10px;
        margin-bottom: 0;
    }
    #menuOverlay .menu .warpper li .children {
        width: 100%;
        height: 100%;
        background-color: var(--light-cream);
    }
    .warpper li span.item-voice, .warpper li a {
        padding: 12px 10px 12px 20px;
    }
    .social-menu .social-list a{
       padding: 12px 5px 12px 5px;
    }
    .warpper li.has-children span:before{
     
        left: 5px;
    }
    .warpper li.has-children .children span:before{
		content:''
    }
    #menuOverlay .menu .back.title{
        padding-left: 30px;
    }
    #menuOverlay .menu .warpper li .children.active {
     padding-top: 20px;
     
    }
    #menuOverlay .menu .warpper li .img.active,
    .warpper .dx .content-img img{
        display: none;
    }
    .warpper .dx{
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        border-top: 1px solid var(--dark-2light);
        margin-top: 0;
    }
    #menuOverlay .header-menu {
        border-bottom: 1px solid var(--dark-2light);
        height: 124px;
        padding-top: 15px;
        padding-bottom: 5px;
    }
    #menuOverlay .info-bottom-dx {
        padding: 40px 20px 50px 50px;
    }
    .social-menu .social-list li {
       flex-basis: auto;
        width: 40px;
        height: 40px;
    }
    #menuOverlay .menu-logo svg{
        height: 75px;
    }
    #menuOverlay .languages {
        margin-right: 77px;
    }
    #menuOverlay .wpml-ls-legacy-dropdown-click a {
        color: #444;
    }
    
}
@media only screen and (max-width: 768px) {
    .warpper li span.item-voice, .warpper li a {
        font-size: 20px;
    }
    
    
    #menuOverlay .menu .menu-close {
            margin: 22px 10px 22px 30px;
    }
    
    #menuOverlay .languages {
        margin-right: 30px;
    }
     
     #menuOverlay .info-bottom-dx {
        padding: 30px 20px 50px 30px;
    }
    
}

@media only screen and (max-width: 425px) {
    #hamburgerMenu {
            margin: 20px 20px 0 5px;
    }
}


/* SCRITTA ROSSA SOPRA IMMAGINE  */

.hero-container {
    width: 100%;
    position: relative;
    padding: 0 1rem;
}

.hero-container .image-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    height: 100%;
}

.hero-container .image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-container .text-layer {
    width: 100%;
    font-size: 6rem;
    font-weight: bold;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
    padding: 0 1rem;
    z-index: 1;
    font-family: 'fragmentserif_regular', sans-serif;
    line-height:120%;
}

.hero-container .text-base {
    color: var(--red);
    font-family: 'fragmentserif_regular', sans-serif;
}

.hero-container .text-blend {
    color: var(--light);
    /*mix-blend-mode: lighten;*/
    visibility: hidden;
    z-index: 2;
}
@media (max-width: 991px) {
    .hero-container .text-layer {
    
    font-size: 5rem;
    }
}

/* sezione generale */
.featured-slide {
    position: relative;
    color:#ffffff;
}

.featured-slide-bg {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 140px 0 20px;
}

/* NAVIGAZIONE IN ALTO */
.featured-slide-nav {
    margin-bottom: 40px;
}

.navigation-featured-slide {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.navigation-featured-slide .swiper-button-prev,
.navigation-featured-slide .swiper-button-next {
    position: static; /* override posizione assoluta di Swiper */
    margin-top: 0;
    display: none;
}

.navigation-featured-slide .swiper-pagination {
    min-width: 80px;
    text-align: center;
    top: 50px;
    height: 80px;
}

.navigation-featured-slide .swiper-pagination .line-space{
    width: 60px;
    height: 1px;
    background-color: #fff;
    display: inline-block;
    margin: 0 10px;
    vertical-align: middle;
}

/* SWIPER: vogliamo vedere le slide laterali che "escono" */
.featuredSwiper {
    overflow: visible;
    margin-bottom: -140px;
}

/* LARGHEZZA SLIDE: qui ci giochiamo l'effetto 3 visibili con laterali a metà */
.featuredSwiper .swiper-slide {
     /*width: min(480px, 60vw);   aggiusta questi valori a gusto */
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0.4;
    transform: scale(0.9);
    width: 50%;
}

.featuredSwiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
   
}
.featuredSwiper .swiper-slide .slide-img{ 
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}
.featuredSwiper .swiper-slide-active .slide-img{ 
   opacity: 1; 
}
                                           

.featuredSwiper .swiper-slide-next,
.featuredSwiper .swiper-slide-prev {
    opacity: 0.7;
}


@media (min-width: 1200px) {
    .featuredSwiper {
        padding: 0 120px;/* quanto vuoi che le laterali "escano" */
    }
}

/* CARD DEL CONTENUTO (testo + immagine) */
.featuredSwiper .featured-slide-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.featuredSwiper .content-single-featured {
    max-width: 90%;
    margin: 0 auto;
    text-wrap-mode: wrap;
}
.featuredSwiper .content-single-featured a{
   color: #ffffff;
   text-decoration: none; 
   text-shadow: 0px 0px 0px #ffffff;
    transition: all 0.4s ease-in-out;
}
.featuredSwiper .content-single-featured a:hover{
   color: #ffffff;
   text-decoration: none; 
   text-shadow: 0px 0px 9px #ffffff;
}

.featuredSwiper .featured-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
}

.featuredSwiper .featured-title {
    font-size: clamp(3rem, 6vw, 4.4rem);
    line-height: 1.1;
    text-wrap-mode: wrap;
    font-family: var(--f-fragment);
}

.featuredSwiper .featured-text {
    font-size: 0.95rem;
    line-height: 1.7;
    text-wrap-mode: wrap;
}

/* immagine tipo "card" che fluttua sotto il testo */
.featuredSwiper .content-media {
    margin-top: 60px;
}

.featuredSwiper .slide-img {
    display: block;
    max-width: 400px;
    width: 100%;
    border-radius: 6px;
    object-fit: cover;
    
}

/* Responsive */
@media (max-width: 1024px) {
    .featuredSwiper .swiper-slide {
       
       width: 90%;
   }
    .featuredSwiper  .featured-slide-bg {
        padding: 100px 0 20px;
    }

    .featuredSwiper  .featuredSwiper {
        padding: 0 24px;
    }

   .featuredSwiper  .content-media {
        margin-top: 40px;
    }

   .featuredSwiper  .slide-img {
        max-width: 320px;
    }
    .featured-slide .spacer_150{
        height: 150px
    }
}

/* CONTENITORE CON ELLISSE */
.blackoverlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--dark);
    opacity: 0.5;
    top: 0;
    left: 0;
}

.svg-wrapper {
    position: relative;
    width: 514px;
    height: 659px;
    margin-top: 100px;
    margin-bottom: 100px;
}

.svg-wrapper svg  {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.svg-wrapper .custom-shape {
    fill: var(--light);
}

.svg-wrapper text {
    fill: var(--light);
    font-size: 50px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'fragmentserif_regular', sans-serif;
}

.svg-wrapper .inner-text-block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    text-align: center;
    font-size: 18px;
    line-height: 26px;
    font-family: 'helvetica_light', "Helvetica Neue", sans-serif;
    color: var(--dark);
}

.svg-wrapper .letter {
    fill: white;
    font-size: 42px;
    font-family: sans-serif;
    text-transform: uppercase;
    pointer-events: none;
}
@media only screen and (max-width:991px) {
    .svg-wrapper {
        position: relative;
        width: 330px;
        height: 448px;
        margin-top: 100px;
        margin-bottom: 100px;
    }
    .svg-wrapper .inner-text-block {
        line-height: 24px;
        font-size: 14px;
    }
    .svg-wrapper text {
        font-size: 40px;
    }
}
/* SPAZIATORI */
.spacer_200 { height: 200px }
.spacer_150 { height: 150px }
.spacer_110 { height: 110px }
.spacer_96 { height: 96px }
.spacer_80 { height: 80px }
.spacer_64 { height: 64px }
.spacer_48 { height: 48px }
.spacer_32 { height: 32px }
.spacer_16 { height: 16px }

/* UTILITIES */
.fit-text { displßay: inline-block; white-space: nowrap; transition: letter-spacing 0.2s ease; }
.two-cols { column-count: 2; column-gap: 30px; }
video:not([poster]) { background-color: white; }
.is-pre-animate { opacity: 0; } /* stato iniziale */
/* MEDIA QUERIES */
@media (max-width: 1024px) {
    .two-cols {
        column-count: 1;
    }
    .spacer_150 { height: 50px }
    .spacer_110 { height: 56px }
    .spacer_96 { height: 48px }
    .spacer_80 { height: 40px }
    .spacer_64 { height: 32px }
    .spacer_48 { height: 24px }
    .spacer_32 { height: 16px }
    .spacer_16 { height: 8px }
}


.home .progress-wrap,
.progress-wrap.active-progress{
  position: fixed;
  bottom: 140px;
  left: 40px;
  height: 30px;
  width: 30px;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  z-index: 98;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border: 1.2px solid rgba(134, 134, 134, 0.9);
}
.home .progress-wrap:hover,
.progress-wrap.active-progress:hover{
  box-shadow: 0 8px 16px rgba(27, 30, 35, 0.5);
  
}
.home .progress-wrap span{
    opacity: 1;
    visibility: visible;
    color: rgba(134, 134, 134, 0.9);
    position: absolute;
    width: 200px;
    bottom: 20px;
    left: 100%;
    padding-left: 20px;
    font-family: 'helvetica_light', sans-serif ;
    font-size: 14px;
    letter-spacing: 0.05em;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.progress-wrap.active-progress span{display: none}
.home .progress-wrap::after,
.progress-wrap::after{
  position: absolute;
  content: "\e91d";
  font-family: "icomoon";
  text-align: center;
  line-height: 30px;
  font-size: 7px;
  color: rgba(134, 134, 134, 0.9);
  height: 30px;
  width: 30px;
  cursor: default;
  z-index: 1;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
  
}

.home .progress-wrap::after:active,
.progress-wrap::after:active{
  animation: goTopToBottom 0.6s forwards;
}
.home .progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.home .progress-wrap.active-progress span {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.progress-wrap.active-progress::after {
    content: "\e905";
  font-family: "icomoon";
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  box-sizing: border-box;
  stroke: var(--blue);
  stroke-width: 4;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  transition-duration: 0.4s;
  transition-timing-function: linear;
}
.progress-wrap.at-bottom, .progress-wrap.at-bottom span{
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

@media (max-width: 1024px) {
    .home .progress-wrap,
    .progress-wrap.active-progress{
        left: 4px;
        height: 25px;
        width: 25px;
  }
    .home .progress-wrap {
       opacity: 0;
    }
    .home .progress-wrap.active-progress{ 
        opacity: 1;
    }
}

/*------------ animation ---------------- */
@keyframes iconBounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes goTopToBottom {
  49% {
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
/*------------ fine animation ---------------- */


a.dsn-button{
    text-decoration: none;
}
.dsn-button,
a.dsn-button:visited {
  position: relative;
  padding: 20px 30px;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 1px; 
  color: #fff;
}
.dsn-button svg{
    max-height: 16px;
    
}
.dsn-button svg .cls-1 {
        stroke-linejoin: bevel;
      }

.dsn-button svg .cls-1, .dsn-button svg .cls-2 {
        fill: none;
        stroke: #f7f7f7;
      }
 .menu-black .dsn-button svg .cls-1,
.menu-black .dsn-button svg .cls-2 {
        fill: none;
        stroke: #202020;
      }
.header-wrap.scrollHeader.header-bg .dsn-button svg .cls-1 {
        stroke-linejoin: bevel;
      }

.header-wrap.scrollHeader.header-bg .dsn-button svg .cls-1, .header-wrap.scrollHeader.header-bg  .dsn-button svg .cls-2 {
        fill: none;
        stroke: #202020;
      }
.dsn-button:hover .text-button {
  -webkit-animation: storm 0.7s ease-in-out both;
          animation: storm 0.7s ease-in-out both;
  -webkit-animation-delay: 0.06s;
          animation-delay: 0.06s;
}
.dsn-button .text-button {
  pointer-events: none;
}
.dsn-button:hover .dsn-border-rdu, .dsn-button:hover .dsn-border {
  -webkit-clip-path: polygon(0% 0%, 0% 100%, 94% 100%, 0 0, 5% 0, 100% 100%, 100% 100%, 100% 0%);
          clip-path: polygon(0% 0%, 0% 100%, 94% 100%, 0 0, 5% 0, 100% 100%, 100% 100%, 100% 0%);
}
.dsn-button.has-border, .dsn-button.has-border .dsn-border {
  border-radius: 60px;
}

.dsn-border-rdu {
  border-radius: 60px;
}

.dsn-border-rdu, .dsn-border {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-width: 1px;
  border-style: solid;
  -webkit-clip-path: polygon(0% 0%, 0% 100%, 44% 100%, 40% 0, 47% 0, 50% 100%, 100% 100%, 100% 0%);
          clip-path: polygon(0% 0%, 0% 100%, 44% 100%, 40% 0, 47% 0, 50% 100%, 100% 100%, 100% 0%);
  -webkit-transition: -webkit-clip-path 0.5s;
  transition: -webkit-clip-path 0.5s;
  -o-transition: clip-path 0.5s;
  transition: clip-path 0.5s;
  transition: clip-path 0.5s, -webkit-clip-path 0.5s;
  z-index: 1;
}
.dsn-border-rdu:after, .dsn-border-rdu:before, .dsn-border:after, .dsn-border:before {
  position: absolute;
  width: 50px;
  height: 50px;
  right: -20px;
  bottom: -20px;
  background-color: var(--cream);
  border-radius: 50%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.dsn-border-rdu:after, .dsn-border:after {
  -webkit-transform: translate(-3px, 3px);
      -ms-transform: translate(-3px, 3px);
          transform: translate(-3px, 3px);
  opacity: 0.5;
}

.content-more{
    display: flex;
    justify-content: center;
}

.btn-slide { 
    position: relative;
    margin: 25px 0;
    padding: 0px 30px;
    border-radius: 25px;
    display: flex;
    justify-content: start;   
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    height: 50px;
    width: auto;
    max-width: fit-content;
    line-height: 50px;
    text-decoration: none;
        }
.bg-gold {background-color: var(--gold);} 
.bg-dark {background-color: var(--dark-blue);} 
.bg-trasp {
    background-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    border: 0;
    display: flex;
    transition: all 1s ease;
}
.btn-slide.bg-trasp:hover { 
   background-color: rgba(255, 255, 255, 0.35);
   color: #ffffff;
   
}

.btn-slide:active {     
    -webkit-transform: scale(0.98);
    transform: scale(0.96); }
    
.btn-slide.bg-gold:hover { 
   background-color: var(--gold-light);
}
.btn-slide.bg-dark:hover { 
   background-color: var(--dark-light)!important;
} 
.btn-slide.bg-red:hover { 
   background-color: var(--gold);
   color: var(--light);
}
.btn-slide span.circle { 
    display: block;
    background-color: #fff;
/*    position: absolute;
    left: 0;*/
    height: 10px; 
    width: 10px;
    top: calc(50% - 4px); 
    margin-left: 0px;
    margin-right: 20px;
    border-radius: 50%;
    transition: all 1s ease;
 }
 .btn-slide.bg-gold span.circle,
 .btn-slide.bg-trasp span.circle 
.btn-slide.bg-red span.circle {     
    background-color: #fff;
 }
 .btn-slide.bg-dark span.circle {     
    background-color: var(--light);
    
 }    
.btn-slide span.book { 
    line-height: 0;
    margin-right: 10px;
}
  .btn-slide.style-2 { 
    position: relative;
    display: inline-block; 
    height: 40px;
    max-width: 250px;
    width: 100%;
    line-height: 40px;
    margin:  0;
    padding: 0px;
    border-radius: 0;   
  color: var(--gold);
        } 
.btn-slide.style-2  span.circle {
 background-color: var(--gold);
}
.btn-slide.style-2  span.btn-title {
 color: var(--gold);
}
.btn-slide.style-2:hover { 
     background-color: var(--red);
      border-radius: 25px; 
       transition: all 0.6s ease;
 }

 .btn-slide.style-2:hover  span.circle{ 
    
     background-color: var(--light);
 }
 .btn-slide.style-2:hover span.btn-title{ 
     color: var(--light);
     
 }
.btn-slide span.btn-title { 
/*    position: absolute;
    left: 45px;*/
    font-size: 16px;
    letter-spacing: 1.5px;
    color: #fff;
    transition: all 1s linear; 
    line-height: 45px;
    height: 50px;
 }
      
 .btn-slide:hover span.btn-title { 
     color: #605138;
 }     
 .btn-slide.bg-dark:hover span.btn-title,
  .btn-slide.bg-trasp:hover span.btn-title,
.btn-slide.bg-red:hover span.btn-title { 
     color: #ffffff;
 }  
 
 
 .book path.cls-1, .book path.cls-2{
     stroke: #ffffff;
 }
    
@media (max-width: 375px) {
 
  
  .btn-slide { padding: 0px 15px; }
}
.hero-book-wrap {
   min-width: 720px;
}
.hero-book-wrap a.btn,
.hero-book-wrap a.btn:hover,
.hero-book-wrap a.btn:active,
.hero-book-wrap .btn:first-child:active,
.hero-book-wrap a.btn:focus{
   color:#ffffff;
   border: none; 
   border-color: transparent;
   background-color: transparent;
}
.hero-book-wrap input {
    width: 100%;
    height: 50px;
    background-image: url(images/calendar.svg);
    background-size: 16px 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    background-repeat: no-repeat;
    background-position: 95% 50%;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    text-align: left;
    text-indent: 10px;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    -o-transition: background 0.3s ease-in-out;
    transition: background 0.3s ease-in-out;
}
.hero-book-wrap input:hover,
.hero-book-wrap input:active {
    background-color: var(--light);
    color: #000;
    background-image: url(images/calendar-b.svg);
    
}

.hero-book-wrap label{
    position: absolute;
    top: -30px;
    left: 15%;
    color: #f7f7f7;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    height: 16px;
    font-size: 16px;
    letter-spacing: 1px;
}

.text-rotate {
  display: flex;
  justify-content: center;
  align-items: center;
  height: max-content;
  width: max-content;
  margin: 0;
  background-color: transparent;
  animation: rotate 10s linear infinite;
}
.text-rotate .circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: relative;
}
.text-rotate .text span {  
  font-size: 12px;
  font-weight: 400;
  line-height: 10px;
  position: absolute;
  top: 0;
  left: 50%;
  transform-origin: 0 50px;
  color: #ffffff;
  padding-top: 9px;
}

.wg-curve-text {
  position: relative;
  width: max-content;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: transparent;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  
}
.wg-curve-text .icon {
  position: absolute;
  background-image: url(images/arrow-right.svg);
    background-size: 12px 10px;background-repeat: no-repeat;
    background-position: 50% 50%;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.wg-curve-text .icon:hover {
    background-image: url(images/arrow-right-b.svg);
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 255, 255, 1);
}
@media (max-width: 425px) {
    .hero-book-wrap input {
        height: 40px;
        font-size: 14px;
    }
}

.three-media .img-card img{
    display: block;
    height: 100%;
    width: 100%;   
    object-fit: cover;
   
}
.ellipse-text{
    height: 90vh;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.ellipse-text video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.footer {
    border-top: 1px solid var(--light-blue);
    background-color: var(--light);
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}
.footer .logo-site svg {
  max-width: 288px;
  width: 100%;
}
.footer .footer-title, .footer .info{
    font-size: 14px;
    line-height: 130%;
}

.footer .logo-site {
  margin-bottom: 38px;
  max-width: 320px;
}
.social-menu .social-list,
.footer .social-list{
    display: flex;
    flex-wrap: wrap;
    gap:10px;
}

.footer .social-list li{
    flex-basis: calc(33.33% - 20px);
    list-style: none;
    width: 26px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid #252C411A;
    line-height: 46px;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.footer .social-list a {
    font-size:14px;
  color: var(--dark);
   text-decoration: none;
    width: 100%;
    height: 100%;
    text-align: center;
    border-radius: 50%;
    transition: all 0.6s ease;
}
.social-menu .social-list a svg,
.footer .social-list a svg{
    fill: #252C41;
}
.social-menu .social-list a:hover,
.footer .social-list a:hover {
  color: var(--light);
  background: var(--blue);
}
.social-menu .social-list a:hover svg,
.footer .social-list a:hover svg {
  fill: var(--light);
  
}
.footer .policy-list .list {
  line-height: 2rem;
  display: block;
  align-items: center;
  padding-left: 0;
  list-style: none;
  font-size: 14px
   
}
.footer .policy-list a {
  color: var(--Text-3);
}
.footer .policy-list a:hover {
  color: var(--White);
}

.footer .footer-go-top {
  position: absolute;
  scroll-behavior: smooth;
}

.footer .footer-go-top::after {
  content: none;
}
.footer .footer-bottom {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0px 110px;
}

.footer .footer-go-top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--light-blue);
  background-color: transparent;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
}
.footer .footer-go-top::after {
  content: none;
}

.footer .footer-go-top svg {
  fill:none;
  animation: iconBounce 2s linear 0s infinite;
}
.footer .footer-go-top:hover {
  background-color: var(--gold);
  border: 1px solid var(--gold);
  opacity: 0.5;
}
.footer .footer-go-top:after {
    position: absolute;
        content: "\e905";
    font-family: "icomoon";
    text-align: center;
    line-height: 30px;
    font-size: 7px;
    color: var(--blue);    
    height: 30px;
    width: 30px;
    cursor: pointer;
    z-index: 1;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
    animation: iconBounce 2s linear 0s infinite;
}
.footer .footer-go-top:hover:after {
    color: var(--light);
}

@media (min-width:1600px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1520px}}
@media (min-width:1920px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1800px}}


@media (max-width: 1200px) {
    .footer .social-list{
        width: 100%;
        justify-content: end;
        margin-right: 20px;
    }
    .footer .social-list li{
    flex-basis: auto;
    list-style: none;
    width: 46px;
    height: 46px;
    }
    .dsn-button, a.dsn-button:visited {
   
    padding: 10px 15px;
    }
}
@media (max-width: 991px) {

.footer .logo-site {
    margin-bottom: 20px;
    max-width: 200px;
    margin-left:20px;
  }
  .footer .footer-inner-wrap {
    width: 50%;
  }
  .footer .footer-inner-wrap .text.mb-70 {
    margin-bottom: 20px;
  }
  .footer .footer-inner-wrap.form-wrap {
    max-width: unset;
    width: 50%;
  }
  .footer .footer-inner-wrap.s1 {
    gap: 30px;
  }
  .footer .footer-inner-wrap.s1 br {
    display: block;
  }
  .footer .footer-inner-wrap.s1 .footer-title {
    margin-bottom: 5px;
  }
  .footer .footer-bottom {
    gap: 0px 40px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 30px 0px 60px;
  }
  .footer .footer-bottom .list {
    gap: 15px;
  } 
}


@media (max-width: 767px) {
    .header-wrap {
       padding: 20px;
    }
    .footer .footer-bottom {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer .logo-site {    
    margin-left:0px;
  }
  .footer .wrap{
      text-align: center
  }
  .footer .no-copy {
    line-height: 19px;
  }
  .footer .no-copy span {
    line-height: 19px;
  }
  .footer .no-copy a {
    line-height: 19px;
  }
  .footer .social-list{
        width: 100%;
        justify-content: center;
        margin-right: 15px;
        margin-right: 15px;
        margin-bottom: 40px;
    }
    .dsn-button, a.dsn-button:visited {
        padding:10px;
    }
    
}


  @media (max-width: 425px) {
  .wg-curve-text {
    position: relative;
    width: max-content;
    width: 35px;
    height: 35px;    
   
}
.hero-book-wrap{
    padding:0 15px;
}
  .footer .footer-bottom .list {
    flex-wrap: wrap;
    gap: 0px 15px;
    justify-content: center;
  }
  .footer .footer-bottom .list li a {
    line-height: 19px;
  }

    .dsn-button, a.dsn-button:visited {
        padding: 10px 5px;
        width: 100px;
        display: block;
    }
  }
.featured-wellness {
    background-color: var(--grey);
    padding-top: 120px;
  
}
.featured-wellness .intro-inner{
    padding-bottom: 120px;
   
}

.featured-wellness .content-title{
    padding-right: 50px;
}
.featured-wellness .content-text{
    padding-left: 50px;
}

.content-park .box-content{
    padding-top: 80px;
    padding-bottom:80px;
}
.content-park .content-img img{
    max-height: 300px;
}

.wrapper-gallery-grid{
    background-color: #f7f7f7;
    overflow: hidden;
    min-height: 700px;
    position: relative;
    width: 100%;
    
}
.galleryContainer { 
    height: 100vh; 
    transform: rotate(6deg); 
    position: absolute; 
    width: 120%;
    top: -100px;
    left: -30px;
    bottom: 0;
    right: -20px;
}
.grid { 
    visibility: hidden;
    margin: 0 auto;
  max-width: 100%;
  width: 120%;
  display: block
}
.grid.masonry-ready { 
    visibility: visible;
}
.grid-sizer, .grid-item { 
    width: 15%; 
}
@media (max-width: 1700px) {
    .grid-sizer, .grid-item { 
        width: 18%; 
    }
    .wrapper-gallery-grid{   
        min-height: 600px;
    }
    
}
@media (max-width: 1024px) {
    
}

@media (max-width: 768px) {
    .grid-sizer, .grid-item { 
        width: 30%; 
    }
    .wrapper-gallery-grid{
    
    height: 100vh;
    }
    .focus-world {    
        padding-bottom: 50px;
    }
    
}

.grid-item { 
    margin-bottom: 20px;
}
.grid-item img {
    display:block; 
    width:100%; 
    height:auto;
}

.focus-world{
    border-bottom: 1px  solid var(--light-blue);
    padding-bottom: 150px;
    padding-top: 120px;
}
.focus-world .wrapper-video video{
    max-width: 100%; 
    width: 100%;
    height: 100%
}
.height-inner{
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.flex-min-height-box {
  	display: -webkit-box;
  		display: -ms-flexbox;
  			display: flex;
  	-webkit-box-orient: horizontal;
  	-webkit-box-direction: normal;
  	    -ms-flex-direction: row;
  	        flex-direction: row;
  	position: relative;
}
.flex-min-height-vert {
  	display: -webkit-box;
  		display: -ms-flexbox;
  			display: flex;
  	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	    -ms-flex-direction: column;
  	        flex-direction: column;
  	position: relative;
}
.flex-min-height-inner {
	width: 100%;
	height: 100%;
/*	min-height: 100vh;*/
	display: -webkit-box;
		display: -ms-flexbox;
			display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.flex-min-height {
	width: 100%;
	height: 100%;
	display: -webkit-box;
		display: -ms-flexbox;
			display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.bg-grey {
    background: var(--bg-header);
}
.page-head-bg {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    overflow: hidden;
}
.page-head-bg .overlay-bg:before {
    content: '';
    width: 100%;
    height: 100%;
     background: var(--bg-header);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: block;
}

.hole-window {
    position: absolute;
    left: 50%;
    
    
    transform: translate(-50%);    
    width: auto;
    height:calc(100% - 150px);
    box-shadow: inset 2px 2px 2px 5px var(--bg-header), -1px -1px 20px 99999px var(--bg-header);
}
.hole-window svg{
    width: auto;
    height: 100%;
    display: block;
}
.container-hero{   
    max-width: 1350px;
    width: calc(100% - 250px);
    margin-left: auto;
    margin-right: auto;
    height: auto;
    position: relative;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.flex-container {
	display: -webkit-box;
		display: -ms-flexbox;
			display: flex;
	-ms-flex-flow: wrap;
	    flex-flow: wrap;
}
.top-bottom-padding-30 {
	padding-top: 30px;
	padding-bottom: 30px;
}

.top-padding-30 {
	padding-top: 30px;
}

.bottom-padding-30 {
	padding-bottom: 30px;
}

.top-bottom-padding-50 {
	padding-top: 50px;
	padding-bottom: 50px;
}
.bottom-padding-50 {
	padding-bottom: 50px;
}
.top-padding-50 {
	padding-top: 50px;	
}
.top-bottom-padding-90 {
	padding-top: 90px;
	padding-bottom: 90px;
}

.top-padding-90 {
	padding-top: 90px;
}

.bottom-padding-90 {
	padding-bottom: 90px;
}
.top-bottom-padding-110 {
	padding-top: 110px;
	padding-bottom: 110px;
}
.top-padding-110 {
	padding-top: 110px;	
}
.bottom-padding-110 {
	padding-bottom: 110px;
}
.top-bottom-padding-130 {
	padding-top: 130px;
	padding-bottom: 130px;
}
.top-padding-150 {
	padding-top: 150px;
	
}
.bottom-padding-150 {
	
	padding-bottom: 150px;
}
.content-left-margin-0 {
	margin-left: 0px;
}
.content-left-right-margin-50 {
	margin-left: 50px;
	margin-right: 50px;
}
.content-left-margin-50 {
	margin-left: 50px;
}
.content-right-margin-50 {
	margin-right: 50px;
}
.content-left-right-margin-90 {
	margin-left: 90px;
	margin-right: 90px;
}

.content-right-margin-90 {
	margin-right: 90px; 
}

.content-left-margin-90 {
	margin-left: 90px;
}
.content-left-right-margin-150 {
	margin-left: 150px;
	margin-right: 150px;
}

.content-right-margin-150 {
	margin-right: 150px;
}

.content-left-margin-150 {
	margin-left: 150px;
}

@media only screen and (max-width: 1024px) {
        .content-left-right-margin-150 {
            margin-left: 20px;
            margin-right: 20px;
    }
	
	.content-left-right-margin-50,
	.content-left-right-margin-45,
	.content-left-right-margin-40,
	.content-left-right-margin-35,
	.content-left-right-margin-30,
	.content-left-right-margin-25,
	.content-left-right-margin-20,
	.content-left-right-margin-15,
	.content-left-right-margin-10,
	.content-left-right-margin-5 {
		margin-left: 0;
		margin-right: 0;
	}
        .content-right-margin-150 {
            margin-right: 0px;
    }


	.content-right-margin-90,
	.content-right-margin-50,
	.content-right-margin-45,
	.content-right-margin-40,
	.content-right-margin-35,
	.content-right-margin-30,
	.content-right-margin-25,
	.content-right-margin-20,
	.content-right-margin-15,
	.content-right-margin-10,
	.content-right-margin-5 {
		margin-right: 0;
	}
	
        .content-left-margin-150 {
            margin-left: 0px;
    }
        .content-left-margin-90,
	.content-left-margin-50,
	.content-left-margin-45,
	.content-left-margin-40,
	.content-left-margin-35,
	.content-left-margin-30,
	.content-left-margin-25,
	.content-left-margin-20,
	.content-left-margin-15,
	.content-left-margin-10,
	.content-left-margin-5 {
		margin-left: 0;
	}
	
        .hole-window {
        position: absolute;
        left: 50%;
        top: 150px;
        bottom:25%;
        transform: translate(-50%);    
        width: auto;
        height:calc(100% - 25%);
    }
}

@media only screen and (max-width: 767px) {
	
	.content-left-right-margin-50,
	.content-left-right-margin-45,
	.content-left-right-margin-40,
	.content-left-right-margin-35,
	.content-left-right-margin-30,
	.content-left-right-margin-25,
	.content-left-right-margin-20,
	.content-left-right-margin-15,
	.content-left-right-margin-10,
	.content-left-right-margin-5 {
		margin-left: 0;
		margin-right: 0;
	}
	
        .content-right-margin-150,
	.content-right-margin-50,
	.content-right-margin-45,
	.content-right-margin-40,
	.content-right-margin-35,
	.content-right-margin-30,
	.content-right-margin-25,
	.content-right-margin-20,
	.content-right-margin-15,
	.content-right-margin-10,
	.content-right-margin-5 {
		margin-right: 0;
	}
	.content-left-margin-150,
	.content-left-margin-50,
	.content-left-margin-45,
	.content-left-margin-40,
	.content-left-margin-35,
	.content-left-margin-30,
	.content-left-margin-25,
	.content-left-margin-20,
	.content-left-margin-15,
	.content-left-margin-10,
	.content-left-margin-5 {
		margin-left: 0;
	}
	
        
        .content-margin-100-70 {
            margin-left: 40px;
		margin-right: 40px;
        }
        
}

@media only screen and (max-width: 549px) {
       
	.content-left-right-margin-50,
	.content-left-right-margin-45,
	.content-left-right-margin-40,
	.content-left-right-margin-35,
	.content-left-right-margin-30,
	.content-left-right-margin-25,
	.content-left-right-margin-20,
	.content-left-right-margin-15,
	.content-left-right-margin-10,
	.content-left-right-margin-5 {
		margin-left: 0;
		margin-right: 0;
	}
	.content-right-margin-50,
	.content-right-margin-50,
	.content-right-margin-45,
	.content-right-margin-40,
	.content-right-margin-35,
	.content-right-margin-30,
	.content-right-margin-25,
	.content-right-margin-20,
	.content-right-margin-15,
	.content-right-margin-10,
	.content-right-margin-5 {
		margin-right: 0;
	}
	 
	
	.content-left-margin-50,
	.content-left-margin-50,
	.content-left-margin-45,
	.content-left-margin-40,
	.content-left-margin-35,
	.content-left-margin-30,
	.content-left-margin-25,
	.content-left-margin-20,
	.content-left-margin-15,
	.content-left-margin-10,
	.content-left-margin-5 {
		margin-left: 0;
	}
        
	
	.content-padding-l-r-20 {
		padding-left: 10px;
		padding-right: 10px;
	}
        .content-margin-100-70 {
            margin-left: 20px;
		margin-right: 20px;
        }
        .hole-window {
        position: absolute;
        left: 50%;
        top: 150px;
        bottom:36%;
        transform: translate(-50%);    
        width: auto;
        height:calc(100% - 36%);
    }
	
}

@media only screen and (max-width: 549px) {
    .hole-window {
        position: absolute;
        left: 50%;
        top: 150px;
        bottom:42%;
        transform: translate(-50%);    
        width: auto;
        height:calc(100% - 42%);
    }
	
}


.p-style-normal {
	font-size: 18px;
	line-height: 160%;
	font-weight: 300;
	letter-spacing: 0.2px;
	font-family: 'helvetica_regular', "Helvetica Neue", Helvetica, Arial, sans-serif;
    
}
.p-style-normal strong {	
	font-weight: 600;
        letter-spacing: 0.04em;
}
.p-style-medium {
	font-size: 24px;
	line-height: 120%;
	font-weight: 300;
	letter-spacing: 0px;
	font-family: 'fragmentserif_regular', sans-serif;
    
}
.title-style-medium {
	font-size: 32px;
	line-height: 120%;
	font-weight: 400;
	letter-spacing: 0px;
	font-family: 'fragmentserif_regular', sans-serif;
    
}
.title-style-medium-large {
	font-size: 48px;
	line-height: 120%;
	font-weight: 400;
	letter-spacing: 0px;
	font-family: 'fragmentserif_regular', sans-serif;
    
}
.title-style-large {
	font-size: 60px;
	line-height: 120%;
	font-weight: 400;
	letter-spacing: 0px;
	font-family: 'fragmentserif_regular', sans-serif;
    
}
.title-style-big {
	font-size: 90px;
	line-height: 110px;
	font-weight: 400;
	letter-spacing: 0px;
	font-family: 'fragmentserif_regular', sans-serif;
    
}

.subtitle {
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 3px;
    font-family: 'helvetica_regular', "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.subtitle-medium {
    font-size: 20px;
    text-transform: uppercase;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 2px;
    font-family: 'helvetica_regular', "Helvetica Neue", Helvetica, Arial, sans-serif;
}

@media (max-width: 1600px) {
    .hero-title {
        font-size: 5.5rem;
       
    }
}

@media (max-width: 1200px) {
    h2{
    font-size: 2.5rem;  
  }
    .hero-title {
        font-size: 4rem;
       
    }
    .title-style-medium {
	font-size: 28px;
    }
    .title-style-medium-large {
	font-size: 36px;
	
    }
    .title-style-large {
            font-size: 40px;
            line-height: 50px;
            font-weight: 400;
            letter-spacing: 0px;
            font-family: 'fragmentserif_regular', sans-serif;

    }
    .title-style-big {
            font-size: 36px;
            line-height: 50px;
            font-weight: 400;
            letter-spacing: 0px;
            font-family: 'fragmentserif_regular', sans-serif;

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


}
@media (max-width: 991px) {
    .bottom-2 .row .row.h-100{
        height: auto!important;
    }
    h2{
    font-size: 30px;  
  }
   .hero-title {
        font-size: 50px;
       
    }
    .hero-book-wrap {
        min-width: 100%;
    }
    h1.big {
        font-size: 32px;
        margin-bottom: 30px;
    }
    .title-style-medium {
	font-size: 21px;
        line-height: 30px;
    }
    .title-style-medium-large {
	font-size: 28px;
        line-height: 36px;
	
    }
    .title-style-large {
        font-size: 26px;
        line-height: 34px;
    }
    
}


.splide__slide img {
  width: 100%;
  height: auto;
}


.double-content .portfolio-content-inner {
	min-height: 70vh;
}
.padding-x-100{
    padding-left: 120px;
    padding-right: 120px;
}
.double-content .six-columns,
.double-content .container {
	position: static;
}

.double-content-bg-box {
	position: absolute;
	width: 50%;
	height: 100%;
	left: 50%;
	top: 0;
	display: inline-block;
	z-index: 2;
}
.double-content .content-img img{
    max-height: 300px;
}
.reverse .double-content-bg-box {
	left: 0;
}

.double-content-bg {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.double-content h2 span,
.double-content span {
	margin-bottom: 2px;
}

.double-content h2 span:last-child {
	margin-bottom: 0;
}
.flex-min-height-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    position: relative;
}
.flex-min-height-inner {
    width: 100%;
    height: 100%;
    /*min-height: 100%;*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-min-height-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    position: relative;
}
.flex-container.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-flow: wrap-reverse;
    flex-flow: wrap-reverse;
}
.one-column, .two-columns, .three-columns, .four-columns, .five-columns, .six-columns, .seven-columns, .eight-columns, .nine-columns, .ten-columns, .eleven-columns, .twelve-columns {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}
.double-content .six-columns, .double-content .container {
    position: static;
}
.six-columns {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
}
.seven-columns {
	-ms-flex-preferred-size: 58.33%;
	    flex-basis: 58.33%;
}
.nine-columns {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
}
.three-columns {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
}
.two-columns {
    -ms-flex-preferred-size: 15%;
    flex-basis: 15%;
}
@media only screen and (max-width: 991px) {
	
	.container {
		width: 100%;
	}
	
	.one-column,
	.two-columns,
	.three-columns,
	.four-columns,
	.five-columns,
	.six-columns,
	.seven-columns,
	.eight-columns,
	.nine-columns,
	.ten-columns,
	.eleven-columns,
	.twelve-columns {
		-ms-flex-preferred-size: 100%;
		    flex-basis: 100%;
	}
	
	.one-offset,
	.two-offset,
        .twobis-offset,
	.three-offset,
	.four-offset,
	.five-offset,
	.six-offset,
	.seven-offset,
	.eight-offset,
	.nine-offset,
	.ten-offset,
	.eleven-offset {
		margin-left: 0;
	}
	
}
.doubleimg-content-bg {
    
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
     padding: 15%;
    
}
 .doubleimg-content-bg.hover-img:before { 
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    opacity: 0.6;
    z-index: 1;
 }
 .double-img{
     z-index: 2;
     border-top-left-radius: 50%;
     border-top-right-radius: 50%;
     overflow: hidden;
    height: 100%;
   
 }
 
  .double-img img{
 width: 100%; 
  height: 100%; 
  object-fit: cover;
  }
@media only screen and (max-width: 1440px) { 
    .double-content .content-left-margin-50{
        margin-left:0;
    } 
    .double-content-inner .content-text .six-columns{
                flex-basis: 70%;
        }
        .double-content-inner .content-text .three-columns{
                flex-basis: 15%;
        }
}

@media only screen and (max-width: 991px) {
    .double-content-inner .two-columns {
        display: none;
    }
	.double-content .six-columns,
	.double-content .container {
		position: relative;
	}
        .double-content .three-columns{
            display: none;
            
        }
	.double-content-bg-box {
		position: static;
		width: 100%;
		left: 0;
	}
	
	.double-content-bg {
		height: 100vh;
	}
        
	
}
@media only screen and (max-width: 991px) {
    .doubleimg-content-bg {
       height: 60vh;
    }
}

@media only screen and (max-width: 768px) {
.double-content-inner .content-text .six-columns{
                flex-basis: 100%;
        }
}

.box-case-full,
.box-case{
    position: relative;
}

.box-case-full .inner-img{
     width: 100%;
   height: calc(100vh - 150px);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.box-case .inner-img{
     width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
     padding: 15%;
}
.box-case-full .inner-img:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 0;
}

.download-area .grid {
    visibility: visible;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
justify-content: center; /* centra gli elementi */
}


.download-area .grid:has(> :nth-child(2):last-child),
.download-area .grid:has(> :first-child:last-child) {
  grid-template-columns: repeat(auto-fit, minmax(170px, 250px));
}
.grid > :first-child{
    grid-column: 1 / span 2;
  }

.grid .item-singe{
   
    width:100%;
    margin:0 auto;
}
.grid > * {
    display: flex;
  justify-items: stretch;
  gap: 16px;
  text-align:  center;  
  min-height: 95px;
}
.grid .item-grid{
    padding: 1rem 1rem 1rem 2rem;
    cursor: pointer;
    letter-spacing: 0.08em;
    border-radius: 10px;
}
.grid .item-grid a:before{
     content:  url(images/arrow-top.svg);
     position: absolute;
      transform: rotate(0deg);
      display: block;
     top: 1rem ;
    left: 0.3rem ;
    font-family: "icomoon";  
  line-height: 30px;
  font-size: 12px;
  color: rgba(247, 247, 247, 0.9);
  height: 30px;
  width: 30px;
  cursor: pointer;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
    
}
.grid .item-grid:hover a:before{
    content:  url(images/arrow-top-gold.svg);
     top: 1.2rem ;
}
.grid .item-grid a, .grid .item-grid a:visited {
   color: var(--light);
}
.grid .item-grid:hover a,  .grid .item-grid:hover a:focus {
   color: var(--gold);
}
.bottom-8 .content-text p{
    width: 100%;
}
@media only screen and (min-width: 1600px) {
    .section .vh-100,
    .bottom-5 .vh-100,
    .bottom-2 .vh-100 {
        height: calc(100vh - 150px)!important;
    }
    .three-media.vh-100,
    .box-case .inner-img {
        height: calc(100vh - 150px)!important;
    }
    
    .doubleimg-content-bg { height: calc(100vh - 150px)!important;}
    .bottom-5 .box-content{max-width: 600px}
    .double-content .content-img img {
        max-height: 400px;
        max-width: 500px;
    }
}
.wrapper-gallery .swiper.vh-100{
        height: calc(100vh - 140px)!important;
    }
.section-margin {
  margin-left: 120px;
  margin-right: 120px;
}
.section-margin-left {
  margin-left: 120px;
}
.section-margin-right {  
  margin-right: 120px;
}
.col-section  .columns-wrapper {
    column-count: 2;
    grid-column-gap: 80px;
}

@media only screen and (max-width: 1400px) {
  .section-margin {
    margin-left: 80px;
  margin-right: 80px;
  }
  .wrapper-gallery.section-margin {
  margin-left: 40px;
  margin-right: 40px;
}
  .section-margin-left {
    margin-left: 80px;
  }
  .section-margin-right {  
    margin-right: 80px;
  }
  .col-section  .columns-wrapper {        
        grid-column-gap: 50px;
    }
}
@media only screen and (max-width: 1024px) {
  .section-margin,
  .wrapper-gallery.section-margin {
  
    margin-left: 20px;
    margin-right: 20px;
  }
  .section-margin-left {
    margin-left: 20px;
  }
  .section-margin-right {  
    margin-right: 20px;
  }
  .row-maps.h-100{
      height: auto!important;
  }
}

@media only screen and (max-width: 991px) {
  
  .col-section  .columns-wrapper {
        column-count: 1;
        grid-column-gap: 0px;
    }
    .three-media.vh-100{
        height: 100%!important;
    }
}

.card-partner .card-grid{
    min-height: 150px;
    border-radius:4px;
    padding: 32px;
    border: 1px solid var(--dark);
}
.card-partner .card-grid img{
       width: 100%;
    object-fit: contain;
    max-height: 70px;
}

#info-request input,
#info-request textarea {
    width: 100%;
    border-radius:25px;
    border: 1px solid rgba( 32, 32, 32, 0.3);
    padding:  8px 20px;
    background: transparent;
    font-size: 14px;
}
#info-request input[type=text]:focus ,
#info-request textarea:focus,
#info-request input[type=text]:active ,
#info-request textarea:active{
     border: 1px solid var(--gold);
     outline: none;
}

#info-request .info-col label {
    padding-bottom: 5px;
    color:var(--gold);
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 3px;
    font-family: 'helvetica_regular', "Helvetica Neue", Helvetica, Arial, sans-serif;
}
#info-request .legal {
    padding-bottom: 5px;
    font-size: 14px;    
    line-height: 1.5;
    font-weight: 400;
    
}
#info-request p{
    margin-bottom:0.5rem;
}
#info-request input[type=checkbox] {
    width: 1.3em;
    height: 1.3em;
    padding: 3px;
    margin-right: 5px;
    background-color: transparent;
    border-radius: 50%;
    vertical-align: middle;
    border: 1px solid  rgba( 32, 32, 32, 0.5);
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
}

#info-request input[type=checkbox]:checked {
    border: 7px solid var(--gold);
}
#info-request button.btn-slide {
    background-color: var(--red);
   
    color: var(--light);
    border: 0;
}
#info-request button.btn-slide:hover { 
   background-color: var(--gold);
   color: var(--light);
}
#info-request button.btn-slide .circle { 
       margin-bottom: 3px;
   
 }

.info-contact h3 {
    padding-top: 10px;
     padding-bottom: 5px;
    color:var(--gold);
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 3px;
    font-family: 'helvetica_regular', "Helvetica Neue", Helvetica, Arial, sans-serif;
    
}
.info-contact p{
     padding-bottom: 5px;
    font-size: 14px;    
    line-height: 1.5;
    font-weight: 400;
    
}
.info-contact p.p-style-normal{
    font-size: 18px; 
    padding-top: 50px;
}
.info-contact a,
.info-contact a:visited {
    color: var(--dark);
    text-decoration: underline;

}
.info-contact a:hover{
    color: var(--gold);
    text-decoration: none;

}
.section-where .box-content h4{
    padding-top: 10px;
    padding-bottom: 5px;
    color:var(--gold);
    font-size: 14px;
    text-transform: none;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0;
    font-family: 'helvetica_regular', "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.section-where .box-content p{
    padding-top: 0px;
    padding-bottom: 5px;
    color:var(--dark);
    font-size: 14px;
    text-transform: none;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0;
    font-family: 'helvetica_regular', "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.section-where  .content-maps{
    width: 100%;
    height: 60%;
   
}
.section-where  .overflow-maps{
    width: 100%;
    height: 100%;
    border-radius: 15px;
    border: 1px solid rgba( 32, 32, 32, 0.3);
    overflow: hidden;
}
.section-where  .after-maps{
    width: 100%;
   padding-top: 30px;
   color:var(--dark);
    font-size: 14px;
    text-transform: none;
    line-height: 1.8;
}

.press-area-02,
.offers-area,
.single-offers-section,
.section-pg-nobg {
    padding-top: 80px;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.press-card {
  display: flex;
  flex-direction: column;
  background: var(--light-cream);
  border: 1px solid var(--cream);
  border-radius: 4px;
  padding: 16px;
  justify-content: center;
  overflow: hidden;
}

.press-card__media img { width: 100%; height: auto; padding-bottom:20px; display: block; }
.press-card__body { padding: 20px 10px 0px 10px; }
.press-card__title {  margin: 0 0 30px; overflow-wrap: break-word; text-transform: lowercase;}
.press-card__content { margin: 0; }

/* Featured = più grandi: 2 colonne */
.press-card--featured { grid-column: span 2; }

/* Responsive */
@media (max-width: 1024px) {
  .press-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  
  .section-where .overflow-maps {
        height: 450px;
  }
}
@media (max-width: 768px) {
  .press-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .press-card--featured { grid-column: span 2; }
}
@media (max-width: 480px) {
  .press-grid { grid-template-columns: 1fr; }
  .press-card--featured { grid-column: auto; }
}


.press-simple__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.press-simple__item .press-simple_card {
  height: auto;
  display: flex;
  flex-direction: column;
  background: var(--light-cream);
  border: 1px solid var(--cream);
  border-radius: 4px;
  padding: 16px;
  justify-content: center;
  overflow: hidden;
}

.simple__title {
   margin: 0 0 30px; 
   overflow-wrap: break-word; 
}

.simple__title a,
.simple__title a:visited{
   text-decoration: none;
   color: var(--dark);
}

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


.press-simple__content {
  text-decoration: none;
}

@media (max-width: 1024px) {
  .press-simple__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .press-simple__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .press-simple__grid { grid-template-columns: 1fr; }
}

.offers-simple__grid{
       display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
 
}
.single-offer{
    height: auto;
  display: flex;
  flex-direction: column;
  background: var(--light-cream);
  border: 1px solid var(--cream);
  border-radius: 4px;
  padding: 16px;
  justify-content: center;
  overflow: hidden;
  
}
.offer-card__media{
    border-radius: 4px;
}
.tf-hover .hover-1 {
  overflow: hidden;
}
.tf-hover .hover-1 img {
  width: 100%;
  height: 100%;
  transform: scale(1.01);
  -webkit-transition: all 1s cubic-bezier(0.24, 0.74, 0.58, 1);
  -khtml-transition: all 1s cubic-bezier(0.24, 0.74, 0.58, 1);
  -moz-transition: all 1s cubic-bezier(0.24, 0.74, 0.58, 1);
  -ms-transition: all 1s cubic-bezier(0.24, 0.74, 0.58, 1);
  -o-transition: all 1s cubic-bezier(0.24, 0.74, 0.58, 1);
  transition: all 1s cubic-bezier(0.24, 0.74, 0.58, 1);
}
.tf-hover:hover .hover-1 img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.content-book{
   
    padding: 16px;
}
.single-offers-section span.arrow svg{
    fill: var(--gold);
    width: 25px;
    height: 25px;
    display: inline-block;
    margin-right: 15px;
}

.single-offers-section a,
.single-offers-section a span.arrow svg,
.single-offers-section a:visited,
.single-offers-section a:visited span.arrow svg{
    fill: var(--gold);
    color: var(--gold);
    text-decoration: none;
    transition: all 1s ease;
}
.single-offers-section a:hover,
.single-offers-section a:hover span.arrow svg{
    fill: var(--blue);
    color: var(--blue);
}

.block-offer-content { 
padding: 60px 16px 40px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}
.block-offer-content h2.subtitle{
    max-width: 800px;
}

@media only screen and (min-width: 1920px) {
    .block-offer-content .col-xxl-9 {
        flex: 0 0 auto;
        width: 50%;
    }
    .content-hospitality .col-xxxl-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .content-hospitality .col-xxxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    .content-hospitality  .offset-xxxl-2{ 
        margin-left: 16.66666667%;
}
}

@media only screen and (max-width: 991px) {
  .offers-simple__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  
   .block-offer-content .txt-content {
        padding-left: 0px;
    }
    .press-area-02, .offers-area, .single-offers-section, .section-pg-nobg {
        padding-top: 30px;
    }
    .block-offer-content { 
        padding: 30px 16px 30px;
    }

}
@media only screen and (max-width: 600px) {
  .offers-simple__grid { grid-template-columns: 1fr; }
  
}

.pagination { 
    margin-top: 100px; 
    text-align: center; 
    display: flex;
    justify-content: center;
}
.pagination .page-numbers { 
    display: inline-block; 
    font-size: 14px;
    line-height: 18px;
    padding: 2px; 
    width: 22px;
    height: 22px;
    margin: 0 4px; 
    border: none; 
    border-radius: 20px; 
    text-decoration: none; 
}
.pagination .current { 
    background: var(--red); 
    color: #fff; 
    border-color: transparent; 
}
.pagination .arrow-right {
  width: 0; 
  height: 0; 
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  display: inline-block;
  border-left: 9px solid var(--red);
}

.pagination .arrow-left {
  width: 0; 
  height: 0; 
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent; 
  display: inline-block;
  border-right:9px solid var(--red); 
}

.block_hero-with-media .container-xxl .media-wrapper {
    width: 100%;
    position: relative;
    z-index: 2;
    
}

.cp-overlay[hidden] { display: none !important; }
.cp-overlay {
    position: fixed; 
    inset: 0;
    display: grid; place-items: center;
    background: rgba(0,0,0,.6);
    z-index: 9999; 
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cp-overlay[aria-hidden="false"] {
    opacity: 1;
    pointer-events: auto;
}

.cp-dialog {
    background: rgba(255,255,255,.9);
    width: 100%;
    border-radius: 10px;
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 8px 30px rgba(0,0,0,.25);
    min-height: 90vh; overflow-y: auto;
    opacity: 0;
}

.cp-close {
    position: absolute; top: .5rem; right: .5rem;
    border: none; background: transparent;
    font-size: 1.5rem; cursor: pointer;
}
.cp-title { margin: 0 0 1rem; font-size: 1.25rem; }
.child-pages { margin: 0; padding-left: 1rem; }
.child-pages li { margin: .25rem 0; }
.child-pages a { text-decoration: none; }
.child-pages a:hover { text-decoration: underline; }



.singleSwiper {
    width: 100%;
    height: calc(100vh - 100px);
    overflow: hidden;
}


.singleSwiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.singleSwiper .swiper-slide {
    width: auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    box-sizing: border-box;
}
/*.singleSwiper .swiper-slide.vertical-img{
    width: auto !important;  
}*/


/*.singleSwiper .swiper-slide.vertical-img img {
    height: 100%;                 
    width: auto;
    max-width: 100%;              
    object-fit: contain;
    display: block;
}*/

.singleSwiper .swiper-slide img {
    height: 100%;
    width: auto;
    max-width: 100%;              
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .singleSwiper {
        height: calc(100vh - 120px);
    }
    .singleSwiper .swiper-slide img {
        width: 100%;
        max-width: 100%;
        object-fit: cover;
    }
    .singleSwiper .swiper-slide {
        width: 100%
    }

}
    .navigation-box-gallery{
        position: relative;
        display: flex;
        align-content: center;
        flex-wrap: wrap;
        justify-content: center;
        width: auto;
        bottom: 50px;
        z-index: 1;
        gap: 30px;

}
.sw-button-next, .sw-button-prev { 
    position: relative;    
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;  
    top: auto;
    bottom: 0px;
    width: 15px;
    height: 15px;
    color: var(--light);
    margin-top: 0;
    cursor: pointer;
    background-image: none;
    overflow: hidden;
}
.sw-button-next svg {
 
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
          z-index: 2;
}
.sw-button-prev {
 

}
.navigation-box-gallery .swiper-pagination-bullet{
    opacity: 1;
    background: transparent;
    border: 1px solid var(--light);
} 
.navigation-box-gallery .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--red);
    border: 1px solid var(--red);

}
.sw-button-next svg, .sw-button-prev svg {
    fill: var(--light);
}
.navigation-box-gallery .swiper-pagination-bullets.swiper-pagination-horizontal{ 
left: auto;
    width: auto;
    position: relative
}
.cover-bg {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}


.roomslist-content .portfolio-content-inner {
	min-height: 70vh;
}
.padding-x-100{
    padding-left: 120px;
    padding-right: 120px;
}
.roomslist-content .six-columns,
.roomslist-content .container {
	position: static;
}

.roomslist-content-bg-box {
	position: absolute;
	width: 50%;
	height: 100%;
	left: 50%;
	top: 0;
	display: inline-block;
	z-index: 2;
}

.reverse .roomslist-content-bg-box {
	left: 0;
}

.roomslist-content-bg {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.roomslist-content h2 span,
.roomslist-content span {
	margin-bottom: 2px;
        padding: 5px 0; 
}
.roomslist-content h3 a:visited{
    color:var(--gold);
}
.roomslist-content h3 a:hover{
    color:var(--blue);
}
.roomslist-content h2 span:last-child {
	margin-bottom: 0;
}
.portfolio-content-bg {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.overlay-light-bg-2:before {
	background: #ffffff !important;
}
.tr-delay02 .hover-img {
	-webkit-transition-delay: .2s;
	    -o-transition-delay: .2s;
	        transition-delay: .2s;
}
.tr-delay02,
.tr-delay02:before,
.tr-delay02:after {
	-webkit-transition-delay: .2s !important;
	    -o-transition-delay: .2s !important;
	        transition-delay: .2s !important;
}
.light-bg-2 {
    background: var(--light);
}
.light-bg-cream {
    background: var(--light2-cream);
}
.arrow-btn-box {
	display: inline-block;
	position: relative;
}

.arrow-btn {
	padding: 25px 60px 25px 40px;
	background: #00504a;
	color: white;
	-webkit-transition: .5s cubic-bezier(.86, 0, .07, 1);
		-o-transition: .5s cubic-bezier(.86, 0, .07, 1);
			transition: .5s cubic-bezier(.86, 0, .07, 1);
	display: inline-block;
	text-transform: uppercase;
	 font-family: 'helvetica_light', sans-serif ;
	font-size: 12px;
	line-height: 1;
	font-weight: 500;
	letter-spacing: 3px;
        position: relative;
}
.arrow-btn:visited { color: white;}
.arrow-btn-box:hover .arrow-btn {
	padding: 25px 90px 25px 40px;
}

.arrow-btn:before {
	content: '';
	position: absolute;
	top: 50%;
	right: 40px;
	-webkit-transform: translateY(-50%) scaleX(0);
	    -ms-transform: translateY(-50%) scaleX(0);
	        transform: translateY(-50%) scaleX(0);
	width: 30px;
	height: 2px;
	-webkit-transition: .5s cubic-bezier(.86, 0, .07, 1);
		-o-transition: .5s cubic-bezier(.86, 0, .07, 1);
			transition: .5s cubic-bezier(.86, 0, .07, 1);
	-webkit-transform-origin: right;
	    -ms-transform-origin: right;
	        transform-origin: right;
	background: #e28d27;
}

.arrow-btn:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 40px;
	width: 7px;
	height: 7px;
	border-right: 2px solid white;
	border-top: 2px solid white;
	-webkit-transform: translateY(-50%) rotate(45deg);
	    -ms-transform: translateY(-50%) rotate(45deg);
	        transform: translateY(-50%) rotate(45deg);
	-webkit-transition: .5s cubic-bezier(.86, 0, .07, 1);
		-o-transition: .5s cubic-bezier(.86, 0, .07, 1);
			transition: .5s cubic-bezier(.86, 0, .07, 1);
}

.arrow-btn-box:hover .arrow-btn:before {
	-webkit-transform: translateY(-50%) scaleX(1);
	    -ms-transform: translateY(-50%) scaleX(1);
	        transform: translateY(-50%) scaleX(1);
}

.arrow-btn-box:hover .arrow-btn:after {
	border-right: 2px solid #e28d27;
	border-top: 2px solid #e28d27;
}

.visit-site {
  position: relative;
  color: var(--gold);
  overflow: hidden;
  background-color: var(--cream);
    display: block;
    border-radius: 25px;
    padding: 0 20px;
    text-decoration: none;
}
.visit-site:before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: var(--gold);
  height: 10px;
  width: 10px;
  margin-right: 25px;
  border-radius: 50%;
  -webkit-transition: 0.5s right, 0.5s width, 0.5s -webkit-transform;
  transition: 0.5s right, 0.5s width, 0.5s -webkit-transform;
  -o-transition: 0.5s transform, 0.5s right, 0.5s width;
  transition: 0.5s transform, 0.5s right, 0.5s width;
  transition: 0.5s transform, 0.5s right, 0.5s width, 0.5s -webkit-transform;
}
.visit-site:after {
  content: "";
  position: absolute;
  top: calc(50% - 15px);
  right: 20px;
  width: 30px;
  height: 30px;
  background-color: var(--gold);
  -webkit-transition: 0.5s width, 0.5s -webkit-transform;
  transition: 0.5s width, 0.5s -webkit-transform;
  -o-transition: 0.5s transform, 0.5s width;
  transition: 0.5s transform, 0.5s width;
  transition: 0.5s transform, 0.5s width, 0.5s -webkit-transform;
  z-index: 1;
}
.visit-site .text {
  position: relative;
  padding: 0 20px 0 30px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
}
.visit-site .text:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) translatex(0);
      -ms-transform: translateY(-50%) translatex(0);
          transform: translateY(-50%) translatex(0);
  background: rgba(204,153,51, 0.5);
  height: 1px;
  z-index: 1;
  -webkit-transition: 0.7s -webkit-transform;
  transition: 0.7s -webkit-transform;
  -o-transition: 0.7s transform;
  transition: 0.7s transform;
  transition: 0.7s transform, 0.7s -webkit-transform;
}
.visit-site:hover .text:before{
    left: 90%;
    -webkit-transform: translatex(90%);
      -ms-transform: translatex(90%);
          transform: translatex(90%);
          
          overflow: hidden;
}
.visit-site:hover::before {
  -webkit-transform: translateY(-50%) scale(0);
      -ms-transform: translateY(-50%) scale(0);
          transform: translateY(-50%) scale(0);
          overflow: hidden;
        
}
.visit-site:hover:after {
  width: 100%;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
          opacity: 0;
}
.visit-site:hover h6:before {
  -webkit-transform: translateY(-50%) scaleX(0);
      -ms-transform: translateY(-50%) scaleX(0);
          transform: translateY(-50%) scaleX(0);
}
.visit-site .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.visit-site .icon svg {
  height: 30px;
  width: 30px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg);
          z-index: 2;
}
.visit-site .icon svg .path {
  fill: none;
  stroke: #ffffff;
  stroke-miterlimit: 10;
  stroke-width: 1.8px;
}
.visit-site:hover .icon svg .path {
 
  stroke: #a06f37;
 
}
.bottom-2  .content-img img{
    max-height: 250px;
}
.bottom-5 .wrapper-img.vh-100 {
            height: calc(100vh - 150px)!important
        }
@media only screen and (min-width: 1600px) {
    .bottom-2  .content-img img{
        max-height: 350px;
    }

}
@media only screen and (max-width: 1024px) {
	
	.roomslist-content .six-columns,
	.roomslist-content .container {
		position: relative;
	}
        .roomslist-content .three-columns{
            display: none;
            
        }
	.roomslist-content-bg-box {
		position: static;
		width: 100%;
		left: 0;
	}
	
	.roomslist-content-bg {
		height: 100vh;
	}
        
	.portfolio-content-bg {
		height: 60vh;
	}
        .bottom-5 .wrapper-img .h-100{
            height: auto;
        }
        .bottom-5 .wrapper-img.vh-100 {
            height: auto!important
        }
	
}

.tp-service-2-accordion-box .accordion-items {
  border-bottom: 1px solid var(--cream);
  position: relative;
}
.tp-service-2-accordion-box .accordion-header .accordion-buttons {
  padding: 20px 0;
  padding-left: 30px;
  padding-right: 50px;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  color: var(--gold);
  width: 100%;
  text-align: left;
}
.tp-service-2-accordion-box .accordion-header .accordion-buttons:not(.collapsed) .accordion-icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.tp-service-2-accordion-box .accordion-header .accordion-buttons .accordion-icon {
  position: absolute;
  top: 40px;
  right: 0;
}
.tp-service-2-accordion-box .accordion-header .accordion-buttons .accordion-icon::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--gold);
  border-radius: 2px;
  transition: 0.4s;
}
.tp-service-2-accordion-box .accordion-header .accordion-buttons .accordion-icon::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--gold);
  border-radius: 2px;
}
.tp-service-2-accordion-box .accordion-header span {
  margin-right: 20px;
}
.tp-service-2-accordion-box .accordion-body {
  padding: 0px 10px 40px 85px;
}
@media (max-width: 767px) {
  .tp-service-2-accordion-box .accordion-body {
    padding: 0px 10px 40px 50px;
  }
}
.tp-service-2-accordion-box .accordion-body p {
  margin-bottom: 40px;
}

.fq-faq-wrapper .tp-service-2-accordion-box .accordion-header .accordion-buttons {
  padding: 35px ;
  padding-left: 0px;
  padding-right: 50px;
  font-size: 30px;
  font-weight: 600;
  color: var(--gold);
  border:none;
  background-color: transparent
}
@media (max-width: 767px) {
  .fq-faq-wrapper .tp-service-2-accordion-box .accordion-header .accordion-buttons {
    font-size: 20px;
  }
}
.fq-faq-wrapper .tp-service-2-accordion-box .accordion-body {
  padding: 0;
  padding-right: 100px;
}
@media (max-width: 767px) {
  .fq-faq-wrapper .tp-service-2-accordion-box .accordion-body {
    padding: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-service-2-accordion-box {
    margin-bottom: 60px;
  }
}


.fq-faq-sidebar {
  padding-left: 70px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fq-faq-sidebar {
    padding-left: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .fq-faq-sidebar {
    padding-left: 0px;
  }
}
.fq-faq-sidebar-title {
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 15px;
  color: var(--tp-common-black-2);
}
.fq-faq-sidebar-content p {
  color: #5D5D63;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 45px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .fq-faq-sidebar-content p br {
    display: none;
  }
}
.fq-faq-sidebar-input input {
  border: none;
  padding-left: 9px;
  background-color: transparent;
  border-bottom: 2px solid #D9D9D9;
  color: #5D5D63;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}
.fq-faq-sidebar-input input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #5D5D63;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}
.fq-faq-sidebar-input input::-moz-placeholder { /* Firefox 19+ */
  color: #5D5D63;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}
.fq-faq-sidebar-input input:-moz-placeholder { /* Firefox 4-18 */
  color: #5D5D63;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}
.fq-faq-sidebar-input input:-ms-input-placeholder { /* IE 10+  Edge*/
  color: #5D5D63;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}
.fq-faq-sidebar-input input::placeholder { /* MODERN BROWSER */
  color: #5D5D63;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}
.fq-faq-sidebar-thumb {
  margin-bottom: 40px;
}
.fq-faq-sidebar-search {
  position: absolute;
  top: 15px;
  right: 0;
}

.content-hospitality .wrapper-img-2 .h-60{
    height: 60% !important;
}
.content-hospitality .wrapper-img-2 .h-40 {
        height: 40% !important;
    }



@media only screen and (max-width:991px) {
    .reveal .icon-lion img {
        display: block;
         float: none; 
        width: 27.74px;
        height: 31.97px;
        margin-bottom:20px;
    }
    .img-orizzontale-end.w-50{
        width: 100%!important;
    }
    .content-hospitality .wrapper-img-2 .h-60,
    .content-hospitality .wrapper-img-2 .h-40,
    .wrapper-img-2 .h-50,
    .wrapper-img-2 .h-75,
    .content-park .h-100{
        height: 100%!important;
    }
    .content-park .vh-100{
        height: calc(100vh - 150px);
        
    }
    .content-park .h-100 img{
        
        padding-top: 30px;
    }
    
   .content-park .content-img img {
        height: 100%;
        height: auto;
    }
    .content-park .box-content {
        padding-top: 0;
        padding-bottom: 0;
    }
    .progress-wrap {
       left: 5px;
    height: 20px;
    width: 20px; 
    }  
    .progress-wrap span{
        display: none;
    }
    .three-media,
    .wrapper-img-2,
    .content-park { 
        padding: 0 20px;
    }
    .featured-wellness {
     padding-top:20px;
     
    }
    .featured-wellness .content-title {
        padding-right: 0px;
    }
    .featured-wellness .content-text {
        padding-left: 0px;
    }
}

.focus-linking .block-wrapper {position: relative; overflow: hidden;}
.focus-linking .block-wrapper .screen {
    width: 100%;
    max-width: 100%;
   -webkit-transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.focus-linking .block-wrapper:hover .screen {
    width: 100%;
    transform: scale(1.1);
	
}
.focus-linking .block-wrapper .overlay-content {
  position: absolute;
  height: 100px;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 30px 15px;
  opacity: 1;
  transform: translateY(0px);
  transition: all 0.4s ease-in-out;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.634119)  100%);
}
.focus-linking .block-wrapper:hover .overlay-content {opacity: 1; transform: translateY(0px);}
.focus-linking .block-wrapper .overlay-content a {
   font-family: 'helvetica_light', sans-serif ;
  font-size: 18px;
  color: var(--light);
  text-decoration: none;
  width: 100%;
  height: 100%
}

.focus-linking .block-wrapper .overlay-content.video {

  transform: translateY(-6px);
  
}
.focus-linking .block-wrapper:hover .overlay-content.video {opacity: 1; transform: translateY(-6px);}

.focus-linking .block-wrapper .overlay-content .icon {
  position:relative;
  background-image: url(images/arrow-right.svg);
    background-size: 13.58px 10px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
 padding-left:0px;
  width: 45px;
  height: 40px;  
  
  display: block;
  
  -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.focus-linking .block-wrapper:hover .overlay-content .icon{
    padding-left: 10px;
}

.focus-linking{
   
    padding-bottom: 150px;
   
}
.focus-linking .wrapper-video video{
    max-width: 100%; 
    width: 100%;
    height: 100%
}
@media (max-width: 768px) {
    
    .focus-linking {    
        padding-bottom: 50px;
    }
    
}

/* Griglia nel modal */
.cp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.cp-gallery-card {
    background: var(--cream);
    border-radius: 8px;
    padding: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cp-gallery-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.cp-gallery-card:hover {
    transform: translateY(-2px);
    background: var(--dark-blue);
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.cp-gallery-thumb {
    position: relative;
    aspect-ratio: 4 / 3; 
    overflow: hidden;
}

.cp-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.cp-gallery-card:hover .cp-gallery-img {
    transform: scale(1.05);
}


.cp-gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #777;
    background: #f2f2f2;
}


.cp-gallery-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1rem;
    margin: 0;
    font-size: 18px;
}

.cp-gallery-name {
    font-weight: 300;
    letter-spacing: 0.05em;
}
.cp-gallery-card:hover .cp-gallery-title  {
        color: #fff;

}
.cp-gallery-count {
    font-size: 0.85rem;
    opacity: 0.7;
    white-space: nowrap;
}

.cp-content {
    padding-top: 1rem;
    padding-bottom: 2rem;
    max-height: 75vh;        
    overflow-y: auto;      
    padding-right: 0.5rem;  
}
.cp-content-page {
    padding-top: 1rem;
    padding-right: 0.5rem;  
}

.cp-content::-webkit-scrollbar {
    width: 6px;
}

.cp-content::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.25);
    border-radius: 3px;
}

.cp-content::-webkit-scrollbar-track {
    background: transparent;
}

.page-template-template-gallery main{
    padding-top: 110px;
}

.gallerySwiper {
     width: 100%;
    height: calc(100vh - 120px); 
    position: relative;
    overflow: hidden;
}

.gallerySwiper .swiper-wrapper{
    align-items: center;  
}
.gallerySwiper .swiper-slide.vertical-img {
     width: auto !important;      
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;    
}
.gallerySwiper .swiper-slide.slide-video,
.gallerySwiper .swiper-slide{
    width: 100%!important;
}

.gallerySwiper .swiper-slide.vertical-img  .gallery-slide-img{
    height: 100%;                 
    width: auto;
    max-width: 100%;              
    object-fit: contain;
    display: block;
}
.gallerySwiper .gallery-slide-img,
.gallerySwiper .swiper-slide.slide-video  .gallery-slide-img {
    height: 100%;                 
    width: 100%;
    max-width: 100%;              
    object-fit: cover;
    display: block;
}

.gallery-open-modal {
    position: absolute;
    left: 4rem;
    bottom: 6rem;
    width: 61px;
    height: 61px;
    border-radius: 2px;
    border: 0;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
}

.gallery-open-modal span {
    display: block;
    font-size: 28px;
    line-height: 8px;
    height: 17px;
    color: var(--gold);
}


.gallery-card {
    position: absolute;
    right: 4rem;
    bottom: 6rem;     
    padding:0;
    border-radius: 2px;
    background: #ffffff;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 20;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
}

.gallery-card-title {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: none;
     padding: 1rem 1.5rem;
    white-space: nowrap;
    color: var(--gold);
}

.gallery-card-nav {
    display: flex;
    align-items: center;
}

.gallerySwiper .swiper-button-next,
.gallerySwiper .swiper-button-prev {
    position: static;   
    margin-top: 0;
    width: 61px;
    height: 61px;
    color:var(--gold);
    border: 1px solid #e3e1de;
}
.gallerySwiper .swiper-button-next:hover,
.gallerySwiper .swiper-button-prev:hover {
    background-color:var(--light);
}

/* stile delle icone freccia Swiper */
.gallerySwiper .swiper-button-next::after,
.gallerySwiper .swiper-button-prev::after {
    font-size: 12px;
     color:var(--gold);
}
.gallerySwiper .swiper-button-prev::after {
    
}
.video-play-toggle{ 
    border: 0;
    background: transparent;
    width: 50px;
    height: 50px;
    padding: 0;
    margin: 0;
    }
.gallerySwiper .swiper-slide.slide-video {
    width: 100% !important; /* il video prende tutta la larghezza */
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallerySwiper .video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;    /* o quello che preferisci */
    aspect-ratio: 16 / 9;
}
/*.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
}*/

.video-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-iframe-container iframe {
    width: 100%;
    height: 100%;
}
.video-iframe-container {
    width: 100%;
    height: 100%;
    display: none; /* si vede solo quando parte il video */
}


/* Responsive */
@media (max-width: 768px) {
    .gallery-open-modal {
        left: 1rem;
        bottom: 1rem;
        width: 50px;
        height: 50px;
    }

    .gallery-card {
        right: 1rem;
        bottom: 1rem;
        padding: 0;
        gap: 0;
    }

    .gallery-card-title {
        font-size: 0.8rem;
        padding: 0.7rem 1.5rem;
    }

    .gallerySwiper .swiper-button-next,
    .gallerySwiper .swiper-button-prev {
        width: 50px;
        height: 50px;
    }

}