﻿body {
  font-family: 'Oxygen', sans-serif; }

p {
  font-size: 16px;
  line-height: 30px;
  color: #1c1b51; }

a:focus {
  text-decoration: none; }

.scrolltop {
  position: fixed;
  bottom: 0;
  right: 30px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2000;
  cursor: pointer; }
  .scrolltop i {
    color: #fff;
    opacity: 0.5;
    font-size: 21px; }

header {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  background-color: #1a9a92; }
  header .contmainmenu {
    /*background-image: url(Images/sfondo-menu.png);*/
    background-position: center;
    background-repeat: no-repeat; }
    header .contmainmenu .container {
      width: 100%;
      max-width: 1920px; }
      header .contmainmenu .container .logo {
        float: left;
        background-image: url(Images/logo.png);
        background-position: center;
        background-repeat: no-repeat;
        height: 90px;
        width: 229px;
        display: block; }
      header .contmainmenu .container .mainmenu {
        display: block;
        margin: 0;
        padding: 0;
        float: right; }
        header .contmainmenu .container .mainmenu li {
          display: inline-block;
          float: left;
          position: relative; }
          header .contmainmenu .container .mainmenu li a {
            font-size: 23px;
            color: #fff;
            font-weight: 300;
            height: 90px;
            line-height: 90px;
            padding: 0 12px;
            position: relative;
            display: block;
            font-family: "Patrick Hand", cursive;
            background-color: transparent;
            -webkit-transition: 0.1s;
            -moz-transition: 0.1s;
            -ms-transition: 0.1s;
            -o-transition: 0.1s;
            transition: 0.1s; }
            header .contmainmenu .container .mainmenu li a:hover {
              text-decoration: none;
              background-color: #0d7e77;
              -webkit-transition: 0.1s;
              -moz-transition: 0.1s;
              -ms-transition: 0.1s;
              -o-transition: 0.1s;
              transition: 0.1s; }
            header .contmainmenu .container .mainmenu li a.active {
              color: #ffdb5e;
              background-color: #0d7e77; }
          header .contmainmenu .container .mainmenu li.open a {
            color: #ffdb5e;
            background-color: #7638ce; }
          header .contmainmenu .container .mainmenu li.open .dropdown-menu {
            border-radius: 0;
            margin: 0;
            padding: 0;
            border: none; }
            header .contmainmenu .container .mainmenu li.open .dropdown-menu li {
              display: block;
              width: 100%; }
              header .contmainmenu .container .mainmenu li.open .dropdown-menu li a {
                line-height: 50px;
                height: 50px;
                font-size: 23px;
                display: block;
                color: #fff;
                background-color: #1a9a92; }

footer .contact-row {
  /*background-image: url(Images/deco-footer.gif);*/
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
  color: #7638ce;
  font-weight: 300;
  font-size: 13px; }
  footer .contact-row h4 {
    margin: 0;
    font-size: 14px;
    height: 20px;
    border-bottom: 1px solid #fff;
    margin-bottom: 4px; }
  footer .contact-row .logo-footer {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: #fff;
    margin: -30px auto 0 auto;
    display: block;
    background-image: url(Images/logo-footer.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; }
  footer .contact-row .contatti {
    padding-top: 50px;
    text-align: right; }
    footer .contact-row .contatti a {
      color: #7638ce;
      font-weight: bold; }
  footer .contact-row .social {
    margin: 0 auto;
    padding: 50px 0 0 0;
    list-style: none;
    display: block; }
    footer .contact-row .social li {
      display: inline-block; }
      footer .contact-row .social li a {
        background-color: #7638ce;
        border-radius: 50%;
        height: 40px;
        width: 40px;
        display: block;
        line-height: 40px;
        text-align: center;
        margin-left: 6px; }
        footer .contact-row .social li a i {
          color: #fff;
          font-size: 24px;
          line-height: 40px; }

footer .dati-footer {
  background-color: #ffdb5e;
  padding: 12px 0; }
  footer .dati-footer p {
    text-align: center;
    color: #7638ce;
    font-weight: 300;
    font-size: 15px;
    margin: 0; }
    footer .dati-footer p a {
      color: #7638ce;
      font-weight: bold; }

.lazy {
  background-color: #f6f6f6;
  position: relative; }
  .lazy.loaded .loader {
    display: none; }
  .lazy .loader {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0%;
    top: 0%;
    background-size: 70px 70px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(Images/load-g.svg);
    -webkit-animation-name: spinner;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 2s;
    animation-name: spinner;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 2s;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    opacity: 0.5; }

/* WebKit and Opera browsers */
@-webkit-keyframes spinner {
  from {
    -webkit-transform: rotateY(0deg); }
  to {
    -webkit-transform: rotateY(-360deg); } }

/* all other browsers */
@keyframes spinner {
  from {
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg); }
  to {
    -moz-transform: rotateY(-360deg);
    -ms-transform: rotateY(-360deg);
    transform: rotateY(-360deg); } }

.introbannerhome {
  height: calc(100vh - 100px);
  display: table;
  min-height: 700px;
  width: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  background-size: cover; }
  .introbannerhome .cont-banner-home {
    background-image: url(Images/nuvole.svg);
    background-position: center top;
    background-size: cover;
    position: absolute;
    bottom: 0;
    min-height: 40vh;
    width: 100%;
    padding: 140px 0 100px 0;
    overflow: hidden; }
    .introbannerhome .cont-banner-home .foto-pongo {
      background-position: center;
      background-size: cover;
      height: 0;
      padding-top: 100%;
      border-radius: 50%; }
    .introbannerhome .cont-banner-home h2 {
      font-family: "Patrick Hand", cursive;
      color: #7638ce;
      font-size: 47px;
      margin-bottom: 20px;
      background-image: url(Images/line-01.svg);
      background-position: center bottom;
      background-size: contain;
      background-repeat: no-repeat;
      padding-bottom: 12px; }
      .introbannerhome .cont-banner-home h2 .decotitle {
        float: right;
        height: 50px;
        width: 50px;
        background-image: url(Images/decotitle-01.svg);
        background-position: center bottom;
        background-repeat: no-repeat; }
    .introbannerhome .cont-banner-home p {
      font-size: 16px;
      color: #1c1b51; }

.videoabsolute {
  position: absolute;
  width: 100%;
  z-index: 0;
  margin-top: -50px; }
  .videoabsolute .videoWrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    display: block; }
    .videoabsolute .videoWrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }

.viola-intopage {
  padding: 40px;
  width: 100%;
  background-color: #7638ce; }
  .viola-intopage h3 {
    color: #ffdb5e;
    font-size: 36px;
    font-family: "Patrick Hand", cursive;
    text-align: center;
    margin: 0; }

.double-block .img-double-block {
  min-height: 600px;
  background-size: cover;
  background-position: center; }

.double-block .txt-double-block {
  display: table;
  min-height: 600px; }
  .double-block .txt-double-block .cont-txt-double-block {
    display: table-cell;
    vertical-align: middle;
    padding: 0 8%;
    text-align: center; }
    .double-block .txt-double-block .cont-txt-double-block h2 {
      position: relative;
      font-weight: 300;
      font-family: "Patrick Hand", cursive;
      font-size: 50px;
      color: #7638ce; }
    .double-block .txt-double-block .cont-txt-double-block p {
      font-size: 16px;
      color: #1c1b51;
      padding: 0; }
    .double-block .txt-double-block .cont-txt-double-block a {
      color: #7638ce;
      text-decoration: underline; }

.btn-pongo {
  font-family: "Patrick Hand", cursive;
  color: #ffdb5e !important;
  background-color: #1a9a92;
  display: block;
  font-size: 26px;
  padding: 0 20px;
  border: none;
  line-height: 44px;
  text-decoration: none !important;
  -webkit-transition: 0.1s;
  -moz-transition: 0.1s;
  -ms-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s; }
  .btn-pongo.center {
    display: inline-block;
    margin: 0 auto; }
  .btn-pongo:hover {
    color: #ffdb5e;
    text-decoration: none;
    background-color: #0d7e77;
    -webkit-transition: 0.1s;
    -moz-transition: 0.1s;
    -ms-transition: 0.1s;
    -o-transition: 0.1s;
    transition: 0.1s; }

.slidehome {
  background-image: url(Images/verdestelle.png);
  padding: 130px 0 70px 0;
  background-repeat: no-repeat;
  background-position: center top;
  z-index: 999;
  position: relative; }
  .slidehome .slickhome h3 {
    font-weight: 300;
    font-family: "Patrick Hand", cursive;
    font-size: 46px;
    color: #ffdb5e;
    margin-top: 50px; }
  .slidehome .slickhome p {
    font-size: 17px;
    color: #fff; }
  .slidehome .slickhome .foto-slide {
    background-size: cover;
    background-position: center;
    height: 0;
    padding-top: 100%;
    display: block;
    border-radius: 50%; }
  .slidehome .slickhome .slick-dots li button::before {
    font-size: 21px;
    color: #fff; }
  .slidehome .slickhome .slick-dots li.slick-active button::before {
    color: #ffdb5e;
    opacity: 1; }

.contact-widget {
  padding: 130px 0;
  background-image: url(Images/bkg-contatti.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  text-align: center;
  overflow: hidden;
  background-size: cover; }
  .contact-widget h2 {
    font-size: 60px;
    color: #7638ce;
    font-family: "Patrick Hand", cursive;
    margin: 0 0 20px 0; }

@media screen and (min-width: 1921px) {
  html {
    background-color: #7638ce; }
  body {
    width: 1920px;
    margin: 0 auto; }
  /*body.fixed { width: 1920px; }*/
  header {
    width: 1920px; } }

/* Error Page */
.error404ops {
  width: 100%;
  font-size: 40px;
  height: 90px;
  margin-top: 250px; }

.error404 {
  font-size: 200px;
  width: 100%;
  height: 280px;
  margin-top: -80px;
  color: #1a9a92; }

.error404pagenotfound {
  font-size: 40px;
  margin-bottom: 200px; }

.modal-body {
  height: 500px; }

.cont-generic-page {
  text-align: center; }

.elenco-servizi {
  background-image: url(Images/texture_torri.svg);
  background-size: 100%;
  padding-bottom: 200px;
  padding-top: 50px; }
  .elenco-servizi .container {
    background-color: #fff;
    padding: 50px; }
    .elenco-servizi .container .item-servizio {
      text-align: center;
      margin-bottom: 50px; }
      .elenco-servizi .container .item-servizio .photo-servizio {
        height: 0;
        padding-bottom: 100%;
        background-size: cover;
        background-position: center; }
      .elenco-servizi .container .item-servizio h3 {
        color: #7638ce;
        font-family: "Patrick Hand", cursive;
        font-size: 32px; }
      .elenco-servizi .container .item-servizio p {
        margin: 20px 0; }

.gallery {
  background-image: url(Images/texture_palloncini.svg);
  background-size: 100%;
  padding-bottom: 200px;
  padding-top: 50px; }
  .gallery .container {
    background-color: #fff;
    padding: 50px; }
    .gallery .container .photo-gallery {
      height: 0;
      padding-bottom: 100%;
      background-size: cover;
      background-position: center;
      display: block !important;
      margin-bottom: 30px; }

/* FIX BLUEIMP*/
.blueimp-gallery {
  background: rgba(255, 255, 255, 0.9) none repeat scroll 0 0; }

.blueimp-gallery > .prev:hover, .blueimp-gallery > .next:hover, .blueimp-gallery > .close:hover, .blueimp-gallery > .title:hover, .blueimp-gallery > .play-pause:hover,
.blueimp-gallery > .close, .blueimp-gallery > .title {
  color: #7638ce;
  text-shadow: none; }

.blueimp-gallery > .prev, .blueimp-gallery > .next {
  color: #7638ce;
  background: none;
  text-shadow: #fff;
  text-shadow: 0 0 0;
  border: none;
  font-size: 48px; }

.blueimp-gallery > .close {
  font-size: 32px;
  color: #7638ce; }

.blueimp-gallery > .prev::before, .blueimp-gallery > .next::before {
  color: #7638ce; }

.blueimp-gallery > .title {
  text-align: center;
  width: 100%; }

.contatti-page {
  background-image: url(Images/texture_palloncini.svg);
  background-size: 100%;
  padding: 200px 0; }
  .contatti-page .container {
    background-color: #fff;
    padding: 50px 30px; }
    .contatti-page .container input {
      width: 100%;
      padding: 12px;
      margin-bottom: 12px;
      font-size: 21px;
      font-weight: 300; }
    .contatti-page .container select {
      width: 100%;
      padding: 12px;
      margin-bottom: 12px;
      font-size: 21px;
      font-weight: 300;
      border-radius: 0;
      border: 1px solid #ccc; }
    .contatti-page .container textarea {
      width: 100%;
      padding: 12px;
      margin-bottom: 12px;
      font-size: 21px;
      font-weight: 300;
      border-radius: 0;
      border: 1px solid #ccc;
      resize: none; }
    .contatti-page .container button {
      border: none; }
    .contatti-page .container a {
      color: #7638ce; }
      .contatti-page .container a:hover {
        text-decoration: none; }
    .contatti-page .container h2 {
      font-family: "Patrick Hand", cursive;
      color: #7638ce;
      font-size: 36px; }
    .contatti-page .container h4 {
      font-weight: bold; }

.field-validation-error {
  color: #7638ce;
  font-size: 12px;
  display: block;
  margin-bottom: 10px; }

/*==========  Non-Mobile First Method  ==========*/
.menu-responsive {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: scroll;
  right: 100%;
  background-color: #1a9a92;
  color: #fff;
  z-index: 10000;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  top: 0; }

.menu-responsive .logo {
  float: left;
  background-image: url(Images/logo.png);
  background-position: center;
  background-repeat: no-repeat;
  height: 50px;
  width: 229px;
  display: block;
  background-size: contain; }

.menu-responsive .header-menu {
  height: 50px;
  background-color: #1a9a92;
  border-bottom: 1px solid #ffdb5e; }

.menu-responsive .logo-menu {
  margin: 22px 0 0 15px; }

.menu-responsive .close-menu {
  font-size: 24px;
  float: right;
  color: #fff;
  cursor: pointer;
  background-color: #7638ce;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center; }

.menu-responsive.block {
  right: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

.menu-responsive .mainmenu-mobile {
  list-style: none;
  padding: 0;
  margin: 0; }

.menu-responsive .mainmenu-mobile li {
  clear: both;
  font-family: "Patrick Hand", cursive;
  border-bottom: 1px solid #ffdb5e; }

.menu-responsive .mainmenu-mobile li.open {
  background-color: #0d7e77;
  overflow: hidden; }

.menu-responsive .mainmenu-mobile li a {
  font-size: 21px;
  padding: 12px;
  display: block;
  color: #fff;
  text-transform: uppercase;
  font-weight: 300; }

.menu-responsive .mainmenu-mobile li a i {
  float: right;
  font-size: 21px;
  padding: 4px; }

.menu-responsive .mainmenu-mobile li a.collapsed i {
  float: right;
  font-size: 21px;
  padding: 4px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg); }

.menu-responsive .mainmenu-mobile li a i {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg); }

.menu-responsive .mainmenu-mobile li a:hover {
  text-decoration: none; }

.menu-responsive .mainmenu-mobile li .primo-livello {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background-color: #0d7e77; }

.menu-responsive .mainmenu-mobile li .primo-livello li {
  border-bottom: none; }

.menu-responsive .mainmenu-mobile li .primo-livello li a {
  padding-left: 20px;
  background-color: #0d7e77; }

.menu-responsive .mainmenu-mobile li .secondo-livello li a {
  padding-left: 40px; }

.open-menu {
  font-size: 24px;
  float: right;
  color: #fff;
  cursor: pointer;
  background-color: #7638ce;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center; }

.whatspp-widget {
  display: none; }

@media only screen and (max-width: 1440px) {
  .introbannerhome {
    height: 100vh;
    min-height: unset; }
  .introbannerhome .cont-banner-home {
    padding: 70px 0 0 0; } }

/* Large Devices, Wide Screens */
@media only screen and (max-width: 1200px) {
  header .contmainmenu .container {
    padding: 0; }
  header .contmainmenu .container .logo {
    height: 50px;
    background-size: contain; }
  header .contmainmenu .container .mainmenu li a {
    font-size: 18px;
    height: 50px;
    line-height: 50px; }
  .introbannerhome {
    height: 600px;
    min-height: unset;
    background-size: contain; } }

@media only screen and (max-width: 1024px) {
  .videoabsolute {
    display: none; }
  .introhome {
    height: 800px; } }

/* Medium Devices, Desktops */
@media only screen and (max-width: 992px) {
  header .contmainmenu .container .mainmenu {
    display: none; }
  .slick-dots {
    position: relative; } }

/* Small Devices, Tablets */
@media only screen and (max-width: 768px) {
  .introbannerhome {
    height: 400px;
    min-height: unset;
    background-size: contain; }
  .introhome {
    height: 1000px;
    background-size: cover; }
  .double-block {
    padding: 30px 0; }
  .double-block .img-double-block {
    padding: 10%; }
  .double-block .txt-double-block {
    height: auto !important;
    padding: 50px 0;
    min-height: auto; }
  .slidehome {
    margin-top: 0;
    background-image: none;
    background-color: #1a9a92; }
  footer {
    text-align: center; }
  footer .contact-row .contatti {
    text-align: center; }
  footer .contact-row .logo-footer {
    display: none; }
  footer .contact-row .social {
    padding: 20px 0; }
  .whatspp-widget {
    display: block;
    bottom: 20px;
    left: 20px;
    width: 48px;
    height: 48px;
    border: 0 none;
    border-radius: 50%;
    text-align: center;
    z-index: 999997;
    position: fixed;
    cursor: pointer;
    -webkit-box-shadow: 0 4px 5px -1px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 4px 5px -1px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 5px -1px rgba(0, 0, 0, 0.5);
    background-color: #7638ce; }
    .whatspp-widget i {
      color: #fff;
      font-size: 30px;
      line-height: 48px; } }

@media only screen and (min-device-width: 600px) and (max-device-width: 768px) {
  .introbannerhome {
    height: 550px;
    min-height: unset;
    background-size: contain; }
  .introhome {
    height: 1200px; } }

/* Extra Small Devices, Phones */
@media only screen and (max-width: 480px) {
  .contact-widget h2 {
    font-size: 48px; }
  .slidehome {
    padding-top: 30px;
    text-align: center; }
  footer {
    text-align: center; }
  footer .contact-row .contatti {
    text-align: center; }
  footer .contact-row .logo-footer {
    display: none; }
  footer .contact-row .social {
    padding: 20px 0; } }

/* Custom, iPhone Retina */
