@charset "utf-8";
/* CSS Document */
html,body {
  font: 1em 'Open Sans', sans-serif;
  height: 100%;
  width:100%;
  background: url('../images/home2.jpg') center center no-repeat;
  background-size:cover;
  background-attachment: fixed;
  z-index:0;
}


@font-face {
    font-family: 'poiret_oneregular';
    src: url('../font/poiretone-regular-webfont.eot');
    src: url('../font/poiretone-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../font/poiretone-regular-webfont.woff') format('woff'),
         url('../font/poiretone-regular-webfont.ttf') format('truetype'),
         url('../font/poiretone-regular-webfont.svg#poiret_oneregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'haettenschweilerregular';
    src: url('../font/HATTEN-webfont.eot');
    src: url('../font/HATTEN-webfont.eot?#iefix') format('embedded-opentype'),
         url('../font/HATTEN-webfont.woff2') format('woff2'),
         url('../font/HATTEN-webfont.woff') format('woff'),
         url('../font/HATTEN-webfont.ttf') format('truetype'),
         url('../font/HATTEN-webfont.svg#haettenschweilerregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
  font-family:'Century-Regular';
  src: url('../font/CenturyGothic_latin+latin-ext_gdi.eot');
    src: url('../font/CenturyGothic_latin+latin-ext_gdi.eot?#iefix') format('embedded-opentype'),
         url('../font/CenturyGothic_latin+latin-ext_gdi.woff') format('woff'),
         url('../font/CenturyGothic_latin+latin-ext_gdi.ttf') format('truetype'),
         url('../font/CenturyGothic_latin+latin-ext_gdi.svg') format('svg');
    font-style: normal;
}

h1 { 
  font-size:3.6em;
  font-weight: 600;
}

h1, h2, h3 {
  margin: 0;
  padding: 1.2em;
  line-height: 1.1em;
}

h2 { 
  font-size: 4em;
  font-weight: 400;
}

h3 {
  font-size:2.6em;
}

h4 {
  font-size:2em;
  font-weight: 400;
}

h5 {
  font-size:2.2em;
}

p {
  font-size:1.7em;
}

a  {
  font-size:1.8em;
}

.fullpage {
  height:100%;
}

.table {
  display: table;
  width: 100%;
  height: 100%;
  z-index: 999;

}
.cell {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  z-index:998;
}

.table img{
  margin-top:0px;
  z-index:50;
}

span {
  font-size:1.3em;
}

#cookieChoiceInfo span {
  font-style:normal;
  font-weight:400;
  font-size: 1.1em;
}

#cookieChoiceInfo a {
  text-decoration:none;
  color:#99acff;
  padding:2px 5px;
  border-bottom:1px solid #9196d4;
  font-size:1.1em;
}

.policy {
  display: inline-block;
  font-size: 1.2em!important;
  color:#f0f0f0;
  margin: 0;
  padding:0 1%;
  border-bottom: 1px solid #fff;
  text-decoration: none;
}


.hospit {
    position: fixed;
    top: 360px;
    right: 0;
    z-index: 5;
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
}

.hospit img {

}


.animated.hinge {
  -webkit-animation-duration: 1.7s;
  -moz-animation-duration: 1.7s;
  -ms-animation-duration: 1.7s;
  -o-animation-duration: 1.7s;
  animation-duration: 1.7s;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-200px);
    transform: translateX(-200px);}
  100% {
    opacity: 1;
     -webkit-transform: translateX(0px);
    transform: translateX(0px);}
}

@-moz-keXframes bounceIn {
  0% {
    opacity: 0;
    -moz-transform: translateX(-200px);
    transform: translateX(-200px);}
  100% {
    opacity: 1;
     -moz-transform: translateX(0px);
    transform: translateX(0px);}
}
@-ms-keXframes bounceIn {
  0% {
    opacity: 0;
    -ms-transform: translateX(-200px);
    transform: translateX(-200px);}
  100% {
    opacity: 1;
    -ms-transform: translateX(0px);
    transform: translateX(0px);}
}

@-o-keXframes bounceIn {
  0% {
    opacity: 0;
    -o-transform: translateX(-200px);
    transform: translateX(-200px);}
  100% {
    opacity: 1;
    -o-transform: translateX(0px);
    transform: translateY(0px);}
}


.bounceIn {
  -webkit-animation-name: bounceIn;
  -moz-animation-name: bounceIn;
  -ms-animation-name: bounceIn;
  -o-animation-name: bounceIn;
  animation-name: bounceIn;
}

.animated { 
    -webkit-animation-duration: 2.5s; 
    animation-duration: 2.5s; 
    -webkit-animation-fill-mode: both; 
    animation-fill-mode: both; 
} 

@-webkit-keyframes bounceInLeft { 
    0% { 
        opacity: 0; 
        -webkit-transform: translateX(2000px); 
    } 
    60% { 
        opacity: 1; 
        -webkit-transform: translateX(-30px); 
    } 
    80% { 
        -webkit-transform: translateX(10px); 
    } 
    100% { 
        -webkit-transform: translateX(0); 
    } 
} 

@keyframes bounceInLeft { 
    0% { 
        opacity: 0; 
        transform: translateX(2000px); 
    } 
    60% { 
        opacity: 1; 
        transform: translateX(-30px); 
    } 
    80% { 
        transform: translateX(10px); 
    } 
    100% { 
        transform: translateX(0); 
    } 
} 

.bounceInLeft { 
    -webkit-animation-name: bounceInLeft; 
    animation-name: bounceInLeft; 
}

/*--------Menu--------*/

.speci .no-pad {
  margin:0!important;
}

.h-soc {
  position:absolute;
  right:10px;
  top:10px;
}
.h-soc img {
  display:inline-block;
  padding:5px;
  opacity: 0.8;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.h-soc img:hover, .h-soc img:focus, .h-soc img:active {opacity: 1;}

#header {
  height:190px;
  padding-top:10px;
  z-index: 11;
  background:#fff;
}

#header a {
  display:block;
  background: url('../images/logo.png') no-repeat;
  text-indent: -9999px;
  text-align:center;
  width: 420px;
  height:180px;
  text-indent: -9999px;
  margin:0 auto;
}


.logo {
  vertical-align:middle;
  padding:20px;
}
/*--------Menu--------*/

#menu {
  background: #4877af;
  width:100%;
  z-index:10;
}

#menu nav {
  padding-top: 0;
  text-align:center;
}

#menu.show {
  display: inline;
}

#menu nav ul {
  margin: 0;
  padding: 12px;
  list-style: none;
}

nav ul li {
  display:inline;
}

#menu nav a {
  font-family:'Century-Regular';
  padding: 12px 30px;
  display: inline;
  text-decoration: none;
  color: #fff;
  transition-duration: 0.3s;
}

#menu nav a:hover {
  background: #9baad6;
  color:#fff;
}

.selected {
  background:#fff;
  color:#30920e!important;
}

.stick {
  position:fixed;
  top:0px;
}



#bux {
  visibility:hidden;
}
#smart {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  right:0;
  z-index: 11;
  text-align:center;
  background: #333;
  background: rgba(0,0,0,.9);
}

#smart nav {
  padding-top: 10%;
}

#smart img {
  margin-top:10%;
}

#smart.show {
  display: block;
}

#smart nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#smart nav a {
  padding: 15px;
  display: block;
  text-align:center;
  font-weight:200;
  font-size:2.3em;
  font-family:'Century-Regular';
  border-bottom: 1px solid rgba(255,255,255,.2);
  text-decoration: none;
  color: #fff;
}


#smart nav a:hover {
  background: rgba(225,225,225,.2);
}


#smart nav ul ul {
  position: absolute;
  display: block;
  visibility:hidden;
  right:100%;
  top:0;
  min-width:240px;
  opacity:0;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

#smart nav ul ul li{
    position: relative;
    top:0;
    text-align: center;
    background: rgba(0,0,0,.7);
  }

#smart nav ul li:hover > ul,
#smart nav ul ul:hover {
  display: block;
  visibility: visible;
  opacity:1;
}


#menu-apri {
  position: fixed;
  top: 1.5%;
  right: 0;
  cursor:pointer;
  z-index: 12;
}

#menu-chiudi {
  position:absolute;
  top:0px;
  right:0px;
  padding:10px;
  cursor: pointer;
  z-index: 11;
}

#smart .selected {
  background:#5a86d9;
  color:#fff!important;
}

/*-----body-----*/

 #hero {
  width: 100%;
  height: 100%;
  z-index:1;
}


.hello {
  position:absolute;
  top:100%;
  left:0;
  text-align:left;
  margin:0 12em;
  background: url('../images/hero.jpg') no-repeat bottom center;
  color:#000;
  padding:2% 7%;
  z-index:9;
}

.hello h2 {
  font-family:'Century-Regular';
  padding:2% 0;
  letter-spacing: 5px;
  font-weight:400;
}

.hello p {
  font-family:'Century-Regular';
  padding:0 50% 0 0;
}

/*----------------------------*/

#first {
  position:relative;
  background:#fff;
  width:100%;
  margin-top:10%;
  padding:12% 0 5% 0;
  z-index: 8;
}

.image {padding-right:10%;}

#three {
  position:relative;
  background: #ededed;
  width:100%;
  padding:5% 0;
  z-index:7;
  color:#000;

}

#three p {
  font-family:'Century-Regular';
  padding: 0 15em;
  text-align:center;
  margin-top:0;
  font-weight:400;
  margin-bottom:50px;
}

.marca {
  text-align:center;
}
.marca img {
  padding-top:20%;
  opacity: 1;
  transition-duration: 0.7s;
}

.marca img:hover {
  transform: scale(1.05,1.05);
  -webkit-transform: scale(1.05,1.05);
  -moz-transform: scale(1.05,1.05);
  -ms-transform: scale(1.05,1.05);
  -o-transform: scale(1.05,1.05);
}

.box {
  position:relative;
  padding:0;
  text-align:center;
  background:#eeeeee;
  overflow:hidden;
}

.box img {
  display:block;
  margin: 0 auto;
  text-align:center;
  height:180px;
 -webkit-transition-duration: 0.9s; 
    transition-duration: 0.9s;
}

.box:hover img {
  transform: scale(1.05);
  -ms-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
}

.box h3 {
  font-family: 'poiret_oneregular';
  margin:0;
  text-align:center;
}
.box a {
  text-decoration: none;
  font-family:'Century-Regular';
  display:inline-block;
  margin:8% auto;
  text-align:center;
  padding:3% 4%;
  font-weight:400;
  color:#fff;
  font-size:1.4em;
  opacity:1;
   -webkit-transition-duration: 0.4s; 
    transition-duration: 0.4s;
}

.box a:hover {
  background:#fff;
  color:#000;
}
#first .box span {font-size:1.5em;}




.visual {
  display:inline-block;
  color:#fff;
  margin:0;
  text-decoration: none;
  background: url('../images/arrow-white.png') no-repeat scroll 93% center #5678b8;
  padding: 15px 80px 15px 20px;
  font-weight:200;
  text-decoration: none;
  transition: all 0.25s ease 0s;
}

.visual:hover {
 background: url('../images/arrow-white.png') no-repeat scroll 96% center #023f88;
 color:#fff;

}

.omer {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  margin: 1% 0;
  font-family:'Century-Regular';
  font-size: 1.2em;
}

.omer img {
  vertical-align: middle;
}

#five {
  position: relative;
  background: #1f1a1a;
  z-index: 6;
  padding:2% 0 0;
}

.log {
  margin-top:1%;
}
.info {
  text-align:center;
}

.tel p {
  margin:0 auto;
  padding-top:5%;
  text-align:center;
  font-weight:200;
  font-size:1.3em;
  color:#fff;
}

.social {
  padding:1% 0;
  text-align:center;
  margin-top:5%;
}

.social img {
  padding:5px;
  opacity: 0.7;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.social img:hover, .social img:focus, .social img:active {
  opacity: 1;
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-animation-name: hang;
  animation-name: hang;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

#mrt, #ele, #d18, #d19, #mtb, #run {
  top:100px!important;
  width:86%;
  left:47%;
  height:85%;
}

#mrt .row, #ele .row, #mtb .row, #d18 .row, #d19 .row, #run .row{
  max-width:100%;
}

.fru {
  padding-top:2%;
  max-width: 80%!important;
}

.barred {
  text-decoration:line-through!important;
}

.stek span {
  font-size: 0.7em;
}


.tel .copy {
  margin-top:0;
  font-size:0.9em;
  font-weight:200;
}

.mail {
  text-align:center;
  margin-top:3%;
}
.mail a {
  font-family:'Century-Regular';
  font-size:1.3em;
  font-weight:200;
  padding:2% 5%;
  border:0;
  color:#fff;
  display:inline;
  text-align:center;
  text-decoration:none;
  background:#63abdc;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.mail a:hover {
  background:#fff;
  color:#000;
}

.power {text-align:center;}

.power a {
  background:none;
	width:100%;
	text-align:center;
	font-weight:200;
}

.power a:hover {
  background:none;
}

.power p {
  margin-top:0;
	font-size:0.9em;
	color:#fff;
}
.power img {
	display:inline;
}
/*--------------------contatti-------------------*/


#total { 
  position:relative;
  width:100%;
  margin:0 auto;
  background:rgba(0,0,0,0.7);
  color:#fff;
  padding-top:3%;
}

#where {
  margin:0;
  font-family: 'poiret_oneregular';
  text-align:center;
  width:100%;
  padding:0 0 3% 0;
}

.orari p {
  background:rgba(255,255,255,0.9);
  padding:50px;
  font-weight:400;
  text-align:center;
  color:#000;
}

.c-mail a {
  display:inline;
  font-family: 'poiret_oneregular';
  padding:5px 80px 5px 10px ;
  background: url('../images/mai2.png') no-repeat scroll 94% center;
  color:#fff;
  background-color:rgba(221,210,255,0.6);
  font-size:2em;
  text-decoration:none;
  border-radius:2px;
  -webkit-transition-duration: 0.3s; 
    transition-duration: 0.3s;
}

.c-mail a:hover{
  background: url('../images/mai2.png') no-repeat scroll 97% center;
  background-color:rgba(255,255,255,0.8);
  color:#000;
}

#mappa iframe { 
  margin:0 auto;
  width:100%;
  height: 500px;
  margin-bottom:0;
}

@media only screen and (min-width:0px) and (max-width: 720px){

  html,body {
  font-size:70%;
  width:100%;
  background: none; 
  }

  h1 {
    padding: 0!important;
  }

  p {
    font-size: 2em;
  }

  #cookieChoiceInfo span {
    font-size:1.6em;
    display:block;
    width:90%;
    padding:0 5%;
  }

  .responsive {
      float: none;
      width: 100%!important;
      margin-left: 0!important;
  }

  .hello {
    position: relative;
    text-align: left;
    margin: 0;
    top: 0;
    width:auto;
    background: url(../images/hero.jpg) no-repeat bottom left;
    background-size: cover;
    color: #000;
    padding: 2% 0;
    z-index: 9;
  }

  .box img {
    height: 100px;
  }

  .box {
    margin-bottom: 4%;
  }

  .box a {
    font-size: 1.8em;
  }

  #first {
    margin-top: 0%;
  }

  #three p {
    padding: 0 2em;
    margin-bottom: 0;
  }

  .hello h2 {
    font-family: 'Century-Regular';
    padding: 2% 4%;
  }

  .hello p {
    font-size: 2em;
    padding: 0 30% 0 4%;
  }

  .box h3 {
    font-size: 4em;
    padding: 6% 0;
  } 

  #menu {
    display: none;
  }

  #header {
    text-align: center;
  }

  #header a {
    background: url(../images/logo.png) center center no-repeat;
    background-size: 75%;
    width: auto;
  }

  #hero {
    height: auto;
    z-index: 1;
  }

  .marca img {
    padding-top: 10%;
    max-width: 50%;
  }

  .visual {
    font-size: 2em;
    padding: 4% 4%;
    margin-bottom: 4%;
  }

  .tel p {
    margin: 0 auto;
    padding: 5% 0;
    font-size: 2em;
  }

  .tel .copy {
    margin-top: 0;
    font-size: 1.2em;
    padding: 0;
    font-weight: 200;
  }

  .mail {
    text-align: center;
    margin-top: 4%;
  }

  .mail a {
      display: inline-block;
      font-size: 2em;
      padding: 2% 5%;
  }

  .log img {
    margin-top: 6%;
    max-width: 80%;
  }

  .social  {
    margin: 1% 0 0;
  }

  #mappa iframe {
    height: 350px;
  }

  #where  {
    padding-bottom: 7%;
  }


  #bux {
    visibility: visible;
  }

  .h-soc {
    display: none;
  }

  #cookieChoiceInfo a {
    display:inline-block;
    margin-top:2%;
    font-size:1.7em;
  }


}


@media screen and (min-width: 721px) and (max-width: 1280px){

  body {
      font-size: 70%;
    }


  
} 



/*------responsive device------*/



@media only screen and (min-device-width:601px) and (max-device-width: 1280px){
 
  html,body {font-size: 82%;}

  

}


@media only screen 
  and (min-device-width : 768px) 
  and (max-device-width : 1024px) 
  and (orientation : landscape)
  and (-webkit-min-device-pixel-ratio: 1)  { 

  html,body {
    font-size: 75%;
  }


}
