@import 'fonts.css';
@import 'font-awesome.css';
/*
* @section Main Styles
*/
body {
  color: #231f20;
  font-size: 16px;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  line-height: 24px;
  -webkit-text-size-adjust: none;
  background: #fff;
}

body.block-scroll {
	margin: 0; 
	height: 100%; 
	overflow: hidden;
}

.fixed {
  position: fixed !important;
}

.flex-center {
  display: flex;
  justify-content: center; /* align horizontal */
  align-items: center; /* align vertical */
}

img {
  max-width: 100%;
  height: auto;
}

figure figcaption {
	font-size: 14px;	
}

/*
* @subsection Typography
*/
h1, h2, h3, h4, h5, h6,
.heading-1, .heading-2, .heading-3, .heading-4, .heading-5, .heading-6 {
  line-height: 1.2;
  font-family: 'ChollaWide', sans-serif;
  font-weight: normal;
  color: #000;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover,
.heading-1 a:hover, .heading-2 a:hover, .heading-3 a:hover, .heading-4 a:hover, .heading-5 a:hover, .heading-6 a:hover {
  color: #999;
}

h1,
.heading-1 {
  font-size: 36px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
@media (max-width: 480px) {
	h1,
	.heading-1 {
	  font-size: 30px;
	}
}
h2,
.heading-2 {
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 28px;
}
h2.title-box {
	display: block;
	padding: 20px 0;
	color: #432500;
	border: 3px solid #432500;
	text-align: center;
}
h3,
.heading-3 {
  font-size: 22px;
  line-height: 22px;
}
h4,
.heading-4 {
  font-size: 18px;
}
h5,
.heading-5 {
  font-size: 16px;
}
h6,
.heading-6 {
  font-size: 14px;
}

ul li {
	list-style: disc;
	margin-left: 25px;
}

em {
	font-style: italic;	
}

hr {
	margin: 10px 0; 
	height: 3px;
	border: none;
	background-color: #432500;	
}
h1 + hr {
	margin-bottom: 20px; 
}

.big {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 30px;
  /*letter-spacing: 3.1px;*/
}

.small {
  font-size: 14px;
  line-height: 20px;
}

.brown {
  color: #80725D;
}

.red {
  color: #8a1f25;
}

.orange {
  color: #e08431;
}

.blu {
  color: #0032a3 !important;
}

.clearfix {
	clear: both;
}
.hide {
	display: none;	
}
.visible-sm {
	display: none;	
}
@media (max-width: 768px) {
	.hide-sm{
		display: none;
	}
	.visible-sm {
		display:block;
	}
}
.line {
    border-top: 1px solid #CCC;
}

.thin {
  font-weight: 100;
}

.lite {
  font-weight: 300;
}

.normal {
  font-weight: 300;
}

.image-center {
	text-align: center !important;	
}

b,
strong,
.bold {
  font-weight: 400;
}

.ubold {
  font-weight: 700;
}

.upper {
  text-transform: uppercase;
}

a {
  font: inherit;
  color: inherit;
  text-decoration: none;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:focus {
  outline: none;
}
a:active {
  background-color: transparent;
}
a:hover {
  color: #CCC;
  text-decoration: none;
}

a[href^="tel:"],
a[href^="mailto:"],
a[href^="callto:"] {
  color: inherit;
  text-decoration: none;
}
a[href^="tel:"]:hover,
a[href^="mailto:"]:hover,
a[href^="callto:"]:hover {
  text-decoration: none;
}

.fa, .fas {
  line-height: inherit;
}

.fa:before {
  font-weight: 400;
  font-family: "FontAwesome";
}
.fas:before {
  font-weight: 900;
  font-family: "FontAwesomeSolid";
}

.page {
  /*overflow: hidden;*/
  text-align: left;
}
.lt-ie9 .page {
  min-width: 1200px;
}

.primary-color {
  color: #f2e3c4;
}
.primary-color--variant-1 {
  color: #e9d989;
}

.secondary-color {
  color: #8c5435;
}

.contrast-color {
  color: #fff;
}

/*
* @section Helpers
*/
/*
* @subsection Floating
*/
.pull-left {
  float: left;
}

.pull-none {
  float: none;
}

.pull-right {
  float: right;
}

@media (max-width: 480px) {
  .pull-xs-left {
    float: left;
  }

  .pull-xs-none {
    float: none;
  }

  .pull-xs-right {
    float: right;
  }
}
@media (max-width: 768px) {
  .pull-sm-left {
    float: left;
  }

  .pull-sm-none {
    float: none;
  }

  .pull-sm-right {
    float: right;
  }
}
@media (max-width: 992px) {
  .pull-md-left {
    float: left;
  }

  .pull-md-none {
    float: none;
  }

  .pull-md-right {
    float: right;
  }
}
@media (max-width: 1200px) {
  .pull-lg-left {
    float: left;
  }

  .pull-lg-none {
    float: none;
  }

  .pull-lg-right {
    float: right;
  }
}
/*
* @subsection Alignment
*/
.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

@media (min-width: 480px) {
  .text-xs-left {
    text-align: left;
  }

  .text-xs-center {
    text-align: center;
  }

  .text-xs-right {
    text-align: right;
  }
}
@media (min-width: 768px) {
  .text-sm-left {
    text-align: left;
  }

  .text-sm-center {
    text-align: center;
  }

  .text-sm-right {
    text-align: right;
  }
}
@media (min-width: 992px) {
  .text-md-left {
    text-align: left;
  }

  .text-md-center {
    text-align: center;
  }

  .text-md-right {
    text-align: right;
  }
}
@media (min-width: 1200px) {
  .text-lg-left {
    text-align: left;
  }

  .text-lg-center {
    text-align: center;
  }

  .text-lg-right {
    text-align: right;
  }
}
/*
* @section Main Layout
*/
* + .marked-list {
  margin-top: 11px;
}

* + .terms-list {
  margin-top: 24px;
}

* + .copyright {
  margin-top: 57px;
}

* + .inline-list {
  margin-top: 19px;
}

* + .owl-carousel {
  margin-top: 46px;
}

p { 
	margin-bottom: 8px; 
}

p + h1,
p + h2 {
  margin-top: 20px;
}
p + h3,
p + h4,
p + h5 {
  margin-top: 20px;
}

h1 + h2 {
  margin-top: 12px;
}
h2 + h3 {
  margin-top: 14px;
}

h1 + p {
  margin-top: 24px;
}

h2 + .btn {
  margin-top: 20px;
}

h2 + p {
  margin-top: 2px;
}

h3 + ul {
  margin-top: 4px;
}

img + h2 {
  margin-top: 15px;
}

p + .btn {
  margin-top: 28px;
}

p + .thumbnail {
  margin-top: 20px;
}

li h3 {
  margin: 8px 0;
}

.big + p {
  margin-top: 32px;
}

.no-padding {
	padding: 0 !important;	
}

.no-border {
	border: 0 !important;	
}

.no-float {
	float:none;
}

.inline-block {
	display: inline-block;
}

/*
* @subsection Well
*/
.well-xs {
  padding-top: 25px;
  padding-bottom: 25px;
}
.well-sm {
  padding-top: 50px;
  padding-bottom: 50px;
}
.well-sm h1 {
  margin: 0;
}
.well-md {
  padding-top: 75px;
  padding-bottom: 75px;
}
.well-lg {
  padding-top: 100px;
  padding-bottom: 100px;
}
.well-sm--inset-1 {
  padding-top: 0px;
  padding-bottom: 0;
}
.well-sm--inset-2 {
  padding-bottom: 80px;
}
.well-sm--inset-3 {
  padding-bottom: 6.2rem;
}
.well-sm--inset-4 {
  padding-bottom: 8.8rem;
}
/*
@media (min-width: 992px) {
  .well-md {
    padding-top: 6.3rem;
    padding-bottom: 8rem;
  }
  .well-md--inset-1 {
    padding-bottom: 6.2rem;
  }

  .well-lg {
    padding-top: 8.4rem;
    padding-bottom: 6.2rem;
  }
  .well-lg--inset-1 {
    padding-bottom: 8.6rem;
  }
  .well-lg--inset-2 {
    padding-bottom: 7.3rem;
  }
}
*/
/*
* @subsection Insets
*/
/*
* @subsection Flow-Offsets
*/
.flow-offset-1 > * + * {
  margin-top: 70px;
}
@media (min-width: 480px) {
  html:not(.lt-ie10) .flow-offset-1 > .col-xs-1:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-2:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-3:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-4:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-5:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-6:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-7:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-8:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-9:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-10:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-11:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-12:nth-child(n) {
    margin-top: 0;
  }
}
@media (min-width: 480px) {
  html:not(.lt-ie10) .flow-offset-1 > .col-xs-1:nth-child(n + 13), html:not(.lt-ie10) .flow-offset-1 > .col-xs-2:nth-child(n + 7), html:not(.lt-ie10) .flow-offset-1 > .col-xs-3:nth-child(n + 5), html:not(.lt-ie10) .flow-offset-1 > .col-xs-4:nth-child(n + 4), html:not(.lt-ie10) .flow-offset-1 > .col-xs-6:nth-child(n + 3), html:not(.lt-ie10) .flow-offset-1 > .col-xs-12:nth-child(n + 2) {
    margin-top: 70px;
  }
}
@media (min-width: 768px) {
  html:not(.lt-ie10) .flow-offset-1 > .col-sm-1:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-2:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-3:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-4:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-5:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-6:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-7:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-8:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-9:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-10:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-11:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-12:nth-child(n) {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  html:not(.lt-ie10) .flow-offset-1 > .col-sm-1:nth-child(n + 13), html:not(.lt-ie10) .flow-offset-1 > .col-sm-2:nth-child(n + 7), html:not(.lt-ie10) .flow-offset-1 > .col-sm-3:nth-child(n + 5), html:not(.lt-ie10) .flow-offset-1 > .col-sm-4:nth-child(n + 4), html:not(.lt-ie10) .flow-offset-1 > .col-sm-6:nth-child(n + 3), html:not(.lt-ie10) .flow-offset-1 > .col-sm-12:nth-child(n + 2) {
    margin-top: 70px;
  }
}
@media (min-width: 992px) {
  html:not(.lt-ie10) .flow-offset-1 > .col-md-1:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-2:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-3:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-4:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-5:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-6:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-7:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-8:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-9:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-10:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-11:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-12:nth-child(n) {
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  html:not(.lt-ie10) .flow-offset-1 > .col-md-1:nth-child(n + 13), html:not(.lt-ie10) .flow-offset-1 > .col-md-2:nth-child(n + 7), html:not(.lt-ie10) .flow-offset-1 > .col-md-3:nth-child(n + 5), html:not(.lt-ie10) .flow-offset-1 > .col-md-4:nth-child(n + 4), html:not(.lt-ie10) .flow-offset-1 > .col-md-6:nth-child(n + 3), html:not(.lt-ie10) .flow-offset-1 > .col-md-12:nth-child(n + 2) {
    margin-top: 70px;
  }
}
@media (min-width: 1200px) {
  html:not(.lt-ie10) .flow-offset-1 > .col-lg-1:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-2:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-3:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-4:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-5:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-6:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-7:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-8:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-9:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-10:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-11:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-12:nth-child(n) {
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  html:not(.lt-ie10) .flow-offset-1 > .col-lg-1:nth-child(n + 13), html:not(.lt-ie10) .flow-offset-1 > .col-lg-2:nth-child(n + 7), html:not(.lt-ie10) .flow-offset-1 > .col-lg-3:nth-child(n + 5), html:not(.lt-ie10) .flow-offset-1 > .col-lg-4:nth-child(n + 4), html:not(.lt-ie10) .flow-offset-1 > .col-lg-6:nth-child(n + 3), html:not(.lt-ie10) .flow-offset-1 > .col-lg-12:nth-child(n + 2) {
    margin-top: 70px;
  }
}

/*
* @subsection Offsets
*/
.offset-2 {
  margin-top: 15px;
}
.offset-3 {
  margin-top: 70px;
}
.offset-6 {
  margin-top: 40px;
}
.offset-7 {
  margin-top: 28px;
}
.offset-8 {
  margin-top: 49px;
}
.offset-9 {
  margin-top: 28px;
}
.offset-10 {
  margin-top: 39px;
}
.offset-11 {
  margin-top: 115px;
}
.offset-12 {
  margin-top: 22px;
}
.inset-5 {
  padding-top: 20px;
}
@media (min-width: 992px) {
  .inset-1 {
    padding-top: 14px;
  }

  .inset-2 {
    padding-left: 46px;
  }

  .offset-1 {
    margin-top: 37px;
  }

  .offset-2 {
    margin-top: 20px;
  }

  .offset-3 {
    margin-top: 70px;
  }

  .offset-4 {
    margin-top: 21px;
  }

  .offset-5 {
    margin-top: 17px;
  }

  .offset-6 {
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .inset-3 {
    padding-top: 58px;
  }
}
@media (min-width: 768px) {
  .inset-4 {
    padding-left: 50px;
  }
}

.rientro-40 {
	padding-left: 40px;	
}
/*
* @section Components
*/
/*
* @subsection Blockquote
*/
.quote p:nth-child(1) {
  font-size: 18px;
  padding-top: 10px;
  padding-left: 15px;
  padding-right: 15px;
}
.quote q {
  position: relative;
}
.quote q:before {
  content: '“';
  position: absolute;
  left: -14px;
}
.quote q:after {
  content: '”';
  position: absolute;
  rigth: -5px;
}
.quote p:nth-child(2) {
  padding-top: 25px;
  padding-bottom: 25px;
}
.quote p:nth-child(2) span {
  color: #8c5435;
  letter-spacing: 1.1px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  .quote p:nth-child(1) {
    padding-top: 52px;
    padding-left: 0;
    padding-right: 0;
    font-size: 26px;
    line-height: 1.53846;
  }
  .quote p:nth-child(2) {
    padding-bottom: 0px;
  }
}

/*
* @subsection Contact-info
*/
.contact-info dl {
  margin-left: auto;
  margin-right: auto;
}
.contact-info dl:before, .contact-info dl:after {
  display: table;
  content: "";
  line-height: 0;
}
.contact-info dl:after {
  clear: both;
}
@media (min-width: 768px) {
  .contact-info dd {
    float: left;
  }
  .contact-info dt {
    float: left;
    clear: both;
  }
}
.contact-info img {
	max-width: 300px;
}

/*
* @subsection Inline List
*/
.inline-list li {
  display: inline-block;
}
.inline-list li + li {
  margin-left: 10px;
}

/*
* @subsection Thumbnail
*/
.thumb {
  display: inline-block;
  overflow: hidden;
  position: relative;
  /*max-width: 100%;*/
}
@media (max-width: 767px) {
	.thumb {
		max-width: 100%;
	}
}
.thumb img {
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  width: 100%; 
  max-width: -moz-max-content;
}
.thumb img:hover {
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.thumbnail img:hover {
	opacity: 0.5;
}
/* news */
.news {
	margin-bottom: 30px;
}
.news .product {
	margin-bottom: 40px;
}
.news ul li {
	list-style: disc;
	margin-left: 15px;
}
.news .box-img-news {
	overflow: hidden	
}
.news .text-content h4 {
	margin-bottom:5px;	
}
.sidebar-blog {
	padding: 80px 30px;
	background: #f3f3f4;
}
.sidebar-blog .sidebar-content {
	position: relative;
}
.sidebar-blog .sidebar-content .sidebar-widget {
	margin: 30px 0;
}
.sidebar-blog .sidebar-content input.form-control {
	width:100%;
	margin-bottom:10px;
	padding: 8px 15px;
	background: #fff;
}
.col-img {
	height: 270px;
	overflow: hidden;
	position: relative;
}
.col-img img {
	min-height: 270px;
	max-width: 500px;
}
@media (max-width: 767px) {
	.sidebar-blog .sidebar-widget li {
		margin: 0;
		list-style: none;
	}
}
@media (max-width: 480px) {
	.col-img {
		height: auto;
	}
	.col-img img {
		max-height: 160px;
	}
	.news .col-xs-2,
	.module .col-xs-2 {
		width: 20% !important;
		float: left;
		padding: 0;
	}
	.news .col-xs-10,
	.module .col-xs-10 {
		width: 80% !important;
		float: right;
	}
}
.download-icon {
	background: url(/images/file-icon.png) no-repeat;
	background-size: 20px 20px;
	background-position: center left;
	padding-left: 25px;
	display: block;
	margin-top: 20px;
	line-height: 20px;
}
@media (max-width: 479px) {
	.download-icon {
		background: none;
		padding-left: 0;
	}
}
.postInfo {
	margin-top: 30px;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
.postInfo span {
	padding-right: 25px;
}
.postInfo span i {
	padding-right: 6px;
}
/* hide */
@media (max-width: 992px) {
	.hide-md {
		display: none;
	}
}
@media (max-width: 767px) {
	.hide-sm {
		display: none;
	}
}
@media (max-width: 479px) {
	.hide-xs {
		display: none;
	}
}
/*
* @subsection Blog-post
*/
.blog-post p + .btn {
  margin-top: 26px;
}

/* masonry */
.masonry {
    column-count: 2;
    column-gap: 1em;
}
.masonry .item {
    display: inline-block;
    margin: 0 0 1em;
    width: 100%;
}
@media only screen and (max-width: 767px) {
    .masonry {
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
    }
}

/*
* @subsection products
*/
/* catalogo */
.catalog-item {
    position: relative;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
	padding: 40px 50px;
    overflow: hidden;
}
.catalog-item h1 {
    font-weight: bold;
}
.catalog-item h2 {
    color: #e08431;
	margin-bottom: 0;
}
.catalog-item h3 {
    font-size: 24px;
	line-height: 26px;
}
.catalog-item h4 {
    color: #e08431;
	margin-top: 35px;
	text-transform: uppercase;
	font-size: 22px;
}
.catalog-item h3 img {
    max-width: 100px;
	padding: 15px 0;
}
.catalog-item .params {
    padding-left: 7% !important;
}
.catalog-item .awards img {
    max-width: 138px;
	padding: 15px 12px 0 12px;
}
.catalog-item .note {
	position: absolute;
	width: 100%;
	bottom: 130px;
	font-size: 15px;
	line-height: 18px;
}
.catalog-item .note img {
    max-width: 75px;
	padding-right: 10px;
}
.catalog-item .doc {
    position: absolute;
	width: 100%;
	bottom: 20px;
}
.catalog-item .img-wrap {
	text-align: center;
}
.catalog-item img.img-thumbs {
	max-height: 770px;
	margin-top: -20px;
}
.catalog-item .list-icon li {
	position: relative;
	list-style: none;
	margin: 0;
	padding-left: 75px;
	padding-bottom: 5px;
}
.catalog-item .list-icon li img {
	position: absolute;
	max-height: 35px;
	margin-left: -75px;
}
.catalog-item .list-icon li .desc-icon h4 {
}
.catalog-item .list-icon li .desc-icon p {
	margin-top: -3px;
	font-size: 15px;
	line-height: 16px;
}
.catalog-item #awards-box {
	margin-right: -50px;
}
.catalog-item #awards-box-mobile {
	display: none;
}
.vini {
	padding-top: 3%;
	padding-bottom: 5%;	
	overflow: hidden;
	text-align: center;
}
.vini a:hover img {
	opacity: 0.6;
}
.vini > div {
	display: inline-block;
	float: none;
}
.related-items {
	overflow: hidden;
	text-align: center;
}
.related-items .product {
	height: 450px;
	width: 24.8%;
	display: inline-block;
	border-right: 3px solid #fff;
}
.related-items .product:last-child {
	border: 0;
}
.related-items .awards {
	position: absolute;
	right: 10px;
	width: 25%;
	text-align: right;
}
.related-items .awards img {
	display: block !important;
	width: 50px !important;
	height: auto !important;
	padding-bottom: 10px;
	float: right;
}
.category-list {
	padding: 50px 0 0;
	text-align: center;	
}
.category-list h3 {
	display:inline-block;
	padding:0 15px;
	text-transform: uppercase;
	color: #666;	
}
.category-list h3.active {
	color: #e08431;
}
.vini .bottiglie {
    padding: 0 10px;
	width: 13%;
}
#products + .offset-3 .owl-item {
	padding: 5px;
}
@media (max-width: 1599px) {
	.catalog-item .params {
		padding-left: 0 !important;
	}
}
@media (max-width: 1199px) {
	.catalog-item {
		padding: 30px;
	}
	.related-items .product {
		height: 380px;
		width: 33%;
	}
	.related-items .product h3 {
		font-size: 18px !important;
		line-height: 18px !important;
	}
	.related-items .product h5 {
		font-size: 13px !important;
		line-height: 13px !important;
	}
	.related-items .product .desc {
		font-size: 12px !important;
		line-height: 12px !important;
	}
	.related-items .awards img {
		width: 40px !important;
		padding-bottom: 10px;
	}
}
@media (max-width: 991px) {
	.catalog-item {
		padding: 15px;
	}
	.catalog-item .note {
		position: relative;
		bottom: 0;
	}
	.catalog-item .doc {
		position: relative;
		bottom: 0;
	}
	.catalog-item .content-item {
		text-align: center;
	}
	.catalog-item .img-wrap,
	.catalog-item .params {
		margin-top: 40px;
	}
	.catalog-item #awards-box {
		display: none;
	}
	.catalog-item #awards-box-mobile {
		display: block;
	}
	.catalog-item #awards-box-mobile .note img {
		float: none;
		display: block;
		margin: 0 auto;
	}
	.related-items .product {
		width: 33%;
	}
	.catalog-item .note {
		padding: 30px 0;
	}
	.related-items .product:last-child {
		border-right: 6px solid #fff;
	}
}
@media (max-width: 767px) {
	.related-items .product {
		width: 49.5%;
	}
	.related-items .product img {
		max-height: 350px !important;
		left: 30% !important;
	}
	.catalog-item img.img-thumbs {
		max-height: 500px;
	}
	.vini .bottiglie {
		width: 22%;
		padding: 0 5px;
		margin-top: 12%;
	}
	.vini .bottiglie img {
		max-height: 510px;
	}
	.catalog-item .list-icon li {
		padding-left: 0;
	}
	.catalog-item .list-icon li img {
		position: relative;
		max-height: 35px;
		margin-left: 0;
	}
}
@media (max-width: 680px) {
	.vini .bottiglie {
		margin-top: 8%;
	}
}
@media (max-width: 480px) {
	.related-items .product {
		width: 100%;
	}
	.vini .bottiglie {
		margin-top: 13%;
	}
}
@media (max-width: 320px) {
	.related-items .product {
		width: 100%;
	}
}

/* prodotti home */
.product {
	margin-top: 6px;
	border-right: 6px solid #fff;
    overflow:hidden;
    position: relative;
}
.product.border,
.product a.border {
	border: 3px solid #e3edf3;
	display: block;	
}
.product h1 {
	display: block;
	padding: 22px 0;
	color: #432500;
	background: #transparent;
	font-size: 15px;
	text-transform: none;
	text-align: center;
}
.product .product-content {
	padding: 30px 10px;
	overflow: hidden;
	text-align: center;
}
.product .product-content.cat {
	padding: 10px 30px;
}
.product .product-content p {
	margin: 0;
	padding: 10px 0;
}
.product .product-content h5 {
	color: #e08431;
	text-transform: uppercase;
}
.product .product-content .info {
	position: absolute;
	width: 30%;
	text-align: left;
}
.product .product-content .desc {
	font-family: 'ChollaWide', sans-serif;
	font-size: 13px;
	line-height: 17px;
}
.home .product .product-content .desc + p {
    display: none;
}
.product .product-content .desc img {
	max-width: 50px;
	height: auto;
	padding-top: 2px;
}
.product .product-content .awards {
	float: right;
	width: 25%;
	text-align: right;
}
.product .product-content .awards p {
	padding: 0;
	padding-top: 4px;
}
.product .product-content .awards img {
	display: block !important;
	width: 50px !important;
	height: auto !important;
	padding-bottom: 10px;
	float: right;
}
.product .product-content figure img {
	position: absolute;
	left: 30%;
	width: auto;
	height: 350px;
	display: inline-block;
}
.product .product-content a:hover img {
	opacity: 0.6;
}
.product__content {
  padding: 20px 30px 45px;
  background: #f2e3c4;
}
.product__content p {
  letter-spacing: 0.2px;
}
@media (max-width: 1199px) {
	.product .product-content .info {
		width: 30%;
	}
	.product .product-content h3 {
		font-size: 19px;
		line-height: 19px;
	}
	.product .product-content .desc img {
		max-width: 35px;
	}
	.product .product-content .awards img {
		width: 40px !important;
		margin-left: 10px;
	}
	.product .product-content figure img {
		height: 330px;
		left: 25%;
	}
}
@media (max-width: 767px) {
	.product .product-content h5 {
		font-size: 14px;
	}
	.product .product-content .desc {
		font-size: 13px;
		line-height: 15px;
	}
}
@media (max-width: 479px) {
	.product .product-content h3,
	.product .product-content h3 a{
		font-size: 13px;
		line-height: 13px;
	}
	.product .product-content h5 {
		font-size: 12px;
	}
	.product .product-content .desc {
		font-size: 10px;
		line-height: 12px;
	}
	.product .product-content .awards img {
		width: 30px !important;
		margin-left: 0 !important;
	}
	.related-items .product h3,
	.related-items .product h3 a {
		font-size: 17px !important;
		line-height: 17px !important;
	}
	.related-items .product .awards p {
		width: 40px !important;
		float: right;
	}
	.related-items .product .awards img {
		width: 40px !important;
		float: none;
		display: block;
	}
	.home .product .product-content figure img {
		height: 230px;
	}
}
@media (max-width: 320px) {
	.product .product-content .info {
		width: 30%;
	}
	.product .product-content h3 {
		font-size: 19px;
		line-height: 19px;
	}
	.product .product-content h5 {
		font-size: 14px;
	}
	.product .product-content .desc {
		font-size: 13px;
		line-height: 15px;
	}
	.product .product-content .awards {
		width: 20%;
	}
}
/*
* @subsection terms-list
*/
.terms-list dt + dd {
  margin-top: 15px;
}
.terms-list dd + dt {
  margin-top: 35px;
}

/*
* @subsection marked-list
*/
.marked-list {
  color: #8c5435;
}
.marked-list li {
  padding-left: 16px;
  position: relative;
}
.marked-list li:before {
  content: '-';
  display: inline-block;
  position: absolute;
  height: 2px;
  left: 0%;
  top: 5%;
}
.marked-list li a:hover {
  color: #000;
}
.marked-list li + li {
  margin-top: 10px;
}

/*
* @subsection Backgrounds
*/
.bg-primary {
  background: #f7f7f7;
}
.bg-secondary {
  background: #eaeaea;
  color: #000;
}
.bg-contrast {
  background: #2a2a2a;
  color: #fff;
}
.bg-contrast h1,
.bg-contrast h2,
.bg-contrast h3,
.bg-contrast h4,
.bg-contrast h5{
  color: #fff;
}
.bg-cta {
  background: #d1cdca;
}
.bg-vini,
.bg-vini2 {
  background: url("/images/bg-vini.jpg") no-repeat;
  background-size: cover;
  background-position: center bottom;
}
.bg-white {
  background: #fff;
}
.bg-opacity {
  background: url("/images/bg_75.png") repeat;
}
.bg-footer-1 {
  background: #fff;
}
.bg-footer-2 {
  background: #fff;
}
@media (max-width: 767px) {
	.bg-vini2 {
	  background: url("/images/bg-vini-mobile.jpg") repeat;
	  background-size: contain;
	  background-position: center bottom;
	}
}
/*==================     Box     ======================*/
.box .box__middle, .box-xs .box__middle, .box-sm .box__middle, .box-md .box__middle, .box-lg .box__middle {
  vertical-align: middle;
}
.box .box__bottom, .box-xs .box__bottom, .box-sm .box__bottom, .box-md .box__bottom, .box-lg .box__bottom {
  vertical-align: bottom;
}

.box .box_left img, .box .box_right img {
  max-width: none;
}
.box .box_left,
.box .box_right,
.box .box_cnt {
  padding: 0;
  display: table-cell;
  vertical-align: top;
}
.box .box_left {
  padding-right: 32px;
}
.box .box_right {
  padding-left: 32px;
}

.box-xs .box_left, .box-sm .box_left, .box-md .box_left, .box-lg .box_left {
  padding-bottom: 0;
}
.box-xs .box_right, .box-sm .box_right, .box-md .box_right, .box-lg .box_right {
  padding-top: 32px;
}

@media (min-width: 480px) {
  .box-xs .box_left img, .box-xs .box_right img {
    max-width: none;
  }
  .box-xs .box_left,
  .box-xs .box_right,
  .box-xs .box_cnt {
    display: table-cell;
    vertical-align: top;
  }
  .box-xs .box_left {
    padding-right: 32px;
  }
  .box-xs .box_right {
    padding-left: 32px;
  }

  .box-xs-clear .box_left img, .box-xs-clear .box_right img {
    max-width: 100%;
  }
  .box-xs-clear .box_left,
  .box-xs-clear .box_right,
  .box-xs-clear .box_cnt {
    padding: 0;
    display: block;
    vert-align: top;
  }
  .box-xs-clear .box_left {
    padding-bottom: 0;
  }
  .box-xs-clear .box_right {
    padding-top: 32px;
  }
}
@media (min-width: 768px) {
  .box-sm .box_left img, .box-sm .box_right img {
    max-width: none;
  }
  .box-sm .box_left,
  .box-sm .box_right,
  .box-sm .box_cnt {
    display: table-cell;
    vertical-align: top;
  }
  .box-sm .box_left {
    padding-right: 32px;
  }
  .box-sm .box_right {
    padding-left: 32px;
  }

  .box-sm-clear .box_left img, .box-sm-clear .box_right img {
    max-width: 100%;
  }
  .box-sm-clear .box_left,
  .box-sm-clear .box_right,
  .box-sm-clear .box_cnt {
    padding: 0;
    display: block;
    vert-align: top;
  }
  .box-sm-clear .box_left {
    padding-bottom: 0;
  }
  .box-sm-clear .box_right {
    padding-top: 32px;
  }
}
@media (min-width: 992px) {
  .box-md .box_left img, .box-md .box_right img {
    max-width: none;
  }
  .box-md .box_left,
  .box-md .box_right,
  .box-md .box_cnt {
    display: table-cell;
    vertical-align: top;
  }
  .box-md .box_left {
    padding-right: 32px;
  }
  .box-md .box_right {
    padding-left: 32px;
  }

  .box-md-clear .box_left img, .box-md-clear .box_right img {
    max-width: 100%;
  }
  .box-md-clear .box_left,
  .box-md-clear .box_right,
  .box-md-clear .box_cnt {
    padding: 0;
    display: block;
    vert-align: top;
  }
  .box-md-clear .box_left {
    padding-bottom: 0;
  }
  .box-md-clear .box_right {
    padding-top: 32px;
  }
}
@media (min-width: 1200px) {
  .box-lg .box_left img, .box-lg .box_right img {
    max-width: none;
  }
  .box-lg .box_left,
  .box-lg .box_right,
  .box-lg .box_cnt {
    display: table-cell;
    vertical-align: top;
  }
  .box-lg .box_left {
    padding-right: 32px;
  }
  .box-lg .box_right {
    padding-left: 32px;
  }

  .box-lg-clear .box_left img, .box-lg-clear .box_right img {
    max-width: 100%;
  }
  .box-lg-clear .box_left,
  .box-lg-clear .box_right,
  .box-lg-clear .box_cnt {
    padding: 0;
    display: block;
    vert-align: top;
  }
  .box-lg-clear .box_left {
    padding-bottom: 0;
  }
  .box-lg-clear .box_right {
    padding-top: 32px;
  }
}
/*
* @subsection Icons
*/
.icon {
  display: inline-block;
  text-align: center;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.icon-primary {
  background: rgba(255,255,255,0.5);
  border: 0px solid #fff;
  border-radius: 50%;
}
.icon-primary:hover {
  background: rgba(255,255,255,1.0);
}

.icon-xs {
  height: 46px;
  width: 46px;
  line-height: 46px;
  font-size: 24px;
  color: #fff;
}

.icon-md {
  font-size: 70px;
  line-height: 70px;
}
/*
.fa-facebook {
  color: #3b5998;
}
.fa-facebook:hover {
  color: #96abd6;
}

.fa-twitter {
  color: #55acee;
}
.fa-twitter:hover {
  color: #e0f0fc;
}

.fa-linkedin {
  color: #0077b5;
}
.fa-linkedin:hover {
  color: #4fc3ff;
}
*/

/*
* @subsection Buttons
*/
.btn {
  font-family: 'ChollaWide', sans-serif;
  font-weight: normal;
  display: inline-block;
  text-align: center;
  position: relative;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn-default {
  margin: 20px 0 20px;
  padding: 4px 20px 2px;
  background: #e08431;
  color: #fff;
  border: 0;
  text-transform: uppercase;
  font-size: 14px;
  border-radius: 0;
}
.btn-default:hover {
  background: #2a2a2a;
}
.btn-arrow {
  margin: 30px 0;
  padding: 5px 10px;
  background: none;
  color: #e08431;
  border: 0;
  text-transform: uppercase;
  font-size: 17px;
  border-radius: 0;
}
.btn-arrow:before {
  position: absolute;
  right: 45%;
  top: -5px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: '\f107';
  font: 300 28px/28px 'FontAwesome';
}
.btn-arrow:hover:before {
  top: 0;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.btn-cta {
  margin: 20px 0 20px;
  padding: 4px 20px;
  background: #e08431;
  color: #fff;
  border: 0;
  text-transform: uppercase;
  font-size: 18px;
  border-radius: 0;
}
.btn-cta:hover {
  background: #2a2a2a;
}
.btn-reserve {
  margin: 15px;
  padding: 20px 50px;
  background: #F63;
  color: #fff;
  border: 0;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
  border-radius: 0;
}
.btn-reserve:hover {
  background: #e08431;
  color: #fff;
}
@media (max-width: 1439px) {
	.btn-arrow {
	  font-size: 16px;
	  padding: 5px;
	  line-height: 20px;
	}
}
@media (max-width: 1199px) {
	.btn-arrow {
	  font-size: 12px;
	  line-height: 16px;
	}
}
@media (max-width: 991px) {
	.btn-arrow {
	  font-size: 16px;
	  line-height: 20px;
	}
}
@media (max-width: 480px) {
	.btn-arrow {
	  font-size: 13px;
	  line-height: 16px;
	}
}

/* Winona */
.btn-wiona {
  overflow: hidden;
  padding: 0;
  -webkit-transition: border-color 0.3s, background-color 0.3s;
  transition: border-color 0.3s, background-color 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.btn-wiona::after {
  content: attr(data-text);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  color: #fff;
  -webkit-transform: translate3d(0, 25%, 0);
  transform: translate3d(0, 25%, 0);
}

.btn-wiona > span {
  display: block;
}

.btn-wiona::after,
.btn-wiona > span {
  padding: 0 5px;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.btn-wiona:hover {
  background-color: #432500;
}

.btn-wiona:hover::after {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.btn-wiona:hover > span {
  opacity: 0;
  -webkit-transform: translate3d(0, -25%, 0);
  transform: translate3d(0, -25%, 0);
}

.btn-sm {
  min-width: 130px;
  font-weight: 700;
  padding: 19px;
}

.btn-md {
  min-width: 140px;
  padding: 5px 20px;
}
.btn-lg {
  /*width: 100%;*/
  padding: 5px 20px;
}
.btn-xl {
  width: 100%;
  max-width: 350px;
  padding: 10px 0 8px;
  background: #e08431 !important;
  color: #fff;
  border: 0;
  text-transform: uppercase;
  font-size: 24px;
  text-align: center;
  vertical-align: bottom;
}
.btn-xl.black {
  width: 100%;
  max-width: 350px;
  padding: 10px 0 8px;
  background: #000 !important;
  color: #fff;
  border: 0;
  text-transform: uppercase;
  font-size: 24px;
  text-align: center;
}
.btn-sm.btn-wiona::after {
  top: 19px;
}
.btn-md.btn-wiona::after {
  top: 5px;
}
.btn-lg.btn-wiona::after {
  top: 5px;
}
.btn-read {
  font-weight: 700;
  color: 
}
.btn-play-video {
	position: absolute;
	background: url('../images/btn-play-video2.png') no-repeat center center;
	background-size: contain;
    overflow: hidden;
    background-repeat: no-repeat;
    width: 120px;
    height: 120px;
	top: 50%;
	left: 50%;
	margin-top: -60px;
	margin-left: -60px;
	cursor: pointer;
	z-index: 10;
}
/**
* @subsection Superfish
*
* @description Superfish is an enhanced Suckerfish-style menu jQuery plugin.
*
* @author     Joel Birch
* @link http://users.tpg.com.au/j_birch/plugins/superfish/
* @license MIT license - http://opensource.org/licenses/MIT
*/
#stuck_container {
	background: #fff;
}
.sf-menu {
  display: inline-block;
  font-family: 'ChollaWide', sans-serif;
}
/*
@media (max-width: 768px) {
	.sf-menu {
	  display: none;
	}
}
*/
.sf-menu:before, .sf-menu:after {
  display: table;
  content: "";
  line-height: 0;
}
.sf-menu:after {
  clear: both;
}
.sf-menu li {
  list-style: none !important; 
  margin: 0;
  padding: 0; 
}
.sf-menu > li {
  position: relative;
  float: left; 
}
.sf-menu > li + li {
  margin-left: 20px;
}
.sf-menu a {
  display: block;
}
.sf-menu > li > a {
  font-size: 18px;
  font-weight: 400;
  line-height: 60px;
  color: #000;
  text-transform: uppercase;
  padding-left: 30px;
  padding-right: 30px;
  margin-right: 25px;
}
.sf-menu > li:last-child > a {
  margin-right: 0;
  margin-right: 0;
}
@media (max-width: 1199px) {
  .sf-menu > li + li {
    margin-left: 10px;
  }
  .sf-menu > li > a {
    margin-right: 0;
	padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 992px) {
  .sf-menu > li > a {
    padding-left: 10px;
    padding-right: 16px;
	font-size: 16px;
  }
  .sf-menu > li + li {
    margin-left: 5px;
  }
}
.sf-menu > li > a:hover {
  color: #e08431;
}
.sf-menu > li.current > a {
  color: #e08431;
}
.sf-menu ul {
  display: none;
  width: auto;
  min-width: 200px;
  padding: 15px 0;
  position: absolute;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
  top: 100%;
  z-index: 2;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #2a2a2a;
}
nav.lang .sf-menu ul {
  min-width: 100px;
  text-align: center;
  right: 0;
}
.sf-menu ul > li {
  position: relative;
}
.sf-menu ul > li > a {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  padding: 5px 25px;
  white-space: nowrap;
  line-height: 20px;
}
.sf-menu ul > li.sfHover > a, .sf-menu ul > li > a:hover {
  color: #FFF;
  background: rgba(255,255,255,0.3);
}
@media (max-width: 992px) {
  .sf-menu ul > li > a {
    font-size: 13px;
  }	
}
.sf-menu ul ul {
  position: absolute;
  top: 0%;
  left: 100%;
  min-wwidth: 200px;
  margin-top: 0;
  padding: 0;
  background: #2a2a2a;
  z-index: 4;
}
.sf-menu > li .sf-with-ul {
  position: relative;
}
.sf-menu > li .sf-with-ul:before {
  position: absolute;
  right: 45%;
  top: 70%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: '\f0dd';
  font: 400 15px/15px 'FontAwesome';
}
.sf-menu > li > ul > li > .sf-with-ul {
  position: relative;
}
.sf-menu > li > ul > li > .sf-with-ul:before {
  position: absolute;
  left: 84%;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  font: 400 16px/16px "FontAwesome";
}
/**
* @subsection   RD Mobile Menu
*
* @description  mobile navbar
*
* @author       Evgeniy Gusarov (Diversant)
* @link         http://cms.devoffice.com/diversant/rd-navbar/
*/
.rd-mobilemenu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 9999999;
  text-align: left;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.rd-mobilemenu.active {
  right: 0;
}

.rd-mobilemenu_ul {
  position: fixed;
  top: -56px;
  left: 0;
  bottom: -56px;
  width: 240px;
  padding: 132px 0 76px;
  color: #fff;
  background: #cdcdcd;
  font-size: 14px;
  line-height: 20px;
  overflow: auto;
  -webkit-box-shadow: 5px 0 5px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 5px 0 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 5px 0 5px 0 rgba(0, 0, 0, 0.1);
  -moz-transform: translateX(-240px);
  -ms-transform: translateX(-240px);
  -o-transform: translateX(-240px);
  -webkit-transform: translateX(-240px);
  transform: translateX(-240px);
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -moz-transition: 0.3s cubic-bezier(0.55, 0, 0.1, 1);
  -o-transition: 0.3s cubic-bezier(0.55, 0, 0.1, 1);
  -webkit-transition: 0.3s cubic-bezier(0.55, 0, 0.1, 1);
  transition: 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}
.rd-mobilemenu.active .rd-mobilemenu_ul {
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.rd-mobilemenu_ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.rd-mobilemenu_ul li a {
  color: #000;
  font-weight: 400;
}
.rd-mobilemenu_ul ul li a {
  font-weight: 300;
}
.rd-mobilemenu_ul a {
  display: block;
  padding: 5px 25px 7px;
}
.rd-mobilemenu_ul a.active {
  background: #432500;
  color: #FFF;
}
.rd-mobilemenu_ul a:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #2d2d2d;
}
.rd-mobilemenu_ul a .rd-submenu-toggle {
  position: absolute;
  top: 50%;
  right: 11px;
  margin-top: -17.5px;
  width: 32px;
  height: 32px;
  font: 400 10px "FontAwesome";
  line-height: 32px;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  z-index: 1;
  background: rgba(0, 0, 0, 0.1);
}
.rd-mobilemenu_ul a .rd-submenu-toggle:after {
  content: '\f078';
}
.rd-mobilemenu_ul a .rd-submenu-toggle:hover {
  background: #FFF;
  color: #666;
}
.rd-mobilemenu_ul a.rd-with-ul {
  position: relative;
}
.rd-mobilemenu_ul a.rd-with-ul.active .rd-submenu-toggle {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.rd-mobilemenu_ul ul a {
  padding-left: 40px;
}
.rd-mobilemenu_ul ul ul a {
  padding-left: 60px;
}
.rd-mobilemenu_ul:after {
  content: '';
  display: block;
  height: 20px;
}

.rd-mobilepanel {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 46px;
  color: #000;
  /*
  -webkit-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
  */
  z-index: 99999991;
}

.rd-mobilepanel_title {
  position: fixed;
  top: 0px;
  left: 56px;
  right: 56px;
  color: #000;
  font-size: 24px;
  line-height: 48px;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: none;
}

.rd-mobilepanel_toggle {
  position: fixed;
  top: 0px;
  left: auto;
  right: 0;
  width: 48px;
  height: 48px;
}
.rd-mobilepanel_toggle span {
  position: relative;
  display: block;
  margin: auto;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.rd-mobilepanel_toggle span:after, .rd-mobilepanel_toggle span:before {
  content: "";
  position: absolute;
  left: 0;
  top: -8px;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.rd-mobilepanel_toggle span:after {
  top: 8px;
}
.rd-mobilepanel_toggle span:after, .rd-mobilepanel_toggle span:before, .rd-mobilepanel_toggle span {
  width: 24px;
  height: 4px;
  background-color: #000;
  backface-visibility: hidden;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.rd-mobilepanel_toggle span {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.rd-mobilepanel_toggle span:before, .rd-mobilepanel_toggle span:after {
  -moz-transform-origin: 1.71429px center;
  -ms-transform-origin: 1.71429px center;
  -o-transform-origin: 1.71429px center;
  -webkit-transform-origin: 1.71429px center;
  transform-origin: 1.71429px center;
  -moz-transform-origin: 1.71429px center;
  -ms-transform-origin: 1.71429px center;
  -o-transform-origin: 1.71429px center;
  -webkit-transform-origin: 1.71429px center;
  transform-origin: 1.71429px center;
}
.rd-mobilepanel_toggle.active span {
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
.rd-mobilepanel_toggle.active span:before, .rd-mobilepanel_toggle.active span:after {
  top: 0;
  width: 15px;
}
.rd-mobilepanel_toggle.active span:before {
  -webkit-transform: rotate3d(0, 0, 1, -40deg);
  transform: rotate3d(0, 0, 1, -40deg);
}
.rd-mobilepanel_toggle.active span:after {
  -webkit-transform: rotate3d(0, 0, 1, 40deg);
  transform: rotate3d(0, 0, 1, 40deg);
}
/*
@media (max-width: 768px) {
  .rd-mobilemenu, .rd-mobilepanel {
    display: block;
  }
}
*/
@media (max-width: 359px) {
  .rd-mobilepanel_title {
    font-size: 18px;
  }
}
/**
* @subsection   Stuck menu   
*/
.isStuck {
  display: none;
  padding: 0;
  background: #432500;
  z-index: 99;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
}
.isStuck .brand {
  display: block;
  background: #fff;
  width: 100%;
  padding: 15px 0;
}
.isStuck .brand img {
  width: 370px;
}
.isStuck .nav {
  margin-top: 6px;
}
@media (min-width: 992px) {
  .isStuck {
    padding-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .isStuck {
    display: none !important;
  }
}
/**
* @subsection   ToTop   
*/
.toTop {
  width: 40px;
  height: 40px;
  font-size: 34px;
  line-height: 34px;
  color: #333;
  background: none;
  position: fixed;
  right: 40px;
  bottom: 52px;
  display: none;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  z-index: 20;
}
.toTop:hover {
  color: #000;
  text-decoration: none;
}

.mobile .toTop,
.tablet .toTop {
  display: none !important;
}

/*==================  RD Parallax    ======================*/
.parallax {
  position: absolute;
  width: 100%;
  margin-top: 50px;
  overflow: hidden;
  color: #fff;
}

.parallax h1, .parallax h2, .parallax h3, .parallax h4, .parallax h5, .parallax h6,
.parallax .heading-1, .parallax .heading-2, .parallax .heading-3, .parallax .heading-4, .parallax .heading-5, .parallax .heading-6 {
  color: #000;
}
.parallax p {
	font-size: 25px;
	font-style: italic;
	font-weight: 400;
}
.parallax h6 {
	margin-top: 45px;
	font-size: 17px;
	font-style: italic;
	font-weight: 400;
	text-transform: none;
	color: #fff;
}
@media (max-width: 767px) {
	.parallax p {
		font-size: 22px;
	}
}
@media (max-width: 600px) {
	.parallax p {
		font-size: 20px;
	}
}
@media (max-width: 479px) {
	.parallax p {
		font-size: 18px;
	}
	.parallax h6 {
		font-size: 16px;
	}	
}
.parallax .btn-default {
  border-color: #8c5435;
}
.parallax_image, .parallax_pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-position: center center;
  will-change: transform;
}
.parallax_image {
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}
@media (max-width: 479px) {
	#parallax1 .parallax_image {
	    margin-left: -200px;
	}
	#parallax2 .parallax_image {
	    margin-right: -200px;
	}
}
@media (min-width: 768px) and (max-width: 768px) {
	#parallax1 .parallax_image {
	    right: -400px;
	}
	#parallax2 .parallax_image {
	    left: -500px;
	}
}
.parallax_pattern {
  background-repeat: repeat;
}
.parallax_cnt {
  position: relative;
}
.text-parallax {
	width: 50%;
	margin-left: 25%;	
}
@media (max-width: 600px) {
	.text-parallax {
		width: 70%;
		margin-left: 15%;	
	}
}
.icon-parallax {
	display: none;
	width: 75px;
	height: 75px;
	margin-top: -20px;
	margin-bottom: 30px;
}
@media (max-width: 479px) {
	.icon-parallax {
		display: inline-block;
	}
}
.cover {
	position: relative;
	margin-top: 360px;
}
.cover ul {
	width: 50%;
	margin-left: 25%;
}
.cover li {
	position: relative;
	width: 50%;
	background: #FFF;
	float: left;
}
.cover li .btn-cover {
	position: absolute;
	width: 186px;
	height: 28px;
	top: 50%;
	left: 50%;
	margin-top: -14px;
	margin-left: -93px;
	padding: 0 10px;
	line-height: 28px;
	color: #fff;
	font-weight: 500;
	text-align: center;
	text-transform: uppercase;
	background: rgba(0,0,0,0.8) url(/images/icon_download.png) no-repeat;
	background-position: 95% 50%; 
	background-size: 21px;
}
@media (max-width: 991px) {
	.cover {
		margin-top: 320px;
	}
}
@media (max-width: 767px) {
	.cover {
		margin-top: 310px;
	}
	.cover ul {
		width: auto;
	}
	.cover li {
		width: 186px;
	}
	.cover li .btn-cover {
		left: 0;
		margin-left: 0;
	}
}
@media (max-width: 600px) {
	.cover ul {
		margin-left: 15%;
	}
}
@media (max-width: 479px) {
	.cover {
		margin-top: 410px;
	}
	.cover ul {
		margin-left: 25%;
	}
	.cover ul li a {
		display: none;
	}
	.cover ul li a.active {
		display: block;
	}
}

/*  colorbox  */
#colorbox .inline-img {
	width: 50%;
	float: left;
}
#colorbox .inline-txt {
	width: 50%;
	max-width: 410px;
	padding: 20px 30px;
	float: right;
}
@media (max-width: 479px) {
	#colorbox .inline-img,
	#colorbox .inline-txt {
		width: 100%;
		max-width: 100%;
		float: none;
	}
}
#colorbox .inline-txt h4 {
	margin: 15px 0;
}
#colorbox .inline-txt p {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #eeefef;
}
#colorbox .inline-social {
	border-top: 1px solid #eeefef;
}
#colorbox .inline-social a:hover {
	opacity: 0.5;
}
#colorbox .inline-social .fa {
	display: inline-block;
	width: 20px;
	padding-right: 30px;
	color: #161616;
 	font: normal 20px 'FontAwesome';
 	line-height: 30px;
}
/*
* social icons
*/
.social-icons {
	text-align: center;	
}
.social-icons span {
	padding: 0 15px;
}
.social-icons a {
	opacity: 1.0
}
.social-icons a:hover {
	opacity: 0.5
}
.social-icons .fa {
	display: inline-block;
	padding: 0 8px;
	font-size: 35px;
	color: #fff;
}
/*
* @section HEADER
*/
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  background: #fff;
  z-index: 99;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
}
.home header {
  position: relative;
}
header #logo {
  display: none;
  position: absolute;
  z-index: 101;
  text-align: center;
}
header #logo .spot{
  visibility: hidden;
  margin-top: 50px;
  font-family: 'Princess Sofia', cursive;
  font-size: 54px;
  line-height: 66px;
  text-align: center;
}
@media (max-width: 768px) {
  /*
  header {
	position: relative;
	margin-bottom: 30px;
  }
  */
  header #logo {
    margin-top: 10vh;
	display: block;
  }
  header #logo .spot{
    visibility: visible;
	margin-top: 20px;
    font-size: 28px;
    line-height: 34px;
  }
  header #logo img {
    max-width: 90%;
  }	
  .home header {
    height: auto;
  }
  .home header #intro {
    height: 100vh;
  }
}

header .brand {
  width: 100%;
  margin: 10px 0 5px;
  background: #fff;
  text-align: center;
}
header .brand img {
  height: 260px;
}
@media (max-width: 1920px) {
	header .brand img {
	  height: 180px;
	}
}
@media (max-width: 480px) {
	header .brand img {
	  height: 120px;
	}
}
header nav {
	text-align: left;	
	position: absolute;
	bottom: 0;
}
header nav.lang {
	right: 0;
}
/*
* @section CONTENT
*/
main {
  margin-top: 195px;
  display: block;
  background: transparent;
  min-height: 600px;
}
@media (max-width: 768px) {
	main {
	    margin-top: 0;
		min-height: 300px;
	}
}
@media (max-width: 479px) {
	main {
	  padding-top: 0px;
	}
}

/*
* @section CONTACTS
*/
#contacts {
  position: relative;
  color: #fff;
  text-align: left;
  overflow: hidden;
  background: url("/images/bg.png") repeat;
}
#contacts .container {
	position: relative;
}
#contacts .bg-contacts-left {
  position:absolute;
  background-size: cover;
  width:50%;
  min-height: 100%;
  left:0;
  top:267px;
  z-index: 0;
}
#contacts .bg-contacts-left .bg-opacity {
	position: absolute;
	width: 100%;
	min-height: 100%;
}
@media (max-width: 768px) {
	#contacts .bg-contacts-left {
		width: 100%;
		min-height: 33%;
	}
}
#contacts .gmaps {
  height: 267px;
}
#contacts .gmaps a {
  display: block;
  height: 267px;
}
#contacts .well-lg {
  padding-top: 43px;
  padding-bottom: 72px;
}
#contacts .brand {
  margin: 30px 0 50px 0;
  max-width: 180px;
}
#contacts .note {
  margin-bottom: 50px;
  font-size: 18px;
  line-height: 30px;
}
#contacts .address li {
  padding: 10px 0;
}
#contacts .address li .fa {
  width: 35px;
  text-align: left;
  color: #fff;
  font-size: 24px;
  float: left;
}
#contacts .address li .telephone {
  font-size: 18px;
}
#contacts .colored-line {
  margin-left: 0;
  background: #fff;
}
#contacts a {
  color: #fff;
  font-weight: 700;
}
#contacts a:hover {
  color: #ccc;
}
/*
* @section CONTACTS
*/
footer {
  font-family: 'ChollaWide', sans-serif;
  font-size: 16px;
  color: #000 !important;
  line-height: 20px;
  text-align: center;
}
footer a {
  color: #000;
}
footer a:hover {
  color: #ccc;
  text-decoration: none;
}
footer h3 {
  margin-bottom: 15px;
  color: #000;
}
@media (max-width: 767px) {
	footer nav h3 {
	  margin-top: 35px;
	}
}
footer .credits {
  /*float:right;*/
}
footer .copyright {
	margin-top: 35px;
	font-size: 14px;
  	text-transform: none;	
	text-align: center;
}
footer nav {
  text-transform: uppercase;
}
footer nav li {
  display: inline-block;
  margin: 0;
  padding: 0 1.7%;
  list-style: none !important; 
  text-align: left;
}
footer nav li ul li {
  display: block;
  margin: 0;
  padding: 0;
}
footer nav li ul li:first-child {
  margin-top: 7px;
}
footer nav li ul li a {
  color: #ccc;
}
footer nav li ul li a:hover {
  color: #000;
}
@media (max-width: 1199px) {
	footer nav li {
	  padding: 0 1.5%;
	}
}
@media (max-width: 991px) {
	footer nav li {
	  padding: 0 0.7%;
	}
}
@media (max-width: 767px) {
	footer nav {
	  display: none;
	}	
	footer .contact-info .offset-8 {
		margin-top: 0;	
	}
}
footer .inline-list li + li {
  margin-left: 4px;
}
footer * + a[href^="mailto"] {
  margin-top: 41px;
}
@media (min-width: 1200px) {
  footer .inline-list li + li {
    margin-left: 10px;
  }
}

/* immagini titoli gallery */
#gallery .product .thumb img {
	object-fit: cover;
	min-height: 100%;
}

.title-gallery {
	line-height: 80px;
}
.title-gallery img {
	width: 108px;
	margin-right: 20px;
}
@media (max-width: 479px) {
  .title-gallery img {
    display: block;
	margin: 0 auto;
  }
}
.gallery-img {
	margin: 0 5%;
}
a.cover-gallery:hover img {
	opacity: 0.5;
}

/* gallery box */
.gallery {
	margin: 0 100px;
	overflow: hidden;
}
@media (min-width: 1981px) {
  .gallery {
	margin: 0;
  }
}
@media (max-width: 768px) {
  .gallery {
	margin: 0 50px;
  }
}
@media (max-width: 479px) {
  .gallery {
	margin: 0;
  }
}
.gallery ul li {
	float: left;
	width: 33.3%;
	height: 241px;
	overflow: hidden;
}
.gallery ul li img {
	min-width: 100%;
	min-height: 100%;
}

/* gallery foto */
#gallery80 a.thumb {
	width: 100%;
	height: 300px;
}
#gallery80 a.thumb img{
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
}
@media (max-width: 1199px) {
	#gallery80 a.thumb {
		height: 220px;
	}
}

/* gmaps */
.gmaps {
	margin-top: 100px;
}
@media (max-width: 767px) {
	.gmaps {
		margin-top: -40px;
	}
}
.gmaps a {
	overflow: hidden;
	display: inline-block
}
.gmaps a:hover img {
	border: 1px solid #333;
	opacity: 0.7;	
}
.gmaps span {
	display: block;
	margin-top: 30px;	
}
@media (max-width: 767px) {
	.gmaps span {
		margin-bottom: 60px;	
	}
}

/*  varie  */
table td {
	border: 1px solid #666;
	padding: 2px 6px;	
}

.margin-left-less-30-sm {
	margin-left: -30px;	
}
@media (max-width: 767px) {
	.margin-left-less-30-sm {
		margin-left: 0px;
	}
}

/* credits */
#credits {
	padding: 20px;
}
#credits .text-wrap {
	float: left;
}
#credits p {
	font-size: 20px;
	margin-top: 135px;
	text-align: left;
}
@media (max-width: 991px) {
	#credits .text-wrap {
		float: none;
		margin: 0 auto;
		text-align: center;
	}
	#credits p {
		margin-top: 0px;
		margin-bottom: 30px;
		text-align: center;
	}
}

.pagetitle {
	margin-bottom: 35px;
}

/* VIDEO EMBED */
.video {
	position: relative;
	background: #fff;
	margin: 3px;
	overflow: hidden;
}
.video .txt-video {
	padding: 20px;
	padding-top: 30px;
}
.video .txt-video h2 {
	text-transform: none;
}
.video .rwd-video {
	height: 0;
	padding-bottom: 56.25%;
	position: relative;
    -webkit-filter:brightness(108.5%); /* Chrome 19+ & Safari 6+ */
}
.video .rwd-video iframe,
.video .rwd-video object,
.video .rwd-video embed {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
#background-video {
	position: relative;
	padding: 0px;
	margin: 0px;
}
.vidwrap {
	position: absolute;
	background: url('../images/btn-play-video.png') no-repeat center center;
	background-size: contain;
    overflow: hidden;
    background-repeat: no-repeat;
    width: 230px;
    height: 230px;
	top: 50%;
	left: 50%;
	margin-top: -115px;
	margin-left: -115px;
	cursor: pointer;
	z-index: 10;
}
.video .rwd-video #play {
    position: absolute;
    width: 280px;
    height: 280px;
    left: 50%;
    top: 50%;
    margin-left: -140px;
    margin-top: -140px;
    background: url("/images/btn-play-video2.png") no-repeat;
    background-size: 100%;
	background-position: 50%;
    z-index: 1;
}
.video .rwd-video video {
	width: 100%;
}

/* DADO */
#dado h2 {
	margin-bottom: 20px;	
}
#dado strong {
	font-weight: 700;
}
#dado .dado-intro {
	color: #0032a3;
	font-size: 24px;
	line-height: 30px;
	font-weight: 400;
}
#dado .btn-arrow {
    color: #0032a3;
}
#dado .doc {
	position: relative;	
	margin-top: 40px;
	bottom: 0;
}
#dado .privacy {
	margin-top: 10px !important;
}
#dado .video .rwd-video video {
	border: 1px solid #191919	
}
#dado section.bg-secondary {
	width: 50%;
	float: right;
}
#dado section.bg-secondary .container {
	width: auto;
}
#dado section.bg-secondary .container .box-form-cta {
	padding-left: 25px;
	padding-right: 25px;
}
#dado section.bg-secondary .container .box-form-cta h2 {
	color: #0032a3;
}
#dado section.bg-secondary .container .box-form-cta .btn-cta {
	background: #0032a3;
}
#dado #awards-box .awards img {
	display: inline-block;
  	vertical-align: middle;
  	line-height: normal;
}
#dado #awards-box .awards br {
	display: none;
}
@media (max-width: 1199px) {
	#dado .icona img {
		margin-top: 50px;
	}
	#dado .video .rwd-video #play {
		background-size: 75%;
	}
}
@media (max-width: 991px) {
	#dado .icona img {
		margin-top: 100px;
	}
	#dado section.bg-secondary {
		width: 100%;
		margin-top: 50px;
	}
	#dado .video .rwd-video #play {
		background-size: 50%;
	}
	#dado #awards-box {
		display: block !important;
	}
}
@media (max-width: 767px) {
	#dado .icona img {
		margin-top: 20px;
		width: 70%;
	}
}

/* OLIO */
#olio h1 {
	padding-bottom: 0;	
}
#olio h2 {
	margin-bottom: 20px;
	color: #206835;	
}
#olio strong {
	font-weight: 700;
}
#olio .olio-intro {
	color: #231f20;
	font-size: 20px;
	line-height: 30px;
	font-weight: 400;
}
#olio .olio-intro img {
	max-width: 250px;
}
#olio .olio-desc img.border {
	border: 1px solid #000;
}
#olio .olio-desc .col-md-8 {
	padding: 30px 250px;
}
#olio .btn-arrow {
    color: #206835;
}
#olio .doc {
	position: relative;	
	margin-top: 40px;
	bottom: 0;
}
@media (max-width: 1439px) {
	#olio .olio-desc .col-md-8 {
		padding: 30px 180px;
	}
}
@media (max-width: 1199px) {
	#olio .olio-desc .col-md-8 {
		padding: 0 50px;
	}
}
@media (max-width: 991px) {
	#olio .olio-desc .col-md-8 {
		padding: 0 15px;
	}
}
@media (max-width: 767px) {
	#olio .olio-desc .col-md-8 {
		padding: 0;
		margin-bottom: 40px;
	}
}


/* varie */
.info-text {
	float: right;
	margin-top: -20px;
}
.info-text a {
	font-weight: 700;
}
@media (max-width: 991px) {
	.info-text {
		float: none;
		margin-top: 10px;
	}
}
.shadow {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);	
}
.border-left {
	border-left: 3px solid #d8d2c9;	
}
.border-left-white {
	border-left: 3px solid #fff;	
}
@media (max-width: 767px) {
	.border-left {
		border-left: 0;	
	}
	.border-left-white {
		border-left: 0;	
	}
	.col-xs-12 {
		text-align: center;	
	}
	.submit-wrap {
		text-align: center;
	}
}


/*  bxslider  */
.bxslider li {
	margin: 0;
	padding: 0;	
}
@media (max-width: 768px) {
	.bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto {
		bottom: 5px;
	}
}

/* owl-carousel */
.owl-carousel .item {
	overflow: hidden;
	/*margin: 3px;*/
	background-size: cover;
	background-position: center center;
}
.owl-carousel .item .block-1 {
	min-width: 50%;
	margin: 25%;
	padding: 15px;
	display: inline-block;
	text-align: center;
	background: rgba(255,255,255,0.9);
}
.owl-carousel .item .block-1 h3 {
	min-height: 70px;
}
.owl-carousel .item .block-1 .btn-arrow {
	margin-bottom: 0;
}
.owl-carousel .item .btn-arrow::before {
    right: 40%;
}
.owl-carousel .owl-prev,
.owl-carousel .owl-next {
	position: absolute;
	top: 40%;
	z-index: 1;
	width: 60px;
	height: 60px;
	text-indent: -9999px;
}
.owl-carousel .owl-prev {
	left: 0;
	background: url("/images/arrow_left.png") no-repeat;
}
.owl-carousel .owl-next {
	right: 0;
	background: url("/images/arrow_right.png") no-repeat;
}
.owl-carousel .cta-icon {
	display: inline-block !important;
	width: auto;
	max-width: 180px;	
}
#owl-three.owl-carousel .item  {
	padding: 0 100px;
}
#owl-three.owl-carousel .item .cta-txt {
	min-height: 160px;
}
#owl-four.owl-carousel .item  {
	padding: 20px 20px 0 20px;
}
#owl-four.owl-carousel .cta-icon  {
	max-width: 120px;
}
#owl-four.owl-carousel h4  {
	/*min-height: 65px;*/
	padding-top: 15px;
}
#owl-four.owl-carousel .btn-cta  {
	width: 100%;
}
#owl-four.owl-carousel .item .cta-txt {
	min-height: 160px;
}
.home .cta-home .cta-txt2 {
	position: absolute;
	width: 100%;
	background-color: rgba(0,0,0,0.85);
}
.home .cta-home .cta-txt2 h2 {
	margin-bottom: 0;
	padding-bottom: 18px;
}
@media (max-width: 1439px) {
	#owl-one.owl-carousel .item .block-1 h3 {
		min-height: 90px;
	}
}
@media (max-width: 1199px) {
	#owl-three.owl-carousel .item  {
		padding: 0 70px;
	}
	.owl-carousel .item .block-1 h3 {
		font-size: 18px;
		line-height: 18px;
	}
	#owl-one.owl-carousel .item .block-1 h3 {
		min-height: 70px;
	}
}
@media (max-width: 991px) {
	#owl-three.owl-carousel .item  {
		padding: 0 30px;
	}
	/*	
	#owl-four.owl-carousel h4  {
		min-height: 85px;
	}
	*/
}
@media (max-width: 767px) {
	#owl-three.owl-carousel  {
		margin-top: 70px;
	}
	#owl-three.owl-carousel .item  {
		padding: 0 50px;
	}
	.owl-carousel .item .block-1 h3 {
		font-size: 20px;
		line-height: 20px;
	}
	.home .cta-home .cta-txt2 {
		position: relative;	
	}
}
@media (max-width: 480px) {
	#owl-three.owl-carousel .item  {
		padding: 0 20px;
	}
	.home .cta-home .cta-txt2 h2 {
		font-size: 20px;	
	}
}

/*  Google Maps  */
.map-responsive{
    overflow:hidden;
    padding-bottom:100%;
    position:relative;
    height:0;
}
.map-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}
@media only screen and (min-width: 480px){
	#contatti .no-padding {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

/*  contatti  */
.address {
	padding-top: 80px;
	padding-left: 20%;	
}
.address p {
	margin: 0;
}
.address a:hover {
	color: #e08431;
}
@media (max-width: 991px){
	.address {
		padding-left: 0;	
	}
}
@media (max-width: 767px){
	.company-info {
		display: none;
	}
}

/*  popup entry  */
#wineuser {
	display: none;
	padding: 20px;
	text-align: center;
}
#wineuser #user-form  {
	text-align: center;
}
#wineuser #user-form label {
	display: inline-block;
	width: auto;
	margin: 10px 0;
	padding-right:10px;
}
#wineuser #user-form label.radio input {
	display: inline-block;
	width:auto;
	height: 24px;
	margin-right: 5px;
}

/* RD Google Map */
.rd-google-map {
  position: relative;
  color: #333;
  transition: .8s; }
  @media (min-width: 992px) {
    .rd-google-map {
      margin-top: 0px;
      position: relative; } }
  .rd-google-map__model {
    height: 50vh; }
    .rd-google-map__model img {
      max-width: 100px;}
	/*
    @media (min-width: 480px) {
      .rd-google-map__model {
        height: 300px; } }
    @media (min-width: 768px) {
      .rd-google-map__model {
        height: 300px; } }
    @media (min-width: 992px) {
      .rd-google-map__model {
        height: 435px; } }
    @media (min-width: 1200px) {
      .rd-google-map__model {
        height: 580px; } }
	*/
  .rd-google-map__locations {
    display: none; }
  .rd-google-map:before {
    content: '';
    /*background-color: rgba(25, 33, 49, 0.7);*/
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 1;
    visibility: visible;
    transition: .8s; }
  .rd-google-map:hover:before {
    opacity: 0;
    visibility: hidden;
    transition: .8s; }
  .rd-google-map .iw-content {
    background: transparent;
    text-align: center;
    font-size: 14px;
    line-height: 22px;
    font-family: "Lato", sans-serif; }
    @media (min-width: 992px) {
      .rd-google-map .iw-content {
        font-size: 14px;
        line-height: 16px; } }

@media (max-width: 991px) {
  .rd-google-map-1 {
    margin-top: 0;
    position: relative; } }

.rd-google-map .logo-marker {
	max-width: 100px;
	margin: 10px 0;
}
@media (max-width: 768px) {
	.rd-google-map .logo-marker {
		display: none;
	}	
}
@media (max-width: 767px) {
	.rd-google-map-1 {
    	margin-top: 50px;
	}
}

/* visore NOI */
#noi .visore-text {
	padding: 9% 0;
}
@media (max-width: 1439px) {
	#noi .visore-text {
		padding: 6% 0;
	}
}
@media (max-width: 1199px) {
	#noi .visore-text {
		padding: 3% 0;
	}
}
@media (max-width: 991px) {
	#noi .visore-text {
		padding: 0;
	}
}

/*  virtual tour  */
iframe.virtualtour {
    height: 56.25vw;
}

/*  call now  */
a.callnow {
	display: none;
	margin: 0 auto;
	margin-top: 170px;
	margin-bottom: -25px;
	width: 180px;
	height: 40px;	
	background: #e08431;
	background-image: url("/images/call-now.png");
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 36px;
	padding: 4px 15px 5px 45px;
	border: 2px solid #e08431;
	font-family: 'ChollaWide', sans-serif;
	font-size: bold;
	text-transform: uppercase;
	text-align: left;
	color: #fff;
	line-height: 16px;
}
a.callnow:hover {
	background: #000;
	background-image: url("/images/call-now_bk.png");
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 36px;
	border: 2px solid #000;
}
a.callnow.out {
	position: fixed;
	top: 10px;
	right: -140px;
	z-index: 2;	
}
.home a.callnow {
	top: 120px;
	margin-top: 50px;
	margin-bottom: -40px;
}
@media (max-width: 767px) {
	a.callnow {
		display: block;
	}
}

/*  world map  */
#worldmap {
	text-align: center;
}
#worldmap .continent {
	display: inline-block;
	padding: 0 20px;
}
#worldmap ul {
	margin-bottom: 30px;
}
#worldmap ul li {
	list-style: none;
	margin-left: 0px;
}
@media (max-width: 767px) {
	#worldmap .continent {
		width: 50%;
		display: block;
		float: left;
	}
}

/* moduli form cta */
.box-form-cta {
	max-width: 620px;
	margin:0 auto;
	padding-top: 50px;
	padding-bottom: 20px;
}
.box-form-cta label {
    height: 35px;
    margin: 10px 0;
}
.box-form-cta label.textarea {
    height: 100px;
}
.box-form-cta label.privacy,
.box-form-cta label.newsletter {
    margin: 3px 0;
}
.box-form-cta label + label {
    margin-left: 0 !important;
}
.box-form-cta label:first-child {
    margin-top: 10px;
}
.bg-secondary .box-form-cta input,
.bg-secondary .box-form-cta select,
.bg-secondary .box-form-cta textarea {
  background: #fff !important;
}
/* form aperto in colorbox */
body.popup {
	background: #fff !important;	
	padding: 0 15px;
}
body.popup .box-form-cta {
	padding-top:20px;
	padding-bottom: 0;
}
body.popup .bg-secondary {
	background: none
}
body.popup .bg-secondary .box-form-cta input,
body.popup .bg-secondary .box-form-cta select,
body.popup .bg-secondary .box-form-cta textarea {
  background: #F3F2F1 !important;
}
/* banner cantina homepage */
#banner-cantina {
	padding-bottom: 30px;
}
#banner-cantina .visore-img img {
	min-height: 110px;
	object-fit: cover;
}
#banner-cantina .visore-text {
	position: absolute;
	margin: 0;
	padding: 5% 10%;
	text-align: left !important;	
}
#banner-cantina .visore-text {
	position: absolute;
	margin: 0;
	padding: 7% 10%;
	text-align: left !important;	
}
#banner-cantina .visore-text p {
	margin-bottom: 0;
}
#banner-cantina .visore-text h2,
#banner-cantina .visore-text h3 {
	font-family: 'Lato', sans-serif;
	color: #fff; 
	text-transform: none;
}
#banner-cantina .visore-text h2{
	margin-bottom: 20px;
	font-size: 46px;
	font-weight: 400;
}
#banner-cantina .visore-text h3 {
	margin-top: 0;
	font-size: 36px;
	font-weight: 300;
}
#banner-cantina .visore-text .btn.btn-arrow {
	padding: 10px 25px 8px 25px;
	background-color: #322e2e;
	color: #fff;
}
#banner-cantina .visore-text .btn.btn-arrow:hover {
	background-color: #111;
	color: #e08431;
}
#banner-cantina .visore-text .btn.btn-arrow:before {
	display: none;
}
@media (max-width: 1439px) {
	#banner-cantina .visore-text h2{
		margin-bottom: 15px;
		font-size: 40px;
	}
	#banner-cantina .visore-text h3 {
		font-size: 30px;
	}
	footer nav li {
	  padding: 0 1%;
	}
}
@media (max-width: 1199px) {
	#banner-cantina .visore-text {
		padding: 5% 10%;
	}
	#banner-cantina .visore-text h2{
		margin-bottom: 10px;
		font-size: 36px;
	}
	#banner-cantina .visore-text h3 {
		font-size: 26px;
	}
	footer nav li {
	  padding: 0 0.4%;
	  margin-bottom: 20px;
	}
}
@media (max-width: 991px) {
	#banner-cantina .visore-text {
		padding: 4% 10%;
	}
	#banner-cantina .visore-text h2{
		font-size: 30px;
		margin-bottom: 0;
	}
	#banner-cantina .visore-text h3 {
		font-size: 20px;
	}
	#banner-cantina .visore-text .btn.btn-arrow {
		margin: 20px 0;
	}
}
@media (max-width: 767px) {
	#banner-cantina {
		padding-bottom: 0;
	}
	#banner-cantina .visore-text {
		padding: 2% 10%;
	}
	#banner-cantina .visore-text .btn.btn-arrow {
		margin: 10px 0;
	}
}
@media (max-width: 480px) {
	#banner-cantina .visore-text {
		padding: 1% 10%;
	}
	#banner-cantina .visore-text h2{
		margin-top: 5px;
		font-size: 20px;
	}
	#banner-cantina .visore-text h3 {
		margin-top: -5px;
		font-size: 15px;
	}
	#banner-cantina .visore-text .btn.btn-arrow {
		margin: 5px 0;
		padding: 6px 20px 4px 20px;
	}
}

/* pagina cantina */
.icona-cantina {
	display: inline-block;
	width: 	18.65%;
	border: 1px solid #000;
	padding: 3%;
	margin-left: 1%;
	margin-top: 15px; 
	text-align: center;
}
.icona-cantina:first-of-type {
	margin-left: 0;
}
.icona-cantina img {
	max-width: 100px;
}
.icona-cantina p {
	margin-bottom: 0;
}
#gallery-experience {
	margin: 60px 0 30px;
}
#gallery-experience .owl-dots.disabled {
	display: block;	
}
.box-experience {
	margin-bottom: 70px;	
}
.text-experience {
	position: relative;
	margin: 0 10%;
	margin-top: -25%;
	padding: 45px;
	text-align: left;
	background-color: #f7f7f7;
	box-shadow: 1px 1px 20px rgba(0,0,0,0.16);
	z-index: 1;
}
.text-experience h3 {
	margin-bottom: 25px;
	text-transform: uppercase;
	line-height: 30px;
}
.text-experience .icon {
	width: 30px;
	height: 25px;
	padding-right: 5px;
}
.text-experience .btn {
	margin: 30px 0 0;
	width: 100%;
	max-width: 350px;
	padding: 10px 0 8px;
	background:	#322e2e;
	color: #fff;
	border: 0;
	text-transform: uppercase;
	font-size: 24px;
	border-radius: 0;
	text-align: center;
}
.text-experience .btn:hover {
	background:	#e08431;
	color: #f7f7f7;
}
.text-experience .share-experience {
	padding: 38px 0 0 40px;
	display: inline-block;
}
.text-experience .share-experience i {
	font-size: 24px;
	padding: 0 5px;
}
.gift-experience {
	position: relative;
	padding: 40px 0 20px;
}
.gift-experience .btn {
	position: absolute;
	top: 50%;
	left: 50%;
	min-height: 60px;
	width: 450px;
	margin-top: -30px;
	margin-left: -225px;
	padding: 20px 0;
	background:	#c11414;
	color: #fff;
	border: 0;
	text-transform: uppercase;
	font-size: 24px;
	border-radius: 0;
	text-align: center;
	box-shadow: 1px 1px 20px rgba(0,0,0,0.16);
}
.gift-experience .btn:hover {
	background:	#880203;
	color: #f7f7f7;
}
@media (max-width: 991px) {
	.icona-cantina i {
		font-size: 42px;
		line-height: 42px;
		padding-bottom: 7px;
	}
	.icona-cantina span {
		display: block;
		font-size: 14px;
		line-height: 16px;
	}
}
@media (max-width: 480px) {
	.icona-cantina {
		width: 	31.6%;
	}
	.text-experience {
		margin: 0 15px;
		margin-top: -30%;
		padding: 20px;
	}
	.text-experience .share-experience {
		padding: 0;
		margin: 30px auto;
		text-align: center;
		display: block;
	}
	.text-experience h3 span.divider {
		display: none;
	}
	.text-experience h3 span {
		display: block;
	}
	.gift-experience .btn {
		position: absolute;
		top: 50%;
		left: 0;
		height: auto;
		width: 80%;
		padding: 15px;
		margin-top: -30px;
		margin-left: 10%;
	}
	.gift-experience img {
		height: 200px;
		object-fit: cover;
	}
}

/* pagina NOI */
figure.image-captioned {
  position:relative;
  cursor: pointer;
}
figure.image-captioned .static {
  position:absolute;
  background: white;
}
figure.image-captioned .static:hover {
  opacity:0;
}

/* eBike */
.mappa-ebike {
	height: auto;
}
@media (max-width: 767px) {
	.mappa-ebike {
		height: 360px;
		margin-top: 20px;
	}
}


