@charset "UTF-8";
/* CSS Document */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
#4a3e5a
*/
site html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  font-size: 20px !important;
  line-height: 1;
  font-family: 'didotbold';
  transition: 0.3s all;
  color: #1D1D1D !important;
  position: relative;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  word-break: break-word;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
ul {
  list-style: inside;
  list-style-type: disc;
  font-size: 18px;
  line-height: 35px;
  position: relative;
  font-family: 'didotbold';
}
select {
  -webkit-appearance: none;
}
input[type="checkbox"] {
  padding: 0;
  width: 20px;
  height: 20px;
  border-radius: 0px;
  background-color: transparent;
}
img {
  background-position-x: center;
  background-position-y: center;
  object-fit: cover;
  width: 100%;
}
hr {
  border-top: 2px solid rgba(0, 0, 0, .2) !important;
  background-color: transparent !important;
}
html {
  scroll-behavior: smooth;
}
* {
  box-sizing: border-box;
}
@font-face {
    font-family: 'didotbold';
    src: url('css/fonts/didot_bold-webfont.woff2') format('woff2'),
         url('css/fonts/didot_bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
.post, .page {
  margin: 0;
}
.btn.focus, .btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0rem rgba(0, 0, 0, 0) !important;
}
#masthead {
  padding: 0rem 2rem;
  position: fixed;
  z-index: 10000 !important;
  height: 100px;
  width: 100%;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  background-color: rgba(255, 255, 255, .4);
}
#masthead.sticky-top {
  background-color: #ffffff;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  /*  padding: 0rem 1rem;*/
}
.header .logo {
  transition: all 0.4s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.logo {
  background-repeat: no-repeat;
  position: absolute;
  background-size: contain;
  top: 0px;
  padding: 10px;
}
.logo > div {
  height: 80px;
  width: 205px;
  background-repeat: no-repeat;
	background-position: center;
}
.site-header .logo.logo-in {
  opacity: 0;
}
.site-header .logo.logo-out {
  opacity: 1;
}
.site-header.sticky-top .logo.logo-in {
  opacity: 1;
}
.site-header.sticky-top .logo.logo-out {
  opacity: 0;
}
#menu-desk {
  height: 100px;
}
.menu-item {
  font-family: 'didotbold';
  color: #ffffff;
  line-height: initial;
  width: max-content;
  margin: auto;
}
.navbar-brand {
  display: flex !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 25%;
  height: inherit;
}
/* MENU EXPAND*/
/* Hamburger menu + overlay effect menu
--------------------------------------------- */
.button_container {
  height: 27px;
  width: 45px;
  cursor: pointer;
  z-index: 100;
  transition: opacity 0.25s ease;
}
.button_container.active .top {
  transform: translateY(11px) translateX(0) rotate(45deg);
}
.button_container.active .middle {
  opacity: 0;
}
.button_container.active .bottom {
  transform: translateY(-11px) translateX(0) rotate(-45deg);
}
.button_container span {
  background: #000000;
  border: none;
  height: 2px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.35s ease;
  cursor: pointer;
}
.button_container span:nth-of-type(2) {
  top: 11px;
}
.button_container span:nth-of-type(3) {
  top: 22px;
}
.button_container.active span:nth-of-type(3) {
  width: 100%;
}
.button_container:hover span:nth-of-type(2) {
  width: 100%;
}
.button_container:hover span:nth-of-type(3) {
  width: 100%;
}
.overlay {
  position: fixed;
  background: #4289a8;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s, height 0.35s;
  overflow: hidden;
}
.overlay.open {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.overlay.open li {
  animation: fadeInRight 0.5s ease forwards;
  animation-delay: 0.35s;
}
.overlay.open li:nth-of-type(2) {
  animation-delay: 0.4s;
}
.overlay.open li:nth-of-type(3) {
  animation-delay: 0.45s;
}
.overlay.open li:nth-of-type(4) {
  animation-delay: 0.5s;
}
.overlay nav {
  position: relative;
  height: 70%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  font-family: 'didotbold';
  font-weight: 400;
  text-align: center;
}
.overlay ul {
  list-style: none;
  padding: 0;
  display: inline-block;
  position: relative;
  width: 60%;
  margin: auto;
}
.overlay ul li {
  display: block;
  line-height: 60px;
  position: relative;
  opacity: 0;
}
.overlay ul li a {
  display: block;
  position: relative;
  color: #FFF;
  overflow: hidden;
  text-transform: uppercase;
  font-size: 30px;
  font-family: 'didotbold';
}
.overlay ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after {
  width: 100%;
}
.overlay ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  transform: translateX(-50%);
  height: 1px;
  background: rgba(255, 255, 255, .5);
  transition: 0.35s;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
/* END Hamburger menu + overlay effect menu
------------------------------------------------------------------------------------------ */
/*Background image Main menu*/
.workImagesMenuMain {
  background-color: #171615;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}
.workImagesMenuMain img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
/*END Background image Main menu*/
/* ----------- sezione 1 - Layout1*/
.photo-bg-s1 {
  min-height: 80vh;
}
/*END ---------- sezione 1 - Layout1*/
/* SEZ1 _ SLIDE*/
@media (min-width: 425px) {
  .bigTitle {
    font-size: 10vw;
  }
}
@media (min-width: 1024px) {
  .bigTitle {
    font-size: 6vw;
  }
}
@media (min-width: 768px) {
  .bigTitle .orangeIcon {
    width: 13px;
    height: 13px;
  }
}
@media (min-width: 1440px) {
  .bigTitle .orangeIcon {
    width: 16px;
    height: 16px;
  }
}
@media (min-width: 425px) {
  .arrow-button {
    font-size: 16px;
  }
  .arrow-button svg {
    width: 45px;
  }
}
@media (min-width: 1024px) {
  .arrow-button {
    font-size: 20px;
  }
  .arrow-button svg {
    width: 62px;
  }
  .arrow-button:hover {
    padding-left: 20px;
  }
  .arrow-button:hover svg circle {
    fill: #AD7F1C;
  }
}
@media (min-width: 1440px) {
  .arrow-button {
    font-size: 15px;
  }
  .arrow-button svg {
    width: 60px;
  }
}
@media (min-width: 1920px) {
  .arrow-button {
    font-size: 18px;
  }
  .arrow-button svg {
    width: 70px;
  }
}
.bigTitle .orangeIcon {
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  background-color: #f7970e;
  display: inline-block;
  margin-left: 5px;
}
.arrow-button {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
  transition: padding 1s cubic-bezier(0.16, 1, 0.3, 1);
  width: fit-content;
  font-size: 16px;
  text-transform: uppercase;
}
.arrow-button svg {
  width: 33px;
  margin-left: 10px;
}
.arrow-button svg circle {
  transition: fill 0.75s ease;
  fill: transparent;
}
.home-showcase {
  padding: 0;
  position: relative;
}
.home-showcase .home-showcaseSlider {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide {
  position: relative;
  height: 72vh;
  overflow: hidden;
}
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image {
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: flex-end;
}
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container {
  max-width: 100%;
  margin: auto 3rem;
  padding: 3rem;
}
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .bigTitle {
  /*  transform: translate(-140%, 0);*/
  transition: transform 1s cubic-bezier(0.58, 0, 0.28, 0.99) 0.4s;
  color: #fff;
  margin: 0 0 2.5rem;
}
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .container-arrow-button {
  transform: translate(-160%, 0);
  transition: transform 0.6s cubic-bezier(0.58, 0, 0.28, 0.99) 1s;
  width: fit-content;
}
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .container-arrow-button .arrow-button {
  color: #fff;
}
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .container-arrow-button svg path {
  fill: #fff;
}
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .container-arrow-button svg circle {
  stroke: #fff;
}
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .container-arrow-button:hover svg circle {
  stroke: #AD7F1C;
}
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .filter {
  width: 100%;
  height: 100%;
  background-color: #10112b;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.1;
  transition: opacity 0.8s ease-in 0.5s;
}
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide-active .swiper-image .text-container .bigTitle, .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide-active .swiper-image .text-container .container-arrow-button {
  transform: translate(0, 0);
}
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide-active .swiper-image .filter {
  opacity: 0;
}
.home-showcase .home-showcaseSlider .swiper-pagination {
  position: relative;
  bottom: 0;
  left: 0;
  width: fit-content;
  padding: 3.5% 0;
}
.home-showcase .home-showcaseSlider .swiper-pagination-bullet {
  width: 4vw;
  border-radius: 0px;
  height: 2px;
  background-color: #ffffff;
  opacity: 1;
  transition: width 0.8s ease-in-out, 0.4s ease-in-out;
  margin: 0 4px !important;
}
.home-showcase .home-showcaseSlider .swiper-pagination-bullet-active {
  background-color: #AD7F1C;
  width: 8vw;
}
.home-showcase .home-showcaseSlider .showcaseSlider-nav {
  display: flex;
  flex-direction: row;
  padding: 0 0 3.5% 5%;
  padding-right: 0;
}
.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev, .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next {
  position: static;
  display: flex;
  align-items: flex-end;
  font-weight: 900;
  margin: 0 2vw;
  width: 20px;
  height: auto;
}
.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev.swiper-button-disabled, .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next.swiper-button-disabled {
  opacity: 1;
}
.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev.swiper-button-disabled:after, .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next.swiper-button-disabled:after {
  color: #ffffff;
}
.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev::after, .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next::after {
  font-size: 4vw;
  color: #AD7F1C;
}
.home-showcase .home-showcaseSlider #macaron {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  margin: 5%;
  width: 30%;
}
.home-showcase .home-showcaseSlider #macaron #text-circle {
  animation: rotate-360 12s linear 0s infinite reverse forwards;
  transform-origin: center;
}
.home-showcase .scrollSliderButton {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, 0%);
  color: #fff !important;
  text-decoration: none;
  font-size: 3.5vw;
  height: 21vw;
  font-family: 'didotbold';
}
.home-showcase .scrollSliderButton .line {
  height: 15vw;
  width: 1px;
  background: #8c97d0;
  margin-top: 5px;
  animation: scroll-anim-mobile 1.6s cubic-bezier(0.62, 0.01, 0.71, 0.47) 0s infinite normal forwards;
}
@media (min-width: 1024px) {
  .home-showcase .home-showcaseSlider {
    display: block;
  }
  .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide {
    height: clamp(45rem, 75vh, 5000px);
  }
  .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image {
    align-items: center;
  }
  .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container {
    max-width: 75%;
    margin: 0;
  }
  .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .bigTitle {
    margin: 0 0 1.25rem;
  }
  .home-showcase .home-showcaseSlider .swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 0 2.5% 5%;
  }
  .home-showcase .home-showcaseSlider .swiper-pagination-bullet {
    width: 1.5vw;
    height: 3px;
    margin: 0 8px !important;
  }
  .home-showcase .home-showcaseSlider .swiper-pagination-bullet-active {
    width: 3vw;
  }
  .home-showcase .home-showcaseSlider .showcaseSlider-nav {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    padding: 0 5% 2.5% 5%;
  }
  .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev, .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next {
    margin: 0 0.6vw;
  }
  .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev::after, .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next::after {
    font-size: 1vw;
  }
  .home-showcase .home-showcaseSlider #macaron {
    width: fit-content;
    width: 8.4vw;
  }
  .home-showcase .scrollSliderButton {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translate(-50%, 40%);
    color: #fff !important;
    text-decoration: none;
    font-size: 0.9vw;
    height: 4.8vw;
    font-family: 'didotbold';
  }
  .home-showcase .scrollSliderButton .line {
    height: 4.8vw;
    width: 2px;
    background: #8c97d0;
    margin-top: 5px;
    animation: scroll-anim 1.6s cubic-bezier(0.62, 0.01, 0.71, 0.47) 0s infinite normal forwards;
  }
}
/* END SEZ1 _ SLIDE*/
/*Simple Bookinkg*/
#ModalLabel {
  border: none !important;
}
.modal-dialog.modal-dialog-booking {
  display: flex;
  max-width: 98%;
}
.modal-content.modal-booking {
  background-color: transparent !important;
  width: 98%;
  margin: auto;
  border: 0;
}
.modal-content.modal-booking .modal-body {
  background-color: #ffffff;
}
.modal-body.modal-body-booking {
  padding: 0 !important;
}
.close {
  background-color: transparent !important;
  color: #fff;
  border: none !important;
  font-size: 30px;
  margin-bottom: 3rem;
}
/*END Simple Bookinkg*/
/*FORM */
.contact-form {
	background-image: url("img/bg-marble.jpg");
	background-size: cover;
}
.shape-contact-form {
	clip-path: polygon(0 30%, 100% 10%, 100% 100%, 0% 100%);
	background-color: rgba(0,0,0,0.30);
	min-height: 15vh;
}
.gform_heading {
  display: none !important;
}
.gfield_consent_description a {
  color: #000000 !important;
}
.gform_wrapper.gravity-theme #field_submit {
  display: block !important;
}
.gfield_description.gfield_consent_description {
  overflow-y: visible !important;
  border: 0px solid #ddd !important;
}
.gfield_description a {
  font-weight: bold;
  text-transform: uppercase;
}
.ginput_container input, .ginput_container textarea {
  border: 0 !important;
  background-color: #E5E5E5 !important;
  border-radius: 0px !important;
}
.gfield_consent_label {
  font-size: 14px;
}
.gform_wrapper.gravity-theme .gfield_label {
  font-size: 14px !important;
  font-family: 'didotbold';
  font-weight: normal !important;
}
.gform_wrapper .gform_validation_errors > h2 .gform-icon {
  left: 0 !important;
  position: relative !important;
  top: -20px !important;
}
.gform_submission_error {
  font-size: 20px !important;
  line-height: 20px !important;
  font-family: 'didotbold';
}
.hide-label .gfield_label {
  display: none !important;
}
.gform_button.button {
  margin: auto !important;
  background-color: #000000 !important;
  border-radius: 0px !important;
  text-transform: uppercase !important;
}
.gform_button.button:hover {
  background-color: #E5E5E5 !important;
}
/* OVERRIDE BOOTSTRAP CSS */
.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0rem rgba(0, 0, 0, 0) !important;
}
.card {
  background-color: transparent !important;
  border-radius: 0 !important;
  border: 0px solid rgba(0, 0, 0, 0) !important;
}
/* end OVERRIDE BOOTSTRAP CSS */
/*TIPOGRAFIA*/
.h1, h1, .h2, h2, .h3, h3, .h4, h4, .h5, h5, .h6, h6 {
  font-family: 'didotbold';
  font-style: normal;
  position: relative;
  font-weight: bold !important;
}
.h1, h1 {
  font-size: 50px !important;
}
.h2, h2 {
  font-size: 46px !important;
}
.h3, h3 {
  font-size: 42px !important;
}
.h4, h4 {
  font-size: 30px !important;
}
.h5, h5 {
  font-size: 26px !important;
}
.h6, h6 {
  font-size: 24px !important;
}
p {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 28px;
  position: relative;
}
/* END TIPOGRAFIA*/
/* Links
--------------------------------------------- */
a {
  text-decoration: none !important;
}
a:visited {
  /*color: #800080; */
}
a:hover, a:focus, a:active {
  text-decoration: none !important;
}
a:focus {
  /*outline: thin dotted;*/
}
a:hover, a:active {
  /* outline: 0; */
}
/* ICONE SOCIAL*/
.fa.fa-youtube-play {
  position: relative;
  top: 45%;
  left: 45%;
  background-color: transparent !important;
}
a .fa {
  color: #ffffff;
  font-size: 30px;
  margin: 0 5px;
}
/* Links
--------------------------------------------- */
/**MAGNIFIC POPUP*/
.image-source-link {
  color: #59775D;
}
.mfp-with-zoom .mfp-container, .mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  /* ideally, transition speed should match zoom duration */
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-with-zoom.mfp-removing .mfp-container, .mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}
/**END MAGNIFIC POPUP*/
/* SEZIONE LINGUE*/
#masthead .language {
  color: #000000;
}
.list-menu-lang a {
  color: #fff;
  font-size: 16px !important;
  text-transform: uppercase;
}
.list-menu-lang a:hover {
  color: #fff;
}
#navbarNav .lang-item {
  display: none;
}
.btn.dropdown-toggle.btn-menu {
  margin-top: 0px;
  border: none;
  background-color: transparent !important;
  font-size: 16px !important;
  padding: 5px 24px !important;
  line-height: 30px;
  font-family: 'didotbold';
	color: #000 !important;
}
.dropdown-menu.show > li {
  display: block;
  background-color: #171615;
  text-transform: uppercase;
  color: #fff;
  padding: 10px;
  border: solid 1px #d3cabe;
  width: 100%;
  text-align: center;
  margin: auto;
}
.dropdown-menu.dropdown-lang.show ul {
  width: 100%;
}
.dropdown-menu.dropdown-lang.show li {
  color: #fff;
  list-style-type: none;
  padding-top: 5px !important;
  background-color: #84917D;
  margin-top: 10px;
  letter-spacing: 3px;
}
.dropdown-menu.dropdown-lang.show {
  background-color: transparent !important;
  min-width: 70px;
  text-align: center;
  margin: 0px;
}
.dropdown-menu.show {
  width: max-content;
}
/* END SEZIONE LINGUE*/
/*bottoni - CTA*/
.btn-primary {
  color: #432321 !important;
  background-color: transparent !important;
  border-color: transparent !important;
}
.btn-primary:hover {
  background-color: transparent !important;
  color: #fff !important;
}
.btn {
  display: block !important;
  float: none;
  opacity: 1;
  color: #ffffff !important;
  font-family: 'didotbold';
  font-size: 20px !important;
  width: max-content !important;
  text-transform: uppercase;
  padding: 15px 20px !important;
  background-color: #2E2D2D !important;
  border-radius: 0 !important;
}
.btn-2:after {
  backface-visibility: hidden;
  border: 1px solid rgba(164, 129, 74, 0);
  bottom: 0px;
  content: " ";
  display: block;
  margin: 0 auto;
  position: relative;
  transition: all 280ms ease-in-out;
  width: 0;
}
.btn-2:hover:after {
  backface-visibility: hidden;
  border-color: #ffffff;
  transition: width 350ms ease-in-out;
  width: 100%;
}
.btn-negative .btn {
  color: #fff !important;
}
.btn-negative .btn-2:after {
  backface-visibility: hidden;
  border: 1px solid rgba(255, 255, 255, 0);
  bottom: 0px;
  content: " ";
  display: block;
  margin: 0 auto;
  position: relative;
  transition: all 280ms ease-in-out;
  width: 0;
}
.btn-negative .btn-2:hover:after {
  backface-visibility: hidden;
  border-color: #ffffff;
  transition: width 350ms ease-in-out;
  width: 100%;
}
/*END bottoni - CTA*/
/*Classi generiche layout
--------------------------------------------- */
.h-10vh {
  min-height: 10vh !important;
}
.h-20vh {
  min-height: 20vh !important;
}
.h-30vh {
  min-height: 30vh !important;
}
.h-40vh {
  min-height: 40vh !important;
}
.h-50vh {
  min-height: 50vh !important;
}
.h-60vh {
  min-height: 60vh !important;
}
.h-70vh {
  min-height: 70vh !important;
}
.h-75vh {
  height: 75vh !important;
}
.h-80vh {
  min-height: 80vh !important;
}
.h-90vh {
  min-height: 90vh !important;
}
.h-100vh {
  min-height: 100vh !important;
}
.h-auto {
  min-height: auto !important;
}
.h-25 {
  height: 25% !important;
}
.h-60 {
  height: 60% !important;
}
.top-25 {
  top: 25% !important;
}
.top-75 {
  top: 75% !important;
}
.start-25 {
  left: 25% !important;
}
.start-n10 {
  left: -10rem;
}
.mt-10 {
  margin-top: 12rem !important;
}
.mt-n10 {
  margin-top: -10rem !important;
}
.ms-n5 {
  margin-left: -3rem !important;
}
.mb-6 {
  margin-bottom: 6rem !important;
}
.me-11 {
  margin-right: 11rem !important;
}
.me-12 {
  margin-right: 12rem !important;
}
.me-4c {
  margin-right: 4rem !important;
}
.me-6c {
  margin-right: 6rem !important;
}
.pl-6 {
  padding-left: 6rem !important;
}
.pr-6 {
  padding-right: 6rem !important;
}
.pt-6 {
  padding-top: 6rem !important;
}
.pb-6 {
  padding-bottom: 6rem !important;
}
.w-65per {
  width: 65%;
}
.w-25per {
  width: 25%;
}
.text-shadow {
  text-shadow: 0 0 20px #433527;
}
.customoffset-1 {
  margin-left: 8.33333333%;
}
.customoffset-2 {
  margin-left: 16.66666667%;
}
.position-bg {
  background-position-x: center;
  background-position-y: center;
}
.cover-bg {
  background-size: cover;
}
.no-border {
  border: 0 !important;
}
.z-1 {
  z-index: 1;
}
.z-n1 {
  z-index: -1;
}
.z-2 {
  z-index: 2;
}
.z-3 {
  z-index: 3;
}
.borderwhite {
  border: solid #fff 5px;
}
.bg-black-opacity {
  background-color: rgba(0, 0, 0, .6) !important;
}
.abss {
  position: absolute;
  z-index: 1;
  width: 100%;
  text-align: center;
  height: 100%;
  align-items: center;
  display: grid;
}
.box {
  padding-top: 100%;
}
.cursor-pointer {
  cursor: pointer;
}
/*classi generiche parallax*/
.bg-parallax {
  padding-top: 40px;
  color: #fff;
  background-color: #000;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.bg {
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 160%;
  top: 0;
  z-index: 1;
}

/*END Classi generiche layout*/
/*Classi specifiche layout
--------------------------------------------- */
.widget {
  margin: 0 !important;
}
/*empty space layout*/
.empty-space {
  height: 60px;
  width: 100%;
}
/*sezioni e tpl*/
/*TPL Contatti*/
.page-template-contatti #mappa {
  display: none;
}
.tpl-contatti p, .tpl-contatti a, .tpl-contatti a:hover {
  font-size: 18px;
  color: #1D1D1D;
}
.border-contact {
  border: solid rgba(0, 0, 0, .2) 2px !important;
}
/* END TPL Contatti*/
/* TPL galleria fotografica*/
.mfp-wrap {
  z-index: 10043 !important;
}
/*END TPL galleria fotografica*/
/*Sezione 1 Layout 1*/
.deco-cover {
	clip-path: polygon(65% 63%, 100% 0, 100% 100%, 0 100%, 0 0);
	background-color: #E1E0E0;
}
/*Sezione 2 Layout 1*/
/*layout1*/
.layout1 {
  padding: 3rem 0;
  min-height: 80vh;
}
.offset-l1 {
  margin-left: 8.33333333%;
}
.swiper-button-wrapperl1 {
  width: 100%;
  position: relative;
  bottom: 100px;
  height: 100px;
  background-color: transparent;
  z-index: 4;
}
.swiper-button-next.swiper-button-next-alt {
  top: 40% !important;
  content: url("img/swiper-next.svg");
  width: 40px;
  height: 40px;
  display: inline-block;
  right: auto;
  left: 115px;
}
.swiper-button-prev.swiper-button-prev-alt {
  top: 40% !important;
  content: url("img/swiper-prev.svg");
  width: 40px;
  height: 40px;
  display: inline-block;
  left: 40px;
  right: auto;
}
/*layout2*/
.layout2 {
  background-color: #E1E0E0;
}
.offset-l2 {
  margin-left: 33.33333333%;
}
.swiper-layout2 {
  margin-left: 33.33333333% !important;
}
.wrapper-nav-l2 {
	position: absolute;
	width: 100px;
	padding: 0 10px;
	left: 0;
	bottom: 3rem;
	height: 120px;
}
.wrapper-nav-l2 .swiper-button-next {
  top: 0 !important;
  content: url("img/swiper-next.svg");
  width: 60px !important;
  height: 60px !important;
  display: inline-block !important;
  right: auto !important;
  left: 0 !important;
}
.wrapper-nav-l2 .swiper-button-prev {
  bottom:0 !important;
  content: url("img/swiper-prev.svg");
  width: 60px;
  height: 60px !important;
  display: inline-block;
  left: 0;
  right: auto;
}
/*layout3*/
/*layout4*/
.layout4 {}
.zoom-photo {
  clip-path: polygon(15% 15%, 65% 15%, 65% 65%, 15% 65%);
  transition: 1.3s ease;
}
.zoom-photo.inVista {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
/*layout5*/
.layout5 {}
.parent-wrapper {
  margin: 3rem 0 3rem 8.33333333%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
.div1-wrapper {
  grid-area: 1 / 1 / 2 / 2;
}
.div2-wrapper {
  grid-area: 1 / 2 / 2 / 3;
  border: solid red 1px;
}
.div3-wrapper {
  grid-area: 1 / 3 / 2 / 4;
}
/*layout6*/
.title-deco {
  border-top: solid 1px #000000;
  border-bottom: solid 1px #000000;
}
.realizzazioni .owl-nav {
  text-align: center;
  margin-top: 3rem;
}
.realizzazioni .owl-nav button {
  width: 40px;
  height: 40px;
  margin-left: 1rem;
  margin-right: 1rem;
}
.realizzazioni .owl-item {
  padding: 0 60px;
}
.realizzazioni .owl-item.active.center {
  border-left: solid 1px #000000;
  border-right: solid 1px #000000;
}
/*layout7*/
.layout7 {}
/*layout8*/
.layout8 {
  background-color: #2E2D2D;
	font-family: 'Montserrat', sans-serif;
}
.layout8 h1, .layout8 h2, .layout8 h3, .layout8 h4, .layout8 h5, .layout8 h6
{
	font-family: 'Montserrat', sans-serif;
}
/*
.box-container {
  padding: 0 5rem;
}

.p-customw100 {
  padding: 0 8rem !important;
}
.p-customw50 {
  padding: 3rem 8rem !important;
}
*/
/*layout 9*/
.layout9 {
  background-color: #E1E0E0;
  padding: 3rem 0;
  min-height: 100vh;
}
/*banner sticky*/
.stripe.sticky {
  bottom: 0;
}
.stripe {
  position: fixed;
  width: 100%;
  z-index: 7;
  background: #E5E5E5;
  left: 0;
  bottom: -150px;
  padding: 20px 0;
  transition: all ease-in-out .3s;
  -moz-transition: all ease-in-out .3s;
  -webkit-transition: all ease-in-out .3s;
  -o-transition: all ease-in-out .3s;
  -ms-transition: all ease-in-out .3s;
}
.stripe .divider {
  bottom: calc(100% - 1px);
  top: initial;
}
.divider {
  position: absolute;
  left: 0;
  right: 0;
  width: auto;
  height: auto;
}
.divider img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.index-0 {
  z-index: 0 !important;
}
.title-banner {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 1rem;
}
.btn-banner {
  background-color: #000000;
  color: #ffffff;
  text-transform: uppercase;
  margin-left: auto;
  margin-right: auto;
  width: max-content;
  padding: 5px 15px;
}
.btn-banner a, .btn-banner a:hover {
  color: #ffffff;
}
.wrap {
  width: 83.33333vw;
}
.wrap {
  padding-right: 45px;
  padding-left: 45px;
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  max-width: 1600px;
}
/*layout10*/
.layout10 {
  background-color: #E1E0E0;
	padding: 3rem;
}
.layout10 h1, .layout10 h2, .layout10 h3, .layout10 h4, .layout10 h5
{
	font-family: 'Montserrat', sans-serif;
}
.nome_e_cognome {
	padding: 1rem 0;
	border-bottom: solid 1px #707070;
}
.ruolo {
	padding: .5rem 0;
}
	.layout10 a {
		color: #000000 !important;
	}
/*layout11*/
.layout11 {
  background-color: #E1E0E0;
}
.title-l11 {
	font-family: 'didotbold';
	border-top: solid #707070 1px;
	border-bottom: solid #707070 1px;
}
.title-l11 h1 {
	font-family: 'didotbold' !important;
	padding-left: 3rem;
	margin-top: 0.5rem;
}
.layout11 h1, .layout11 h2, .layout11 h3, .layout11 h4, .layout11 h5, .layout11 h6
{
	font-family: 'Montserrat', sans-serif;
}
.border-right {
  border-right: solid 1px #707070;
}
/*layout13*/
.gallery-wrap {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 70vh;
}
.item {
  flex: 1;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: none;
  transition: flex 0.8s ease;
  
  &:hover{
    flex: 7;
  }
}
.item:hover .bg-black-opacity {
  background-color: rgba(0, 0, 0, .2) !important;
}
/*END Classi specifiche layout*/
/*FOOTER ------------------------------------------------------------------------ */
/*contact form grafica*/
.logo-footer {
  min-height: 20vh;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.logo-footer > div {
  min-height: 15vh;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.site-footer {
  font-family: 'Montserrat', sans-serif !important;
  color: #ffffff;
  font-size: 16px;
  background-color: #2E2D2D;
}
.site-footer a, .site-footer a:hover {
  color: #ffffff;
}
.blog_info {
  padding: 2rem 0;
  border-bottom: solid #ffffff 1px;
  margin: 0;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 16px;
}
.info-email {
  border-top: solid #ffffff 1px;
}
.icon-social {
  text-align: right;
  padding: 2rem 0;
  border-bottom: solid #ffffff 1px;
}
.site-info {
  font-size: 14px;
}
.site-info a {
  color: #ffffff;
}
.ultra-h {
  height: 20vh;
}
.info-site-footer {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  text-align: end;
}
/* END FOOTER ------------------------------------------------------------------------ */
/*ANIMAZIONI*/
.hideit {
  opacity: 0;
}
.showit {
  opacity: 1;
}
.startAnimCard {
  transform: scale(1.1);
  transition: transform 3.5s ease;
  opacity: 1;
}
.zoomOutEffect.inVista {
  transform: scale(1.1);
  transition: transform 3.5s ease;
}
.zoomOutEffectBG.inVista {
  transform: scale(1.1);
  transition: transform 3.5s ease;
}
.startAnimImg.inVista img {
  transform: scale(1.1);
  transition: transform 3.5s ease;
}
.anim-photo {
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: 1.3s cubic-bezier(0.2, 0, .8, 0);
}
.anim-photo.inVista {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.anim-bg-open {
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
}
.anim-photo-small-l1 {
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  transition: 1.3s cubic-bezier(0.2, 0, .8, 0);
}
.anim-photo-small-l1.inVista {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.anim-bg-small-l1 {
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  transition: 1.3s cubic-bezier(0.2, 0, .8, 0);
}
.anim-bg-small-l1-open {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.anim-photo-big-l1 {
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  transition: 1.3s cubic-bezier(0.2, 0, .8, 0);
}
.anim-photo-big-l1-open {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.anim-testo, .anim-testo > div {
  position: relative;
}
.sub-anim-testo {
  position: relative;
}
.move-photo-right {
  opacity: .2;
  transform: translate(50%, -50%) translate3d(0px, 0px, 0px) rotate(10deg) scale(1.1);
  transition: transform 0.3s ease-out;
}
.move-photo-right.inscreen {
  opacity: 1;
  transform: translate3d(-20px, 20px, 0px);
}
.move-photo-left {
  opacity: .2;
  transform: translate(-50%, 50%) translate3d(0px, 0px, 0px) rotate(10deg) scale(1.1);
  transition: transform 0.3s ease-out;
}
.move-photo-left.inscreen {
  opacity: 1;
  transform: translate3d(20px, -20px, 0px);
}
/*END ANIMAZIONI*/
/*mappa */
.mappa-dinamica {
  padding: 0 5rem 0 5rem !important;
}
.row.mobile-fixed {
  display: none !important;
}
.leaflet-map {
  height: 600px;
}
/*--------------------------------------------------------------
# Media Query
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Notebook
--------------------------------------------------------------*/
@media only screen and (max-width: 1280px) {
  html {
    font-size: 95%;
  }
}
@media screen and (max-width: 1199px) {
  #navbarNav .lang-item {
    display: block;
  }
}
/*--------------------------------------------------------------
## Netbook
--------------------------------------------------------------*/
@media only screen and (max-width: 1024px) {
  html {
    font-size: 90%;
  }
  /*menu mobile*/
  .overlay ul {
    width: 90%;
  }
  .overlay ul li a {
    font-size: 24px;
  }
  .overlay ul li {
    line-height: 40px;
  }
  .row.mobile-fixed {
    font-family: 'didotbold';
    display: flex !important;
    position: fixed !important;
    bottom: 0px;
    left: 0px;
    right: 0;
    width: 100%;
    text-align: center;
    z-index: 1001;
    margin: 0px;
    height: 45px;
    background-color: #000;
  }
  .row.mobile-fixed a {
    color: #ffffff;
    font-size: 16px;
    line-height: 45px;
  }
  .row.mobile-fixed a:hover {
    color: #fff !important;
  }
  .line-end {
    border-right: solid #fff 1px;
  }
  /*layout 8*/
  .workList-mobile {
    font-family: 'didotbold';
    color: #AD7F1C;
    font-size: 30px;
    list-style-type: none;
  }
  .workList-mobile a {
    color: #AD7F1C;
  }
  .layout8 {
    min-height: auto !important;
  }
}
/*--------------------------------------------------------------
## iPad
--------------------------------------------------------------*/
@media only screen and (max-width: 960px) {
  html {
    font-size: 85%;
  }
}
/*--------------------------------------------------------------
## iPad
--------------------------------------------------------------*/
@media only screen and (max-width: 768px) {
  html {
    font-size: 80%;
  }
}
/*--------------------------------------------------------------
## iPad
--------------------------------------------------------------*/
@media only screen and (max-width: 576px) {
  html {
    font-size: 75%;
  }
  /*TIPOGRAFIA*/
  .h1, h1 {
    font-size: 30px !important;
  }
  .h2, h2 {
    font-size: 28px !important;
  }
  .h3, h3 {
    font-size: 26px !important;
  }
  .h4, h4 {
    font-size: 24px !important;
  }
  .h5, h5 {
    font-size: 22px !important;
  }
  .h6, h6 {
    font-size: 20px !important;
  }
  p {
    font-family: 'didotbold';
    font-size: 16px;
    line-height: 30px;
    position: relative;
  }
  /* END TIPOGRAFIA*/
  /*modal booking*/
  .modal-dialog.modal-dialog-booking {
    margin-top: 10rem;
  }
  /*Header*/
  #masthead, #menu-desk {
    height: 70px;
  }
  .logo > div {
    height: 49px;
    width: 80px;
  }
	/*generiche*/
	.customoffset-1 {
  margin-left: 0;
}
	.customoffset-2 {
  margin-left: 0;
}
  /*sez 1 L1*/
  .sez-1-img {
    height: 60vh;
  }
  .photo-bg-s1 {
    min-height: 60vh;
  }
  /*layout1*/
  .offset-l1 {
    margin-left: 0;
  }
  .swiper-button-next.swiper-button-next-alt {
    top: 50% !important;
    right: 10px;
    left: auto;
  }
  .swiper-button-prev.swiper-button-prev-alt {
    top: 50% !important;
    left: 10px;
    right: auto;
  }
  /**layout2*/

  /*layout 4*/
  .layout4 {
    min-height: 50vh;
  }
  /*layout5*/
  /*layout 6*/
  .layout6 {
    min-height: auto;
  }
  /*layout9*/
  .home-showcase .home-showcaseSlider .showcaseSlider-nav {
    display: none
  }
  .home-showcase .home-showcaseSlider .swiper-pagination {
    bottom: 100px !important;
    left: 20px !important;
  }
  /*layout10*/

  /*mappa*/
  .mappa-dinamica {
    padding: 0 !important;
  }
  .leaflet-map {
    height: 300px;
  }
  /*footer*/
  .bg-sepia-nosolid {
    display: block;
  }
}