@charset "UTF-8";

/* COLOR PALETTE
----------------------------------------------------------------------- */
/*
	#FAA634 = arancio
	#607A9D = blu
	#343434 = darker
	#646464 = dark
	#999999 = light
	#F2F2F2 = lighter
*/

/* GLOBAL
----------------------------------------------------------------------- */
@font-face {
  font-family: "Roboto Slab";
  src: url(../fonts/RobotoSlab-Thin.ttf);
  font-weight: 100;
}
@font-face {
  font-family: "Roboto Slab";
  src: url(../fonts/RobotoSlab-Light.ttf);
  font-weight: 300;
}
@font-face {
  font-family: "Roboto Slab";
  src: url(../fonts/RobotoSlab-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: "Roboto Slab";
  src: url(../fonts/RobotoSlab-Bold.ttf);
  font-weight: 700;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape while allowing user zoom */
  font-size: 100%;
}

body {
  font-family: "Roboto Slab", serif;
  font-size: 1rem;
  background: #fff;
  line-height: 1.8;
  font-weight: 400;
  color: #646464;
}

fieldset {
  border: 0;
}

:focus,
:active {
  outline: 0;
}

a,
a:active,
a:focus {
  outline: none;
  color: inherit;
  text-decoration: none;
}

a,
img {
  border: none;
  outline: none;
}

a[href="#"],
a[href=""] {
  cursor: default !important;
}

.clearfix::after,
.img_fluid:after {
  content: "";
  display: table;
  clear: both;
}

.no_list {
  padding: 0;
}

.no_list li {
  list-style: none;
  display: inline-block;
}

.img_fluid {
  width: 100%;
  height: auto;
  display: block;
}

.clr_orange {
  color: #faa634;
}

.clr_blue {
  color: #607a9d;
}

.clr_white {
  color: #ffffff;
}

.float_dx {
  float: right;
}

.float_sx {
  float: left;
}

.fullwidth {
  width: 100%;
}

.bg-lightgrey {
  background-color: #f2f2f2;
}

/* LAYOUT
----------------------------------------------------------------------- */
.site_wr {
  padding: 0 2.5rem;
  max-width: 1340px;
  margin: auto;
}

.site {
  position: relative;
}

.main {
  width: calc(100% - 360px);
  margin-top: 60px;
}

.sidebar {
  width: 280px;
  margin-top: 60px;
}

.group {
  margin-bottom: 30px;
  float: left;
  width: 100%;
}

/* Grid System */
.col {
  float: left;
  margin-bottom: 40px;
  margin-right: 3%;
}

.col_grid_3 .col {
  width: 31.33%;
}

.col_grid_3 .col:nth-child(3n) {
  margin-right: 0;
}

.same_height_grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
}

/* TYPOGRAPHY
----------------------------------------------------------------------- */
a {
  color: #faa634;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h6 {
  font-family: "roboto-condensed";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.4;
}

h1 {
  color: #607a9d;
  font-size: 48px;
  margin-bottom: 40px;
}

h2 {
  color: #607a9d;
  font-size: 32px;
  margin: 40px 0 10px 0;
}

h3 {
  color: #faa634;
}

h4 {
  font-size: 28px;
  line-height: 1.4;
  font-weight: normal;
}

h5 {
  color: #faa634;
  font-size: 20px;
  margin-bottom: 20px;
  font-family: "Roboto Slab";
  font-weight: 500;
  position: relative;
}

h5.group_title span {
  display: inline-block;
  background: #fff;
  padding-right: 20px;
}

h5.group_title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #ddd;
  left: 0;
  top: 18px;
  z-index: -1;
}

/* Editor Output */
p {
  margin-bottom: 16px;
}

.editor_output {
  text-align: justify;
  hyphens: auto;
  float: left;
  width: 100%;
}

.editor_output a {
  text-decoration: underline;
  color: #607a9d;
}

.editor_output img.aligncenter {
  float: none;
  display: block;
  margin: 24px auto;
  width: 100%;
  height: auto;
}

.editor_output img.alignleft {
  margin: 24px 24px 24px 0;
  float: left;
}

.editor_output img.alignright {
  margin: 24px 0 24px 24px;
  float: right;
}

.editor_output ul,
.editor_output ol {
  padding-left: 18px;
}

/* BUTTONS
----------------------------------------------------------------------- */
.btn {
  display: inline-block;
  transition: all linear 0.1s;
  border-radius: 4px;
}

.btn:hover {
  text-decoration: none;
}

.btn_primary {
  font-family: "roboto-condensed";
  background: #faa634;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  padding: 10px 30px;
  font-size: 18px;
  margin-top: 40px;
}

.btn_primary:hover,
.btn_primary:focus {
  background: #f7902c;
  color: #fff;
}

.btn_small {
  font-family: "Roboto Slab";
  font-size: 13px;
  font-weight: bold;
  background: #eef5ff;
  padding: 10px 14px;
  line-height: 1;
  color: #607a9d;
  cursor: pointer;
}

.btn_small:hover,
.btn_small:focus {
  color: #eef5ff;
  background: #607a9d;
}

/* HEADER
----------------------------------------------------------------------- */
#hamburger {
  display: none;
}

.site_header {
  width: 100%;
}

/* Site Logo */
.logo_box {
  position: absolute;
  z-index: 10;
  top: 20px;
  left: 40px;
}

/* Above Nav */
.above_nav {
  padding: 40px 0;
  background: #f2f2f2;
}

.above_nav .clearfix {
  display: none;
}

.logo-et {
  background: url("../img/et-logo.png");
  text-indent: -9999px;
  float: right;
  width: 118px;
  margin-right: 40px;
  background-size: 100% auto;
}

.logo-partner {
  float: right;
  width: auto;
  height: 32px;
  position: relative;
  margin-right: 40px;
}

.logo-partner img {
  display: block;
  height: 32px;
  width: auto;
}

/* Navigation */
.site_header nav {
  background: #607a9d;
  text-align: right;
  padding: 8px 40px;
}

.site_header nav li {
  display: inline-block;
  margin-left: 24px;
}

.site_header nav a {
  font-family: "roboto-condensed", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: all linear 0.3s;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-weight: bold;
  font-size: 18px;
}

.site_header nav a:hover,
.site_header nav a:focus,
.site_header nav .current-menu-item a,
.single-espositori nav li#menu-item-155 a {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
}

/* Below Nav (Partners) */
.below_nav {
  box-shadow: 0 0 100px rgba(0, 0, 0, 0.14);
}

.home .below_nav {
  box-shadow: none;
}

.site_header_partners {
  display: block;
  float: right;
  margin-right: 40px;
  position: relative;
}

.site_header_partners::before {
  content: "Insieme a:";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -80px;
  color: #999;
  font-size: 14px;
}

.site_header_partners li,
.site_header_partners a {
  display: inline-block;
  float: left;
}

.site_header_partners img {
  margin: 14px 0 14px 28px;
  height: 30px;
  width: auto;
}

/* TEASER
----------------------------------------------------------------------- */
.teaser_stripe {
  background: #ffffff; /* Old browsers */
  background: -moz-linear-gradient(top, #ffffff 0%, #f2f2f2 50%); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    #ffffff 0%,
    #f2f2f2 50%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #f2f2f2 50%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f2f2f2',GradientType=0 ); /* IE6-9 */
}

.teaser {
  text-align: center;
  background-position: bottom;
  background-size: cover;
  color: #fff;
  min-height: 540px;
  position: relative;
}

.dark_background {
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.65);
}

.teaser_content {
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  padding: 60px;
}

.teaser_content h1 {
  font-family: "Roboto Slab", serif;
  text-transform: uppercase;
  font-size: 78px;
  color: #fff;
}

.teaser_content h4 {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
}

.teaser_content p {
  font-size: 24px;
  line-height: 1.4;
  opacity: 0.8;
  font-weight: normal;
}

/* FOOTER
----------------------------------------------------------------------- */
.site_footer {
  margin-top: 120px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #242424;
  padding: 40px 0 60px 0;
  color: #fff;
  font-size: 15px;
}

.footer_primary strong {
  text-transform: uppercase;
  font-family: "roboto-condensed", sans-serif;
  font-size: 24px;
  margin: 0 0 60px 0;
  display: block;
}

/* Follow Us */
.follow_us {
  float: right;
  position: relative;
}

.follow_us::before {
  content: "Follow us";
  position: absolute;
  opacity: 0.33;
  font-size: 16px;
  left: -80px;
}

.follow_us a {
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px auto;
  text-indent: -8888px;
  float: left;
  display: inline-block;
  margin-left: 15px;
}

.link_fb {
  background-image: url("../img/ico_fb.png");
}
.link_tw {
  background-image: url("../img/ico_tw.png");
}
.link_in {
  background-image: url("../img/ico_in.png");
}
.link_rss {
  background-image: url("../img/ico_rss.png");
}

/* Footer Menu */
.footer_menu {
  float: right;
  margin-top: 54px;
}

.footer_menu li {
  display: inline-block;
  float: left;
  margin-left: 7px;
}

.footer_menu a {
  color: #fff;
}

/* PAGE & SINGLE
----------------------------------------------------------------------- */

/* breadcrumbs */
.breadcrumbs {
  font-size: 13px;
}

.breadcrumbs span,
.breadcrumbs a {
  color: #aaa;
}

/* Page Header */
.page_header {
  float: left;
  width: 100%;
}

/* Logo pagine Espositori */
.single_partner_logo {
  max-height: 80px;
  max-width: 200px;
  width: auto;
  display: block;
}

/* Disclaimer */
.disclaimer {
  background: #f2f2f2;
  padding: 24px;
  font-size: 15px;
  text-align: justify;
  hyphens: auto;
  margin-top: 70px;
  color: #777;
}

/* Gallery + Carousel */
.photo_stripe {
  background: #f2f2f2;
  overflow: hidden;
  padding: 40px 0 50px 0;
}

.photo_stripe h6 {
  text-align: center;
  font-size: 18px;
  font-family: "roboto-condensed", sans-serif;
  font-weight: normal;
  margin-bottom: 30px;
}

.owl-dots {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto !important;
  width: 55px;
  height: 52px;
  text-indent: -8888px;
  position: absolute;
  top: 112px;
}

.swiper-button-prev {
  background-image: url("../img/btn_prev.png") !important;
  left: -20px;
}

.swiper-button-next {
  background-image: url("../img/btn_next.png") !important;
  right: -20px;
}

/* ACF FLEXIBLE
----------------------------------------------------------------------- */

/* ACF Partners */
.partner_logo_box {
  width: 100%;
  display: block;
  background-size: 60% auto;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid #ddd;
  transition: background ease-in-out 0.2s;
}

.partner_logo_box_link {
  color: #343434;
  font-size: 15px;
  display: inline-block;
  margin-top: 10px;
  line-height: 22px;
  max-width: 90%;
  text-transform: uppercase;
}

.partner_logo_box:hover {
  background-size: 70% auto;
  border: 1px solid #999;
}

/* ACF Link List */
.link_list {
}

.link_list li {
  list-style: none;
  display: inline-block;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #ddd;
}

.link_list li:last-child {
  border-bottom: 0;
}

.link_list i {
  color: #607a9d;
  font-size: 24px;
  display: inline-block;
  margin-right: 10px;
}

.link_list a {
  color: #646464;
}

.link_list a:hover {
  color: #607a9d;
}

.link_list span {
  font-style: italic;
  color: #aaa;
}

/* ACF Program */
.acf_program {
  padding-right: 6%;
  margin-top: 60px;
}

.acf_program time {
  background: #607a9d;
  padding: 5px 12px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fff;
  font-weight: bold;
  display: inline-block;
}

.acf_program time i {
  margin-right: 6px;
  font-size: 120%;
}

.acf_program article {
  padding: 30px 0 30px 30px;
  border-left: 2px dashed #607a9d;
  width: 94%;
  float: right;
}

.acf_program article h4 {
  margin-bottom: 20px;
  color: #faa634;
}

.acf_program article ul {
  padding-left: 40px;
  margin: 12px 0 28px 0;
}

.acf_program article ul li {
  margin-top: 20px;
}

.acf_program article ul ul li {
  margin-top: 0;
}

/* SIDEBAR
----------------------------------------------------------------------- */

.widget {
  margin-bottom: 70px;
}

.widget img {
  width: 100%;
  height: auto;
  display: block;
}

.widget .read-more {
  font-size: 14px;
  font-family: "Roboto Slab", serif !important;
  margin-top: 20px;
  display: block;
}

/* Custom Box Widget */
h2.widgettitle {
  font-size: 16px;
  color: #646464;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  margin: 0 0 20px 0;
  border-bottom: 2px solid #faa634;
  ine-height: 2;
  text-transform: uppercase;
}

.custom-content-widget li {
  list-style: none inside none;
  border-bottom: 1px solid #ddd;
  margin-bottom: 4px;
  padding-bottom: 4px;
}

.custom-content-widget li:last-child {
  border-bottom: 0;
}

.custom-content-widget li a {
  color: #646464;
  font-size: 14px;
  cursor: pointer;
}

/* Custom Box Widget (Box Grigio)*/
.box-evidenza {
  background: #f2f2f2;
  padding: 20px 14px;
  font-size: 14px;
}

.box-evidenza h6 {
  font-size: 16px;
  color: #faa634;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  text-transform: uppercase;
  margin: 0;
}

.box-evidenza h2,
.box-evidenza h2 a {
  color: #646464;
  margin: 0 0 14px 0;
  font-size: 24px;
}

/* Widget In BReve */
#breaking-news {
  float: left;
  background: #fff;
  height: auto;
  border-left: 1px solid #ddd;
  padding-left: 20px;
  font-family: Arial, sans-serif;
}

#breaking-news time {
  font-size: 13px;
  color: #607a9d;
  font-weight: bold;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  margin-top: 20px;
}

#breaking-news h4 a {
  font-family: Arial, sans-serif;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  font-size: 14px;
  display: inline-block;
  font-weight: bold;
  margin-bottom: 4px;
  color: #343434;
}

#breaking-news article a {
  color: #646464;
  line-height: 1.4;
  font-size: 14px;
}

/* CHATBOX
----------------------------------------------------------------------- */
#chat {
  display: none;
  padding: 0;
  margin: 0;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  box-shadow: 0 2px 13px 0 rgba(0, 0, 0, 0.3);
  z-index: 9999;
}

#open-chat-button {
  display: inline-block;
  z-index: 9999;
  position: fixed;
  bottom: 20px;
  right: 15px;
  width: 85px;
  height: 85px;
  background: #fca437 url("../img/bot_eticanews.svg") no-repeat center 3px;
  border-radius: 50%;
  box-shadow: 0 2px 13px 0 rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

@media (min-width: 992px) {
  #chat {
    height: 550px;
    max-height: calc(100% - 130px);
    width: 400px;
    top: auto;
    right: 15px;
    bottom: 130px;
    left: auto;
  }
}

/* FORMS
-------------------------------------------------------------------- */
.wpcf7 {
  width: 100%;
  float: left;
}

.wpcf7 fieldset {
  margin-bottom: 30px;
}

.fieldset_title {
  font-size: 22px;
  margin-bottom: 30px;
  display: block;
  color: #607b9a;
}

p.legend {
  border-top: 1px solid #cad2dc;
  color: #607b9a;
  font-size: 14px;
  font-style: italic;
  padding: 10px 0 20px 0;
  text-align: right;
}

.submit_wr {
  margin-top: 30px;
}

.input_wr,
.submit_wr,
.pmpro_form .left,
.pmpro_form .right,
#Professione_div,
#Settore_div,
#Anno_div,
#Sesso_div,
#Indirizzo_div,
#Comune_div,
#Codice_Fiscale_div,
#Azienda_div,
#IndirizzoAzienda_div,
#ComuneAzienda_div,
#CodiceFiscaleAzienda_div,
#PivaAzienda_div {
  margin-bottom: 24px;
  width: 48%;
  clear: none;
}

.input_wr.fullwidth,
.submit_wr input[type="submit"] {
  width: 100%;
}

.rec_cap {
  width: 46%;
  float: left;
}

.rec_provincia {
  width: 46%;
  float: right;
}

#tribe-bar-views label,
.input_wr label,
form.pmpro_form label {
  font-size: 12px;
  display: block;
  margin: 0 0 8px 0;
  color: #607b9a;
  text-align: left;
  width: auto;
  font-family: "roboto", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: bold;
}

.acceptance_wr {
  font-family: "roboto", sans-serif;
  margin: 10px 0;
  box-sizing: border-box;
  font-size: 14px;
}

.pmpro-checkout .acceptance_wr {
  padding-top: 20px;
  border-top: 2px solid #b4bece;
  margin: 70px 0 40px 0;
}

.acceptance_wr input {
  margin-right: 10px;
}

/* Form Inputs */
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px white inset;
}

input:not([type="radio"]):not([type="submit"]):not([type="checkbox"]),
select,
textarea,
select,
form.pmpro_form select#Sesso {
  transition: all ease-in-out 0.2s;
  box-sizing: border-box;
  border: 2px solid #ececec;
  background-position: calc(100% - 20px) center;
  background-color: #ececec;
  color: #757d88;
  font-size: 16px;
  padding: 14px 18px;
  line-height: 1.4;
  width: 100%;
  max-width: 100%;
  border-radius: 4px;
}

.login_box
  input:not([type="radio"]):not([type="submit"]):not([type="checkbox"]),
.widget_nl
  input:not([type="radio"]):not([type="submit"]):not([type="checkbox"]) {
  border: 2px solid #ddd;
  background-color: #fff;
}

select,
select:focus {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  background-image: url("../images/select-arrow.png");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
  background-size: 12px 10px;
}

form.pmpro_form select#Sesso {
  display: block;
  float: left;
}

input[type="file"] {
  display: block;
  margin-top: 8px;
  background: #fff !important;
  border: 0 !important;
  padding: 0 !important;
}

input:not([type="radio"]):not([type="submit"]):not([type="checkbox"]):focus,
select:focus,
textarea:focus {
  border: 2px solid #ddd;
  background: #fff;
  color: #607b9a;
}

.wpcf7-radio {
  display: inline-block;
}

/* Checkboxes */
span.wpcf7-list-item-label::before,
span.wpcf7-list-item-label::after {
  display: none;
}

span.wpcf7-list-item {
  margin: 0 0 14px 0;
}

span.wpcf7-list-item {
  width: 100%;
}

span.wpcf7-list-item span {
  cursor: pointer;
}

span.wpcf7-list-item input[type="checkbox"],
.mc4wp-checkbox input[type="checkbox"] {
  width: 14px;
  height: 14px;
  position: relative;
  top: -1px;
  margin-right: 8px;
}

fieldset.acceptance {
  font-family: "Arial", sans-serif;
  font-size: 14px;
  padding-top: 20px;
  border-top: 3px solid #eee;
  margin: 0;
}

fieldset.acceptance span.wpcf7-list-item {
  margin-bottom: 0;
}

/* Form Errors */
span.wpcf7-not-valid-tip {
  display: none;
}

div.wpcf7-response-output,
.pmpro_message,
.tribe-events-notices,
p.error {
  box-sizing: border-box;
  padding: 14px 18px;
  margin: 0 0 40px 0;
  border: 0;
  border-radius: 4px;
  color: #fff;
}

p.error strong,
p.error a {
  display: inline;
  font-size: inherit;
  color: #fff;
}

div.wpcf7-mail-sent-ok,
.pmpro_message,
.tribe-events-notices {
  background: #b4bece;
  text-shadow: none;
}

div.wpcf7-validation-errors,
.pmpro_error,
p.error {
  background: #f84545;
}

form.sent p,
form.sent fieldset {
  display: none;
}

.wpcf7-not-valid,
input.pmpro_error,
textarea.wpcf7-not-valid,
select.pmpro_error,
select.wpcf7-not-valid {
  border-color: #f84545 !important;
  background-color: #fff !important;
}

/* Placeholder */
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  opacity: 0.7;
  color: #757d88;
}
::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 0.7;
  color: #757d88;
}
:-ms-input-placeholder {
  /* IE 10+ */
  opacity: 0.7;
  color: #757d88;
}
:-moz-placeholder {
  /* Firefox 18- */
  opacity: 0.7;
  color: #757d88;
}

.pmpro_form ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  opacity: 0;
}
.pmpro_form ::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 0;
}
.pmpro_form :-ms-input-placeholder {
  /* IE 10+ */
  opacity: 0;
}
.pmpro_form :-moz-placeholder {
  /* Firefox 18- */
  opacity: 0;
}

/* Submit */
input[type="submit"],
input[type="submit"]:hover,
input[type="submit"]:focus {
  font-family: "roboto", sans-serif;
  transition: all ease-in-out 0.2s;
  display: inline-block;
  border-radius: 4px;
  box-sizing: border-box;
  text-transform: uppercase;
  position: relative;
  line-height: inherit !important;
  border: 0;
  background: #f8a445;
  border: 0;
  font-size: 18px;
  color: #fff;
  padding: 18px 32px;
  letter-spacing: 0.5px;
  cursor: pointer;
  font-weight: normal;
}

.wpcf7-list-item-label {
  position: relative;
}

.checkbox-280 .wpcf7-list-item.last .wpcf7-list-item-label:after,
.checkbox-671 .wpcf7-list-item.last .wpcf7-list-item-label:after {
  color: #f44336;
  content: " POSTI ESAURITI *";
  display: inline-block;
  margin-left: 10px;
}

.nota span {
  color: #f44336;
  font-size: 26px;
  position: absolute;
  left: -20px;
  margin-top: -8px;
}

.nota {
  text-indent: 20px;
  font-style: italic;
  display: none !important;
}

/* Responsive Embed */
.embed-container-wrapper {
  max-width: 840px;
  margin: auto;
}
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  width: 100%;
  height: auto;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }