/* red: #ba441f; blue: #007dbd; green: #97a33e; grey: #5a8482; */
.room-style-selector {
  width: 100%;
  height: 820px;
  max-height: -webkit-calc(100vh - 94px);
  max-height: -moz-calc(100vh - 94px);
  max-height: calc(100vh - 94px);
  display: block;
  position: relative;
}
.room-style-selector h2 {
  /* 
   &:before, &:after {
   content: "";
   position:absolute;
   left:50%;
   @include translateX(-50%);
   width:140px;
   height:15px;
   background-color: #f0f1e7;
   z-index:5;
   }
   &:before { top: 0; }
   &:after { bottom: 0; }
   */
  font-size: 35px;
  color: #fff;
  text-transform: uppercase;
  position: absolute;
  top: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 3;
}
.room-style-selector .rss-bg .bg-item {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: block;
}
.room-style-selector .rss-fg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  height: 100%;
  position: relative;
  z-index: 2;
}
.room-style-selector .rss-fg .fg-item {
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.room-style-selector .rss-fg .fg-item .fg-background {
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 400%;
  z-index: 1;
}
.room-style-selector .rss-fg .fg-item .fg-background:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 2;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.room-style-selector .rss-fg .fg-item .fg-box {
  padding: 0 30px;
  position: relative;
  z-index: 3;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: -webkit-calc(100% - 80px);
  max-width: -moz-calc(100% - 80px);
  max-width: calc(100% - 80px);
  width: 100%;
  height: 55px;
  border: 0;
}
.room-style-selector .rss-fg .fg-item .fg-box .fg-box-title {
  font-size: 45px;
  z-index: 2;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin-bottom: 0;
  position: relative;
  line-height: 1.2;
}
.room-style-selector .rss-fg .fg-item .fg-box .fg-box-content {
  display: block;
  width: 100%;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font-size: 17px;
  max-height: 0;
  margin-top: 0px;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}
.room-style-selector .rss-fg .fg-item .fg-box .fg-box-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 114px;
  height: 114px;
  border: 3px solid #fff;
  z-index: 1;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.room-style-selector .rss-fg .fg-item:first-child .fg-background {
  left: 0;
}
.room-style-selector .rss-fg .fg-item:nth-child(2) .fg-background {
  left: -100%;
}
.room-style-selector .rss-fg .fg-item:nth-child(3) .fg-background {
  left: -200%;
}
.room-style-selector .rss-fg .fg-item:nth-child(4) .fg-background {
  left: -300%;
}
.room-style-selector .rss-fg .fg-item:not(:hover) .fg-box-lines {
  background-color: transparent !important;
}
.room-style-selector .rss-fg .fg-item:hover .fg-background:before {
  background-color: transparent;
}
.room-style-selector .rss-fg .fg-item:hover .fg-box {
  border: 2px solid rgba(204, 204, 204, 0.7);
  padding: 90px 30px 30px;
  height: 400px;
}
.room-style-selector .rss-fg .fg-item:hover .fg-box .fg-box-content {
  max-height: 820px;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  margin-top: 30px;
}
.room-style-selector .rss-fg .fg-item:hover .fg-box .fg-box-lines {
  top: -57px;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.room-style-selector .rss-fg .fg-item:hover .fg-box-overlay {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}
.room-style-selector .rss-fg .fg-item .fg-box-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  z-index: 2;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.room-style-selector-with-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.room-style-selector-with-text .room-style-selector {
  height: 1000px;
  -webkit-flex-basis: 65%;
  -moz-flex-basis: 65%;
  -ms-flex-basis: 65%;
  flex-basis: 65%;
  /* max-width: 1220px; */
  max-width: 100%;
}
.room-style-selector-with-text .room-style-selector .rss-bg {
  display: none;
}
.room-style-selector-with-text .room-style-selector .rss-fg {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.room-style-selector-with-text .room-style-selector .rss-fg .fg-item {
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  -ms-flex-basis: 50%;
  flex-basis: 50%;
}
.room-style-selector-with-text .room-style-selector .rss-fg .fg-item .fg-background {
  width: 100%;
  -webkit-filter: blur(0px);
  filter: blur(0px);
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.room-style-selector-with-text .room-style-selector .rss-fg .fg-item:hover .fg-box {
  height: 280px;
  padding: 80px 30px 30px;
}
.room-style-selector-with-text .room-style-selector .rss-fg .fg-item:hover .fg-background {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}
.room-style-selector-with-text .room-style-selector .rss-fg .fg-item:first-child .fg-background, .room-style-selector-with-text .room-style-selector .rss-fg .fg-item:nth-child(2) .fg-background, .room-style-selector-with-text .room-style-selector .rss-fg .fg-item:nth-child(3) .fg-background, .room-style-selector-with-text .room-style-selector .rss-fg .fg-item:nth-child(4) .fg-background {
  left: 0;
}
.room-style-selector-with-text .room-style-selector-text {
  -webkit-flex-basis: 35%;
  -moz-flex-basis: 35%;
  -ms-flex-basis: 35%;
  flex-basis: 35%;
}
.room-style-selector-with-text .room-style-selector-text .rss-content-div {
  /* max-width: 305px; */
  max-width: 100%;
  text-align: left;
  margin: 20px 50px 20px 70px;
}
.cortile-map-section {
  position: relative;
  height: 1000px;
  width: 100%;
  max-height: -webkit-calc(100vh - 94px);
  max-height: -moz-calc(100vh - 94px);
  max-height: calc(100vh - 94px);
}
.cortile-map-section .map-selector {
  position: absolute;
  top: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 5;
  font-size: 0;
  white-space: nowrap;
  max-width: 100%;
}
.cortile-map-section .map-selector > div {
  padding: 10px 30px;
  border: 2px solid #c1c1c1;
  background-color: #fff;
  color: #c1c1c1;
  display: inline-block;
  margin: 0;
  font-size: 16px;
  cursor: pointer;
  font-weight: 500;
}
.cortile-map-section .map-selector > div.active {
  background-color: #5a8482;
  border-color: #5a8482;
  color: #fff;
}
.cortile-map-section .map-info-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
  background-color: rgba(0, 0, 0, 0.4);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.cortile-map-section .map-info-box .map-info-box-text {
  margin: auto;
  color: #fff;
  font-size: 20px;
  text-align: center;
  max-width: 230px;
  font-weight: 500;
}
.cortile-map-section .map-info-box .map-info-box-text img {
  max-width: 80px;
  max-height: 80px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto 20px;
}
.cortile-map-section .map-info-box.active {
  background-color: transparent;
  bottom: 15px;
  top: auto;
  height: auto;
}
.cortile-map-section .map-info-box.active .map-info-box-text {
  font-size: 12px;
  max-width: 100%;
  color: #3a3a3a;
}
.cortile-map-section .map-info-box.active .map-info-box-text .map-info-box-icon {
  display: inline-block;
  padding: 5px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  margin-right: 5px;
}
.cortile-map-section .map-info-box.active .map-info-box-text .map-info-box-icon img {
  display: inline-block;
  margin: 0;
  max-width: 40px;
  max-height: 40px;
}
.cortile-map-section .cortile-map-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
}
.cortile-map-section .cortile-map {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3000px;
  height: 1000px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cortile-map-section .cortile-map .cortile-map-items .map-item {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  cursor: pointer;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cortile-map-section .cortile-map .cortile-map-items .map-item:hover {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.cortile-map-section .cortile-real-map {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
}
.cortile-map-section .cortile-real-map iframe {
  max-width: 100%;
  max-height: 100%;
}
.cortile-map-section .map-popups {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  overflow: auto;
  /* padding: 60px 0 60px; */
  padding: 0;
  background-color: #fff;
  z-index: 99999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.cortile-map-section .map-popups .map-popup {
  width: 100%;
  max-width: 1480px;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}
.cortile-map-section .map-popups .map-popup .map-popup-content {
  font-size: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cortile-map-section .map-popups .map-popup .map-popup-content > div {
  padding: 0 30px;
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  -ms-flex-basis: 50%;
  flex-basis: 50%;
}
.cortile-map-section .map-popups .map-popup .map-popup-content .map-popup-content-left {
  text-align: center;
  border-right: 1px solid #dedede;
}
.cortile-map-section .map-popups .map-popup .map-popup-content .map-popup-content-left img {
  max-width: 100%;
  max-height: 350px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}
.cortile-map-section .map-popups .map-popup .map-popup-content .map-popup-content-left h2 {
  margin-bottom: 10px;
  font-size: 42px;
}
.cortile-map-section .map-popups .map-popup .map-popup-content .map-popup-content-left .subtitle {
  margin-bottom: 20px;
}
.cortile-map-section .map-popups .map-popup .map-popup-content .map-popup-content-right {
  font-size: 18px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.cortile-map-section .map-popups .map-popup .map-popup-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 0;
  background-color: #000;
  color: #fff;
  font-size: 100px;
  font-weight: normal;
  text-align: center;
  cursor: pointer;
}
.cortile-map-section .map-popups .map-popup .map-popup-nav {
  display: block;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 10px;
}
.cortile-map-section .map-popups .map-popup .map-popup-nav > div {
  cursor: pointer;
}
.cortile-map-section .map-popups .map-popup .map-popup-nav .mpn-prev {
  float: left;
}
.cortile-map-section .map-popups .map-popup .map-popup-nav .mpn-next {
  float: right;
}
.cortile-map-section .map-popups .map-popup .map-popup-nav:after {
  content: "";
  display: block;
  clear: both;
}
.site-header .room-style-selector {
  height: 365px;
  width: 363px;
  max-width: 100%;
  margin: 20px auto 0;
}
.site-header .room-style-selector:before, .site-header .room-style-selector:after, .site-header .room-style-selector h2 {
  display: none;
}
.site-header .room-style-selector .rss-bg {
  display: none;
}
.site-header .room-style-selector .rss-fg {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}
.site-header .room-style-selector .rss-fg .fg-item {
  -webkit-flex-basis: auto;
  -moz-flex-basis: auto;
  -ms-flex-basis: auto;
  flex-basis: auto;
  width: -webkit-calc(50% - 5px);
  width: -moz-calc(50% - 5px);
  width: calc(50% - 5px);
  height: 176px;
  max-width: 100%;
  margin-bottom: 10px;
}
.site-header .room-style-selector .rss-fg .fg-item .fg-background {
  width: 100%;
}
.site-header .room-style-selector .rss-fg .fg-item .fg-box {
  padding: 0;
  border: 0;
  height: auto;
}
.site-header .room-style-selector .rss-fg .fg-item .fg-box .fg-box-title {
  font-size: 18px;
}
.site-header .room-style-selector .rss-fg .fg-item .fg-box .fg-box-content {
  display: none;
}
.site-header .room-style-selector .rss-fg .fg-item .fg-box .fg-box-lines {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  /* !important; */
  background-color: transparent !important;
  width: 42px;
  height: 42px;
  border-width: 2px;
}
.site-header .room-style-selector .rss-fg .fg-item .fg-box-overlay {
  display: block;
}
.site-header .room-style-selector .rss-fg .fg-item:first-child .fg-background, .site-header .room-style-selector .rss-fg .fg-item:nth-child(2) .fg-background, .site-header .room-style-selector .rss-fg .fg-item:nth-child(3) .fg-background, .site-header .room-style-selector .rss-fg .fg-item:nth-child(4) .fg-background {
  left: 0;
}
.site-header .room-style-selector .rss-fg .fg-item:hover .fg-box-overlay {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}
.site-header .room-style-selector .rss-fg .fg-item:hover .fg-box {
  width: 100%;
  height: 100%;
  max-width: 100%;
}
.site-header .room-style-selector .rss-fg .fg-item:hover .fg-box .fg-box-title {
  display: none;
}
.site-header .room-style-selector .rss-fg .fg-item:hover .fg-box .fg-box-lines {
  top: 5px !important;
  left: 5px;
  bottom: 5px;
  right: 5px;
  width: auto;
  height: auto;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.wpb_single_image[class*=' speed'] .vc_figure {
  width: 100%;
}
.wpb_single_image[class*=' speed'] .vc_single_image-wrapper {
  display: block;
  position: relative;
  margin-top: 100px;
  margin-bottom: 20px;
  height: 480px;
  max-width: 560px;
  overflow: hidden;
  /* position:relative;
   top: -130px;
   width: auto;
   display: block;
   -webkit-transform: translateZ(0);
   -moz-transform: translateZ(0);
   transform: translateZ(0); */
  /* @include transition(all 0.02s linear); */
}
.wpb_single_image[class*=' speed'] .vc_single_image-wrapper img.vc_single_image-img {
  will-change: transform;
  position: absolute;
  top: 0;
}
body .ourteam > .vc_column_container > .vc_column-inner > .wpb_wrapper {
  width: 1340px;
  max-width: 100%;
  padding: 0;
  margin: 0 auto;
  box-sizing: border-box;
}
body .ourteam > .vc_column_container > .vc_column-inner > .wpb_wrapper > .vc_row {
  margin-left: 0;
  margin-right: 0;
}
body .ourteam > .vc_column_container > .vc_column-inner > .wpb_wrapper .vc_column_container {
  padding: 0 20px;
}
body .ourteam > .vc_column_container > .vc_column-inner > .wpb_wrapper .vc_col-sm-6 {
  width: 50%;
  margin-left: 0;
  margin-right: 0;
}
#main {
  background-attachment: fixed;
}
.parallaxbg {
  background-attachment: fixed;
  /* background-position-x: 50%;
   background-size: 120% !important; */
  background-size: 1920px auto !important;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}
.home.page-template .topslider {
  position: relative;
  z-index: 2;
}
#cookie-law-info-bar {
  padding-left: 5px;
  padding-right: 5px;
  box-sizing: border-box;
}
#cookie-law-info-bar br {
  display: none;
}
#cookie-law-info-bar .cli_action_button {
  margin-left: 10px;
}
/* 
 .cortile-icon-block {
 + .wpb_content_element {
 .mega-info-title {
 min-height: 87px;
 }
 }
 }
 */
/*
 html {
 position: fixed;
 top: 0;
 right: 0;
 left: 0;
 width: 100%;
 height: 100%;
 margin: auto;
 overflow-x: hidden;
 overflow-y: hidden;
 will-change: transform;
 body {
 overflow-x: hidden;
 overflow-y: scroll;
 position:relative;
 height: auto;
 width:100%;
 }
 }
 */
@media only screen and (min-width: 1900px) {
  .parallaxbg {
    background-size: 100% !important;
  }
}
@media only screen and (max-height: 750px) {
  .site-header .room-style-selector {
    height: 270px;
  }
  .site-header .room-style-selector .rss-fg .fg-item {
    height: 130px;
  }
}
@media only screen and (max-width: 1500px) {
  .cortile-map-section {
    height: 800px;
  }
  .cortile-map-section .cortile-map {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    -moz-transform: translate(-50%, -50%) scale(0.8);
    -ms-transform: translate(-50%, -50%) scale(0.8);
    -o-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }
}
@media only screen and (max-width: 1200px) {
  .room-style-selector {
    height: 700px;
  }
  .room-style-selector .rss-fg .fg-item .fg-box {
    padding: 0 20px;
    max-width: -webkit-calc(100% - 40px);
    max-width: -moz-calc(100% - 40px);
    max-width: calc(100% - 40px);
  }
  .room-style-selector .rss-fg .fg-item:hover .fg-box {
    padding: 90px 20px 30px;
  }
  .cortile-map-section {
    height: 700px;
  }
  .cortile-map-section .cortile-map {
    -webkit-transform: translate(-50%, -50%) scale(0.7);
    -moz-transform: translate(-50%, -50%) scale(0.7);
    -ms-transform: translate(-50%, -50%) scale(0.7);
    -o-transform: translate(-50%, -50%) scale(0.7);
    transform: translate(-50%, -50%) scale(0.7);
  }
  .parallaxbg {
    background-attachment: scroll;
    background-size: cover !important;
  }
}
@media only screen and (max-width: 1023px) {
  .room-style-selector .rss-fg .fg-item .fg-box {
    padding: 0 15px;
    max-width: -webkit-calc(100% - 20px);
    max-width: -moz-calc(100% - 20px);
    max-width: calc(100% - 20px);
  }
  .room-style-selector .rss-fg .fg-item:hover .fg-box {
    padding: 90px 15px 30px;
  }
  .room-style-selector-with-text .room-style-selector-text .rss-content-div {
    margin: 0 20px;
  }
  .cortile-map-section {
    height: 600px;
  }
  .cortile-map-section .cortile-map {
    -webkit-transform: translate(-50%, -50%) scale(0.6);
    -moz-transform: translate(-50%, -50%) scale(0.6);
    -ms-transform: translate(-50%, -50%) scale(0.6);
    -o-transform: translate(-50%, -50%) scale(0.6);
    transform: translate(-50%, -50%) scale(0.6);
  }
  #main {
    background-attachment: scroll;
  }
}
@media only screen and (max-width: 800px) {
  .wpb_single_image[class*=' speed'] .vc_single_image-wrapper {
    margin: 0 auto;
    height: 70vw;
    max-height: 480px;
    max-width: 100%;
  }
  .wpb_single_image[class*=' speed'] .vc_single_image-wrapper img.vc_single_image-img {
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
  body .ourteam > .vc_column_container > .vc_column-inner > .wpb_wrapper .vc_col-sm-6 {
    width: 100%;
    padding-bottom: 20px;
  }
  body .ourteam .wpb_single_image[class*=' speed'] .vc_figure {
    display: block;
  }
  body .ourteam .wpb_single_image[class*=' speed'] .vc_figure img {
    margin: 0 auto;
  }
  .cortile-map-section .cortile-map-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: auto;
  }
  .cortile-map-section .cortile-map {
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: translate(0, 0) scale(0.6);
    -moz-transform: translate(0, 0) scale(0.6);
    -ms-transform: translate(0, 0) scale(0.6);
    -o-transform: translate(0, 0) scale(0.6);
    transform: translate(0, 0) scale(0.6);
    -webkit-transform-origin: top left;
    -moz-transform-origin: top left;
    -ms-transform-origin: top left;
    -o-transform-origin: top left;
    transform-origin: top left;
  }
  .cortile-map-section .map-popups .map-popup .map-popup-content {
    font-size: 16px;
    display: block;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 40px;
  }
  .cortile-map-section .map-popups .map-popup .map-popup-content > div {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-basis: 100%;
    flex-basis: 100%;
    padding: 0;
  }
  .cortile-map-section .map-popups .map-popup .map-popup-content .map-popup-content-left {
    margin-bottom: 20px;
  }
  .cortile-map-section .map-popups .map-popup .map-popup-content .map-popup-content-left h2 {
    font-size: 26px;
  }
  .cortile-map-section .map-popups .map-popup .map-popup-content .map-popup-content-left {
    border-right: 0;
  }
  .cortile-map-section .map-popups .map-popup .map-popup-close {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .room-style-selector {
    height: auto;
    max-height: none;
  }
  .room-style-selector:before, .room-style-selector:after {
    display: none;
  }
  .room-style-selector h2 {
    position: relative;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    left: auto;
    top: auto;
    padding: 20px 0;
    text-align: center;
    display: block;
    color: #5a8482;
  }
  .room-style-selector .rss-bg {
    display: none;
  }
  .room-style-selector .rss-fg {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 600px;
  }
  .room-style-selector .rss-fg .fg-item {
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    -ms-flex-basis: 50%;
    flex-basis: 50%;
  }
  .room-style-selector .rss-fg .fg-item .fg-background {
    width: 100%;
  }
  .room-style-selector .rss-fg .fg-item .fg-box {
    padding: 0 !important;
    border: 0 !important;
    height: auto !important;
  }
  .room-style-selector .rss-fg .fg-item .fg-box .fg-box-content {
    display: none !important;
  }
  .room-style-selector .rss-fg .fg-item .fg-box .fg-box-lines {
    top: 50% !important;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    /* !important; */
    background-color: transparent !important;
  }
  .room-style-selector .rss-fg .fg-item .fg-box-overlay {
    display: block;
  }
  .room-style-selector .rss-fg .fg-item:first-child .fg-background, .room-style-selector .rss-fg .fg-item:nth-child(2) .fg-background, .room-style-selector .rss-fg .fg-item:nth-child(3) .fg-background, .room-style-selector .rss-fg .fg-item:nth-child(4) .fg-background {
    left: 0;
  }
  .room-style-selector .rss-fg .fg-item:hover .fg-box .fg-box-lines {
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .room-style-selector-with-text {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .room-style-selector-with-text .room-style-selector {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-basis: 100%;
    flex-basis: 100%;
    height: auto;
  }
  .room-style-selector-with-text .room-style-selector-text {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-basis: 100%;
    flex-basis: 100%;
  }
  .room-style-selector-with-text .room-style-selector-text .rss-content-div {
    max-width: 100%;
    text-align: center;
    margin: 40px 0 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  .site-header .room-style-selector .rss-fg .fg-item {
    height: 176px;
  }
  .site-header .room-style-selector .rss-fg .fg-item:hover .fg-box {
    height: 100% !important;
  }
  .site-header .room-style-selector .rss-fg .fg-item:hover .fg-box .fg-box-lines {
    top: 5px !important;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@media only screen and (max-width: 480px) {
  .room-style-selector .rss-fg {
    height: 360px;
  }
  .room-style-selector .rss-fg .fg-item .fg-box .fg-box-title {
    font-size: 18px;
  }
  .room-style-selector .rss-fg .fg-item .fg-box .fg-box-lines {
    top: 50% !important;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    /* !important; */
    background-color: transparent !important;
    width: 42px;
    height: 42px;
    border-width: 2px;
  }
  .cortile-map-section .map-selector > div {
    padding: 7px 15px;
    font-size: 14px;
  }
  #cookie-law-info-bar br {
    display: block;
  }
  #cookie-law-info-bar .cli_action_button {
    margin-left: 0;
  }
}
