﻿@charset "utf-8";
/* CSS Document */
/*--Import Global CSS--*/
@import url('global.css');
@import url('https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i,900,900i');
body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}
body.mobile-menu-active {
  overflow: hidden !important;
}
.header {
  padding: 10px 0;
  min-height: 90px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
}
.hero {
  background-color: #a91720;
  background-color: #851316;
  /*background-color: #333938;*/
  min-height: 100vh;
}
.hero-bg {
  /*width: calc(((100vw - 1170px)/2) + 1170px / 12 * 8);*/
  width: 50%;
  background: url(../images/hero-bg.jpg) center center no-repeat;
  background-size: cover;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.hero .container {
  position: relative;
  z-index: 9;
}
.logo {
  transform: translateX(75%);
}
.logo img {
  max-width: 630px;
  max-height: 60vh;
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.5));
}
.address-block {
  padding: 40px 0;
}
.address-block h6 {
  color: #fff;
}
.address-block:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 75%;
  height: 2px;
  background-color: #fff;
}
.menu ul li {
  float: left;
  margin-right: 40px;
}
.menu ul li:last-child {
  margin-right: 0;
}
.menu ul li a {
  display: block;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  padding: 5px 0;
  line-height: 30px;
  position: relative;
}
.menu ul li a:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  content: "";
}
.menu ul li a:hover {
  color: #cabc12;
}
.menu ul li a:hover:after {
  background-color: #cabc12;
}
.nav-icon {
  width: 36px;
  height: 36px;
  background-color: #cabc12;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 9999;
}
.hamburger {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60%;
  height: 2px;
  background: rgba(255, 255, 255, 1);
  transform: translate(-50%, -50%);
  transition: .5s;
}
.hamburger:before, .hamburger:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: .5s;
}
.hamburger:before {
  top: -7px;
}
.hamburger:after {
  top: 7px;
}
.nav-icon.nav-icon-active .hamburger {
  background: rgba(255, 255, 255, 0);
}
.nav-icon.nav-icon-active .hamburger:before {
  top: 0;
  transform: rotate(45deg);
}
.nav-icon.nav-icon-active .hamburger:after {
  top: 0;
  transform: rotate(135deg);
}
.section {
  padding-top: 130px;
  padding-bottom: 130px;
}
.program {
  background: url(../images/bg-1.jpg) center center no-repeat #374140;
  background-size: cover;
  min-height: 750px;
  color: #fff;
}
.headding {
  margin-bottom: 60px;
}
.article p {
  margin-bottom: 10px;
}
.article p:last-child {
  margin-bottom: 0;
}
.section-block {
  margin-bottom: 100px;
}
.section-block:last-child {
  margin-bottom: 0;
}
.headding-line {
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.producer p {
  font-size: 16px;
}
.locations {
  margin: -50px 0;
}
.location-block {
  padding: 50px 0;
  border-bottom: 3px solid #dcdcdc;
}
.location-block:last-child {
  border: 0;
}
.location-contents a {
  color: #212529;
}
.location-contents a:hover {
  color: #212529;
  text-decoration: underline;
}
.logos {
  margin: -10px;
  text-align: right;
}
.logo-item {
  padding: 10px;
  vertical-align: top;
}
.button-group .btn {
  margin-right: 30px;
}
.button-group .btn:last-child {
  margin-right: 0;
}
.form-rows {
  margin-bottom: 15px;
}
.form-rows:last-child {
  margin-bottom: 0;
}
.required {
  position: relative;
}
.required:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "*";
  color: #a91720;
  font-size: 16px;
}
.radio-button {
  display: none;
}
.radio-button:checked + label {
  background-color: #a91720 !important;
  color: #fff !important;
}
.program .btn:hover {
  background-color: #cabc12 !important;
  border-color: #cabc12 !important;
  color: #212529 !important;
}
.slogan {
  position: absolute;
  top: 40px;
  color: #fff;
  text-align: left;
}
.slogan h6 {
  font-size: 25px;
}
.galleryColumn {
  margin-top: 30px;
  max-height: 180px;
  overflow: hidden;
}
.hero h6 span {
  display: block;
  max-width: max-content;
  padding: 5px 10px;
  background-color: #374140;
  color: #e6d61b;
  margin-bottom: 5px;
}
@media(max-width:1950px) {
  .logo img {
    max-width: 550px;
  }
}
@media(max-width:1199px) {
  .container {
    max-width: 100%;
  }
  .hero-bg {
    width: calc(100vw / 12 * 8);
  }
  .logo img {
    max-width: 450px;
  }
  .address-block {
    padding: 30px 0;
    margin-left: 30px;
    margin-right: 30px;
  }
  .menu ul li {
    margin-right: 30px;
  }
  .headding {
    margin-bottom: 50px;
  }
  .program {
    min-height: 650px;
  }
  .section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .section-block {
    margin-bottom: 80px;
  }
  .required:before {
    left: 5px;
  }
  .slogan {
    margin-left: 30px;
  }
}
@media(max-width:991px) {
  .hero-bg {
    width: 50vw;
  }
  .logo img {
    max-width: 350px;
  }
  .header {
    min-height: 70px;
  }
  .menu ul li {
    margin-right: 25px;
  }
  .menu ul li a {
    font-size: 15px;
  }
  .headding {
    margin-bottom: 40px;
  }
  .program {
    min-height: 600px;
  }
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .section-block {
    margin-bottom: 60px;
  }
  .locations {
    margin: 0 -15px;
  }
  .location-block {
    padding: 0 15px;
    border: 0;
  }
  .location-block {
    text-align: center;
  }
  .logos {
    margin: -5px;
    text-align: center;
  }
  .logo-item {
    padding: 5px;
  }
  .location-block {
    border-right: 2px solid #dcdcdc;
  }
}
@media(min-width:768px) {
  .nav-icon {
    display: none !important;
  }
  .menu {
    display: block !important;
  }
  /*.program .btn{position:absolute; left:15px; bottom:0; transform:translateY(50%);}*/
  .btnAziende {
    display: none !important;
  }
}
@media(max-width:767px) {
  .btnAziende {
    display: inherit !important;
    margin-top: 40px;
  }
  .address-block {
    padding: 15px 0;
    margin-left: 15px;
    margin-right: 15px;
  }
  .slogan {
    padding-top: 50px;
    margin-left: 15px;
  }
  .logo img {
    max-width: 250px;
  }
  .header {
    min-height: 60px;
    background-color: #a91720;
  }
  .menu ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .menu ul li a {
    font-size: 12px;
  }
  .menu ul li a::after {
    display: none;
  }
  .headding {
    margin-bottom: 30px;
  }
  .program {
    min-height: auto;
  }
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .article p {
    margin-bottom: 8px;
  }
  .program .btn {
    margin-top: 25px;
  }
  .section-block {
    margin-bottom: 50px;
  }
  .headding-line-wrap {
    display: none;
  }
  .button-group .btn {
    margin-right: 15px;
  }
  .required:before {
    left: 3px;
  }
}
@media(max-width:640px) {
  .locations {
    margin: -15px;
    display: block !important;
  }
  .location-block {
    padding: 15px;
    border-bottom: 2px solid #dcdcdc;
  }
  .location-block {
    text-align: center;
  }
  .button-group.d-flex {
    flex-wrap: wrap;
  }
  .button-group .btn {
    width: 100%;
    margin: 0;
  }
  .button-group .btn:last-of-type {
    margin-top: 15px;
  }
}
@media(max-width:575px) {
  .logo img {
    max-width: 280px;
  }
  .hero-bg {
    width: 100vw;
    height: 100vh;
  }
  .logo {
    transform: translate(-50%, -50%);
    position: absolute;
    left: 50%;
    top: 85%;
  }
  .address-block {
    text-align: center;
    width: 100%;
    margin: 0;
  }
  .address-block:before {
    left: 50%;
    height: 1px;
    transform: translateX(-50%);
    display: none;
  }
  .headding {
    margin-bottom: 25px;
  }
  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .section-block {
    margin-bottom: 40px;
  }
  .slogan {
    position: absolute;
    bottom: 90px;
    top: auto;
    color: #fff;
    text-align: center;
    width: 100%;
    margin-left: 0px;
  }
}
@media(max-width:480px) {
  .headding {
    margin-bottom: 20px;
  }
  .section-block {
    margin-bottom: 30px;
  }
  .producers .row.rows .columns {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .producer {
    text-align: center;
  }
}
/**NEW**/
.hero-bg {
  background: url("/img2026/bgred.jpg");
  background-size: cover;
  background-position: right;
}
.menu ul li a:hover {
  color: #fff;
}
.menu ul li a:hover:after {
  background-color: #fff;
}
section#intro {
  background: url("/img2026/bgsectionbw.jpg") center center no-repeat #212529;
  background-size: cover;
}
.btn {
  background-color: #212529;
  border: 1px solid transparent;
  border-radius: 5px;
  box-shadow: rgba(255, 255, 255, .4) 0 1px 0 0 inset;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  margin: 0;
  outline: none;
  padding: 10px 25px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  white-space: nowrap;
}
.btn:hover {
  background-color: #212529;
  color: #fff;
}
.btn.btn-red {
  background-color: #a91720 !important;
}
.btn.btn-red:hover {
  background-color: #a91720 !important;
  color: #fff;
  border-color: #a91720 !important;
  color: #fff !important;
}
.form-control {
  border: 1px solid #ddd;
  box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  background-color: #fff;
}
.form-control:focus {
  border: 1px solid #a91720;
  background-color: #fff;
}
.item {
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, .08);
  background-color: rgba(255, 255, 255, .92);
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}
.item:not(:last-child) {
  margin-bottom: 30px;
}
@media(max-width:767px) {
  .item {
    padding: 20px;
  }
}
input:focus::placeholder {
  opacity: 0;
}
/**Box**/
.audience-box {
  background-color: rgba(0, 0, 0, .06);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 15px;
  padding: 25px 30px;
  margin-bottom: 25px;
  transition: background-color .3s, border-color .3s;
}
.audience-box:last-child {
  margin-bottom: 0;
}
.audience-box p {
  margin-bottom: 12px;
}
.audience-box p:last-child {
  margin-bottom: 0;
}
.audience-box a.btn {
  margin-top: 10px;
}
.audience-box a:not(.btn) {
  color: #fff;
  text-decoration: underline;
}
.audience-box a:not(.btn):hover {
  color: #cabc12;
}
.audience-box-compact {
  padding: 20px 25px;
}
@media(max-width:767px) {
  .audience-box {
    padding: 20px;
  }
}
/**Form: spaziatura leggermente maggiore tra le righe**/
.form-rows {
  margin-bottom: 20px;
}
/**Programma - lista orari (schedule)**/
.schedule-list {
  margin-top: 5px;
}
.schedule-item {
  display: flex;
  align-items: stretch;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}
.schedule-item:first-child {
  padding-top: 0;
}
.schedule-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.schedule-time {
  flex: 0 0 104px;
  width: 104px;
  position: relative;
  padding-right: 20px;
  margin-right: 4px;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  letter-spacing: .3px;
}
.schedule-time::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  background-color: rgba(255, 255, 255, .45);
}
.schedule-desc {
  flex: 1 1 auto;
  color: #fff;
  padding-top: 6px;
}
.schedule-desc em {
  font-style: normal;
}
@media(max-width:575px) {
  /*.schedule-item {
    flex-direction: column;
    gap: 10px;
  }
  .schedule-time {
    align-self: flex-start;
    padding-right: 0;
    padding-bottom: 8px;
  }
  .schedule-time::after {
    top: auto;
    bottom: 0;
    right: auto;
    left: 0;
    width: 28px;
    height: 1px;
  }
  .schedule-desc {
    padding-top: 0;
  }*/
}
/**Produttori - card/chip**/
.producers .row.rows {
  margin: -8px;
}
.producers .row.rows .columns {
  padding: 8px;
}
.producers .producer {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, .03);
  padding: 16px 18px;
}
.producers .producer h7 {
  display: block;
  font-size: 15px;
  letter-spacing: .3px;
  line-height: 1.3;
  text-transform: capitalize;
}
/**Programma - sfondo a gradiente (dal rosso della sezione al rosso della hero)**/
#programma {
  background: linear-gradient(135deg, #a91720 0%, #851316 100%) !important;
}