/*
 * Theme Name: 4Real Residenze Luma
 * Description: Tema Residenze Luma
 * Author: 4Real Studio
*/

:root {
  --theme-color-1: #8da193;
  --theme-color-2: #e0e8e3;
  --theme-color-3: #655846;
  --theme-color-4: #655846;
  --theme-color-5: #f3f3f3;
  --theme-color-6: #f3f3f3;
  --theme-color-7: #f1f1f1;
  --theme-color-8: #f1f1f1;

  --font-main: 'Montserrat', sans-serif;

  --nav-height: 60px;

  --header-menu-bg-color: #ffffff;
  --footer-bg-color: var(--header-menu-bg-color);

  --intro-image-width: 350px;
  --intro-image-height: 450px;
  --intro-box-width: 500px;
  --intro-box-offset-left: 100px;
  --intro-box-offset-top: 50px;

  --dot-size: 28px;
}

html {

}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: var(--font-main);
  overflow-x: hidden;
  background-color: var(--theme-color-5);
}

.header {
  box-shadow: 0px 0px 10px 0px #00000020;
  position: fixed;
  width: 100%;
  background: var(--theme-color-5);
  z-index: 10;
  transition: transform 0.5s;
}

.header.hidden {
  transform: translateY(calc(-1 * var(--nav-height)));
}

.header .header-container {
  height: var(--nav-height);
}

.header .header-logo {
  align-self: center;
}

.header .header-logo img {
  height: 40px;
  margin: 10px 20px;
}

.header .mobile-menu {
  position: absolute;
  top: var(--nav-height);
  height: calc(100vh - var(--nav-height));
  width: 100%;
  padding: 0px;
/*  backdrop-filter: blur(10px); */
  transition-duration: 0.4s;
  pointer-events: none;
  opacity: 0;
  overflow: hidden;
}

.mobile-menu .rel-container {
  position: relative;
  height: 100%;
  width: 100%;
}

.header .mobile-menu .mobile-menu-box {
  background: var(--theme-color-5);
  display: flex;
  flex-direction: column;
  flex: 0 1 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(100%, -50%);
  padding: 2em 4em;
  height: 100%;
  transition-duration: 0.4s;
  width: 70%;
  box-shadow: -10px 0px 30px #00000029;
}

.hamburger {
  flex: 0 1 0;
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before, .hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner:after, .hamburger.is-active .hamburger-inner:before {
  background-color:  var(--theme-color-3);
}

html.mobile-menu-visible {
  overflow: hidden;
}

html.mobile-menu-visible .header .mobile-menu {
  pointer-events: auto;
  opacity: 1;
/*  backdrop-filter: blur(2px); */
}

html.mobile-menu-visible .header .mobile-menu .mobile-menu-box {
  transform: translate(0, -50%);
}

html.mobile-menu-visible #content, html.mobile-menu-visible #footer {
  filter: blur(3px);
}

.header .mobile-menu a {
  font-size: 2em;
  color: var(--theme-color-1);
  text-decoration: none;
  white-space: nowrap;
  transition-duration: 0.15s;
  text-decoration-color: transparent;
}

.header .mobile-menu a:hover {
  text-decoration: underline;
}

.header nav {
}

.header nav ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px 20px;
  display: flex;
  justify-content: flex-end;
}

.header nav ul li {
  margin-left: 15px;
  align-self: center;
}

nav {
  display: flex;
}

nav .download-button {
  padding: 5px 10px;
  margin-top: 0px;
  font-size: 1em;
  white-space: nowrap;
}

.header .mobile-menu a.download-button {
  color: var(--theme-color-2);
  padding: 10px 20px;
}

.header nav ul li a {
  font-size: 0.9em;
  color: var(--theme-color-4);
  text-decoration: none;
  white-space: nowrap;
  transition-duration: 0.15s;
  text-decoration-color: transparent;
}

.header nav ul li a:hover {
  text-decoration: underline;
}

#content {
  flex-grow: 1;
}

.section-landing {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  display: flex;
  flex-direction: column;
  background-position: center;
  background-repeat: no-repeat;
}

.filler-animated-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.animated-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0;
  transition-duration: 1s;
}

.section-landing .landing-filler {
  flex-grow: 1;
}

.section-landing .landing-box {
  text-align: center;
  background: black;
}

.section-landing .landing-text {
  color: var(--theme-color-7);
  height: 30vh;
  text-align: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  padding-bottom: 90px;

  background: rgb(0,0,0);
  background: -moz-linear-gradient(0deg, rgba(0,0,0,0.6951155462184874) 0%, rgba(0,0,0,0) 100%);
  background: -webkit-linear-gradient(0deg, rgba(0,0,0,0.6951155462184874) 0%, rgba(0,0,0,0) 100%);
  background: linear-gradient(0deg, rgba(0,0,0,0.6951155462184874) 0%, rgba(0,0,0,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}

.landing-logo {
  max-height: 100%;
  max-width: 50%;
  align-self: center;
}

.section-landing .landing-title {

}

.section-landing .landing-title .title-text {
  display: inline-block;
  font-size: 48px;
  text-transform: uppercase;
}

.section-landing .landing-title .title-text::after {
  content: ' ';
  display: block;
  border-bottom: 1px var(--theme-color-6) solid;
  align-self: center;
  width: 120%;
  margin-left: -10%;
}

.section-landing .landing-subtitle {
  font-size: 28px;
}

.icon-scroll,
.icon-scroll:before {
  position: absolute;
  left: 50%;
}
.icon-scroll {
  position: absolute;
  width: 30px;
  height: 50px;
  margin-left: -20px;
  bottom: 20px;
  margin-top: -35px;
  box-shadow: inset 0 0 0 1px #fff;
  border-radius: 25px;
  background: #00000040;
}
.icon-scroll:before {
  content: '';
  width: 8px;
  height: 8px;
  background: #fff;
  margin-left: -4px;
  top: 8px;
  border-radius: 4px;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: scroll;
          animation-name: scroll;
}
@-webkit-keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(32px);
  }
}
@keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(32px);
  }
}

.section-intro {
  display: flex;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 180px;
  position: relative;
  z-index: 1;
}
.section-intro .image {
  display: inline-block;
  position: relative;
  width: var(--intro-image-width);
  height: var(--intro-image-height);

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.section-intro .image::before {
  content: " ";
  position: absolute;
  border: 5px var(--theme-color-2) solid;
  width: 100%;
  height: 100%;
  display: block;
  z-index: -1;
  top: var(--intro-box-offset-top);
  left: var(--intro-box-offset-left);
}
.section-intro .text {
  align-self: flex-start;
  background-color: var(--theme-color-1);
  text-align: center;
  width: var(--intro-box-width);
  font-size: 32px;
  padding: 50px;
  color: var(--theme-color-6);
  margin-left: calc(-1*var(--intro-box-offset-top));
  z-index: 1;
  display: flex;
  align-items: center;
  align-self: center;
}

.section-territorio-cont {
  padding-bottom: 100px;
}

.section-territorio{
  position: relative;
}

.section-eco {
  position: relative;
}

.section-eco.green-bg {
  background-color: var(--theme-color-2);
  padding-bottom: 100px;
  padding-top: 100px;
}

.section-eco .rel-container {
  position: relative;
}

.section-territorio .green-bg {
  background-color: var(--theme-color-2);
  padding-top: 100px;
}

.title-num {
  padding-right: 50px !important;
}

.title-num img {
  width: 86px !important;
  vertical-align: top;
}

.section-territorio .title-num, .section-eco .title-num, .section-virtualtour .title-num {
  color: var(--theme-color-3);
  text-align: right;
  /* font-size: 240px;
  line-height: 200px; */
  font-weight: 700;
  padding-bottom: 300px;
  padding-right: 70px;
}

.section-virtualtour .title-num {
  padding-bottom: 40px;
  padding-right: 40px;
  color: var(--theme-color-2);
}

.section-territorio .title-text::before {
  content: ' ';
  border-right: 4px var(--theme-color-1) solid;
  border-left: 4px var(--theme-color-1) solid;
  padding-right: 7px;
  position: absolute;
  top: 100px;
  height: calc(100% - 100px);
  margin-left: -38px;
}

.section-virtualtour .title-text {
  position: relative;
}

.section-virtualtour .title-text::before {
    content: ' ';
    border-right: 4px var(--theme-color-1) solid;
    position: absolute;
    height: 100%;
    margin-left: -30px;
}

.section-eco .title-text::before {
  content: ' ';
  border-right: 4px var(--theme-color-1) solid;
  border-left: 4px var(--theme-color-1) solid;
  padding-right: 7px;
  position: absolute;
  height: 100%;
  margin-left: -38px;
}

.section-territorio h4, .section-eco h4, .section-virtualtour h4 {
  font-size: 2.3em;
  text-transform: uppercase;
  letter-spacing: 8px;
  overflow-wrap: anywhere;
  color: var(--theme-color-3);
}

.section-virtualtour h4 {
  color: var(--theme-color-3);
}

.section-territorio h5, .section-eco h5, .section-virtualtour h5 {
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 400;
  color: var(--theme-color-3);
}

.section-virtualtour h5 {
  color: var(--theme-color-3);
}

.section-territorio img, .section-eco img {
  width: 100%;
}

.section-territorio p {
  
}

.section-territorio .section-content, .section-eco .section-content {
  margin-top: -250px;
}

.section-territorio .section-content .zindex-over, .section-eco .section-content .zindex-over {
  z-index: 1;
}

.section-territorio .minor-img, .section-eco .minor-img {
  margin-top: 50px;
}

.section-eco .eco-logo {
  margin-top: 60px;
  padding-right: 40px;
  align-self: center;
}

.section-eco .eco-logo img {
  padding-left: 50%;
}

.section-territorio .territorio-desc, .section-eco .eco-desc {
  margin-top: 80px;
  color: var(--theme-color-4);
  font-weight: 400;
  text-align: justify;
}

.section-territorio .territorio-desc p:last-child, .section-eco .eco-desc p:last-child {
  margin-bottom: 0px;
}

.section-posizione {
  padding-top: 100px;
  box-shadow: 0px 0px 50px 0px #00000040;
  background-color: var(--theme-color-6);
}

.section-posizione .title-num {
  color: var(--theme-color-2);
  text-align: right;
  /* font-size: 240px;
  line-height: 200px; */
  font-weight: 700;
  padding-right: calc(var(--bs-gutter-x)/ 2) !important;
  /* border-right: 4px solid var(--theme-color-1); */
}

.section-posizione .title-text {
  padding-left: 0px;
  /* padding-left: 7px; */
  /* border-left: 4px solid var(--theme-color-1); */
}

.section-posizione h4 {
  font-size: 2.3em;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--theme-color-3);
  /* border-left: 4px solid var(--theme-color-1); */
  padding-left: 20px;
  margin-bottom: 0px;
}

.section-posizione h5 {
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 400;
  color: var(--theme-color-3);
  /* border-left: 4px solid var(--theme-color-1); */
  padding-left: 20px;
  margin-bottom: 0px;
  padding-bottom: 10px;
}

.section-posizione .position-btn-box {
  text-align: right;
  align-self: center;
  padding-bottom: 60px;
}

.section-posizione .position-btn {
  background-color: var(--theme-color-1);
  color: var(--theme-color-6);
  text-decoration: none;
  padding: 10px 10px;
  text-transform: uppercase;
  border-radius: 10px;
  margin-right: 20px;
  border: 1px solid transparent;
  transition-duration: 0.15s;
}

.section-posizione .position-btn:hover {
  background-color: transparent;
  color: var(--theme-color-1);
  border: 1px solid var(--theme-color-1);
}

.section-progetto .floorplan-btn-box {
  text-align: center;
  align-self: center;
}

.section-progetto .floorplans-btn {
  background-color: var(--theme-color-1);
  color: var(--theme-color-6);
  text-decoration: none;
  padding: 10px 10px;
  text-transform: uppercase;
  border-radius: 10px;
  margin-right: 20px;
  border: 1px solid transparent;
  transition-duration: 0.15s;
}

.section-progetto .floorplans-btn:hover {
  background-color: transparent;
  color: var(--theme-color-1);
  border: 1px solid var(--theme-color-1);
}

.section-posizione .position-text {
  padding: 40px 40px 120px 40px;
  border: 4px solid var(--theme-color-1);
  color: var(--theme-color-4);
  text-align: justify;
}

.section-posizione .section-content {
  padding-bottom: 100px;
}

.section-posizione #map {
  height: 500px;
  margin-top: -80px;
  margin-right: 30px;
}

.section-posizione .services-title {
  text-align: center;
  color: var(--theme-color-3);
  text-transform: uppercase;
  font-size: 0.9em;
  letter-spacing: 2px;
  margin-bottom: 30px;
  margin-top: 50px;
}

.section-posizione .service {
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
}

.section-posizione .service .icon {
  width: 100px;
}

.section-posizione .service .text {
  font-size: 0.9em;
  color: var(--theme-color-3);
  padding-bottom: 10px;
}

.section-progetto {
  margin-bottom: 100px;
}

.section-progetto .green-bg {
  background-color: var(--theme-color-2);
  padding-top: 100px;
  padding-bottom: 200px;
}

.section-progetto .title-num {
  color: var(--theme-color-3);
  text-align: right;
  /* font-size: 240px;
  line-height: 200px; */
  font-weight: 700;
  padding-right: 70px;
}

.section-progetto .title-text {
  position: relative;
}

.section-progetto .title-text::before {
  content: ' ';
  border-right: 4px var(--theme-color-1) solid;
  border-left: 4px var(--theme-color-1) solid;
  padding-right: 7px;
  position: absolute;
  height: 100%;
  margin-left: -38px;
}

.section-progetto h4 {
  font-size: 2.3em;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--theme-color-3);
}

.section-progetto h5 {
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 400;
  color: var(--theme-color-3);
}

.section-progetto .desc {
    margin-top: 40px;
    text-align: justify;
    font-size: 1em;
    line-height: 1.3em;
    color: var(--theme-color-4);
}

.section-progetto .full-floorplan {
  margin-top: 50px;
  width: 100%;
}

.floorplanselector {
  justify-content: center;
  margin-bottom: 60px;
}

.floorplanselector .floorplanindexcta {
  /* margin-left: 20px; */
  cursor: pointer;
  max-width: 300px;
  margin: auto;
}


.floorplanselector .floorplanindexcta p {
  margin: 0px;
  text-align: center;
}

.floorplanselector img {
  width: 100%;
  margin-right: 20px;
  margin-bottom: 10px;
  padding: 0px 40px;
  opacity: 0.5;
}

.floorplanselector .floorplanindex {
  margin-top: 2px;
  padding: 10px;
  font-size: 24px;
  text-align: center;
  width: 64px;
  height: 64px;
  display: inline-block;
  border: 4px solid var(--theme-color-3);
  cursor: pointer;
  color: var(--theme-color-3);
}

.floorplanselector .floorplanindex:hover, .floorplanindexcta.active .floorplanindex {
  background: var(--theme-color-3);
  color: white;
  font-weight: 600;
}

.floorplanselector .floorplanindexcta.active {
  background: #33887338;
  padding: 10px;
}

.floorplanselector .floorplanindexcta.active p {
  display: none;
}

.floorplanselector .floorplanindexcta.active img {
  padding: 0px;
  opacity: 1;
}

.floorplanbox {
  display: none;
}

.floorplanbox.active {
  display: block;
}

.section-progetto .project-prospect-slide {
  text-align: center;
  margin-top: 100px;
  outline: none;
}

.section-progetto .slick-dotted.slick-slider {
  margin-bottom: 0px;
}

.section-progetto .project-prospect-slide>img {
  max-height: 250px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.project-prospects-slider {
  overflow: hidden;
}

.section-progetto .project-prospects-slider .slick-dots {
  background-color: var(--theme-color-1);
  height: 120px;
  position: static;
  display: flex;
  align-items: center;
  place-content: center;
}

.slick-dots li {
  width: var(--dot-size);
  height: var(--dot-size);
}

.slick-dots li button {
  width: var(--dot-size);
  height: var(--dot-size);
}

.slick-dots li button:before {
  line-height: var(--dot-size);
  font-size: var(--dot-size);
  width: var(--dot-size);
  height: var(--dot-size);
  color: var(--theme-color-6);
}

.slick-dots li.slick-active button:before {
  color: var(--theme-color-6);
}

.section-progetto-previews {
  margin-top: -160px;
}

.download-button {
  display: inline-block;
  background: var(--theme-color-1);
  color: var(--theme-color-6);
  font-family: var(--font-main);
  padding: 15px;
  border-radius: 10px;
  font-size: 1.1em;
  font-weight: 500;
  text-decoration: none;
  margin-top: 60px;
  margin-bottom: 0px;
  border: 1px solid transparent;
  transition-duration: 0.15s;
}

.download-button:hover {
  background: transparent;
  color: var(--theme-color-1);
  border: 1px solid var(--theme-color-1);
}

.project-graphics .subtitle {
  color: var(--theme-color-3);
  font-size: 1em;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 30px;
}

.video-outer-wrapper {
  width: 100%;
  overflow: hidden;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.project-gallery {

}

.project-gallery>div {
  margin-bottom: 15px;
}

.project-gallery .gallery-image {
  position: relative;
  display: block;
  padding-bottom: 56.25%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.section-unita {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-unita .title-num {
  color: var(--theme-color-2);
  text-align: right;
  font-size: 240px;
  line-height: 200px;
  font-weight: 700;
  padding-right: 20px;
}

.section-unita h4 {
  font-size: 2.3em;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--theme-color-3);
  border-left: 4px solid var(--theme-color-1);
  padding-left: 10px;
}

.section-unita h5 {
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 400;
  color: var(--theme-color-3);
  border-left: 4px solid var(--theme-color-1);
  padding-left: 10px;
  margin-bottom: 0px;
  padding-bottom: 10px;
}

.section-unita .units-title {
  margin-bottom: 50px;
}

.section-unita .filter-name {
  text-align: center;
  color: var(--theme-color-3);
  font-size: 1.3em;
  font-weight: 500;
}

.section-unita .filter-buttons {
  margin: 10px 0px 20px 0px;
  text-align: center;
}

.section-unita .filter-buttons>a {
  display: inline-block;
  text-transform: uppercase;
  font-size: 1.3em;
  font-weight: 500;
  padding: 5px 20px;
  margin: 0px 12px;
  color: var(--theme-color-1);
  border: 1px solid var(--theme-color-1);
  cursor: pointer;
  text-decoration: none;
  transition-duration: 0.15s;
  margin-bottom: 20px;
}

.section-unita .filter-buttons>a.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.section-unita .filter-buttons>a:hover {
  color: var(--theme-color-6);
  background: var(--theme-color-1);
}

.section-unita .filter-buttons>a.active {
  color: var(--theme-color-6);
  background: var(--theme-color-1);
}

.section-virtualtour {
  padding-top: calc(var(--nav-height) + 50px);
}

.section-virtualtour .rel-container {
  background-image: url(/wp-content/themes/4REAL-TEMPLATE-2021/static/images/vr-girl.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 30%;
}

.section-virtualtour .vt-container img {
  width: 100%;
}

.section-virtualtour .vt-container .details-box {
  margin-top: 50px;
  border-top: 3px solid var(--theme-color-1);
  border-right: 3px solid var(--theme-color-1);
  padding: 30px 40px 0px 40px;
  text-align: center;
  display: flex;
  align-items: center;
}

.section-virtualtour .vt-container .reversed .details-box {
  border-left: 3px solid var(--theme-color-1);
  border-right: none;
}

.section-virtualtour .vt-container .details-box .title{
  text-transform: none;
  letter-spacing: 1px;
  font-weight: 600;
  text-align: center;
}

.section-virtualtour .vt-container .details-box .desc {
  color: var(--theme-color-4);
  font-size: 0.9em;
  margin-top: 20px;
  text-align: center;
  line-height: 1.2em;
}

.section-virtualtour .vt-container .details-box .button {
  display: inline-block;
  background: var(--theme-color-1);
  color: var(--theme-color-6);
  font-family: var(--font-main);
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 1em;
  line-height: 1em;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 10px;
  border: 1px solid transparent;
  transition-duration: 0.15s;
}

.section-virtualtour .vt-container .details-box .button:hover {
  background: transparent;
  color: var(--theme-color-1);
  border: 1px solid var(--theme-color-1);
}

.section-virtualtour .vt-container .box-closer {
  border-bottom: 3px solid var(--theme-color-1);
  border-right: 3px solid var(--theme-color-1);
  border-left: 3px solid var(--theme-color-1);
  height: 40px;
  margin-bottom: 100px;
}

.disclaimer {
  text-align: center;
  color: var(--theme-color-3);
  background: var(--theme-color-6);
  font-size: 0.8em;
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 0px 0px 50px 0px #00000040;
}

.section-contatti {
  background: var(--theme-color-1);  
}

.section-contatti .contact-box {
  padding: 50px 0px;
}

.section-contatti .contacts {
  align-self: center;
}

.section-contatti .contact-block {
  display: flex;
  margin: 30px 0;
}

.section-contatti .contact-block .contact-logo {
  width: 50%;
  padding: 0 20px;
  align-self: center;
}

.section-contatti .contact-block .contact-logo img {
  max-width: 100%;
  max-height: 80px;
  float: right;
}

.section-contatti .contact-block .contact-info {
  border-left: 3px solid var(--theme-color-6);
  padding: 5px 20px;
  line-height: 1.4em;
  font-size: 0.8em;
  align-self: center;
  color: var(--theme-color-6);
}

.section-contatti .contact-form .tos-check {
  color: var(--theme-color-6);
  display: inline-block;
  font-size: 0.7em;
  line-height: 1.3em;
  text-align: justify;
}

.section-contatti .contact-form .ajax-loader {
  display: none;
}

.submit-button p {
  display: none;
}

.contact-form .submit-button {
}

.contact-form .submit-button input {
  background: var(--theme-color-3);
  color: var(--theme-color-6);
  border: 1px solid transparent;
}

.contact-form .submit-button input:hover {
  background: transparent;
  color: var(--theme-color-3);
  border: 1px solid var(--theme-color-3);
}

.partner-logo {
  height: 40px;
  width: auto;
  margin: 20px 0;
}

.section-partners {
  margin-bottom: 40px;
}

.section-partners .subtitle {
  color: var(--theme-color-3);
  font-size: 1em;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-unita .unit-block {
  background: var(--theme-color-6);
  box-shadow: 20px 20px 60px #00000040;
  border-radius: 30px;
  margin: 50px 0px;
  padding: 50px;
}

.unit-block-container {
  padding: 0 40px;
}

.unit-block-container.slick-slide .unit-block {
  
}

.unit-block .floorplan {
  max-width: 100%;
  max-height: 100%;
}

.unit-block .name {
  color: var(--theme-color-3);
  font-size: 2em;
  margin-bottom: 30px;
}

.unit-block .desc {
  color: var(--theme-color-4);
  margin-bottom: 30px;
  font-size: 1.1em;
}

.unit-block .meta {
  color: var(--theme-color-4);
  font-size: 1.1em;
}

.unit-block .meta span {
  font-weight: 600;
}

.unit-block .cta {
  margin-top: 50px;
}

.unit-block .link {
  display: inline-block;
  background: var(--theme-color-1);
  color: var(--theme-color-6);
  font-family: var(--font-main);
  padding: 15px;
  border-radius: 10px;
  font-size: 1.1em;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 20px;
  border: 1px solid transparent;
  cursor: pointer;
  transition-duration: 0.15s;
}

.unit-block .link:hover {
  background: transparent;
  color: var(--theme-color-1);
  border: 1px solid var(--theme-color-1);
}

.unit-block .download {
  display: inline-block;
  background: var(--theme-color-3);
  color: var(--theme-color-6);
  font-family: var(--font-main);
  padding: 15px;
  border-radius: 10px;
  font-size: 1.1em;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 20px;
  border: 1px solid transparent;
  cursor: pointer;
  transition-duration: 0.15s;
}

.unit-block .download:hover {
  background: transparent;
  color: var(--theme-color-3);
  border: 1px solid var(--theme-color-3);
}

.section-unita {
  overflow: hidden;
  position: relative;
}

.slick-list {
  overflow: visible;
}

.slick-slide {
  transition: opacity 0.5s;
  opacity: 0.4;
  outline: none;
}

.slick-slide.slick-current {
  opacity: 1;
}

.unit-block {
  position: initial;
}

.section-unita .slick-dots {
  height: 120px;
  position: static;
  display: flex;
  align-items: center;
  place-content: center;
}

.section-unita .slick-dots li {
  width: var(--dot-size);
  height: var(--dot-size);
}

.section-unita .slick-dots li button {
  width: var(--dot-size);
  height: var(--dot-size);
}

.section-unita .slick-dots li button:before {
  line-height: var(--dot-size);
  font-size: var(--dot-size);
  width: var(--dot-size);
  height: var(--dot-size);
  color: var(--theme-color-1);
}

.section-unita .slick-dots li.slick-active button:before {
  color: var(--theme-color-1);
}

.inner-content {

}

.inner-content .page-cover {
  height: 70vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.inner-content .divider {
  margin-top: 60px;
  margin-bottom: 60px;
}

.inner-content .divider::before {
  content: ' ';
  width: 12%;
  margin-left: 30%;
  border-top: 5px solid var(--theme-color-1);
  display: block;
}

.inner-content .single-name {
  color: var(--theme-color-3);
  margin-bottom: 50px;
}

.inner-content .unit-block{
  margin-bottom: 100px;
}

.inner-content .meta-large {
  margin-top: 30px;
}
.inner-content .meta-large p {
  margin-bottom: 5px;
  line-height: 1.2em;
}

.inner-content .meta-large strong {
  font-weight: 600;
}

.content-intro-subtitle {
  margin-top: 60px;
  margin-bottom: 50px;
  text-align: right;
  font-size: 2.3em;
  text-transform: uppercase;
  letter-spacing: 8px;
  overflow-wrap: anywhere;
  align-self: center;
  color: var(--theme-color-3);
}

.content-intro {
  margin-top: 60px;
  margin-bottom: 50px;
  text-align: justify;

  border-left: 5px solid var(--theme-color-3);
}

.unit-container {
  
}

.units-list.types .unit-block .floorplan {
  border: 7px solid var(--theme-color-2);
  padding: 20px;
}

.units-list.types .unit-block .name::before {
  content: ' ';
  background-color: var(--theme-color-1);
  display: block;
  top: 0px;
  left: -20%;
  height: 100%;
  width: 20%;
  position: absolute;
}

.units-list.types .unit-block .name {
  position: relative;
  background-color: var(--theme-color-1);
  color: var(--theme-color-6);
  padding: 30px 0;
  font-size: 2.2em;
  font-weight: 400;  
  letter-spacing: 2px;
}

.units-list.types .cta {
  text-align: right;
}

.unit-types.title-text::before {
  content: ' ';
  border-left: 4px solid var(--theme-color-1);
  height: calc(100% - 100px);
  display: block;
  position: absolute;
  z-index: -1;
}

.unit-type-container {
  margin-bottom: 50px;
}

.unit-type-box {
  position: relative;
  height: 240px;
  border: 1px solid var(--theme-color-1);
  display: flex;
  box-shadow: 10px 10px 30px #00000040;
  background-color: var(--theme-color-6);
}

.unit-type-box .name {
  flex-grow: 1;
  color: var(--theme-color-3);
  font-size: 2em;
  font-weight: 500;
  padding: 40px 0px 0 50px;
  line-height: 2.3em;
  z-index: 1;
  text-shadow: 2px 2px 5px #00000040;
}

.unit-type-box .index {
  color: var(--theme-color-1);
  font-size: 5em;
  font-weight: 700;
  padding: 0px 20px 0 40px;
  z-index: 1;
}

.unit-type-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.2;
  z-index: 0;
  padding: 40px 40px 0px 40px;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  background-origin: content-box;
}

.unit-type-cta {

}

.unit-type-ctas .link {
  display: inline-block;
  background: var(--theme-color-1);
  color: var(--theme-color-6);
  font-family: var(--font-main);
  padding: 15px;
  border-radius: 10px;
  font-size: 1.1em;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 20px;
  border: 1px solid transparent;
  cursor: pointer;
  transition-duration: 0.15s;
}

.unit-type-ctas .link:hover {
  background: var(--theme-color-6);
  color: var(--theme-color-1);
  border: 1px solid var(--theme-color-1);
}

.unit-type-ctas .download {
  display: inline-block;
  background: var(--theme-color-3);
  color: var(--theme-color-6);
  font-family: var(--font-main);
  padding: 15px;
  border-radius: 10px;
  font-size: 1.1em;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 20px;
  border: 1px solid transparent;
  cursor: pointer;
  transition-duration: 0.15s;
}

.unit-type-ctas .download:hover {
  background: var(--theme-color-6);
  color: var(--theme-color-3);
  border: 1px solid var(--theme-color-3);
}

.unit-block-container .unit-gallery {
  padding-bottom: 100px;
}
.unit-block-container .unit-gallery .unit-thumbnail {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.unit-block-container h5.subtitle {
  color: var(--theme-color-3);
  font-size: 1em;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 400;
}

.form-control {
  color: var(--theme-color-4);
  background-color: var(--theme-color-5);
}

#footer {
  color: var(--theme-color-3);
  background-color: var(--theme-color-2);
  box-shadow: 0px 0px 40px -10px #00000080;
  padding-top: 15px;
  padding-bottom: 15px;
}

#footer .footer-text {
  align-self: center;
  font-size: 0.8em;
}

#footer .footer-credits {

}

#footer .footer-credits span {
  font-size: 0.8em;
}

#footer .footer-credits img {
  height: 30px;
  margin-right: 30px;
}

.privacy-container {
  margin-top: var(--nav-height);
  padding-top: 50px;
  padding-bottom: 50px;
}

.grecaptcha-badge {
  display: none;
}

.partners-cont {
  display: flex;
}

.subpage-header {
  margin-top: var(--nav-height);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.subpage-header .container {
  height: 100%;
}

.subpage-header-title {
  background: var(--theme-color-1);
  color: var(--theme-color-6);
  font-size: 3em;
  margin: 2em 1em;
  padding: 1rem 3rem;
}

.image-with-text-block-bg {
  background-position: center;
  background-size: cover;
  padding: 2em 0em;
}

.image-with-text-block {
  padding: 2em 0px;
}

.image-with-text-block .image {
  align-self: center;
}

.image-with-text-block .image img {
  width: 100%;
}

.image-with-text-block .text {
  align-self: center;
}

.image-with-text-block .text h4 {
  font-size: 2.3em;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--theme-color-3);
}

.image-with-text-block .text h5 {
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 400;
  color: var(--theme-color-3);
}

.image-with-text-block .text .formatted {
  text-align: justify;
}

.image-with-text-block .text.reversed {
  background-color: var(--theme-color-3);
  padding: 3em 2em;
}

.image-with-text-block .text.reversed h4 {
  color: var(--theme-color-2);
}

.image-with-text-block .text.reversed h5 {
  color: var(--theme-color-2);
}

.image-with-text-block .text.reversed .formatted {
  color: var(--theme-color-2);
}

.unit-type-gallery {

}

.unit-type-gallery .single-image{
}

.unit-type-gallery .single-image img, .single-image img {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 10px;
  cursor: pointer;
}

.unit-type-divider {
  height: 20px;
  margin: 40px 0px 0px 0px;
  background: var(--theme-color-3);
}

.floorplan-box {
  position: relative;
}

.floorplan-popup {
  position: absolute;
  background: #ffffffde;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 1px 1px 3px 0px #0000009e;
  transform: scale(0);
  transition: transform 0.2s;
  white-space: nowrap;
}

.floorplan-popup.top {
  transform-origin: bottom;
  transform: translate(-50%, -100%) scale(0);
}

.floorplan-popup.top.show {
  transform: translate(-50%, -100%) scale(1);
}

.floorplan-popup.left {
  transform-origin: bottom;
  transform: translate(-50%, -100%) scale(0);
}

.floorplan-popup.left.show {
  transform: translate(-50%, -100%) scale(1);
}

.floorplan-popup.right {
  transform-origin: bottom;
  transform: translate(-50%, -100%) scale(0);
}

.floorplan-popup.right.show {
  transform: translate(-50%, -100%) scale(1);
}

.floorplan-popup.bottom {
  transform-origin: bottom;
  transform: translate(-50%, 0%) scale(0);
}

.floorplan-popup.bottom.show {
  transform: translate(-50%, 0%) scale(1);
}

.availability {
  fill: none;
  opacity: 0.25;
  cursor: pointer;
}
.availability:hover {
  opacity: 0.5;
}

.floorplans .title {
  margin-top: 80px;
  margin-bottom: 50px;
  text-align: center;
}

.floorplans .tab {
  text-align: center;
  padding: 10px;
  background-color: transparent;
  color: var(--theme-color-4);
  cursor: pointer;
  transition: 0.3s;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.floorplans .tab:not(.active):hover {
  border-bottom: 5px solid var(--theme-color-3);
  background: var(--theme-color-2);
}

.floorplans .tab.active {
  border-bottom: 5px solid var(--theme-color-3);
  background: var(--theme-color-2);
  font-weight: 600;
}

.floorplans .tab-content {
  display: none;
}

.floorplans .tab-content.active {
  display: block;
}

.work-video-gallery {
  margin-bottom: 80px;
}

.work-image-gallery {
  margin-bottom: 80px;
}

.work-image-gallery .image {
  overflow: hidden;
  background: black;
  position: relative;
  margin-bottom: 5px;
}

.work-image-gallery .image::after {
  content: "ZOOM";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  opacity: 0;
  transition-duration: 0.4s;
  font-weight: 800;
  font-size: 1.5em;
  color: var(--theme-color-2);
}

.work-image-gallery .image:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.work-image-gallery .image img {
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition-duration: 0.4s;
  opacity: 1;
  cursor: pointer;
}

.work-image-gallery .image img[lazyloadbg] {
  background-color: white;
}

.work-image-gallery .image:hover img {
  transform: scale(1.1);
  opacity: 0.7;
}

.work-image-gallery .date {
  color: var(--theme-color-3);
  margin-right: 10px;
}

.work-image-gallery .caption {
  
}

.download-button {

}

.contact-form select {
  min-height: calc(1.5em + 0.75rem + 2px);
  color: var(--theme-color-4);
  background-color: var(--theme-color-5);
  width: 100%;
}

.central-download-button {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 50px;
}

.central-download-button a {
  background: var(--theme-color-1);
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 1.5em;
  color: var(--theme-color-2);
  text-decoration: none;
  border: 1px solid transparent;
  transition-duration: 0.2s;
}

.central-download-button a:hover {
  border: 1px solid var(--theme-color-1);
  background: transparent;
  color: var(--theme-color-1);
}

.mapinfo {
  color: #1a7667;
  font-weight: 800;
  text-decoration: none;
}

.mapinfo:hover {
  color: #1a7667;
  text-decoration: underline;
}

.floorplanCTA {
  display: inline-block;
  color: var(--theme-color-1);
  border: 1px solid var(--theme-color-1);
  background: var(--theme-color-6);
  padding: 20px 40px;
  font-size: 2em;
  text-decoration: none;
}

.floorplanCTA:hover {
  color: var(--theme-color-6);
  background: var(--theme-color-1);
}

/* md */
@media (max-width: 991px) {
  :root {
    --dot-size: 20px;
  }
  .section-intro {
    padding-top: 50px;
    padding-bottom: 110px;
  }
  .section-territorio .title-text::before {
    top: 50px;
    height: calc(100% - 50px);
  }
  .section-territorio .green-bg {
    padding-top: 50px;
  }
  .section-territorio .title-num, .section-eco .title-num, .section-virtualtour .title-num {
    /* font-size: 150px;
    line-height: 150px; */
    padding-bottom: 50px;
  }
  .section-territorio .section-content, .section-eco .section-content {
    margin-top: -30px;
  }
  .section-territorio .territorio-desc, .section-eco .eco-desc {
    margin-top: 40px;
  }
  .section-posizione .title-num {
    /* font-size: 160px;
    line-height: 120px; */
  }
  .section-posizione .position-text {
    margin-top: 20px;
    padding: 20px 20px 100px 20px;
  }
  .section-posizione .section-content {
    padding-bottom: 50px;
  }
  .section-posizione h5, .section-territorio h5, .section-eco h5, .section-virtualtour h5, .section-progetto h5, .section-unita h5 {
    font-size: 1em;
  }
  .section-progetto-previews {
    margin-top: 0px;
  }
  .section-progetto h4, .section-unita h4, .section-posizione h4, .section-territorio h4, .section-eco h4, .section-virtualtour h4 {
    font-size: 1.8em;
    letter-spacing: 4px;
  }
  .section-progetto .green-bg {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .section-progetto .title-num {
    /* font-size: 160px;
    line-height: 120px; */
  }
  .section-progetto .project-prospects-slider .slick-dots {
    height: 60px;
  }
  .download-button {
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .project-graphics .subtitle {
    margin-top: 40px;
  }
  .section-progetto {
    margin-bottom: 50px;
  }
  .section-unita .title-num {
    font-size: 160px;
    line-height: 120px;
  }
  .section-unita .slick-dots {
    height: 60px;
  }
  .section-unita {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .section-eco.green-bg {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .section-eco .eco-logo img {
    padding-left: 0;
  }
  .section-virtualtour .vt-container .details-box {
    padding: 20px 20px 0px 20px;
  }
  .section-virtualtour .vt-container .details-box .desc {
    margin-top: 0px;
  }
  .section-contatti .contact-block .contact-logo {
    padding: 0 20px 0 0;
  }
  #footer .footer-text {
    margin-bottom: 20px;
  }
  .header .mobile-menu a {
    line-height: 2em;
  }
  .inner-content .unit-block .desc {
    margin-top: 30px;
  }
  .inner-content .page-cover {
    height: 40vh;
  }
  .units-list.types .unit-block .name {
    margin-top: 30px;
    padding: 20px;
  }
  .units-list.types .unit-block .name::before {
    content: none;
  }
  .unit-block .name {
    margin-top: 30px;
  }
  .subpage-header-title {
    font-size: 2em;
  }
  .floorplans .title {
    text-align: justify;
  }
  .mobile-push {
    margin-bottom: 400px;
  }
}

@media (max-width: 767px) {
  .header .mobile-menu a {
    font-size: 1.5em;
  }
  .section-landing .landing-title .title-text {
    font-size: 32px;
  }
  .section-landing .landing-subtitle {
    font-size: 24px;
  }
  .section-intro .image {
    width: 100%;
  }
  .section-intro .image::before {
    left: 20%;
  }
  .section-intro .text {
    margin-left: -60%;
    margin-top: 80%;
  }
  .section-territorio .title-num, .section-eco .title-num, .section-virtualtour .title-num, .section-territorio .title-num {
    font-size: 90px;
    line-height: 90px;
    padding-right: 40px;
  }
  .section-posizione .title-num, .section-progetto .title-num, .section-unita .title-num, .section-eco .title-num, .section-virtualtour .title-num {
    /* font-size: 90px;
    line-height: 90px; */
  }
  .section-progetto h4, .section-unita h4, .section-posizione h4, .section-territorio h4, .section-eco h4, .section-virtualtour h4 {
    font-size: 1.5em;
  }
  .section-territorio .mobile-gallery {
    z-index: 1;
  }
  .section-territorio .title-text {
    position: relative;
  }
  .section-territorio .title-text::before {
    top: 0px;
  }
  .section-territorio .mobile-gallery {
    
  }
  .section-territorio .mobile-gallery .col-6:first-child {
    margin-top: 60px;
  }
  .section-territorio .mobile-gallery .col-12 {
    margin-top: 30px;
  }
  .section-posizione {
    padding-top: 50px;
  }
  .section-posizione .position-btn-box {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .section-posizione .position-text {
    padding-bottom: 20px;
    border: 0px;
  }
  .section-posizione .position-btn-box {
    
  }
  .section-posizione #map {
    margin-top: 20px;
    margin-bottom: 20px;
    height: 300px;
    margin: 20px calc(var(--bs-gutter-x)/ -2);
  }
  .section-posizione .section-content {
    padding-bottom: 20px;
  }
  .section-posizione .service .icon {
    width: 50px;
    padding: 0px 13px 15px 7px !important; 
  }
  .mobile-justify {
    padding-top: 30px;
    text-align: justify;
  }
  .section-progetto .full-floorplan {
    margin-top: -30px;
  }
  .section-progetto .project-prospect-slide {
    margin-top: 50px;
  }
  .unit-type-box {
    margin-bottom: 50px;
  }
  .unit-type-bg {
    padding: 20px;
  }
  .unit-type-box {
    border-width: 10px;
    height: 160px;
  }
  .mobile-ecogallery {
    margin-top: 20px;
  }
  .unit-type-box .name {
    padding: 20px;
    background-color: var(--theme-color-2);
    position: absolute;
    right: -20%;
    bottom: -30px;
    font-size: 24px;
    line-height: 24px;
    color: var(--theme-color-6);
    text-shadow: none;
  }
  .section-eco .title-text {
    position: relative;
  }
  .section-eco .eco-logo {
    margin-top: 0px;
  }
  .section-eco.green-bg {
    margin-bottom: 0px;
  }
  .section-virtualtour .vt-container .details-box {
    border: none;
    margin-bottom: 50px;
  }
  .section-virtualtour .vt-container .reversed .details-box {
    border: none;
  }
  .section-virtualtour .vt-container .box-closer {
    display: none;
  }
  .section-virtualtour .rel-container {
    background-size: 100%;
  }
  .unit-block-container {
    padding: 0px;
  }
  html.mobile-menu-visible #content, html.mobile-menu-visible #footer {
    filter: none;
  }
  .header .mobile-menu .mobile-menu-box {
    width: 100%;
  }
  .unit-block .desc {
    font-size: 0.9em;
    margin-bottom: 10px;
  }
  .unit-block .cta {
    margin-top: 20px;
  }
  .unit-block .meta {
    font-size: 0.9em;
  }
  .unit-block-container.slick-slide .unit-block {
    padding: 30px 10px;
  }
  .unit-block .name {
    margin: 20px 0px 10px 0px;
    font-size: 1.5em;
  } 
  .unit-block .link, .unit-block .download {
    padding: 8px;
  }
  .units-list.types .unit-block .name {
    font-size: 1.5em;
    padding: 10px;
  }
}
