@charset "UTF-8";
/* CSS Document */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
#5e86c1
*/
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;
  background-color: #ffffff;
  transition: 0.3s all;
}
html {
  margin-top: 0px !important;
}
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;
}
select {
  -webkit-appearance: none;
}
input[type="checkbox"] {
  padding: 0;
  width: 20px;
  height: 20px;
  border-radius: 0px;
  background-color: transparent;
  border: solid blue 1px;
}
img, .position-bg {
  background-position-x: center;
  background-position-y: center;
}
* {
  box-sizing: border-box;
}
/* menu classico
--------------------------------------------- */
#navbarNav {
  list-style-type: none;
}
.menu-item {
  float: left;
  padding: 0 10px;
	font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.menu-item a, .menu-item a:hover, .menu-item a:visited {
  color: #ffffff;
}
.sticky-top .menu-item a, .sticky-top .menu-item a:hover {
  color: #5e86c1 !important;
}
#navbarNavMobile .menu-item a, .menu-item a:hover, .menu-item a:visited {
  color: #ffffff;
}
.sticky-top #navbarNavMobile .menu-item a, .menu-item a:hover {
  color: #5e86c1;
}
#navbarNavMobile .menu-item {
  float: none;
  padding: 0 10px;
}
.overlay #navbarNavMobile li a {
  font-size: 20px;
}
/* END menu classico
------------------------------------------------------------------------------------------ */
/* Hamburger menu + overlay effect menu
--------------------------------------------- */
.button_container {
  position: fixed;
  top: 4%;
  right: 7%;
  height: 27px;
  width: 35px;
  cursor: pointer;
  z-index: 100;
  transition: opacity 0.25s ease;
}
.button_container:hover {
  opacity: 0.7;
}
.button_container.active .top {
  transform: translateY(11px) translateX(0) rotate(45deg);
  background: #FFF;
}
.button_container.active .middle {
  opacity: 0;
  background: #FFF;
}
.button_container.active .bottom {
  transform: translateY(-11px) translateX(0) rotate(-45deg);
  background: #FFF;
}
.button_container span {
  background: #ffffff;
  border: none;
  height: 2px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.35s ease;
  cursor: pointer;
}
#masthead.sticky-top .button_container span {
  background: #5e86c1;
}
.button_container span:nth-of-type(2) {
  top: 11px;
}
.button_container span:nth-of-type(3) {
  top: 22px;
}
.overlay {
  position: fixed;
  background: #30412F;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s, height 0.35s;
  overflow: hidden;
  z-index: 100;
}
.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-weight: 400;
  text-align: center;
}
.overlay ul {
  list-style: none;
  padding: 0;
  display: inline-block;
  position: relative;

}
.overlay ul li {
  display: block;
  line-height: 50px;
  position: relative;
  opacity: 0;
}
.overlay ul li a {
  display: block;
  position: relative;
  color: #FFF;
  text-decoration: none;
  overflow: hidden;
  text-transform: uppercase;
  font-size: 40px;
  font-family: 'garetra_demoregular';
}
.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: 2px;
  background: rgba(255, 255, 255, .5);
  transition: 0.35s;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
.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 Hamburger menu + overlay effect menu
------------------------------------------------------------------------------------------ */
/*FORM */
.form-container form input[type="submit"] {
  min-width: 100%;
  margin-left: 0;
  background-color: transparent;
  color: #ffffff;
  border: solid #fff 2px;
}
.form-container form input[type="submit"]:hover {
  background-color: #1b5583;
  color: #fff;
  border: solid #1b5583 2px;
}
.newsletter-col form input[type="submit"] {
  min-width: 100%;
  margin-left: 0;
  background-color: transparent;
  color: #fff;
  border: solid #fff 2px;
}
.newsletter-col form input[type="submit"]:hover {
  background-color: #5e86c1;
  color: #fff;
  border: solid #5e86c1 2px;
}
#field_1_31 {
  color: #ffffff;
  top: 75px;
  position: relative;
  left: 11px;
}
.gfield_consent_label, #field_1_31 {
  color: #ffffff;
}
#field_1_31 a {
  color: #ffffff;
  font-weight: bold;
}
#field_1_55 {
  top: 48px;
}
#field_1_55 .gfield_label {
  position: absolute;
  display: block;
}
.btn-preventivo {
  background-color: #FFE9C8;
  color: #fff;
}
/*bottone prenota*/

.btn-book {
  color: #ffffff !important;
	background-color: #5e86c1 !important;
}
/*quovai*/
.quovai-topbar {
  background-color: rgba(0, 0, 0, 0.3) !important;
}
#quovai-civicouno button {
	border-color: transparent !important;
	padding: 5px 15px !important
}
/* OVERRIDE BOOTSTRAP CSS */
#dropdownMenuButton {
  background-color: #5e86c1 !important;
  border: none !important;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.5;
  padding: 15px !important;
}
.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;
}
thead {
  background-color: #6E869E;
  color: #fff;
  font-weight: bold;
}
.card {
  border: none !important;
  border-radius: 0 !important;
  background-color: transparent !important;
}
.modal-dialog {
  max-width: 65% !important;
  margin: 0 auto !important;
  padding: 60px 10px 60px 10px !important;
  min-height: 100% !important;
}
.modal-content {
  border-radius: 0px !important;
  border: 0px;
  height: auto !important;
}
.modal-body {
  padding: 0px 60px 40px 60px !important;
  background-color: #ffffff;
}
.modal-header {
  border-bottom: 0px !important;
}
.modal-body input[type="text"], .modal-body textarea {
  border: solid #ccc 1px;
}
.modal-body .gform_wrapper .gform_footer {
  width: 40% !important;
  clear: none !important;
  text-align: center !important;
  padding: 16px 0 10px 0 !important;
  margin: 0 16px 0 0 !important;
}
.modal-header .close {
  padding: 0rem 1rem;
}
.close {
  font-size: 5rem !important;
}
.h1, h1 {
  font-size: 70px !important;
}
.h2, h2 {
  font-size: 60px !important;
}
.h3, h3 {
  font-size: 50px !important;
}
.h4, h4 {
  font-size: 40px !important;
}
.h5, h5 {
  font-size: 30px !important;
}
.h6, h6 {
  font-size: 26px !important;
}
p, ul {
  font-size: 20px;
}
.dropdown-menu {
  border: none !important;
  background-color: #5e86c1 !important;
  color: #ffffff !important;
  font-size: 14px !important;
  text-transform: uppercase;
  border-radius: 0px !important;
  padding: .5rem !important;
}
.dropdown-item {
  display: block;
  width: 100%;
  padding: .25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #ffffff !important;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  border-bottom: solid #fff 1px !important;
}
.dropdown-item:hover {
  color: #fff !important;
  text-decoration: none !important;
  background-color: #5e86c1 !important;
}
.html-content a, .btn, .gform_button.button {
  font-size: 16px !important;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1.5;
  position: relative;
  text-transform: uppercase;
  text-shadow: none !important;
  text-decoration: none;
  text-align: center !important;
  display: inline-block;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  max-width: 100%;
  white-space: initial;
  padding: 15px !important;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  -webkit-transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  -moz-transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.btn-iso {
  padding: 15px !important;
  border: solid #fff 1px !important;
  display: inline;
  background-color: #fff;
  color: #5e86c1;
  margin: 5px !important;
}
/* 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; */
}
a .fa {
  color: #fff;
  width: 40px;
  font-size: 40px;
}
/* end OVERRIDE BOOTSTRAP CSS */ :target::before {
  content: "";
  display: block;
  height: 133px; /* fixed header height*/
  margin: -133px 0 0; /* negative fixed header height mappa_alberese_vacanze */
}
#contactform:target, #mappa:target, #camere:target, #immagini:target, #offerte:target {
  position: relative;
  top: 0;
}
.contact-form {
  font-size: 16px;
  border: solid #fff 10px;
  width: 100%;
  margin: 0 !important;
}
.bgColor6CA0A2 {
  background-color: #5e86c1;
}
#masthead {
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#ffffff", GradientType=1);
  padding: .74rem 1rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999 !important;
  height: 133px;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
#masthead.sticky-top {
  background: #fff !important;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}
#masthead.sticky-top .navbar-nav .nav-link {
  color: #5e86c1 !important;
}
#menu-desk {
  height: 108px;
}
.list-menu-lang a {
  color: #fff;
  font-size: 14px;
}
#masthead.sticky-top .list-menu-lang a {
  color: #2F2739;
}
.pre-lang-menu {
  display: none;
}
.btn.dropdown-toggle.btn-menu {
  color: #fff;
  font-weight: bold;
  width: 50px;
  padding-left: 10px !important;
  padding-right: 10px !important;
  text-shadow: #333338 0px 0px 4px;
  border: none;
}
#masthead.sticky-top .btn.dropdown-toggle.btn-menu {
  color: #000;
}
#masthead.sticky-top .list-menu-lang a {
  color: #fff;
}
.dropdown-menu.dropdown-lang.show li {
  list-style-type: none;
  padding-bottom: 10px;
}
.dropdown-menu.dropdown-lang.show {
  background-color: #1b5583 !important;
  min-width: 70px;
  padding-left: 10px !important;
  padding-right: 10px !important;
  text-align: center;
}
.dropdown-menu.show {
  text-align: center;
}
.btn-primary {
  color: #fff !important;
  background-color: #1b5583 !important;
  border-color: #1b5583 !important;
}
.btn {
  border-radius: 0px !important;
  text-transform: uppercase;
}
.btn.btn-primary.btn-card {
  background-color: #5e86c1 !important;
  border-color: #5e86c1 !important;
  padding: 15px !important;
  margin: 3px;
}
.btn.btn-primary.btn-card:hover {
  color: #FFE9C8 !important;
}
.btn-outline-secondary {
  color: #5e86c1 !important;
  border-color: transparent !important;
  font-size: 80px !important;
  line-height: 40px !important;
}
.btn-outline-secondary:hover, .btn-outline-secondary:active {
  background-color: transparent !important;
}
.btn-center {
  text-align: center;
  margin: 30px auto 0px auto;
  text-shadow: none !important;
}
.btn.btn-primary.arrow-span span {
  font-size: 90px;
  color: #5e86c1;
}
.nav-link {
  padding: 1rem !important;
}
.navbar-nav .nav-link {
  text-transform: uppercase;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
}
.site-header.sticky-top .navbar-nav .nav-link {
  color: #616C32;
}
.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: 20px;
  padding: 5px;
}
.logo > div {
  height: 90px;
  width: 200px;
  background-repeat: no-repeat;
  background-size: cover;
}
.logo img {
  height: 115px;
}
.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;
}

.logo-footer {
  width: 280px;
  margin: 0px auto 60px auto;
  text-align: center;
}
.menu-mobile {
  display: none;
}
.entry-title {
  display: none !important;
}
h1, h2, h3, h4, h5, h6 {
  text-align: center;
  color: #5e86c1;
}
/* Classi generiche layout
--------------------------------------------- */
.box {
  padding-top: 100%;
}
.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-80vh {
  min-height: 80vh !important;
}
.h-90vh {
  min-height: 90vh !important;
}
.h-100vh {
  min-height: 100vh !important;
}
.bg-position {
  background-position: center;
}
.cover-bg {
	background-size: cover;
}
.hide-mobile {
  display: block;
}
.display-mobile {
  display: none;
}
.swiper-button-next, .swiper-button-prev {
  color: #ffffff !important;
}
/*player video*/
.plyr--full-ui.plyr--video .plyr__control--overlaid {
  display:none !important;
}
.plyr__controls {
	display: none !important;
}
/*
.sez1-layout2, .plyr {
	height: 100vh;
}
*/
.plyr__video-wrapper {
	margin-bottom: 0 !important;
}
.sezione1 {
  z-index: 99;
  position: relative;
  height: 100vh !important;
  overflow: hidden;
}
.sez-1-slide {
  height: 100vh;
  width: 100%;
}
.layout-card {
  background-color: #5e86c1;
  padding-top: 40px;
  padding-bottom: 40px;
}
.layout-card h1 {
  color: #ffffff;
}
.boxShadow {
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
}
.boxBorder {
  border:solid #5e86c1 1px;
}
.txtCard {
  background-color: #fff;
  min-height: 25vh;
}
.imgCard {
  height: 25vh;
}
.img-card {
  min-height: 250px;
  background-size: cover;
}
.layout-offerte h1 {
  color: #5e86c1;
}
.card-body {
  background-color: #fff;
  text-align: center;
}
.card-offerte {
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3)
}
.arrow-right:before {
  content: url(img/arrow-right.svg);
  width: 75px;
  display: inline-block;
}
.arrow-left:before {
  content: url(img/arrow-left.svg);
  width: 75px;
  display: inline-block;
}
.btn.btn-primary.arrow-span.mb-3 {
  padding: 10px !important;
}
.layout17 span {
  font-size: 400px;
  z-index: 99;
  position: absolute;
  color: #fff;
  text-shadow: #333338 0px 0px 4px;
  height: 40vh;
  width: 100%;
  text-align: center;
  padding-top: 46vh;
}
.layout17 h1, .layout17 h2, .layout5 h1, .masonry-gallery h1 {
  color: #fff;
  text-shadow: #333338 0px 0px 4px;
}
.row.layout2, .row.layout4 {
  margin: 0px;
}
.layout1 {
  min-height: 70vh !important;
  position: relative;
  width: 100%;
}
.layout2 {
  min-height: 80vh !important;
  position: relative;
  width: 100%;
}
.p-0 {
  padding: 0 !important;
}
.padding-5 {
  padding: 5px !important;
}
.layout4 {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}
.layout4 a, .layout5 a {
  color: #ffffff;
  font-weight: bold;
}
.layout3 {
  min-height: initial;
  position: relative;
  width: 100%;
}
.row.layout3 {
  margin-left: 0px;
  margin-right: 0px;
}
.layout1 p {
  color: #2F2739;
  margin: 50px 0;
}
.layout3 .bg-img-fixed-bottom {
  width: 80%;
}
.partner {
  margin-top: 1.5em !important;
}
.img-logo {
  max-width: 300px;
  margin: 30px auto 0px auto;
}
.layout5 {
  min-height: 80vh;
  display: inline-block;
  width: 100%;
  padding: 5px;
  overflow: hidden;
  margin-bottom: 5px;
}
.layout5 .col-1 {
  height: 80vh;
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  max-width: 50%;
  width: 53%;
  float: left;
}
.layout5 .col-2 {
  height: 40vh;
  -webkit-box-flex: 0;
  flex: 0 0 25%;
  max-width: 25%;
  width: 25%;
  float: left;
}
.custom-card {
  position: absolute !important;
  top: 0px;
  width: 100%;
}
.fr5 {
  padding-top: 5px !important;
  padding-right: 5px !important;
  padding-bottom: 5px !important;
  padding-left: 5px !important;
}
.layout7 {
  min-height: 40vh !important;
  position: relative;
  width: 100%;
  margin: 5px 0;
}
.layout8 {
  min-height: 70vh !important;
  position: relative;
  width: 100%;
}
.carousel-l8 {
  width: 100%;
  min-height: 60vh;
  padding: 40px;
}
.txt-card {
  min-height: 50%;
  margin-top: 50%;
  position: fixed;
  bottom: 0;
  background-color: rgba(255, 255, 255, .65);
  padding-top: 10px;
  padding-bottom: 10px;
  width: inherit;
  text-align: center;
}
.txt-content {
  min-height: 125px;
}
.txt-card .btn-primary {
  color: #fff !important;
  background-color: #5e86c1 !important;
  border-color: #5e86c1 !important;
}
.txt-card .btn {
  padding: 15px !important;
}
.layout9 {
  position: relative;
  width: 100%;
  text-align: center;
  min-height: 60vh;
  padding: 30px 60px;
}
.layout92 {
  position: relative;
  width: 100%;
  text-align: center;
  min-height: 60vh;
  padding: 30px 60px;
}
.layout5m {
  margin-top: 5px;
  margin-bottom: 5px;
  overflow: hidden;
}
.layout10 {
  min-height: 60vh !important;
  position: relative;
  width: 100%;
  padding-bottom: 10px;
}
.layout12 {
  min-height: 70vh !important;
  position: relative;
  width: 100%;
  padding-top: 5%;
  padding-bottom: 5%;
}
.layout18 {
  width: 100%;
  min-height: 100vh;
}
.layout18 h1 {
  color: #fff;
  padding-bottom: 20px;
}
/*txt overlay*/
.txt-overlay {
  text-shadow: #333338 0px 0px 4px;
  text-align: center;
  width: 100%;
  color: #fff !important;
}
.txt-overlay > * {
  color: #ffffff !important;
}

.txt-box {
  text-align: center;
  width: 100%;
  padding: 30px !important;
}
.txt-boxed {
  text-align: center;
  width: 100%;
  padding: 30px 150px !important;
}
.txt-box9 {
  padding: 30px;
}
.img-logo {
  max-width: 300px;
  margin: 30px auto;
}
.z-1 {
  z-index: 1;
}
.p-40 {
  padding-left: 60px;
  padding-right: 60px;
}
.empty-space {
  height: 70px;
  width: 100%;
}
.gallerybox {
  padding: 0px !important;
  min-height: 80vh;
}
/*
.ring {
    clip-path: circle(0% at center);
    -webkit-transition: all 1.6s cubic-bezier(0.39, 0.58, 0.57, 1);
    -moz-transition: all 1.6s cubic-bezier(0.39, 0.58, 0.57, 1);
    transition: all 1.6s cubic-bezier(0.39, 0.58, 0.57, 1);
}
.open {
    clip-path: circle(50% at center);
}
*/
.hideit {
  opacity: 0;
}
.showit {
  opacity: 1;
}
.img-cover {
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 1;
  overflow: hidden;
}
.img-cover img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: inline-block;
}
.color-sugar {
  background-color: #6E869E;
}
.color-sugar2 {
  background-color: #ACBEBE;
}
.color-grey {
  background-color: #5e86c1;
}
.box-form {
  height: 100%;
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
  padding-bottom: 60px;
  background-color: rgba(255, 255, 255, 0.3);
}
.content-accordion h2 {
  text-align: left;
  float: left;
}
.content-accordion .row {
  margin-bottom: 10px;
}
.testo-accordion {
  margin-top: 20px;
}
.gfield_description.gfield_consent_description, .gfield_description.gfield_consent_description a, .ginput_container.ginput_container_consent label, .gfield_label.gform-field-label.gfield_label_before_complex {
  color: #fff !important;
	border: 0px !important;
}
.gform-button {
	background-color: #1b5583 !important;
}
.gform_required_legend {
  display: none;
}
.gform_wrapper.gravity-theme .ginput_container_date input {
  width: 100% !important;
}
.gform_wrapper label.gfield_label {
  font-weight: normal !important;
  color: #ffffff;
  text-transform: uppercase;
}
.gform_wrapper.gravity-theme .field_description_below .gfield_consent_description, .gform_wrapper.gravity-theme .gfield_consent_description {
  overflow-y: visible;
  border: 0px solid #ddd !important;
  color: #ffffff;
}
.gform_submission_error {
  font-size: 20px !important;
}
.gform_wrapper.gravity-theme .ginput_container_date input {
  width: 100%;
}
.gform_heading {
  display: none;
}
.gfield_description a {
  color: #5e86c1 !important;
}
.gfield_label.gfield_label_before_complex {
  color: #fff;
}
label {
  margin-bottom: 0px !important;
}
input[type="text"] {
  border-radius: 0px !important;
}
.finesezione {
  padding: 0px !important;
  margin: 0px !important;
  border: none !important;
}
.gform_wrapper.gf_browser_gecko select {
  padding: 6px 12px 6px 2px !important;
}
.row.box-title.position-bg {
  height: 50vh;
}
.box-title .card.h-100.justify-content-center {
  width: 100%;
}
.box-container {
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
}
.bg-black {
  width: 100%;
  height: 100%;
  /*  background-color: rgba(135, 175, 188, 0.6);*/
  margin: 0;
  padding: 60px 40px !important;
}
.mappa-leaflet {
  padding-top: 10px;
  padding-bottom: 10px;
}
.badge-img {
  min-height: 10vh;
  font-size: 16px;
  margin: 2rem 0;
}
.badge-img > div {
  height: 5vh;
  background-size: contain;
  background-repeat: no-repeat;
}
.site-footer {
  font-size: 16px;
  color: #ffffff;
  background-color: #1b5583;
}
.site-footer h3 {
  font-size: 30px !important;
  color: #ffffff;
}
.site-footer a {
  color: #ffffff;
}
.site-footer a:hover {
  color: #ffffff;
}
#qlwapp.qlwapp-bottom-right {
  bottom: 9vh !important;
}
.contatti {
  text-align: center;
}
.site-info a {
  color: #fff;
}
.pl1 {
  padding: 60px !important;
}
/*MASONRY*/
.grid-item {
  /*border: solid #fff 5px;*/
  padding: 0px !important;
}
.grid-item-content {
  height: 40vh;
  overflow: hidden;
}
.grid-item-content--height2 {
  height: 80vh;
}
.gallery-wrapper {
  margin-top: 5px;
  margin-bottom: 5px;
}
/*PARALLAX*/
.bg-parallax {
  padding: 178px 0;
  color: #fff;
  background-color: #000;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 80vh;
}
.bg {
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 140%;
  top: 0;
  z-index: 1;
  opacity: 0.7;
}
.bg-gradient {
  background: rgb(198, 219, 107);
  background: -webkit-linear-gradient(rgba(198, 219, 107, 1) 0%, rgba(85, 98, 26, 1) 100%);
  background: -o-linear-gradient(rgba(198, 219, 107, 1) 0%, rgba(85, 98, 26, 1) 100%);
  background: linear-gradient(rgba(198, 219, 107, 1) 0%, rgba(85, 98, 26, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c6db6b", endColorstr="#55621a", GradientType=1);
}
.sabbia {
  position: relative;
  width: 100%;
  height: 70vh;
  background-position: top center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  z-index: -1;
}
#tab {
  background-color: #5e86c1;
  color: #fff;
  margin: 40px;
}
#tab .row {
  margin: 0px;
}
.nav-tabs {
  border-bottom: 0px solid transparent !important;
}
/*
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color: #fff !important;
  background-color: #5e86c1 !important;
  border-color: transparent !important;
}
.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
  border-color: transparent !important;
}
*/
.nav-tabs .nav-link {
  border: solid #5e86c1 1px !important;
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
}
.nav-link {
  border-radius: 0px;
  font-size: 40px;
  text-align: center;
  color: #5e86c1;
}
.color-bg-tab {
  background-color: #ffffff;
  padding: 0px !important;
}
#myTab a:hover {
  color: #5e86c1 !important;
}
.nav-tabs {
  border-bottom: 0px solid #dee2e6;
}
/*
.nav-item.custom-nav-item {
  border-top: solid #fff 1px;
}
*/
.nav-item.custom-nav-item:first-child {
  border-top: solid #fff 0px;
}
.tab-content {
  padding: 70px 40px;
}
/*Isotope*/
.filters-select li {
  display: inline-block;
  margin-top: 10px !important;
  background-color: #fff;
  color: #5e86c1;
}
.filters {
  text-align: center;
  width: 100%;
}
#immagini {
  background-color: #5e86c1;
  padding-bottom: 60px;
  padding-top: 40px;
}
#immagini h3 {
  color: #fff;
  padding: 40px 0;
}
#offerte {
  padding-bottom: 40px;
  padding-top: 40px;
}
/* FLICKITY*/
.carousel {
  background: transparent !important;
}
.carousel-cell {
  width: 100%;
  height: auto;
}
.carousel-cell img {
  width: 100% !important;
}
.text-slide-fli {
  height: 100%;
  position: absolute;
  width: 100%;
  text-shadow: #333338 0px 0px 4px;
  text-align: center;
  color: #fff;
  top: 40vh;
}
.text-slide-fli h1, .text-slide-fli h2, .text-slide-fli h3 {
  color: #fff !important;
}
/* cell number 
.carousel-cell:before {
  display: block;
  text-align: center;
  content: counter(gallery-cell);
  line-height: 200px;
  font-size: 80px;
  color: white;
}
/* OWL CAROUSEL*/
.owl-carousel .owl-item {
  min-height: 300px !important;
  overflow: hidden;
}
.owl-item {
  padding-left: 20px;
  padding-right: 20px;
}
.item {
  min-height: 50vh;
}
.owl-prevs {
  width: 75px;
  height: 75px;
  background-image: url("img/arrow-left.svg") !important;
  background-size: cover !important;
}
.owl-nexts {
  width: 75px;
  height: 75px;
  background-image: url("img/arrow-right.svg") !important;
  background-size: cover !important;
}
.owl-theme .owl-nav [class*="owl-"] {
  background-color: transparent !important;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
  background-color: transparent;
  color: #5e86c1 !important;
}
.owl-theme .owl-nav [class*="owl-"] {
  border-radius: 32px;
}
.img-item {
  height: 400px;
}
.details-room {
  height: 60px;
  margin: 20px 0px;
  padding: 0px 30px;
}
.half {
  width: 50%;
  float: left;
  height: 52px;
}
.half h4 {
  position: relative;
  top: -50px;
  margin-left: 60px;
  height: 50px;
  vertical-align: middle;
  padding: 11px 0px;
  text-align: left;
  font-size: 20px;
}
.mq-icon {
  background-image: url(img/019-room.svg);
  width: 50px;
  height: 50px;
  background-size: cover;
  float: left;
}
.guest-icon {
  content: url(img/ospiti.svg);
  width: 50px;
  height: 50px;
  background-size: cover;
}
.bath-icon {
  content: url(img/045-bathtub.svg);
  width: 50px;
  height: 50px;
  background-size: cover;
}
.bed-icon {
  content: url(img/006-bed-1.svg);
  width: 50px;
  height: 50px;
  background-size: cover;
}
@-webkit-keyframes zoomin {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
  }
}
.full-bg {
  background-repeat: no-repeat;
  overflow: hidden;
}
.full-bg, .flex-viewport, .bg-anim {
  width: 100%;
  height: 100% !important;
  margin: 0;
  padding: 0;
}
.full-bg img {
  background-size: cover;
}
.full-bg:hover {
  background-position-x: 0%;
  background-position-y: 0%;
  -webkit-animation: zoomin 10s linear;
  animation: zoomin 10s linear;
  animation-fill-mode: forwards;
}
.bg-anim:hover {
  background-position-x: 0%;
  background-position-y: 0%;
  -webkit-animation: zoomin 10s linear;
  animation: zoomin 10s linear;
  animation-fill-mode: forwards;
}
.abs {
  position: absolute !important;
  z-index: 1;
  top: 40%;
  width: 100%;
  text-align: center;
}
.txt-overlay4.txt-center {
  top: 40%;
  padding-left: 40px;
  padding-right: 40px;
}
.txt-overlay4 {
  text-shadow: #333338 0px 0px 4px;
  text-align: center;
  width: 100%;
  color: #fff;
  position: absolute;
}
.txt-overlay4 h1 {
  color: #ffffff !important;
  font-size: 60px;
  margin: 0 0 10px 0;
  font-weight: 200;
  text-transform: inherit;
}
.txt-overlay4 h4 {
  font-size: 20px;
}
.bg-black-opacity {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  margin: 0;
}
.row.mobile-fixed {
  display: none !important;
}
#recensioni {
  text-align: center;
  padding: 40px 40px 80px 40px;
}
.quota-tripadvisor, .quota-trivago, .quota-google {
  font-size: 3em;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  margin: 10px 0px;
}
.quota-tripadvisor {
  color: #00aa6c;
}
.quota-tripadvisor span {
  font-size: 2.5rem;
}
.quota-tripadvisor img {
  width: 180px;
}
.quota-trivago {
  color: #007fad;
}
.quota-trivago span {
  font-size: 2.5rem;
}
.quota-trivago img {
  width: 180px;
}
.quota-google {
  color: #4285f4;
}
.quota-google span {
  font-size: 2.5rem;
}
.quota-google img {
  width: 180px;
}
#video {
  padding: 60px 120px;
  text-align: center;
  width: 100%;
}
.bg-video {
  width: 100%;
}
.bottone-sicurezza {
  width: auto;
  padding: 15px 40px;
  background-color: #5e86c1;
  color: #fff;
  position: absolute;
  left: 0px;
  top: 300px;
  z-index: 100;
}
.bottone-sicurezza a:hover {
  color: #fff;
}
/*--------------------------------------------------------------
# Media Query
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Notebook
--------------------------------------------------------------*/
@media only screen and (max-width: 1280px) {
  html {
    font-size: 95%;
  }
}
@media screen and (max-width: 1199px) {
  .navbar-dark .dropdown-item {
    /*color: #fff;*/
  }
  .navbar-nav .dropdown-menu {
    /*background: transparent;
    box-shadow: none;
    border: none;*/
  }
  .menu-mobile {
    display: inline-block;
    text-align: right;
  }
  .pre-lang-menu {
    display: inline-block;
  }
  .post-lang-menu {
    display: none;
  }
  .navbar-nav.menu-desk {
    display: none;
  }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    background-color: #fff !important;
  }
  #masthead.sticky-top .hamburger-inner, #masthead.sticky-top .hamburger-inner::before, #masthead.sticky-top .hamburger-inner::after {
    background-color: #5e86c1 !important;
  }
}
/*--------------------------------------------------------------
## Netbook
--------------------------------------------------------------*/
@media only screen and (max-width: 1024px) {
  html {
    font-size: 90%;
  }
	.language {
  margin-right: 7rem;
}
  .hide-mobile {
    display: none;
  }
  .display-mobile {
    display: block;
  }
  .txt-boxed {
    padding: 3rem !important;
  }
  #masthead, #masthead.sticky-top {
    height: 125px;
  }
  .pl1 {
    padding: 19px !important;
  }
  .empty-space {
    height: 50px;
  }
	#quovai-civicouno {
		display: none;
	}
  .row.mobile-fixed {
    margin: 0px;
  }
  .row.mobile-fixed {
    display: inline !important;
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    text-align: center;
    z-index: 100;
    text-transform: uppercase;
  }
  .mobile-fixed a {
    line-height: 3.2rem;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
  }
  .mobile-fixed a:hover {
    color: #fff !important;
  }
  .h1, h1 {
    font-size: 50px !important;
  }
  .h2, h2 {
    font-size: 40px !important;
  }
  .h3, h3 {
    font-size: 30px !important;
  }
  p {
    font-size: 18px;
  }
  .turquoise {
    background-color: #5e86c1;
    height: 45px;
  }
  .yellow {
    background-color: #1b5583;
    height: 45px;
  }
  .green {
    background-color: #1b5583;
    height: 45px;
  }
  .fa.fa-phone, .fa.fa-pencil-square-o {
    font-size: 18px;
  }
  .col-md-6.turquoise {
    float: left;
  }
  label.gfield_label {
    font-size: 12px !important;
  }
  .txt-box {
    padding: 30px 30px !important;
  }
  .nav-link {
    font-size: 30px;
  }
  .btn.btn-primary {
    margin: 20px auto;
  }
  .site-footer {
    border: solid #fff 10px;
  }
  .layout1 {
    min-height: 60vh !important;
  }
  #field_1_31 {
    color: #ffffff;
    top: -140px;
    position: relative;
    left: 100px;
  }
  .form-container .gform_wrapper .gform_footer {
    top: -104px;
  }
  .card-img-top-350 {
    height: 200px;
  }
  .min-h-txt h4 {
    min-height: 80px;
  }
  .sezione1 {
    height: 89vh !important;
  }
  .sez-1-slide {
    height: 89vh;
  }
}
/*--------------------------------------------------------------
## iPad
--------------------------------------------------------------*/
@media only screen and (max-width: 960px) {
  html {
    font-size: 85%;
  }
  .site-footer {
    border: solid #fff 10px;
  }
  #masthead, #masthead.sticky-top {
    height: 125px;
  }
  #field_1_31 {
    float: none !important;
    width: 100% !important;
    position: relative;
    top: auto;
  }
  .sezione1 .txt-overlay h1 {
    font-size: 60px;
  }
  .sezione1 .txt-overlay h2 {
    font-size: 40px;
  }
  .sezione1 .txt-overlay h3 {
    font-size: 30px;
  }
  .sezione1 .txt-overlay p {
    font-size: 20px;
  }
  .nav-item.custom-nav-item {
    border-top: solid #fff 0px;
	  margin: .2rem;
  }
}
/*--------------------------------------------------------------
## iPad
--------------------------------------------------------------*/
@media only screen and (max-width: 768px) {
  html {
    font-size: 80%;
  }
  .logo-footer {
    width: 180px;
  }
  #menu-desk {
    height: 87px;
  }
  #masthead, #masthead.sticky-top {
    height: 125px;
  }
  .pre-lang-menu {
    text-align: right;
    float: right;
    display: inline-block;
    right: -37%;
  }
  .sezione1 .txt-overlay h1 {
    font-size: 40px;
  }
  .sezione1 .txt-overlay h2 {
    font-size: 35px;
  }
  .sezione1 .txt-overlay h3 {
    font-size: 30px;
  }
  .sezione1 .txt-overlay p {
    font-size: 20px;
  }
  .sezione1 {
    height: 50vh !important;
  }
  .sez-1-slide {
    height: 50vh;
  }
  .owl-carousel .owl-stage {
    height: 340px;
  }
  .owl-item .txt-overlay {
    top: 25%;
  }
  .owl-nav {
    top: -49px;
  }
  .txt-overlay h3 {
    font-size: 30px;
  }
  .txt-cf {
    padding: 10px;
  }
  .txt-overlay {
    padding: 0px
  }
  .contact-form {
    height: 100%;
    margin-top: 0px;
  }
  .bg-black {
    padding: 30px 40px 20px 50px !important;
  }
  .txt-cf .txt-overlay.txt-left.align-self-center {
    position: relative;
  }
  .gform_wrapper .gform_footer {
    width: 100% !important;
  }
  .site-footer {
    text-align: center;
    border: solid #fff 8px;
  }
  .gform_wrapper .top_label li.gfield.gf_left_half {
    width: 100%;
  }
  .newsletter-col {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
  }
  .newsletter-col .gform_wrapper ul.gform_fields li.gfield {
    padding-right: 0px;
  }
  .form-container .gform_wrapper .gform_footer {
    top: 18px;
  }
  #field_1_31 {
    float: none !important;
    width: 100% !important;
    position: relative;
    top: auto;
  }
  .gform_wrapper.gf_browser_gecko select {
    padding: 8px !important;
  }
  .grid-item-content {
    height: 20vh;
  }
  .text-slide-fli {
    top: 20vh;
  }
}
/*--------------------------------------------------------------
## iPad
--------------------------------------------------------------*/
@media only screen and (max-width: 480px) {
  html {
    font-size: 75%;
  }
    /*player video*/
    	.plyr--video {
		height: 350px;
	}
	.plyr__video-wrapper {
		width: 650px !important;
		margin:0 !important;
		padding-bottom:100% !important;
	}
	.modal-dialog {
  max-width: auto !important;
}
	 .language {
  margin-right: 5rem;
}
  #masthead .container-fluid {
    padding-left: 0px;
    padding-right: 0px;
  }
  #masthead, #masthead.sticky-top {
    height: 80px;
  }
  #qlwapp .qlwapp-toggle {
    margin-bottom: 105px !important;
  }
  .button_container {
    top: 3%;
    right: 5%;
  }
  .logo {
    top: 4px;
  }
  .logo img {
    height: 95px;
  }
  .logo > div {
    height: 56px;
    width: 122px;
  }
  .sezione1, .sez-1-slide {
    height: 50vh !important;
  }
  .h1, h1 {
    font-size: 30px !important;
  }
  .h2, h2 {
    font-size: 25px !important;
  }
  .h3, h3 {
    font-size: 20px !important;
  }
  p, ul {
    font-size: 16px;
	  line-height: 20px;
	  margin-bottom: .8rem !important;
  }
	 .hide-mobile {
    display: none !important;
  }
  .col-md-6.col-xs-6.align-self-center.pa-mob, .row.layout9 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .nav-link {
    font-size: 14px;
  }
  #tab {
    margin: 10px;
  }
  .tab-content {
    padding: 10px;
  }
  .foto-tab {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .txt-box {
    padding: 15px 15px !important;
  }
  .txt-box9 {
    padding: 10px !important;
  }
  .txt-box9 h1 {
    font-size: 35px !important;
  }
  .txt-box9 h2 {
    font-size: 30px !important;
  }
  .txt-overlay {
    padding: 0px 10px;
  }
  .txt-overlay.top-35 {
    top: 10%;
  }
  .txt-overlay h1 {
    font-size: 45px;
    margin: 0 0 10px 0;
    font-weight: 200;
  }
  .txt-overlay h2 {
    font-size: 30px;
    margin: 0 0 10px 0;
    font-weight: 200;
    letter-spacing: 0.1em;
    padding-right: 0px;
    padding-left: 0px;
  }
  .txt-box.bg-w h1 {
    font-size: 30px;
  }
  .txt-box.bg-w h2 {
    font-size: 30px;
  }
  .col-md-4.txt-cf {
    padding: 0px;
    text-align: center !important;
  }
  .txt-overlay.txt-left {
    text-align: center;
    padding: 0px;
    top: 0;
  }
  .contact-form {
    margin-top: 0px;
  }
  .bg-black {
    padding: 40px 20px !important;
  }
  .gform_wrapper .gform_footer {
    width: 100% !important;
    float: none !important;
    padding: 0px !important;
    margin: 20px auto 0 auto !important;
  }
  .gallerybox {
    padding: 0px !important;
    min-height: 400px !important;
  }
  body .gform_wrapper ul li.gfield {
    width: 100%;
  }
  .btn, #gform_submit_button_1 {
    font-size: 1.1rem;
  }
  .site-footer {
    border: solid #fff 8px;
    padding-bottom: 3rem;
  }
  #field_1_31 {
    float: none !important;
    width: 100% !important;
    position: relative !important;
    top: 26px;
    left: 0px
  }
  #field_1_55 {
    top: 2px;
  }
  .contact-form {
    border: solid #fff 0px;
  }
  .text-slide-fli {
    top: 50%;
  }
  .carousel-cel img {
    height: 100%;
  }
  .modal-body {
    padding: 0px 20px 20px 20px !important;
    background-color: #ffffff;
  }
  .grid-item-content {
    height: 50vh;
  }
  #video {
    padding: 10px;
  }
  .bottone-sicurezza {
    width: auto;
    padding: 15px 40px;
    background-color: #5e86c1;
    color: #fff;
    position: absolute;
    left: 0px;
    top: 300px;
    z-index: 100;
  }
  /* carousel height */
  .carousel.fli-carousel {
    height: 333px;
  }
  /* cell inherit height from carousel */
  .carousel-cell {
    height: 100%;
  }
  .carousel-cell img {
    width: auto !important;
    height: 333px;
    max-width: none;
  }
  .bg-parallax {
    height: 60vh;
  }
}