:root {
  --orange: #f9b233;
  --grey: #3c3c3b;
  --colorbase: #3c3c3b;
  --barlow:'Barlow', sans-serif;
  --shadowsintolight:'Shadows Into Light', cursive;
}
html, body {
	/* height: 100%; */
	margin: 0;
	user-select: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}
html {
	text-rendering: optimizeLegibility;
	scroll-behavior: smooth;
}
/* remove highlight background when click a button, link, ecc.*/
* {
    -webkit-tap-highlight-color: transparent;
}
body {
	font-size: 16px;
	font-family: var(--barlow);
	color: var(--colorbase);
	font-weight: 400;
	line-height: 1.2;
}
@media (max-width: 600px){
	body {
		font-size: 18px;
	}
}
b, strong {
    font-weight: bold;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--shadowsintolight);
    line-height: 1;
    margin: 0;
    color: var(--colorbase);
    font-weight: 500;
}
h2 {
    font-size: 36px;
}
h3 {
    font-size: 23px;
}
a:focus { text-decoration: none !important; }
a{
	text-decoration: none;
	color:var(--grey);
}
.wh-100-percent{
	width: 100%;
	height: 100%;
}
.w-100-percent{
	width: 100%;
}
.z-index-1{
	z-index: 1;
}
.z-index-2{
	z-index: 2;
}
.margin-0{
	margin: 0;
}
@media (min-width:992px){
	.vertical-align{
		display: flex;
		align-items: center;
	}
}
/* @media (min-width:901px){ */
	.aligned {
	    display: flex!important;
	    align-items: center;
		 justify-content: center;
	}
/* } */
@media (min-width:769px){
	.d-flex {
	    display: -ms-flexbox!important;
	    display: flex!important;
		 align-items: center;
		 justify-content: center;
	}
}
.justify-content-between {
    -ms-flex-pack: justify!important;
    justify-content: space-between!important;
}
.justify-content-start {
    -ms-flex-pack: justify!important;
    justify-content: start!important;
}
.justify-content-end {
    -ms-flex-pack: justify!important;
    justify-content: end!important;
}
.align-item-start{
	align-items:flex-start;
}
.icons {
    height: 54px;
    margin-right: 15px;
    vertical-align: sub;
}
.inline-table{
    display: inline-table;
}
.barlow {font-family: var(--barlow);}
.shadows-into-light {font-family: var(--shadowsintolight);}
.font-weight-500{ font-weight: 500!important}
.font-weight-600{ font-weight: 600!important}

.object-fit-cover{
	object-fit: cover;
	width: 100%;
}
/* Preloader
========================================================*/
#preloader {
  overflow: hidden;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100000;
  background-color:var(--orange);
}
.spinner {
  width: 40px;
  height: 40px;

  left: calc(50% - 20px);
  position: relative;
  top: calc(50% - 20px);
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #4B3E63;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;

  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}
hr.line {
    border: 0;
    border-top: 2px solid var(--orange);
    margin: 0;
    height: 0px;
    width: 60px;
    display: inline-block;
}
/* W3CSS
 ========================================================*/
.w3-auto {
    max-width: 1200px;
}
.w3-auto-large {
    max-width: 1400px;
	 margin: 0 auto;
}
.w3-panel {
    margin-top: 0;
    margin-bottom: 0;
	 padding-top: 16px;
	 padding-bottom:16px;
}
.w3-panel-large {
    padding: 24px;
}
 .w3-bar .w3-bar-item {
    padding: 0px 20px;
}
.w3-btn, .w3-button {
    white-space: initial;
	 -webkit-transition: all 200ms ease;
	 -moz-transition: all 200ms ease;
	 -ms-transition: all 200ms ease;
	 -o-transition: all 200ms ease;
	 transition: all 200ms ease;
}
.w3-row-padding-large, .w3-row-padding-large>.w3-half, .w3-row-padding-large>.w3-third, .w3-row-padding-large>.w3-twothird, .w3-row-padding-large>.w3-threequarter, .w3-row-padding-large>.w3-quarter, .w3-row-padding-large>.w3-col, .w3-row-padding-large .w3-cell {
    padding: 0 20px;
}
.w3-stretch-large {
    margin-left: -40px;
    margin-right: -40px;
}
@media (max-width: 600px){
	.w3-stretch-large {
	    margin-left: 0;
	    margin-right: 0;
	}
	.w3-row-padding-large, .w3-row-padding-large>.w3-half, .w3-row-padding-large>.w3-third, .w3-row-padding-large>.w3-twothird, .w3-row-padding-large>.w3-threequarter, .w3-row-padding-large>.w3-quarter, .w3-row-padding-large>.w3-col, .w3-row-padding-large .w3-cell {
	    padding: 0;
	}
}
.w3-xlarge {
    font-size: 28px!important;
}
.w3-xxxlarge {
    font-size: 42px!important;
}
.w3-margin-bottom-large{margin-bottom:24px!important}
.w3-circle{width: 80px; height: 80px; flex: 0 0 80px; margin:0 auto;}
@media (min-width:769px){.w3-col.l1{width:8.33333%}.w3-col.l2{width:16.66666%}.w3-col.l3{width:24.99999%}.w3-col.l4{width:33.33333%}
.w3-col.l5{width:41.66666%}.w3-col.l6{width:49.99999%}.w3-col.l7{width:58.33333%}.w3-col.l8{width:66.66666%}
.w3-col.l9{width:74.99999%}.w3-col.l10{width:83.33333%}.w3-col.l11{width:91.66666%}.w3-col.l12{width:99.99999%}}
@media (min-width:1121px){.w3-col.xl1{width:8.33333%}.w3-col.xl2{width:16.66666%}.w3-col.xl3{width:24.99999%}.w3-col.xl4{width:33.33333%}
.w3-col.xl5{width:41.66666%}.w3-col.xl6{width:49.99999%}.w3-col.xl7{width:58.33333%}.w3-col.xl8{width:66.66666%}
.w3-col.xl9{width:74.99999%}.w3-col.xl10{width:83.33333%}.w3-col.xl11{width:91.66666%}.w3-col.xl12{width:99.99999%}}
.w3-padding-large{padding:34px!important}
.w3-text-orange,.w3-hover-text-orange:hover{color:var(--orange)!important}
.w3-light-grey{color:var(--colorbase)!important;background-color:#f2f3f4!important}
.w3-grey{color:#fff!important;background-color:var(--grey)!important}
.w3-orange,.w3-hover-orange:hover{color:var(--colorbase)!important;background-color:var(--orange)!important}
.w3-purple,.w3-hover-purple:hover{color:#fff!important;background-color:#4B3E63!important}
.w3-border-orange,.w3-hover-border-orange:hover{border-color:var(--orange)!important}
.w3-white,.w3-hover-white:hover{color:var(--grey)!important;background-color:#fff!important}
.w3-border-light-grey,.w3-hover-border-light-grey:hover,.w3-border-light-gray,.w3-hover-border-light-gray:hover{border-color:#d2d2d2!important}

.w3-corner{ position: relative;}
.w3-corner::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -5px;
    border-width: 8px;
    border-style: solid;
    border-color: inherit;
    border-left-color: transparent;
    border-top-color: transparent;
}
.w3-transparent,.w3-hover-transparent:hover{color:#FFF!important;background-color:transparent!important;}
.w3-tag {width: 322px;}
@media (max-width:768px){.w3-hide-small{display:none!important}}
/* Stuck menu
 ========================================================*/
#menuStuck{
 	 position:absolute;
 	 top: 0px;
 	 width: 100%;
 	 /* background-color: rgba(255, 255, 255,1); */
 	 z-index: 11;
 }
 @media (max-width: 1120px) {
 	 #menuStuck{
 		 position:relative;
 		 top:0;
		 height: 130px;
 	 }
 }
.w3-animate-top {
  position:absolute;
  animation: 0;
}
@media (min-width: 1121px) {
  .sticky {
		position: fixed!important;
		top: 0!important;
		width: 100%;
		box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
		-webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
		background: rgba(62,62,62,.9);
		padding-top: 0;
	 }
	 .w3-animate-top {
		  position: relative;
		  animation: animatetop 0.4s;
	 }
}
/* Swipe slider
 ========================================================*/
 #myContainer {
  height:100%;
  /* height:calc(100% - 185.15px); /*meno lo spessore del menu*/
  position: relative;
  background: #fff;
 }
 @media (min-width: 1161px){
	 #myContainer {
	  min-height: 700px;
	 }
 }
 @media (max-width: 1160px){
	 #myContainer {
	    height: 50vw;
	    /* height: calc(50vw + 129.16px); */
	    min-height: 590px;
	    margin-top: -130px;
	}
 }
 #myContainer .swiper-container img{
  height:100%;
  filter: brightness(46%);
  object-position: center;
  margin-top: -1px;
 }
 #myContainer img.logo-slide {
    max-width: 300px;
}
/* #myContainer .w3-display-middle {
    height: 100%;
} */
.swiper-caption {
	 text-align: center;
}
 .swiper-container h1, .swiper-container h2, .swiper-container h3, .swiper-container h4, .swiper-container h5, .swiper-container h6{
  color: #FFF;
 }
.swiper-caption h1, .swiper-caption h2 {
    font-size: 45px;
    letter-spacing: 1px;
    line-height: 1.2;
}
@media (max-width: 1220px){
	.swiper-caption h1, .swiper-caption h2 {
	    font-size: 40px;
	    letter-spacing: 1px;
	    line-height: 1;
	}
}
 .swiper-caption p{
	 font-size:18px;
	 font-weight: 600;
 }
@media (max-width: 1160px){
	.swiper-caption {
		 margin-top: 10px;
	}
	.swiper-caption h1{
  	 font-size:3.5vw!important;
   }
	.swiper-caption h3{
  	 font-size:3vw!important;
   }
}
@media (max-width: 600px){
	.swiper-caption h1{
  	 font-size:22px!important;
   }
}
.swiper-caption .w3-button {
    white-space: break-spaces;
    border: 1px solid var(--orange);
    font-size: 16px;
    padding: 10px;
    line-height: 1;
    font-weight: 600;
    color: white!important;
}
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
	 background: #a1a5ab;
	 opacity: 1;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: #FFF;
}
.mouse-helper .ion-mouse {
  display: block;
  background: url(../swiper/mouse.svg);
  background-size: cover;
  width: 0.6635em;
  height: 1.08em;
  margin-top: 0.7em;
}
 /* .mouse-helper .ion-mouse {
	 -webkit-filter: invert(100%) sepia(0%) saturate(7456%) hue-rotate(57deg) brightness(115%) contrast(114%);
	 filter: invert(100%) sepia(0%) saturate(7456%) hue-rotate(57deg) brightness(115%) contrast(114%);
 } */
  @media (max-width: 1160px){
	  .mouse-helper {
			display: none;
	  }
  }
 /* .swiper-button-next, .swiper-button-prev {
	 display: none;
 } */

 /* Navigation
  ========================================================*/
header {
   position: relative;
   width: 100%;
   z-index: 3;
}
header > .w3-container{
	padding:20px 0;
}
.logo-content {
    position: relative;
    height: 130px;
	 z-index: 2;
	 width: 150px;
	 padding-top:8px;
}
@media (max-width: 1120px){
	.logo-content {
		 width: 75%;
	}
}
.logo-header {
    object-fit: contain!important;
    width: auto!important;
    filter: brightness(100%)!important;
	 transition: 0.4s;
}
.logo {
    display: inline-block;
    position: absolute;
    left: 0;
	 /* padding-right: 75px; */
	 width: 100%;
}
@media (max-width: 1120px){
	.logo {
		 top: 50%!important;
		 transform: translateY(-50%);
	}
}
.topnav {
    background-color: transparent;
    z-index: 2;
	 position: relative;
}
@media (min-width: 1121px){
	.w3-bar {
	    display: flex;
	    justify-content: center;
	    align-items: center;
	    height: 130px;
	}
	.logo-content {
		 z-index: 3;
	}
}
.topnav a {
    font-family: var(--barlow);
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 18px;
    white-space: nowrap;
	 font-weight: 600;
}
.topnav .dash{
	border: 0;
	border-top: 2px solid var(--orange);
	margin: 0;
	height: 0px;
	width: 15px;
	display: inline-block;
}
.topnav a:nth-child(4) {
 padding: 0;
}
.topnav .w3-button:hover {
	 background-color: transparent!important;
}
.topnav .w3-button:hover span {
    color: #fbc31a!important;
    background: transparent!important;
}
.topnav a.active, .topnav .w3-button:hover {
    color: #fbc31a!important;

}
.topnav .toggle {
    display: none;
    position: absolute;
    top: 6px;
    right: 12px;
}
@media screen and (max-width: 1120px){
	.topnav {
		 margin-top: 0px;
	}
	.topnav a:not(.toggle), .topnav .dash {
	    display: none;
	}
	.topnav a.toggle {
	    display: block;
	    background-color: transparent!important;
	    color: var(--orange)!important;
	    z-index: 2;
	}
  .topnav a:hover {
	   border-bottom: none;
	}
	.topnav.w3-right.responsive {
	    float: none!important;
	    position: relative;
	    z-index: 2;
	}
	.topnav.responsive a:not(.toggle) {
	    float: none;
	    display: block;
	    text-align: left;
	    padding: 10px;
	    color: #fff;
	    border-bottom: 1px solid #fff;
	    line-height: 1.5;
	}
	.topnav.responsive .w3-nav a:nth-last-child(2){
		border-bottom:none;
	}
	.topnav.responsive .w3-nav{
		background: rgba(62, 62, 62,0.8);
	}
	.topnav.responsive .w3-dropdown-hover {
	    float: none;
	    display: block;
	}
	.topnav.responsive .w3-dropdown-content {
	    position: relative!important;
	    margin-left: 30px;
		 top: 0;
	}
}
/* SOCIAL BAR
 ========================================================*/
/* Fixed/sticky icon bar (vertically aligned 50% from the top of the screen) */
.icon-bar {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
@media  (max-width: 850px) {
	.icon-bar {
       display: none;
   }
}

/* Style the icon bar links */
.icon-bar a {
	display: block;
	text-align: center;
	padding: 6px 10px;
	transition: all 0.3s ease;
	color: #FFF;
	font-size: 26px;
	margin-bottom: 1px;
	box-shadow: 0 4px 10px 0 rgba(0,0,0,0.2),0 4px 20px 0 rgba(0,0,0,0.19);
}
.icon-bar a:last-child {
	border-bottom: none;
}

/* Style the social media icons with color, if you want */
.icon-bar a:hover {
  background-color: var(--grey);
}

.facebook {
  background: var(--orange);
}

.instagram {
  background: var(--orange);
}

.emailbar {
  background: var(--orange);
}

.whatsapp {
  background: var(--orange);
}

.phone {
  background: var(--orange);
}

.youtube {
  background: var(--orange);
}
/* About us in HP
========================================================*/
.flag {
	width: 35px;
	margin-right:10px;
}
@media only screen and (min-width: 769px) {
	.col-container {
	  display: table;
	  width: 100%;
	}
	.col-container > .w3-col {
	  display: table-cell!important;
	  float: none;
	  vertical-align: middle;
	}
}
/* Servizi in HP
========================================================*/
.flex-wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 280px;
}
.img-service, .title-service {
    flex: 0 0 30%;
    background: var(--orange);
    justify-content: center;
    display: flex;
    align-items: center;
}
.img-service img {
    height: 87px;
    width: auto;
    object-fit: cover;
    object-position: center center;
}
.title-service {
	display: block;
	text-align: center;
}
/* Parallax
========================================================*/
.height-100{
 height: 100%;
}
.parallax {
 background-size: cover!important;
 height: 380px;
 background-blend-mode: darken;
}
.px01{
	background: rgba(0, 0, 0, 0.5) url(../images/px01.jpg) no-repeat center center;
}
.px01b{
	background: rgba(0, 0, 0, 0.5) url(../images/px01b.jpg) no-repeat center center;
}
.px01c{
	background: rgba(0, 0, 0, 0.5) url(../images/px01c.jpg) no-repeat center center;
}
.px01d{
	background: rgba(0, 0, 0, 0.5) url(../images/px01d.jpg) no-repeat center center;
}
.px02{background: rgba(0, 0, 0, 0.7) url("../images/px02.jpg") no-repeat fixed center center;}
.px03{
	background: rgba(0, 0, 0, 0) url(../images/px03.jpg) no-repeat center center;
}
@media only screen and (max-device-width: 1120px) {
	.px01, .px01b, .px01c, .px01d{
		margin-top:-130px;
	}
}
/* Turn off parallax scrolling for tablets and phones */
@media only screen and (max-device-width: 700px) {
  .px02 {
		background-attachment: scroll;
		min-height: 250px;
  }
}
.parallax {
	letter-spacing: 1.5px;
}
.parallax span{
	font-size: 1.2em;
}
 @media (max-width: 900px){
	 .parallax .w3-xxlarge {
	 	font-size: 30px!important;
	 }
 }
 /* Footer
 ========================================================*/
 footer {
     font-size: 22px;
     line-height: 1.2;
     font-weight: 300;
 }
 footer .fa{
	 color: var(--orange);
 }
 footer .email {
     font-size: 20px!important;
     font-weight: 600;
 }
 /* Animations
 ========================================================*/
 .ten-years-cyrcle {
    width: 100%;
    margin-top: 0;
    -webkit-animation: spin 12s linear infinite;
    animation: spin 12s linear infinite;
}
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@media (max-width:768px){
	.ten-years-cyrcle {
	    display: none;
	}
}
 /* Chi siamo
 ========================================================*/
 .bg-left-orto {
	 left: 0;
	 bottom:0;
    /* transform: translateX(100%); */
    width: 50%;
    height: 100%;
    background-image: url("../images/orto-bg-left.svg");
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: -1px;
 }
 .bg-right-orto {
	 right: 0;
	 bottom:0;
    /* transform: translateX(100%); */
    width: 50%;
    height: 100%;
    background-image: url("../images/orto-bg-right.svg");
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: -1px;
 }
 @media (max-width: 1499px) {
	 .bg-left-orto, .bg-right-orto{
		 display: none;
	 }
 }
 .flag-white {
	 -webkit-filter: grayscale(100%) brightness(5);
 	 filter: grayscale(100%) brightness(5);
 }
img.orto-tavola{
	max-width: 300px;
	display: block;
	margin: 0 auto;
}
.sostenibilità {
    width: 115px;
    margin-bottom: -35px;
    position: relative;
    margin-left: 10px;
}
.img2{
	max-height:320px
}
 @media (max-width: 768px) {
	 .sostenibilità {
		 display: none;
	 }
	 .img2{
	 	max-height:none;;
	 }
 }
 /* Get in Touch
  ========================================================*/
  @media (max-width: 900px){
  	.get-in-touch {
  		text-align: center;
  	}
  }
  /* Pacchetti
   ========================================================*/
/* @media (min-width:769px){ */
	.package{
		width: 290px;
	}
/* } */
/* Itinerari
 ========================================================*/
.itinerari .left-col-white{
	padding-left: 62px!important;
}
.itinerari .left-col-grey{
	padding-left: 52px!important;
}
.itinerari .box-ico{
	display: inline-block;
	width: 55px;
	text-align: center;
}
.itinerari .box-ico img{
	height: 20px;
}
@media (max-width:600px){
	.itinerari .left-col-white, .itinerari .left-col-grey{
		padding-left: 0!important;
		text-align: center;
	}
}
/* Contatti
========================================================*/
.order .w3-tag:nth-child(2) a{
    font-size: 21px;
    font-weight: 700;
}
.order .w3-tag {width: 330px; display: block;}
@media (max-width:768px){
	.order .w3-right-align{ text-align: center!important;}
	.order img.w3-margin-right {margin-right: 0!important}
	.order .w3-tag {margin: 0 auto;}
}
  .gmap iframe{
	  display: block;
  }
div[data-service]::before {
    padding-top: 0;
}
.gmap iframe {
	filter:grayscale(100%)!important;
}
.contatti iframe{
	display: block;
}
div[data-autoscale] {
    height: 450px!important;
    width: 100%;
}
div[data-service] {
    background-color: #dfdfdf!important;
}
div[data-service] .c-n-t {
    color: #1c1c1c!important;
}
div[data-service] .c-n-c .c-l-b::before {
    top: 17px!important;
}
@media (max-width: 489px) {
	div[data-service] .c-n-c .c-la-b {
		margin-left: 0!important;
		margin-top: 16px!important;
  }
}
textarea {
    height: 221px;
}
/* button.w3-corner::before {
    left: 80%;
} */
/* Video
========================================================*/
@media (max-width: 489px) {
	.video div[data-service] .c-n-c .c-l-b {
		display: block!important;
	}
}
.video div[data-service='youtube'] {
    border-radius: 30px;
	 max-width: 900px;
}
.video div[data-service].c-h-b iframe {
    border-radius: 30px;
}
/* Go to Top
 ========================================================*/
 #scroll-top {
    display:none;
    /* opacity: 0; */
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: rgba(249, 178, 51, 0.4);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    text-align: center;
    z-index: 100;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
 #scroll-top .icon-icons8_arrow_up{
	 color: #FFF;
    font-size: 40px;
 }
#scroll-top:hover {
    background-color: rgba(249, 178, 51, 0.8);
}
/*==================  404  ======================*/
#menu2{
	height: 170px;
}
@media (max-width: 1060px) {
  .not-found i{
		font-size: 180px!important;
  }
}
.not-found {
	margin-top: 50px;
}
@media (max-width: 1060px){
	.not-found {
	  margin-top: 50px;
	}
}
.not-found i{
font-size: 15vw;
 color: var(--orange);
}
.not-found h2{
  font-size: 100px;;
}
.not-found h3{
  font-size: 28px;;
}
