@import url("https://fonts.googleapis.com/css?family=Material+Icons");
* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box; }
  *:before, *:after {
    box-sizing: border-box; }
  *:focus {
    outline: none; }

::selection {
  color: #fff;
  background: #912C8D; }

::-moz-selection {
  color: #fff;
  background: #912C8D; }

body {
  font: 16px/1.5 'IBM Plex Sans', Helvetica, Arial;
  color: #2E388D;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  min-height: 100vh; }
  body:after {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms ease-out;
    z-index: 4; }
  body.menu-opened {
    overflow: hidden; }
    body.menu-opened:after {
      opacity: 1;
      visibility: visible; }
    body.menu-opened header .menu {
      display: block; }
      body.menu-opened header .menu .col-12.socials {
        display: block; }
  body header .menu {
    display: none; }
    body header .menu .col-12.socials {
      display: none; }

.select-wrapper {
  margin: 1em 0; }

.plex {
  font-family: 'IBM Plex Sans'; }

.gotham {
  font-family: 'Gotham Rounded'; }

h1,
h2,
h3,
h4,
h5 {
  line-height: 1em;
  margin-bottom: 10px; }

h1 {
  font-size: 2.4em; }

h2 {
  font-size: 2em; }

h3 {
  font-size: 2em; }

h4 {
  font-size: 1.3em;
  font-weight: 600; }

h5 {
  font-size: 1.1em;
  font-weight: 600; }

a {
  color: #2E388D;
  text-decoration: none; }
  a:hover, a:focus {
    color: #2E388D; }

ul {
  list-style-position: inside; }

img {
  border: 0;
  max-width: 100%;
  height: auto; }
  img.circle {
    border-radius: 50%; }

hr {
  margin-top: 2em; }

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

.d-flex {
  display: flex;
  flex-wrap: wrap; }

.cover {
  position: relative;
  background-size: cover;
  background-position: center center; }
  .cover:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1); }

@media (min-width: 1600px) {
  .container-large {
    padding-left: 0px;
    padding-right: 0px; }
    .container-large .row-large {
      margin-left: -30px;
      margin-right: -30px; }
      .container-large .row-large > * {
        padding-left: 30px;
        padding-right: 30px; } }

@media (min-width: 1600px) {
  .container-fluid-large {
    max-width: 90%; } }

hr {
  margin-top: 2em;
  margin-bottom: 2em;
  border: 1px solid #FFC218;
  border-radius: 2px; }

.bg-yellow {
  background: #FFC218; }

.bg-white {
  background: #fff; }

.bg-red {
  background: #F15E5C; }

.bg-blue {
  background: #2E388D; }

.bg-green {
  background: #03B5A4; }

.bg-cyan {
  background: #26AEE5; }

.bg-purple {
  background: #912C8D; }

.bg-fucsia {
  background: #ea218d; }
  
 

.btn {
  display: inline-block;
  position: relative;
  min-width: 185px;
  min-height: 50px;
  border-radius: 50px;
  text-align: center;
  font-weight: bold;
  font-family: 'Gotham Rounded';
  font-size: 16px;
  line-height: 16px;
  padding: 17px 25px;
  text-transform: uppercase;
  color: #fff !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 150ms ease-out;
  cursor: pointer;
  z-index: 1000; }
  @media (min-width: 768px) and (max-width: 800px) {
    .btn {
      min-width: 0; } }
  .btn.btn-small {
    height: 35px;
    min-height: 0;
    min-width: 100px;
    padding: 2px 15px; }
  .btn:hover {
    transform: scale(1.01);
    box-shadow: 0 7px 20px 0 rgba(0, 0, 0, 0.1); }
  .btn.btn-yellow {
    background: #FFC218; }
  .btn.btn-white {
    background: #fff;
    color: #2E388D !important; }
  .btn.btn-red {
    background: #F15E5C; }
  .btn.btn-blue {
    background: #2E388D; }
    .btn.btn-blue i.material-icons {
      position: relative;
      top: -3px;
      vertical-align: middle; }
  .btn.btn-green {
    background: #03B5A4; }
  .btn.btn-cyan {
    background: #26AEE5; }
  .btn.btn-fucsia {
    background: #ea218d; }
  .btn.btn-purple {
    background: #912C8D; }
  .btn.btn-action {
    background: #03B5A4;
    overflow: hidden;
    /*  &:before {
          content: '';
          position: absolute;
          top: 0;
          left: -20%;
          width: 60%;
          height: 100%;
          transform-origin: 50% 0%;
          transform: rotate(65deg) scale(1.1);
          z-index: 1;
          background: $cyan;
          transition: all 300ms ease-out;
      }
      &:after {
          content: '';
          position: absolute;
          bottom: 0;
          right: 0;
          width: 100%;
          height: 100%;
          z-index: 2;
          background: $green;
          transform-origin: 100% 0%;
          transform: rotate(-16deg) scale(1.1);
          transition: all 300ms ease-out;
      }
      &:hover {
          &:before {
              transform: rotate(65deg) scale(1.1) translate(0, 30%);
          }
          &:after {
              transform: rotate(-65deg) scale(1.1);
          }
      }*/ }
    .btn.btn-action span {
      position: relative;
      z-index: 3; }

.text-center {
  text-align: center; }

@media (max-width: 991px) {
  .container {
    max-width: 100%; } }
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 5; }
  @media (max-width: 1024px) {
    header {
      height: 80px; } }
  body.menu-opened header .menu-mobile i {
    color: #fff !important; }
  body.menu-opened header .socials .social svg {
    fill: #fff !important; }
  header .nav-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    padding-left: 300px;
    padding-top: 20px; }
    @media (max-width: 990px) {
      header .nav-container {
        padding-top: 10px;
        padding-left: 0;
        max-width: 50%;
        margin-left: 50%; } }
  header .logo-wrapper {
    width: 298px;
    height: 100px;
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    padding: 32px 50px 32px 32px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px; }
    header .logo-wrapper .logo {
      position: relative; }
      header .logo-wrapper .logo a {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; }
    @media (max-width: 990px) {
      header .logo-wrapper {
        width: 200px;
        padding: 20px 38px 20px 20px;
        height: 67px;
        align-self: flex-start; } }
  header nav {
    position: absolute;
    top: 0;
    left: 0;
    padding: 45px 0 20px;
    width: 100%;
    background-color: rgba(26, 33, 79, 0.7);
    height: 100vh;
    z-index: 900;
    transform: translateY(-100%);
    transition: transform 300ms ease-out; }
    body.menu-opened header nav {
      transform: translateY(0%); }
    header nav .socials {
      margin-top: 25px; }
    header nav li.menu-item.menu-item-has-children:hover {
      margin-bottom: 195px; }
      @media (max-width: 991px) {
        header nav li.menu-item.menu-item-has-children:hover {
          margin-bottom: 120px; } }
      header nav li.menu-item.menu-item-has-children:hover a {
        position: relative; }
      header nav li.menu-item.menu-item-has-children:hover ul.sub-menu {
        display: block;
        position: absolute;
        left: 47%;
        opacity: 1;
        transition: opacity .9s ease-in-out;
        -moz-transition: opacity .9s ease-in-out;
        -webkit-transition: opacity .9s ease-in-out; }
        @media (max-width: 991px) {
          header nav li.menu-item.menu-item-has-children:hover ul.sub-menu {
            left: 44%;
            margin-top: 4px;
            padding: 0; } }
        header nav li.menu-item.menu-item-has-children:hover ul.sub-menu li {
          position: relative;
          margin: 0px 0;
          text-align: left; }
          header nav li.menu-item.menu-item-has-children:hover ul.sub-menu li a {
            font-weight: normal;
            text-transform: none;
            margin: 0; }
            header nav li.menu-item.menu-item-has-children:hover ul.sub-menu li a:before {
              content: '-';
              display: inline-block; }
    header nav ul.sub-menu {
      display: none;
      margin-bottom: 25px;
      opacity: 0; }
  header #search {
    background: transparent;
    margin: 0; }
    header #search input[type=search] {
      background-image: url(../img/search-icon.png);
      border: solid 1px #ccc;
      background-color: #fff;
      background-repeat: no-repeat;
      background-position: center center;
      padding: 15px;
      -webkit-border-radius: 10em;
      -moz-border-radius: 10em;
      border-radius: 10em;
      -webkit-transition: all .5s;
      -moz-transition: all .5s;
      transition: all .5s;
      padding-left: 10px;
      color: transparent;
      cursor: pointer;
      width: 44px;
      margin-top: 16px;
      margin-right: 35px;
      text-align: left; }
    header #search input[type=search]:focus {
      margin: 0;
      background-color: #fff;
      background-position: 9px center;
      border-color: #66CC75;
      padding-right: 7px;
      -webkit-box-shadow: 0 0 5px rgba(109, 207, 246, 0.5);
      -moz-box-shadow: 0 0 5px rgba(109, 207, 246, 0.5);
      box-shadow: 0 0 5px rgba(109, 207, 246, 0.5); }
    header #search input:-moz-placeholder {
      color: #999; }
    header #search input::-webkit-input-placeholder {
      color: #999; }
    header #search input[type=search]:hover {
      background-color: #fff; }
    header #search input[type=search]:focus {
      width: 180px;
      padding-left: 32px;
      color: #000;
      background-color: #fff;
      cursor: auto;
      margin-top: 16px;
      margin-right: 30px; }
    header #search input:-moz-placeholder {
      color: transparent; }
    header #search input::-webkit-input-placeholder {
      color: transparent; }
  header .menu {
    margin-top: 15px;
    margin-right: 20px;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    flex-direction: column; }
    @media (min-width: 991px) {
      header .menu {
        padding-top: 25px; } }
    header .menu li {
      margin: 5px 0px;
      text-align: center; }
      header .menu li a {
        font-weight: bold;
        color: #fff;
        text-transform: uppercase;
        position: relative;
        display: inline-block;
        transition: all 150ms ease-out;
        font-size: 30px; }
        header .menu li a:after {
          content: '';
          position: absolute;
          top: 100%;
          left: 0;
          width: 100%;
          height: 5px;
          transform: scaleY(0);
          transition: all 150ms ease-out;
          transform-origin: 0 100%;
          background: #FFC218; }
        header .menu li a:hover {
          transform: translateY(-2px); }
          header .menu li a:hover:after {
            transform: scaleY(1); }
  header .socials {
    margin-top: 15px; }
    header .socials .social {
      display: inline-block;
      margin-bottom: 5px; }
      header .socials .social:hover svg {
        transform: scale(1.05); }
      header .socials .social svg {
        width: 24px;
        fill: #fff;
        vertical-align: middle;
        margin-right: 15px; }
  header .btn-group {
    margin-top: 15px;
    margin-right: 32px;
    z-index: 1;
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap; }
    header .btn-group .btn {
      min-width: 150px; }
      body.safari header .btn-group .btn {
        clip-path: ellipse(100% 100% at 50% 50%); }
      header .btn-group .btn:first-child {
        margin-right: 15px; }
    @media (max-width: 990px) {
      header .btn-group {
        display: none; } }
  header .menu-mobile {
    display: block;
    cursor: pointer;
    text-align: right;
    margin-top: 15px;
    z-index: 9999; }
    header .menu-mobile i {
      font-size: 40px;
      margin-right: 25px;
      color: #fff; }
      header .menu-mobile i:hover {
        transform: scale(1.1); }
    @media (max-width: 1400px) {
      header .menu-mobile {
        display: block;
        top: 2px;
        position: relative; } }
  header .btn-mobile {
    display: none; }
    @media (max-width: 990px) {
      header .btn-mobile {
        display: block; } }
    header .btn-mobile .highlighted {
      color: #fff;
      font-weight: bold;
      margin: 5px 15px;
      text-transform: uppercase;
      display: block; }

 .page-id-4861 form input[type=text],.page-id-4861 form input[type=email],.page-id-4861 form input[type=tel]{
  height: 50px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    line-height: 45px;
    padding: 10px 15px;
    box-shadow: none;
    font-size: 15px;
    border: 1px solid #ccc;
    width: 97%;
    box-sizing: border-box;
    max-width: 400px;
    margin-right: 15px;
}

.page-id-4861 form.avoid-interactions{
	opacity:1;
}

.page-id-4861 form.avoid-interactions:after{
	display: none;
}

.page-id-4861 form span.wpcf7-list-item{
	margin:0;
}

#testata {
  background-size: cover;
  border: 15px solid #fff;
  height: 312px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
  background-position: top right;
  box-sizing: border-box; }
  #testata h1 {
    margin-bottom: 0;
    color: #fff;
    position: relative;
    line-height: 1; }
     .page-id-4861 #testata h1{
	    display: none;
    }
    #testata h1 span.gotham {
      padding: 0px 0 0 0px;
      position: relative;
      text-transform: uppercase;
      display: block;
      font-size: 60px; }
      .blog #testata h1 span.gotham, .post-type-archive-comunicati #testata h1 span.gotham, .single-comunicati #testata h1 span.gotham {
        padding: 0px 0 0 48px; }
        .blog #testata h1 span.gotham:before, .post-type-archive-comunicati #testata h1 span.gotham:before, .single-comunicati #testata h1 span.gotham:before {
          background: url(../img/plus-l.png) no-repeat center left;
          display: block;
          position: absolute;
          content: '';
          top: 0;
          left: 0;
          width: 46px;
          height: 46px;
          background-size: 46px 46px; }
    #testata h1 span#etichetta-header {
      color: #912C8D;
      background-color: #fff;
      font-size: 29px;
      padding: 4px 25px;
      border-radius: 50px;
      font-weight: normal;
      margin: auto;
      text-transform: uppercase; }

main {
  /*  @at-root body.blog &,
    body.single &,
    body.archive & {
        margin-top: 30px;
    }*/ }
  main p {
    font-size: 1.13em;
    margin-bottom: 1em; }
    main p strong {
      font-weight: 600; }
  main ol {
    font-size: 1.13em;
    margin-bottom: 1em;
    padding-left: 45px; }
  main .btn-group {
    margin: 40px 0 0; }
    @media (max-width: 767px) {
      main .btn-group {
        text-align: center; } }
  main h3 {
    margin-bottom: 20px; }
  main .content h3 {
    line-height: 1.2; }
  main section {
    overflow: hidden;
    position: relative; }
    main section#cover {
      height: 100vh;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      text-align: center;
      width: 100%; }
      main section#cover .cover-70 {
        height: 77vh;
        background-repeat: no-repeat;
        background-size: cover;
        border: 15px solid #fff; }
        main section#cover .cover-70.mobile {
          display: none; }
      main section#cover .cover-30 {
        background: url(../img/newsletter.jpg) no-repeat;
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        height: 40vh; }
        main section#cover .cover-30 .section-newsletter.container {
          background: url(../img/plus-l.png) no-repeat center left;
          display: flex;
          align-items: center;
          justify-content: center;
          height: 100%; }
      main section#cover .slider {
        width: 100%;
        position: relative;
        text-align: center;
        z-index: 2;
        color: #fff; }
        @media (max-width: 767px) {
          main section#cover .slider {
            padding: 0 15px; } }
        main section#cover .slider h3 {
          font-size: 2.5em;
          line-height: 1.2em;
          font-weight: 400;
          margin-bottom: 0px;
          letter-spacing: 1px; }
          @media (max-width: 1024px) {
            main section#cover .slider h3 {
              letter-spacing: 0;
              font-size: 1.6em; } }
          @media (max-width: 767px) {
            main section#cover .slider h3 {
              font-size: 1.2em; } }
        main section#cover .slider h2 {
          font-size: 5em;
          line-height: 1.2em; }
          @media (min-width: 1600px) {
            main section#cover .slider h2 {
              font-size: 7em; } }
          @media (max-width: 1024px) {
            main section#cover .slider h2 {
              font-size: 4em; } }
          @media (max-width: 767px) {
            main section#cover .slider h2 {
              font-size: 2em; } }
          main section#cover .slider h2 em.accent {
            font-style: normal !important;
            color: #FFC218; }
      main section#cover.cover-small {
        height: 50vh;
        min-height: 600px; }
        @media (max-width: 767px) {
          main section#cover.cover-small {
            min-height: 350px;
            height: auto; } }
        main section#cover.cover-small h2 {
          font-size: 3em;
          font-weight: 400;
          text-transform: uppercase;
          line-height: 1em; }
          @media (min-width: 1600px) {
            main section#cover.cover-small h2 {
              font-size: 4em; } }
          @media (max-width: 400px) {
            main section#cover.cover-small h2 {
              font-size: 2em; } }
          main section#cover.cover-small h2 em.accent {
            font-style: normal !important;
            color: #FFC218; }
      main section#cover.cover-title {
        background-image: linear-gradient(to bottom, #000522, #000c31, #001140, #00134e, #00145d); }
        main section#cover.cover-title h2 {
          font-family: "Gotham Black";
          text-transform: initial; }
        main section#cover.cover-title span {
          font-size: 2em;
          text-transform: uppercase;
          color: #FFC218;
          font-family: "Gotham Rounded"; }
      main section#cover .cover-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0; }
        main section#cover .cover-wrapper .cover {
          position: relative;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          overflow: hidden; }
          main section#cover .cover-wrapper .cover video {
            object-position: 50% 50%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%; }
          main section#cover .cover-wrapper .cover .cover-video {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0;
            transition: opacity 300ms ease-out; }
            main section#cover .cover-wrapper .cover .cover-video.active {
              opacity: 1; }
      main section#cover .border {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1; }
        main section#cover .border svg {
          width: 100%;
          height: 100%; }
    main section#banner, main section.banner {
      padding-top: 40px;
      text-align: center; }
      main section#banner img, main section.banner img {
        margin: 0 auto; }
      main section#banner .mb, main section.banner .mb {
        display: none; }
      main section#banner .dk, main section.banner .dk {
        display: block; }
    main section#page-content {
      padding: 60px 0 120px; }
      @media (max-width: 1024px) {
        main section#page-content {
          padding: 30px 0 60px; } }
    main section#intro {
      padding: 60px 0 120px; }
      @media (max-width: 1024px) {
        main section#intro {
          padding: 30px 0 60px; } }
      @media (max-width: 767px) {
        main section#intro {
          padding: 0px 0 60px; } }
      main section#intro .symbol {
        position: relative; }
        @media (max-width: 767px) {
          main section#intro .symbol {
            text-align: center; } }
        main section#intro .symbol video {
          width: 500px;
          max-width: 100%; }
        main section#intro .symbol svg {
          max-width: 400px; }
    main section#liste-europee {
      color: #535353;
      padding: 30px 0 70px 0; }
      @media (max-width: 500px) {
        main section#liste-europee {
          padding: 0px 0 40px 0; } }
      main section#liste-europee p {
        font-size: 20px; }
      main section#liste-europee img.alignright {
        float: right; }
        @media (max-width: 991px) {
          main section#liste-europee img.alignright {
            max-width: 200px; } }
        @media (max-width: 650px) {
          main section#liste-europee img.alignright {
            display: none; } }
      main section#liste-europee h2 {
        color: #2E388D;
        width: 100%;
        font-size: 45px; }
        @media (max-width: 700px) {
          main section#liste-europee h2 {
            font-size: 30px; } }
      main section#liste-europee .container.mt {
        padding: 0;
        margin-bottom: 60px;
        margin-top: 50px; }
        main section#liste-europee .container.mt #come-si-vota {
          background: url(../img/come-si-vota.jpg) no-repeat #FFC218;
          padding: 40px 40px 40px 360px;
          margin: 0; }
          @media (max-width: 850px) {
            main section#liste-europee .container.mt #come-si-vota {
              background: none #FFC218;
              padding: 20px;
              margin: 0; } }
          main section#liste-europee .container.mt #come-si-vota h3 {
            color: #912C8D;
            font-size: 27px;
            font-weight: normal; }
            @media (max-width: 850px) {
              main section#liste-europee .container.mt #come-si-vota h3 {
                font-size: 22px; } }
          main section#liste-europee .container.mt #come-si-vota .btn {
            margin-top: 18px; }
            @media (max-width: 1200px) {
              main section#liste-europee .container.mt #come-si-vota .btn {
                margin-top: 0px; } }
            @media (max-width: 850px) {
              main section#liste-europee .container.mt #come-si-vota .btn {
                margin-top: 10px; } }
      @media (max-width: 991px) {
        main section#liste-europee .container.materiali-row {
          padidng: 0 25px; } }
      @media (max-width: 991px) {
        main section#liste-europee .container.materiali-row .row {
          margin: 0; } }
      main section#liste-europee .container.materiali-row .row .col-12 {
        border-bottom: 1px solid #b9b9b9;
        padding: 30px 0;
        position: relative; }
        main section#liste-europee .container.materiali-row .row .col-12:last-child {
          border: none; }
        main section#liste-europee .container.materiali-row .row .col-12 span {
          color: #912C8D;
          font-size: 21px;
          font-family: 'Gotham Rounded';
          display: inline-block;
          padding-left: 32px;
          background-image: url(../img/icon-file.jpg);
          background-repeat: no-repeat;
          background-position: center left;
          padding-top: 10px;
          padding-bottom: 10px;
          margin-right: 20px;
          font-weight: bold;
          font-size: 20px; }
          @media (max-width: 600px) {
            main section#liste-europee .container.materiali-row .row .col-12 span {
              width: 100%; } }
        main section#liste-europee .container.materiali-row .row .col-12 .btn {
          position: absolute;
          top: 30px;
          right: 0; }
          @media (max-width: 600px) {
            main section#liste-europee .container.materiali-row .row .col-12 .btn {
              position: static;
              margin-top: 10px; } }
      main section#liste-europee ul li {
        list-style: none; }
        main section#liste-europee ul li a {
          text-decoration: none;
          font-size: 20px;
          font-family: 'Gotham Rounded';
          color: #912C8D;
          display: block;
          position: relative;
          padding-left: 20px;
          font-weight: bold; }
          main section#liste-europee ul li a:before {
            content: '>';
            color: #FFC218;
            font-size: 20px;
            position: absolute;
            font-weight: bold;
            font-family: 'Gotham Rounded';
            left: 0;
            top: center; }
    main section#liste {
      padding: 45px 0; }
      main section#liste .candidato {
        padding: 20px 0; }
        main section#liste .candidato .teaser img {
          border-radius: 50%; }
          @media (max-width: 767px) {
            main section#liste .candidato .teaser img {
              max-width: 150px; } }
        main section#liste .candidato .text {
          padding-top: 15px;
          color: #535353;
          line-height: 1.5; }
          main section#liste .candidato .text h2 {
            font-size: 45px;
            color: #2E388D; }
          main section#liste .candidato .text p {
            color: #535353;
            line-height: 1.5; }
          main section#liste .candidato .text a.file {
            color: #912C8D;
            padding-left: 32px;
            background-image: url(../img/icon-file.jpg);
            background-repeat: no-repeat;
            background-position: center left;
            padding-top: 10px;
            padding-bottom: 10px;
            margin-right: 20px;
            font-weight: bold;
            font-size: 20px; }
    main section#newsletter {
      background: url(../img/newsletter.jpg) no-repeat;
      background-size: cover;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      height: 23vh; }
      main section#newsletter .section-newsletter.container {
        background: url(../img/plus-l.png) no-repeat center left;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%; }
    main section#emma {
      overflow: hidden;
      height: 700px; }
      @media (max-width: 900px) {
        main section#emma {
          height: 600px; } }
      @media (max-width: 767px) {
        main section#emma {
          height: auto; } }
      main section#emma h3 {
        text-transform: uppercase; }
        main section#emma h3 img {
          margin-top: 5px;
          max-width: 235px;
          margin-left: -15px; }
      main section#emma .container-fluid {
        position: relative;
        z-index: 2; }
      main section#emma .row {
        height: 700px; }
        @media (max-width: 900px) {
          main section#emma .row {
            height: 600px; } }
        @media (max-width: 767px) {
          main section#emma .row {
            height: auto; } }
      main section#emma .bg-emma {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 95%;
        background: #FFC218;
        z-index: 0; }
        @media (max-width: 767px) {
          main section#emma .bg-emma {
            height: 100%; } }
      main section#emma .stripe-white {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5%;
        background: #fff;
        z-index: 2; }
        @media (max-width: 767px) {
          main section#emma .stripe-white {
            display: none; } }
      main section#emma .img {
        text-align: right;
        font-size: 0; }
        @media (max-width: 767px) {
          main section#emma .img {
            text-align: center;
            order: 1; } }
        main section#emma .img img {
          position: relative;
          transition: transform 300ms ease-out;
          margin-right: 0;
          max-width: none;
          height: 700px; }
          @media (min-width: 1600px) {
            main section#emma .img img {
              transform: translateX(25%); } }
          @media (max-width: 1100px) {
            main section#emma .img img {
              transform: translateX(-10%); } }
          @media (max-width: 900px) {
            main section#emma .img img {
              transform: translateX(-15%); } }
          @media (max-width: 900px) {
            main section#emma .img img {
              height: 600px; } }
          @media (max-width: 767px) {
            main section#emma .img img {
              height: auto;
              max-width: 100%;
              transform: translateX(0); } }
      main section#emma .text {
        padding-bottom: 60px; }
        @media (min-width: 767px) {
          main section#emma .text {
            max-width: 570px; } }
        @media (max-width: 767px) {
          main section#emma .text {
            padding-top: 30px;
            padding-bottom: 15px;
            order: 0; }
            main section#emma .text h3 {
              text-align: center; } }
      main section#emma:before {
        content: '';
        background: #03B5A4;
        position: absolute;
        transform: rotate(-5deg);
        width: 35%;
        height: 100%;
        left: -10%;
        top: 0;
        z-index: 1; }
        @media (min-width: 1600px) {
          main section#emma:before {
            width: 45%; } }
        @media (max-width: 767px) {
          main section#emma:before {
            transform: rotate(-40deg);
            width: 70%;
            height: 50%;
            left: -40%;
            top: 50%;
            z-index: 1; } }
      main section#emma:after {
        content: '';
        background: #F15E5C;
        position: absolute;
        transform: rotate(10deg);
        width: 95%;
        height: 50%;
        bottom: -40%;
        left: -10%;
        z-index: 1; }
    main section#socials {
      position: relative;
      padding: 30px 0;
      margin: 90px 0; }
      @media (max-width: 1024px) {
        main section#socials {
          margin: 30px 0; } }
      main section#socials .row {
        min-height: 400px; }
        @media (max-width: 767px) {
          main section#socials .row {
            min-height: 270px; } }
      main section#socials .border {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1; }
        main section#socials .border svg {
          width: 100%;
          height: 100%; }
      main section#socials .social {
        display: block;
        transition: transform 200ms ease-out; }
        main section#socials .social svg {
          max-width: 100px;
          fill: #fff !important; }
          @media (max-width: 767px) {
            main section#socials .social svg {
              max-width: 50px; } }
        main section#socials .social:hover {
          transform: scale(0.96); }
    main section#twitter {
      padding: 0;
      margin: 90px 0; }
      @media (max-width: 1024px) {
        main section#twitter {
          margin: 30px 0; } }
      main section#twitter .container {
        background: #1DA1F2;
        padding: 55px 60px 55px 40px; }
        @media (max-width: 767px) {
          main section#twitter .container {
            padding: 15px 15px 50px; } }
        main section#twitter .container .bird {
          flex: 0 1 0;
          margin-right: 20px;
          align-self: center; }
          @media (max-width: 767px) {
            main section#twitter .container .bird {
              margin-right: 0; } }
        main section#twitter .container .tweets {
          flex: 1 0 0; }
          main section#twitter .container .tweets .carousel-cell {
            padding: 15px; }
        main section#twitter .container svg {
          fill: #fff;
          width: 50px;
          height: 41px; }
          @media (max-width: 767px) {
            main section#twitter .container svg {
              width: 30px;
              height: 25px; } }
        main section#twitter .container a {
          color: #fff; }
          main section#twitter .container a small {
            display: block;
            margin-bottom: 10px; }
          main section#twitter .container a p {
            font-size: 1.5em;
            font-style: italic;
            line-height: 1.2; }
            @media (max-width: 767px) {
              main section#twitter .container a p {
                font-size: 1.1em; } }
    main section#ew-eventi {
      padding: 40px 0; }
      @media (max-width: 1300px) {
        main section#ew-eventi .container {
          max-width: 1140px; } }
      main section#ew-eventi .spinner {
        width: 70px;
        margin: 0 auto;
        display: block; }
      main section#ew-eventi .bx-wrapper {
        width: 100%  !important;
        max-width: 1140px !important;
        border: 0;
        box-sizing: border-box;
        margin-top: 20px;
        margin-bottom: 0px;
        box-shadow: none;
        padding: 0 50px 0 45px; }
        @media (max-width: 1650px) {
          main section#ew-eventi .bx-wrapper {
            padding: 0 30px 0 40px; } }
        @media (max-width: 420px) {
          main section#ew-eventi .bx-wrapper {
            padding: 0 28px 0 28px; } }
        main section#ew-eventi .bx-wrapper ul {
          padding-bottom: 30px;
          display: flex;
          flex-wrap: wrap; }
          main section#ew-eventi .bx-wrapper ul li {
            display: flex;
            flex-direction: column;
            padding-bottom: 0px; }
            @media (max-width: 1160px) {
              main section#ew-eventi .bx-wrapper ul li {
                margin-right: 0px !important; } }
            main section#ew-eventi .bx-wrapper ul li div.ew-evento {
              -webkit-box-shadow: 0px 0px 10px 2px rgba(204, 204, 204, 0.7);
              -moz-box-shadow: 0px 0px 10px 2px rgba(204, 204, 204, 0.7);
              box-shadow: 0px 0px 10px 2px rgba(204, 204, 204, 0.7);
              padding: 20px;
              margin: 20px;
              display: flex;
              flex-direction: column;
              height: 100%;
              padding-bottom: 90px;
              position: relative; }
              @media (max-width: 420px) {
                main section#ew-eventi .bx-wrapper ul li div.ew-evento {
                  padding: 20px 14px 90px 14px;
                  margin: 10px; } }
              main section#ew-eventi .bx-wrapper ul li div.ew-evento h3 {
                margin: 0 0 10px 0; }
                main section#ew-eventi .bx-wrapper ul li div.ew-evento h3 a {
                  text-transform: uppercase;
                  font-size: 19px;
                  line-height: 1;
                  display: block;
                  width: 100%; }
              main section#ew-eventi .bx-wrapper ul li div.ew-evento p {
                line-height: 1;
                font-weight: bold; }
              main section#ew-eventi .bx-wrapper ul li div.ew-evento .ew-location {
                color: #7d7d7d;
                padding-left: 20px;
                line-height: 1;
                background-image: url(../img/geo-marker.jpg);
                background-repeat: no-repeat;
                background-position: top left;
                font-size: 15px; }
                main section#ew-eventi .bx-wrapper ul li div.ew-evento .ew-location strong {
                  color: #03B5A4;
                  text-transform: uppercase;
                  font-size: 17px; }
              main section#ew-eventi .bx-wrapper ul li div.ew-evento .btn {
                position: absolute;
                bottom: 20px;
                left: 0;
                right: 0;
                margin: 0 auto;
                max-width: 152px;
                min-width: 1px; }
        main section#ew-eventi .bx-wrapper .bx-controls-direction a {
          width: 25px;
          height: 27px; }
          main section#ew-eventi .bx-wrapper .bx-controls-direction a.bx-prev {
            background: url(../img/arrows.png) no-repeat 0 0;
            left: 0; }
          main section#ew-eventi .bx-wrapper .bx-controls-direction a.bx-next {
            background: url(../img/arrows.png) no-repeat -30px 0;
            right: 0; }
    main section#gruppi-locali {
      padding-bottom: 70px; }
      main section#gruppi-locali #ew-lista-gruppi .gruppo {
        padding: 25px 0;
        border-bottom: 1px solid #b9b9b9;
        margin: 0; }
        main section#gruppi-locali #ew-lista-gruppi .gruppo:last-child {
          border: 0; }
        main section#gruppi-locali #ew-lista-gruppi .gruppo h2 {
          margin-bottom: 0; }
          main section#gruppi-locali #ew-lista-gruppi .gruppo h2 a {
            text-decoration: none; }
        main section#gruppi-locali #ew-lista-gruppi .gruppo p {
          margin: 0;
          color: #e7298d; }
          main section#gruppi-locali #ew-lista-gruppi .gruppo p span.nation {
            color: #912C8D; }
    main section#ew-comitati {
      margin: 0;
      padding: 25px 0 55px 0; }
      .home main section#ew-comitati {
        background: url(../img/bg-form-comitati.jpg) no-repeat center center #973c94;
        padding: 45px 0; }
      main section#ew-comitati div.col-md-5.left {
        padding-left: 150px;
        background: url(../img/marker-plus.png) top left no-repeat; }
        main section#ew-comitati div.col-md-5.left h3 {
          color: #fff;
          margin: 40px 0 25px 0;
          font-size: 30px; }
        main section#ew-comitati div.col-md-5.left h4 {
          color: #fff;
          font-size: 16px;
          margin-bottom: 40px; }
      main section#ew-comitati div.col-md-7.left {
        padding-top: 28px; }
      main section#ew-comitati .textnation {
        display: none;
        margin: 0; }
      main section#ew-comitati select, main section#ew-comitati input {
        border-radius: 50px;
        -webkit-border-radius: 50px;
        -moz-border-radius: 50px;
        padding: 10px 15px;
        box-shadow: none;
        font-size: 15px;
        border: 1px solid #ccc;
        box-sizing: border-box;
        -webkit-appearance: none;
        color: #929292;
        margin: 7px 5px;
        width: 100%;
        background-color: #fff; }
        main section#ew-comitati select.btn-green, main section#ew-comitati input.btn-green {
          background-color: #03B5A4; }
        main section#ew-comitati select.from-page, main section#ew-comitati input.from-page {
          height: 50px; }
        main section#ew-comitati select#ew-comitati-submit, main section#ew-comitati input#ew-comitati-submit {
          color: #fff;
          border: 0;
          max-width: 200px; }
          .home main section#ew-comitati select#ew-comitati-submit, .home main section#ew-comitati input#ew-comitati-submit {
            background-color: #F15E5C; }
    main section#temi {
      padding-top: 70px;
      padding-bottom: 70px; }
      main section#temi h3 {
        padding-left: 20px; }
    main section#merchandising {
      padding: 50px 0 70px 0; }
      main section#merchandising .bx-wrapper {
        border: 0;
        box-sizing: border-box;
        margin-top: 20px;
        margin-bottom: 20px;
        box-shadow: none;
        text-align: center;
        padding: 0 50px; }
        @media (min-width: 1160px) {
          main section#merchandising .bx-wrapper {
            max-width: 1140px !important; } }
        main section#merchandising .bx-wrapper img {
          max-width: 200px;
          margin: 0 auto; }
        main section#merchandising .bx-wrapper h3 {
          max-width: 200px;
          margin: 0 auto;
          line-height: 1;
          margin-top: 10px; }
          main section#merchandising .bx-wrapper h3 a {
            font-size: 19px;
            display: block; }
        main section#merchandising .bx-wrapper .bx-controls-direction a {
          width: 25px;
          height: 27px; }
          main section#merchandising .bx-wrapper .bx-controls-direction a.bx-prev {
            background: url(../img/arrows.png) no-repeat 0 0; }
          main section#merchandising .bx-wrapper .bx-controls-direction a.bx-next {
            background: url(../img/arrows.png) no-repeat -30px 0; }
    main section#news, main section.event-list, main section#comunicati, main section#video {
      padding: 0px 0 90px; }
      @media (max-width: 1024px) {
        main section#news, main section.event-list, main section#comunicati, main section#video {
          padding: 0 0 60px; } }
      main section#news .card-wrapper, main section.event-list .card-wrapper, main section#comunicati .card-wrapper, main section#video .card-wrapper {
        display: flex;
        flex-wrap: wrap; }
      main section#news .card, main section.event-list .card, main section#comunicati .card, main section#video .card {
        flex: 1 0 0;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        background: #fff;
        transition: all 150ms ease-out;
        margin-bottom: 30px; }
        @media (min-width: 768px) and (max-width: 991px) {
          main section#news .card, main section.event-list .card, main section#comunicati .card, main section#video .card {
            flex-direction: row;
            margin-bottom: 30px;
            overflow: hidden; } }
        @media (max-width: 767px) {
          main section#news .card, main section.event-list .card, main section#comunicati .card, main section#video .card {
            max-width: 360px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 30px; } }
        main section#news .card:hover, main section.event-list .card:hover, main section#comunicati .card:hover, main section#video .card:hover {
          transform: translateY(-5px);
          box-shadow: 0 7px 20px 0 rgba(0, 0, 0, 0.1); }
        main section#news .card .teaser, main section.event-list .card .teaser, main section#comunicati .card .teaser, main section#video .card .teaser {
          font-size: 0;
          position: relative; }
          main section#news .card .teaser img, main section.event-list .card .teaser img, main section#comunicati .card .teaser img, main section#video .card .teaser img {
            width: 100%; }
          @media (min-width: 992px) {
            main section#news .card .teaser, main section.event-list .card .teaser, main section#comunicati .card .teaser, main section#video .card .teaser {
              overflow: hidden; } }
          @media (max-width: 767px) {
            main section#news .card .teaser, main section.event-list .card .teaser, main section#comunicati .card .teaser, main section#video .card .teaser {
              overflow: hidden; } }
          @media (min-width: 768px) and (max-width: 992px) {
            main section#news .card .teaser img, main section.event-list .card .teaser img, main section#comunicati .card .teaser img, main section#video .card .teaser img {
              max-width: 240px; } }
          main section#news .card .teaser .category, main section.event-list .card .teaser .category, main section#comunicati .card .teaser .category, main section#video .card .teaser .category {
            position: absolute;
            top: 10px;
            left: 10px;
            height: 25px;
            color: #fff;
            font-size: 16px;
            padding: 2px 10px 2px 10px;
            line-height: 1.4; }
            main section#news .card .teaser .category strong, main section.event-list .card .teaser .category strong, main section#comunicati .card .teaser .category strong, main section#video .card .teaser .category strong {
              text-transform: uppercase;
              font-size: 16px;
              font-weight: 600;
              position: relative; }
              main section#news .card .teaser .category strong:before, main section.event-list .card .teaser .category strong:before, main section#comunicati .card .teaser .category strong:before, main section#video .card .teaser .category strong:before {
                content: '+';
                color: #FFC218; }
        main section#news .card .text, main section.event-list .card .text, main section#comunicati .card .text, main section#video .card .text {
          flex: 1 0 auto;
          padding: 20px 25px;
          display: flex;
          flex-wrap: wrap;
          align-items: flex-start; }
          @media (min-width: 768px) and (max-width: 991px) {
            main section#news .card .text, main section.event-list .card .text, main section#comunicati .card .text, main section#video .card .text {
              flex: 1 1 0; } }
          main section#news .card .text .top, main section.event-list .card .text .top, main section#comunicati .card .text .top, main section#video .card .text .top {
            flex: 0 0 100%;
            position: relative; }
          main section#news .card .text h4, main section.event-list .card .text h4, main section#comunicati .card .text h4, main section#video .card .text h4 {
            margin-top: 0px;
            font-size: 1.13em;
            font-weight: 700;
            line-height: 1.1; }
          main section#news .card .text span.link, main section.event-list .card .text span.link, main section#comunicati .card .text span.link, main section#video .card .text span.link {
            display: block;
            margin-top: 5px;
            align-self: flex-end;
            font-weight: bold;
            color: #26AEE5;
            font-size: 14px;
            line-height: 14px;
            text-transform: uppercase; }
            main section#news .card .text span.link span, main section.event-list .card .text span.link span, main section#comunicati .card .text span.link span, main section#video .card .text span.link span {
              color: #FFC218; }
    main section#news {
      padding-top: 60px;
      padding-bottom: 60px; }
      main section#news.related {
        padding: 0 0 60px 0;
        margin: 0; }
      main section#news h3 {
        margin-bottom: 0; }
      main section#news p {
        font-size: 1em;
        line-height: 1.2em; }
    main section#video {
      background-color: #FFC218;
      padding: 50px 0; }
      main section#video h3 {
        margin-bottom: 0; }
      main section#video .card {
        background-color: transparent;
        box-shadow: none; }
        main section#video .card:hover {
          transform: translateY(-5px);
          box-shadow: none; }
        main section#video .card h4 {
          max-width: 88%; }
        @media (max-width: 767px) {
          main section#video .card .text {
            padding: 4px 0 0 0; } }
        @media (min-width: 992px) {
          main section#video .card .text {
            padding: 4px 0 0 0; } }
    @media (max-width: 767px) {
      main section.event-list time {
        margin-bottom: 15px; } }
    main section.green_bg {
      background-color: #03B5A4;
      padding: 15% 0;
      color: #fff;
      min-height: 100vh; }
      @media (max-width: 991px) {
        main section.green_bg {
          padding: 5% 1%;
          min-height: 60vh; } }
      main section.green_bg ul {
        margin: 2em 0; }
        @media (max-width: 1024px) {
          main section.green_bg ul {
            margin: 1em auto; } }
        @media (max-width: 575px) {
          main section.green_bg ul {
            margin: 1em; } }
        main section.green_bg ul li {
          list-style-type: none;
          display: flex;
          margin-bottom: 1em; }
          main section.green_bg ul li a {
            text-transform: uppercase;
            margin-left: 1em;
            font-size: 1.5em;
            line-height: 50px;
            color: #fff; }
            @media (max-width: 575px) {
              main section.green_bg ul li a {
                line-height: 30px; } }
          @media (max-width: 575px) {
            main section.green_bg ul li a.whatsapp_btn {
              background-size: 30px 30px; } }
      main section.green_bg:before {
        content: "";
        position: absolute;
        top: -8%;
        left: -5%;
        width: 105%;
        height: 13%;
        transform: rotate(-4deg);
        z-index: 1;
        background: white; }
        @media (max-width: 991px) {
          main section.green_bg:before {
            display: none; } }
      main section.green_bg:after {
        content: "";
        position: absolute;
        bottom: -10%;
        right: -5%;
        width: 110%;
        height: 25%;
        transform: rotate(4deg);
        z-index: 1;
        background: #F15E5C; }
        @media (max-width: 991px) {
          main section.green_bg:after {
            display: none; } }
    main section.red_bg {
      background-color: #F15E5C;
      z-index: 2;
      color: #fff;
      padding-bottom: 5%;
      min-height: 70vh; }
      @media (max-width: 991px) {
        main section.red_bg {
          padding: 5% 1%;
          min-height: 60vh; } }
      main section.red_bg .cta-profile {
        margin: 2em 0; }
        @media (max-width: 1024px) {
          main section.red_bg .cta-profile.fbcover .preview-container {
            flex-flow: column; }
          main section.red_bg .cta-profile.fbcover img {
            display: none; }
            main section.red_bg .cta-profile.fbcover img.cover-vis {
              display: block; } }
        @media (max-width: 991px) {
          main section.red_bg .cta-profile.fbpic img {
            width: 20%; }
            main section.red_bg .cta-profile.fbpic img.op {
              width: 50px; }
          main section.red_bg .cta-profile.fbpic .preview-container svg {
            width: 140px; }
          main section.red_bg .cta-profile.fbpic .profile-picture.slogan svg {
            width: 190px; } }
        @media (max-width: 575px) {
          main section.red_bg .cta-profile.fbpic img {
            width: 20%; }
            main section.red_bg .cta-profile.fbpic img.op {
              width: 20px;
              margin: auto 1em; }
          main section.red_bg .cta-profile.fbpic .preview-container {
            margin: 0; }
            main section.red_bg .cta-profile.fbpic .preview-container .profile-picture svg {
              width: 24px;
              right: 15px;
              bottom: 15px; }
            main section.red_bg .cta-profile.fbpic .preview-container .profile-picture.slogan svg {
              width: 35px;
              right: 20px;
              bottom: 18px; } }
        main section.red_bg .cta-profile .preview-container {
          display: inline-flex;
          justify-content: space-between;
          padding: 0;
          align-items: center;
          margin: 2em 0; }
          main section.red_bg .cta-profile .preview-container .profile-picture {
            position: relative; }
            main section.red_bg .cta-profile .preview-container .profile-picture img {
              width: 100%; }
            main section.red_bg .cta-profile .preview-container .profile-picture svg {
              position: absolute;
              bottom: 25px;
              right: 20px;
              width: 50px; }
            main section.red_bg .cta-profile .preview-container .profile-picture.slogan svg {
              bottom: 40px;
              right: 75px;
              width: 80px; }
          main section.red_bg .cta-profile .preview-container svg {
            width: 190px; }
        @media (max-width: 1024px) {
          main section.red_bg .cta-profile .btn-group {
            text-align: center; } }
      main section.red_bg:after {
        content: "";
        position: absolute;
        bottom: -14%;
        right: -5%;
        width: 110%;
        height: 18%;
        transform: rotate(-4deg);
        background: #912C8D;
        z-index: 1; }
        @media (max-width: 991px) {
          main section.red_bg:after {
            display: none; } }
    main section.purple_bg {
      background-color: #912C8D;
      padding: 6% 0;
      color: #fff;
      z-index: 2; }
      @media (max-width: 991px) {
        main section.purple_bg {
          padding: 5% 1%; } }
      main section.purple_bg .preview-container {
        display: inline-flex;
        justify-content: space-between;
        padding: 0;
        align-items: center;
        margin: 2em 0; }
        @media (max-width: 991px) {
          main section.purple_bg .preview-container {
            flex-flow: column; } }
        main section.purple_bg .preview-container .dwnl-wrap {
          min-height: 75vh;
          text-align: center; }
          main section.purple_bg .preview-container .dwnl-wrap .btn-group a {
            margin-bottom: 2em; }
          @media (max-width: 991px) {
            main section.purple_bg .preview-container .dwnl-wrap {
              min-height: 1px; } }
    main section.cyan_bg {
      background-color: #26AEE5;
      padding: 5% 0 25% 0;
      color: #fff;
      z-index: 2;
      min-height: 100vh; }
      @media (max-width: 991px) {
        main section.cyan_bg {
          padding: 5% 1%;
          min-height: 60vh; } }
      main section.cyan_bg ul {
        margin: 2em 0; }
        main section.cyan_bg ul li {
          list-style-type: none;
          margin-bottom: 1em;
          padding-left: 40px;
          position: relative;
          cursor: pointer; }
          main section.cyan_bg ul li span {
            text-transform: uppercase;
            margin-left: 1em;
            font-size: 1.5em;
            line-height: 50px; }
          main section.cyan_bg ul li:before {
            content: '';
            width: 24px;
            height: 24px;
            border-radius: 12px;
            background-color: #912C8D;
            background-image: url("../img/faq_closed.png");
            background-repeat: no-repeat;
            background-position: center;
            background-size: 35%;
            position: absolute;
            left: 0; }
          main section.cyan_bg ul li.open:before {
            content: '';
            width: 24px;
            height: 24px;
            border-radius: 12px;
            background-color: #F15E5C;
            background-image: url("../img/faq_open.png");
            background-repeat: no-repeat;
            background-position: center;
            background-size: 35%;
            position: absolute;
            left: 0; }
          main section.cyan_bg ul li .answer {
            background: #a8dbf0;
            color: #303988;
            padding: 2em;
            font-size: .9em;
            display: none; }
            main section.cyan_bg ul li .answer .answer-padding {
              margin: 2em 0; }
            main section.cyan_bg ul li .answer p {
              margin-bottom: 0; }
          main section.cyan_bg ul li .question {
            min-height: 25px; }
            main section.cyan_bg ul li .question h5 {
              line-height: 25px;
              font-size: 1em;
              font-weight: 400;
              margin: 0; }
      main section.cyan_bg:before {
        content: "";
        position: absolute;
        top: -15%;
        left: -2%;
        width: 105%;
        height: 25%;
        transform: rotate(-4deg);
        background: #26AEE5; }
        @media (max-width: 991px) {
          main section.cyan_bg:before {
            display: none; } }
      main section.cyan_bg:after {
        content: "";
        position: absolute;
        bottom: -10%;
        right: -5%;
        width: 110%;
        height: 25%;
        transform: rotate(4deg);
        z-index: 1;
        background: #2E388D; }
        @media (max-width: 991px) {
          main section.cyan_bg:after {
            display: none; } }
    main section.blue_bg {
      background-color: #2E388D;
      padding: 3% 0;
      color: #fff;
      z-index: 2;
      min-height: 50vh; }
  @media screen and (max-width: 576px) {
    main.group-page h2 {
      font-size: 2em; } }
  main.group-page .content .text-primary {
    text-transform: uppercase;
    font-weight: bolder;
    font-size: 1.8em;
    font-family: 'Gotham Rounded', sans-serif; }
    @media screen and (max-width: 576px) {
      main.group-page .content .text-primary {
        font-size: 1.4em; } }
  main.group-page .group-steps {
    padding-left: 8.333333%; }
    @media screen and (max-width: 576px) {
      main.group-page .group-steps {
        padding-left: 15px; } }
    main.group-page .group-steps .group-step {
      margin: 30px auto; }
  main.group-page .groups-container {
    padding-left: 8.333333%; }
    @media screen and (max-width: 576px) {
      main.group-page .groups-container {
        padding-left: 15px; } }
    main.group-page .groups-container.open .group-toggle :before {
      content: '\f077'; }
    main.group-page .groups-container .group-toggle {
      position: relative;
      cursor: pointer; }
      main.group-page .groups-container .group-toggle :before {
        content: '\f078';
        display: block;
        position: absolute;
        right: 0;
        right: 30px;
        font-family: "Font Awesome 5 Free";
        color: #2E388D; }
      main.group-page .groups-container .group-toggle .red-text {
        color: #F15E5C;
        text-transform: uppercase;
        font-size: 1.2em;
        line-height: 1.2em;
        font-weight: bolder;
        margin: 30px auto;
        display: block; }
    main.group-page .groups-container .groups-wrapper {
      display: none;
      flex-wrap: wrap; }
      main.group-page .groups-container .groups-wrapper .group-item {
        margin: 15px 0;
        font-size: .8em;
        padding: 15px;
        -webkit-box-shadow: 0px 0px 39px -5px rgba(0, 0, 0, 0.3);
        -moz-box-shadow: 0px 0px 39px -5px rgba(0, 0, 0, 0.3);
        box-shadow: 0px 0px 39px -5px rgba(0, 0, 0, 0.3); }
        main.group-page .groups-container .groups-wrapper .group-item .item-header {
          position: relative;
          padding-bottom: 10px; }
          main.group-page .groups-container .groups-wrapper .group-item .item-header:after {
            content: '';
            position: absolute;
            width: 120px;
            height: 1px;
            bottom: 0;
            background-color: #F15E5C;
            left: -15px; }
          main.group-page .groups-container .groups-wrapper .group-item .item-header h5 {
            font-size: 1.3em;
            margin-bottom: 0; }
        main.group-page .groups-container .groups-wrapper .group-item .group-description {
          margin: 15px 0;
          line-height: 1.5em; }
        main.group-page .groups-container .groups-wrapper .group-item .item-footer.socials {
          display: flex;
          justify-content: space-between;
          align-items: center; }
          main.group-page .groups-container .groups-wrapper .group-item .item-footer.socials a.social {
            width: 25px; }
            main.group-page .groups-container .groups-wrapper .group-item .item-footer.socials a.social svg {
              width: 80%;
              fill: #F15E5C;
              vertical-align: middle; }
  main.ty-page #page-content .title h3 {
    font-family: 'Gotham Rounded', sans-serif;
    text-transform: uppercase; }
    main.ty-page #page-content .title h3 span {
      color: #FFC218; }
    @media screen and (max-width: 576px) {
      main.ty-page #page-content .title h3 {
        font-size: 1.4em; } }
  main.ty-page #page-content .meme-wrapper {
    width: 80%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    margin-top: 15px; }
    main.ty-page #page-content .meme-wrapper img {
      display: block;
      width: 100%; }
    @media screen and (max-width: 576px) {
      main.ty-page #page-content .meme-wrapper {
        width: 100%; } }
  main.ty-page #page-content .btn-group {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap; }
    main.ty-page #page-content .btn-group .btn {
      justify-content: center;
      align-items: center;
      display: flex;
      margin-right: 10px; }
      main.ty-page #page-content .btn-group .btn svg {
        width: 16px;
        margin: 0 7px; }
        main.ty-page #page-content .btn-group .btn svg * {
          fill: #fff; }
  main .form-group .select2-container {
    width: 100% !important;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px; }
    main .form-group .select2-container .select2-selection--single,
    main .form-group .select2-container .select2-selection__arrow {
      height: 40px !important;
      border-radius: 20px;
      border: 0; }
  main .form-group .select2-container--open .select2-dropdown--below {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1) !important;
    border: 0 !important; }
  main .form-group .select2-container--default .select2-selection--single .select2-selection__rendered {
    text-align: left;
    line-height: 40px;
    padding: 0 20px; }
  main .form-group .select2-results__option--highlighted {
    background-color: #1DA1F2; }

.socialbar {
  position: absolute;
  right: -19px;
  top: -5px; }
  .valori .socialbar {
    position: static; }
  .single article .socialbar {
    padding-bottom: 70px;
    padding-left: 18px;
    position: static; }
  #video .socialbar {
    right: 0px;
    top: 0px; }
  .socialbar a {
    display: inline-block;
    margin-bottom: 5px; }
    .socialbar a:hover {
      cursor: pointer; }
      .socialbar a:hover svg {
        transform: scale(1.05); }
    .socialbar a svg {
      width: 15px;
      fill: #2E388D;
      vertical-align: middle;
      margin-right: 10px; }
      #video .socialbar a svg {
        fill: #fff; }
      .single article .socialbar a svg {
        width: 24px; }

.valori .col-sm-6 {
  margin-bottom: 50px; }

.page-template-page-iscriviti main section#cover .cover-wrapper {
  padding: 0; }

.select2-search--dropdown {
  display: none !important; }

.select2-dropdown.select2-dropdown--above {
  border: 0 !important;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1) !important;
  color: #000 !important; }

.nav-links a, .nav-links span {
  display: inline-block; }
.nav-links a.page-numbers {
  font-weight: bold;
  padding: 0 8px; }
  .nav-links a.page-numbers.prev, .nav-links a.page-numbers.next {
    font-weight: normal; }
.nav-links span.current {
  padding: 0 7px;
  background-color: #FFC218;
  font-weight: bold;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%; }

.single-post main {
  margin-top: -150px; }

.preview {
  position: relative;
  margin-top: 0px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); }
  .preview.videobox {
    box-shadow: none; }
  .preview .embed-wrapper {
    margin: 0; }
  .preview .top {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 25px; }
    .preview .top time, .preview .top h1 {
      width: 100%;
      display: block;
      clear: both; }
    .preview .top h1 {
      margin-bottom: 0; }
    .preview .top time {
      font-size: 21px;
      margin: 0 0 7px 0; }
    .preview .top .category {
      height: 39px;
      color: #fff;
      padding: 2px 10px 2px 10px;
      line-height: 1.4;
      float: left;
      clear: both;
      margin-bottom: 9px; }
      .preview .top .category strong {
        text-transform: uppercase;
        font-size: 27px;
        font-weight: 600;
        position: relative; }
        .preview .top .category strong:before {
          content: '+';
          color: #FFC218; }
  .preview img {
    width: 100%; }
  .preview .overlay {
    position: absolute;
    bottom: 0;
    left: 0; }

footer section#newsletter {
  position: relative; }
  @media (min-width: 992px) {
    footer section#newsletter {
      min-height: 800px; } }
  footer section#newsletter .container {
    position: relative;
    z-index: 2;
    padding-top: 90px;
    padding-bottom: 90px; }
  @media (min-width: 992px) {
    footer section#newsletter .row {
      min-height: 800px; } }
  footer section#newsletter .row .form-group {
    max-width: 320px; }
  footer section#newsletter .row label span {
    line-height: 1.2em; }
  footer section#newsletter .row h2 {
    color: #FFC218;
    font-size: 2.5em;
    text-transform: uppercase;
    margin-bottom: 10px; }
  footer section#newsletter .row h4 {
    color: #FFC218;
    margin-bottom: 20px; }
  footer section#newsletter:after {
    background: none;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; }
footer section#foot {
  color: #fff;
  background: #26AEE5;
  overflow: hidden;
  position: relative;
  padding: 90px 0 80px; }
  @media (max-width: 1024px) {
    footer section#foot {
      padding: 30px 0 20px; } }
  footer section#foot .copyright {
    margin-top: 60px;
    margin-bottom: 0px; }
    footer section#foot .copyright a {
      color: #fff !important; }
  footer section#foot .container-fluid {
    position: relative;
    z-index: 2; }
  footer section#foot .menu {
    list-style: none; }
    footer section#foot .menu li {
      margin-bottom: 15px; }
    footer section#foot .menu a {
      font-weight: bold;
      color: #fff;
      text-transform: uppercase;
      position: relative;
      display: inline-block; }
  footer section#foot .logo-wrapper {
    width: 150px; }
  footer section#foot p {
    margin-bottom: 20px; }
    @media (max-width: 991px) {
      footer section#foot p {
        margin-bottom: 1em; } }
  @media (max-width: 991px) {
    footer section#foot .socials {
      display: flex;
      flex-wrap: wrap; }
      footer section#foot .socials .social {
        flex: 0 0 100%;
        margin-right: 15px; } }
  footer section#foot .social {
    display: block;
    margin-bottom: 15px; }
    footer section#foot .social svg {
      width: 24px;
      fill: #fff;
      vertical-align: middle;
      margin-right: 4px; }
    footer section#foot .social span {
      display: inline-block;
      font-weight: 600;
      line-height: 24px;
      vertical-align: middle;
      color: #fff; }
  footer section#foot:before {
    content: '';
    position: absolute;
    top: -5%;
    left: -10%;
    width: 30%;
    height: 150%;
    background: #FFC218;
    transform: rotate(-20deg);
    z-index: 1; }
  footer section#foot:after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -30%;
    width: 130%;
    height: 60%;
    background: #2E388D;
    transform: rotate(-14deg);
    z-index: 1; }
@media (max-width: 991px) {
  footer .c-order-0 {
    order: 0; }
  footer .c-order-1 {
    order: 1; }
  footer .c-order-2 {
    order: 2;
    margin-top: 20px; }
  footer .mobile-none {
    display: none !important; } }
@media (max-width: 767px) {
  footer .c-order-1 {
    display: none; } }

.slide {
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: 100%; }
  .slide span {
    position: absolute;
    left: 0;
    width: 100%;
    display: block;
    visibility: hidden;
    backface-visibility: hidden;
    vertical-align: bottom;
    bottom: 0;
    height: auto;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); }
    .slide span.active {
      visibility: visible;
      transform: translateY(0%);
      opacity: 1;
      transition: all 500ms ease-out;
      transition-delay: 250ms; }
    .slide span.hide {
      opacity: 0;
      transition: none;
      transform: translateY(50%); }
    .slide span.slide-up {
      opacity: 0;
      transform: translateY(-100%);
      transition: all 500ms ease-in; }

.steps .step-1 {
  position: relative; }
.steps .step-2 {
  display: none; }

form.avoid-interactions {
  opacity: .4; }
  form.avoid-interactions:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100; }
form .input-group {
  position: relative;
  margin-bottom: 10px; }
  form .input-group input {
    appearance: none;
    border: 0;
    height: 50px;
    border-radius: 20px;
    font-size: 16px;
    width: 100%;
    line-height: 16px;
    padding: 17px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    font-family: 'IBM Plex Sans', sans-serif; }
form .checkbox-group {
  margin: 7px 0;
  position: relative; }
  form .checkbox-group input {
    appearance: none;
    width: 16px;
    height: 16px;
    position: absolute;
    margin-top: 3px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); }
    form .checkbox-group input:checked {
      background: #03B5A4; }
  form .checkbox-group label {
    cursor: pointer; }
    form .checkbox-group label span {
      vertical-align: text-bottom;
      color: #fff;
      font-size: 14px;
      display: inline-block;
      padding-left: 23px;
      margin-left: 6px; }
      form .checkbox-group label span a {
        color: #fff; }
form .errors-alert {
  background: #912C8D;
  color: #FFFFFF !important;
  width: 50%;
  min-width: 200px;
  margin: 0 5%;
  position: absolute;
  left: 0;
  bottom: 105%;
  bottom: calc( 100% + 5px);
  border-radius: 4px;
  z-index: 100;
  animation-name: fadeInDown;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  animation-duration: 0.2s; }
  form .errors-alert p {
    margin: 0;
    padding: 10px 10px 15px 10px;
    font-size: 16px;
    font-weight: normal;
    line-height: 1em;
    text-align: left !important;
    color: #FFFFFF !important; }
  form .errors-alert a {
    color: #FFFFFF;
    text-decoration: underline; }
  form .errors-alert span {
    position: absolute;
    top: 50%;
    left: 10px;
    margin: -0.6em 0 0 0; }
  form .errors-alert:after {
    content: '';
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #912C8D transparent transparent transparent;
    position: absolute;
    bottom: 1px;
    left: 10%;
    margin: 0 0 -10px -10px; }
form button {
  border: 0; }
form .error-messages {
  display: none; }

.form-dona .select-amount {
  margin-top: 30px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px; }
  .form-dona .select-amount .col-6 {
    cursor: pointer; }
    .form-dona .select-amount .col-6.active {
      background: #F15E5C;
      color: #fff; }
  .form-dona .select-amount .choice {
    padding: 20px 15px;
    font-size: 1.5em;
    line-height: 1em;
    font-weight: bold; }
    .form-dona .select-amount .choice .icon-choice {
      max-width: 80px;
      max-height: 80px;
      margin: 15px auto; }
  .form-dona .select-amount .bor-r {
    border-right: 1px solid rgba(222, 222, 222, 0.5); }
  .form-dona .select-amount .bor-b {
    border-bottom: 1px solid rgba(222, 222, 222, 0.5); }
  @media (max-width: 575px) {
    .form-dona .select-amount .bor-sm-r {
      border-right: 1px solid rgba(222, 222, 222, 0.5); }
    .form-dona .select-amount .bor-sm-b {
      border-bottom: 1px solid rgba(222, 222, 222, 0.5); } }
  @media (min-width: 576px) {
    .form-dona .select-amount .bor-md-r {
      border-right: 1px solid rgba(222, 222, 222, 0.5); }
    .form-dona .select-amount .bor-md-b {
      border-bottom: 1px solid rgba(222, 222, 222, 0.5); } }
.form-dona .input-hide {
  display: none;
  position: relative;
  margin-bottom: 10px; }
  .form-dona .input-hide.avoid-interactions {
    opacity: .4; }
    .form-dona .input-hide.avoid-interactions:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 100; }
  .form-dona .input-hide input {
    appearance: none;
    border: 0;
    height: 50px;
    border-radius: 20px;
    font-size: 16px;
    width: 100%;
    line-height: 16px;
    padding: 17px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    font-family: 'IBM Plex Sans', sans-serif; }
.form-dona form {
  margin-top: 30px; }
  .form-dona form .checkbox-group label span {
    color: #2E388D; }
    .form-dona form .checkbox-group label span a {
      color: #2E388D; }
  .form-dona form .checkbox-group.no-m {
    margin-bottom: 0; }
  .form-dona form .btn-ml {
    margin-left: 15px; }
    @media (max-width: 767px) {
      .form-dona form .btn-ml {
        margin-left: 0;
        margin-top: 15px; } }

h3.slide {
  height: 2.4em; }

h2.slide {
  height: 1.2em; }

.section-title {
  margin-bottom: 30px; }

.single article {
  margin-bottom: 0px; }
  .single article .cover {
    height: 400px;
    margin-bottom: 30px; }
  .single article .content {
    padding-top: 45px;
    padding-bottom: 40px; }
  .single article .post-nav {
    font-size: 0.88em;
    font-weight: 600;
    text-transform: uppercase; }
  .single article .prev-next-post-nav span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
.single .video-title {
  padding: 15px 15px 0 15px; }
  .single .video-title h1 {
    margin-bottom: 0; }
.single .content {
  padding-left: 30px;
  padding-right: 30px;
  color: #535353; }
  .single .content strong {
    color: #2E388D; }

.content a {
  text-decoration: underline; }
  .content a:hover {
    text-decoration: none; }
  .content a.btn {
    text-decoration: none; }

.alignleft {
  text-align: left; }
  .alignleft i {
    float: left;
    line-height: 20px; }

.alignright {
  text-align: right; }
  .alignright i {
    float: right;
    line-height: 20px; }

time {
  font-size: 0.88em;
  color: #2E388D; }

.tweets .flickity-viewport,
.slider .flickity-viewport {
  transition: height .3s ease-out; }
.tweets .flickity-slider,
.slider .flickity-slider {
  transform: none !important; }
.tweets .carousel-cell,
.slider .carousel-cell {
  left: 0 !important;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: -1; }
.tweets .tweet,
.slider .tweet {
  backface-visibility: visible !important; }
.tweets .carousel-cell.is-selected,
.slider .carousel-cell.is-selected {
  opacity: 1;
  z-index: 0; }
  .tweets .carousel-cell.is-selected .tweet,
  .slider .carousel-cell.is-selected .tweet {
    animation: flipInX 500ms forwards; }
.tweets .flickity-page-dots .dot,
.slider .flickity-page-dots .dot {
  background: #fff; }

.slider .gotham .carousel-cell {
  left: 50% !important;
  transform: translateX(-50%);
  transition: none !important;
  overflow: hidden; }
  .slider .gotham .carousel-cell span {
    position: relative;
    display: block;
    backface-visibility: hidden;
    vertical-align: bottom;
    bottom: 0;
    height: auto;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: all 500ms ease-out; }
  .slider .gotham .carousel-cell.is-selected span {
    transform: translateY(0%); }

.press-wrapper {
  padding-bottom: 30px; }
  .press-wrapper span.link {
    display: block;
    margin-top: 5px;
    align-self: flex-end;
    font-weight: bold;
    color: #26AEE5;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase; }
    .press-wrapper span.link span {
      color: #FFC218;
      margin: 0; }
    .press-wrapper span.link:hover {
      color: #212967; }
    .press-wrapper span.link svg {
      height: 1.3em;
      max-width: 100%;
      margin-right: 5px;
      vertical-align: sub;
      fill: #2E388D; }
  .press-wrapper .border {
    margin-top: 20px;
    border-bottom: 2px solid rgba(155, 155, 155, 0.3); }
  .press-wrapper time {
    color: #912C8D;
    margin: 0;
    font-size: 1em; }

#breadcrumbs {
  display: block;
  margin-bottom: 5px; }
  #breadcrumbs i {
    font-size: 1em;
    line-height: 1em;
    vertical-align: sub; }
  #breadcrumbs .breadcrumb_last {
    display: none; }

.embed-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 15px 0; }
  .single.postid-27 .embed-wrapper {
    padding-bottom: 37.25%; }
  .embed-wrapper iframe,
  .embed-wrapper object,
  .embed-wrapper embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0; }
    .single.postid-27 .embed-wrapper iframe, .single.postid-27
    .embed-wrapper object, .single.postid-27
    .embed-wrapper embed {
      text-align: center;
      position: absolute;
      left: 0;
      right: 0;
      margin-left: auto;
      margin-right: auto;
      max-width: 640px; }

@keyframes flipInX {
  0% {
    transform: translateY(100%); }
  100% {
    transform: translateY(0%); } }
.at-expanding-share-button {
  z-index: 9999 !important; }

.other-payments {
  margin-top: 30px; }

#main-map-canvas {
  height: 60vh; }
  @media screen and (max-width: 767px) {
    #main-map-canvas {
      height: 50vh; } }

.marker-template {
  display: none; }

.marker {
  width: 27px;
  height: 27px;
  position: relative;
  z-index: 10;
  font-size: 12px; }
  .marker .marker-content {
    position: absolute;
    width: 32px;
    height: 32px;
    top: 0;
    left: 14px;
    position: relative;
    border-radius: 50%;
    z-index: 2;
    transform-origin: 50% 100%;
    cursor: pointer;
    transform: translateX(-50%); }
    .marker .marker-content:after {
      content: '';
      height: 0;
      width: 0;
      border-width: 30px 35px 0;
      border-style: solid;
      border-color: #2E388D transparent transparent transparent;
      position: absolute;
      bottom: 9px;
      left: 50%;
      margin: 0 0 0 -35px;
      z-index: 3;
      transform: scale(0);
      transition: all 0.3s ease-out;
      transform-origin: 50% 0; }
    .marker .marker-content:before {
      content: '';
      height: 0;
      width: 0;
      border-width: 30px 35px 0;
      border-style: solid;
      border-color: #2E388D transparent transparent transparent;
      position: absolute;
      bottom: 2px;
      left: 50%;
      margin: 0 0 0 -35px;
      z-index: 0;
      transform: scale(0);
      transition: all 0.3s ease-out;
      transform-origin: 50% 0; }
    .marker .marker-content .marker-tooltip {
      position: relative;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 11; }
      .marker .marker-content .marker-tooltip:after {
        position: absolute;
        content: '';
        background-image: url("../img/marker.png");
        background-size: 100% 100%;
        background-repeat: no-repeat;
        width: 30px;
        height: 36px;
        top: -7px;
        left: 1px;
        z-index: 5;
        z-index: 5;
        transition: all 0.3s ease-out; }
      .marker .marker-content .marker-tooltip .marker-tooltip-content {
        position: relative;
        background: #2E388D;
        width: 100%;
        overflow: hidden;
        font-family: 'IBM Plex Sans', sans-serif;
        text-align: center;
        color: #2E388D;
        opacity: 0;
        line-height: 1.6em;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap; }
        .marker .marker-content .marker-tooltip .marker-tooltip-content .close {
          position: absolute;
          top: 5px;
          right: 5px;
          text-align: right;
          cursor: pointer; }
          .marker .marker-content .marker-tooltip .marker-tooltip-content .close i.material-icons {
            font-size: 15px; }
        .marker .marker-content .marker-tooltip .marker-tooltip-content .main-content {
          flex: 1 0 auto;
          padding: 17px 10px 8px;
          border-bottom-right-radius: 20px;
          overflow: hidden;
          background: #fff; }
          .marker .marker-content .marker-tooltip .marker-tooltip-content .main-content .title {
            font-weight: 600;
            font-size: 1.4em;
            text-transform: uppercase; }
          .marker .marker-content .marker-tooltip .marker-tooltip-content .main-content hr {
            margin: 5px 0;
            border: 0;
            border-bottom: 1px solid #FFF; }
          .marker .marker-content .marker-tooltip .marker-tooltip-content .main-content big {
            display: block;
            font-size: 1.4em; }
          .marker .marker-content .marker-tooltip .marker-tooltip-content .main-content time {
            display: block;
            font-size: 1.1em; }
        .marker .marker-content .marker-tooltip .marker-tooltip-content .link {
          padding: 8px 5px;
          font-weight: 600;
          text-transform: uppercase;
          background: #2E388D; }
          .marker .marker-content .marker-tooltip .marker-tooltip-content .link[data-link="false"] {
            display: none; }
          .marker .marker-content .marker-tooltip .marker-tooltip-content .link img {
            height: 1.3em;
            max-width: 100%;
            margin-right: 5px;
            vertical-align: sub; }
          .marker .marker-content .marker-tooltip .marker-tooltip-content .link a {
            color: #fff; }
            .marker .marker-content .marker-tooltip .marker-tooltip-content .link a:hover {
              color: #fff; }
    .marker .marker-content.closed:after {
      transition: all 0.3s ease-out;
      animation-name: pointerIn;
      animation-timing-function: ease-out;
      animation-fill-mode: forwards;
      animation-duration: 0.3s; }
    .marker .marker-content.closed:before {
      transition: all 0.3s ease-out;
      animation-name: pointerIn;
      animation-timing-function: ease-out;
      animation-fill-mode: forwards;
      animation-duration: 0.3s; }
    .marker .marker-content.opened {
      background-color: #FFF;
      width: 220px;
      height: auto;
      top: -15px;
      left: 14px;
      box-sizing: border-box;
      border-radius: 0;
      z-index: 3;
      box-shadow: 0 7px 20px 0 rgba(0, 0, 0, 0.1);
      transform: translate(-50%, -90%);
      transition: all 0.3s ease-out; }
      .marker .marker-content.opened:after {
        border-color: #2E388D transparent transparent transparent;
        animation-name: pointerOut;
        animation-timing-function: ease-out;
        animation-fill-mode: forwards;
        animation-direction: normal;
        animation-duration: 0.3s;
        bottom: -21px; }
      .marker .marker-content.opened:before {
        animation-name: pointerOut;
        animation-timing-function: ease-out;
        animation-fill-mode: forwards;
        animation-direction: normal;
        animation-duration: 0.3s;
        bottom: -28px; }
      .marker .marker-content.opened .marker-tooltip {
        transition: all 0.3s ease-out; }
        .marker .marker-content.opened .marker-tooltip:after {
          opacity: 1;
          transform: scale(0.5);
          transition: all 0.3s ease-out; }
        .marker .marker-content.opened .marker-tooltip .marker-tooltip-content {
          transition: all 0.3s ease-out;
          opacity: 1;
          z-index: 12; }

.event-filter {
  padding: 40px 0;
  background: #f5f5f5;
  margin-bottom: 90px; }
  .event-filter select {
    width: 100%;
    display: none; }
  @media (max-width: 1024px) {
    .event-filter {
      margin-bottom: 60px; } }
  @media (max-width: 767px) {
    .event-filter .col-12 {
      margin-bottom: 15px; } }
  .event-filter .clear-filter {
    display: inline-block;
    text-align: center;
    font-size: .88em; }
  .event-filter input[data-toggle="datepicker"] {
    appearance: none;
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    width: 100%;
    height: 35px;
    line-height: 35px;
    display: block;
    padding-left: 8px;
    color: #444;
    padding-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1em; }
    .event-filter input[data-toggle="datepicker"]::-webkit-input-placeholder {
      color: #999; }
    .event-filter input[data-toggle="datepicker"]::-moz-placeholder {
      color: #999; }
    .event-filter input[data-toggle="datepicker"]:-ms-input-placeholder {
      color: #999; }
    .event-filter input[data-toggle="datepicker"]:-moz-placeholder {
      color: #999; }

@media (max-width: 991px) {
  #programma-carousel {
    margin-top: 30px; } }
@media (max-width: 767px) {
  #programma-carousel {
    margin-top: 30px; }
    #programma-carousel.flickity-enabled {
      display: block !important; }
    #programma-carousel .col-12 {
      width: 90%; } }

.mt {
  margin-top: 60px; }

.page-template-page-issue .slider h2 {
  font-weight: 700 !important; }
  .page-template-page-issue .slider h2::first-letter {
    color: #FFC218; }
.page-template-page-issue .breadcrumb_last {
  display: inline-block !important; }
.page-template-page-issue .content {
  margin-bottom: 30px; }
.page-template-page-issue .title-section {
  padding: 20px;
  color: #fff;
  margin-bottom: 30px;
  border-bottom-right-radius: 40px;
  overflow: hidden; }
.page-template-page-issue .socials.sharing {
  cursor: pointer;
  width: 100%;
  float: left;
  margin-bottom: 25px; }
  .page-template-page-issue .socials.sharing a.social {
    width: 24px;
    height: 24px;
    display: block;
    float: left;
    margin-right: 15px; }
    .page-template-page-issue .socials.sharing a.social svg {
      fill: #2E388D; }
    .page-template-page-issue .socials.sharing a.social.whatsapp {
      display: none; }
      .page-template-page-issue .socials.sharing a.social.whatsapp * {
        fill: #2E388D; }
      @media screen and (max-width: 576px) {
        .page-template-page-issue .socials.sharing a.social.whatsapp {
          display: block; } }

.btn-group.page-issue {
  margin: 20px 0; }
  .btn-group.page-issue .btn {
    margin-bottom: 15px; }

.text-primary {
  margin-top: 30px;
  font-size: 1.3em;
  line-height: 1.5em; }

.tile {
  display: block;
  position: relative;
  padding-bottom: 100%;
  height: 0;
  margin-bottom: 30px;
  border-radius: 6px; }
  .tile .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 150ms ease-out; }
    .tile .bg:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.2);
      mix-blend-mode: multiply; }
  .tile .content {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 20px 10px;
    justify-content: space-between;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    @media (min-width: 1200px) {
      .tile .content {
        padding: 20px; } }
    @media (max-width: 767px) {
      .tile .content {
        padding: 30px; } }
    .tile .content .text {
      color: #fff;
      margin: 0;
      transition: all 150ms ease-out;
      text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); }
      .tile .content .text h2 {
        margin-bottom: 15px;
        font-size: 1.4em;
        /* &::first-letter {
             color: $yellow;
         }*/ }
        @media (min-width: 1200px) {
          .tile .content .text h2 {
            font-size: 1.8em; } }
        @media (max-width: 767px) {
          .tile .content .text h2 {
            font-size: 2em; } }
        @media (max-width: 650px) {
          .tile .content .text h2 {
            font-size: 1.8em; } }
      .tile .content .text h4 {
        margin-left: 15px;
        font-weight: 400;
        font-size: 1.1em;
        line-height: 1.2; }
        @media (min-width: 1200px) {
          .tile .content .text h4 {
            margin-left: 20px;
            font-size: 1.3em; } }
    .tile .content .btn-group {
      text-align: center;
      transition: all 150ms ease-out; }
      @media (min-width: 768px) {
        .tile .content .btn-group {
          opacity: 0;
          transform: translateY(50%); } }
      .tile .content .btn-group .btn {
        font-size: 14px;
        line-height: 32px; }
  .tile:hover .bg {
    transform: scale(1.01);
    box-shadow: 0 7px 20px 0 rgba(0, 0, 0, 0.1); }
  @media (min-width: 768px) {
    .tile:hover .content .btn-group {
      opacity: 1;
      transform: translateY(0%); }
    .tile:hover .content .text {
      transform: translateY(-15px); } }

.nav-links .current {
  font-weight: 600; }

.mb {
  margin-bottom: 20px; }

.select2-container .select2-selection--single,
.select2-selection__arrow {
  height: 35px !important; }

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 35px; }

.datepicker-top-left,
.datepicker-top-right,
.datepicker-top-left:before,
.datepicker-top-right:before {
  border-top-color: #ccc;
  border-bottom-color: #ccc; }

.datepicker-container {
  font-size: 14px; }

.datepicker-panel > ul > li.picked,
.datepicker-panel > ul > li.picked:hover {
  color: #F15E5C;
  font-weight: 600; }

.datepicker-panel > ul > li:hover {
  background: rgba(255, 194, 24, 0.3); }

.datepicker-panel > ul > li.highlighted {
  background: rgba(255, 194, 24, 0.7); }

@keyframes pointerOut {
  0% {
    transform: scale(0); }
  65% {
    transform: scale(0); }
  100% {
    transform: scale(1); } }
.pointerOut {
  animation-name: pointerOut; }

@keyframes pointerIn {
  0% {
    transform: scale(1); }
  35% {
    transform: scale(0); }
  100% {
    transform: scale(0); } }
.pointerOut {
  animation-name: pointerOut; }

a.whatsapp_btn {
  background-image: url("../img/whatsapp.png");
  display: block;
  background-repeat: no-repeat;
  text-indent: -9999px;
  width: 50px;
  height: 50px;
  background-size: contain;
  min-width: 30px; }

body.page-template-page-partecipa main {
  overflow: hidden; }
  body.page-template-page-partecipa main h3 {
    font-size: 3em;
    font-weight: 400; }
    @media (max-width: 575px) {
      body.page-template-page-partecipa main h3 {
        font-size: 2em; } }
  @media (max-width: 991px) {
    body.page-template-page-partecipa main section#intro {
      padding-top: 5em; } }

.row.green_bg {
  background-color: #03B5A4;
  color: #fff;
  padding: 3em 0; }
  .row.green_bg .btn-group {
    margin-top: 0; }

.home main {
  overflow: hidden; }
  .home main .green_bg {
    min-height: 30vh;
    padding: 10% 0; }
    .home main .green_bg:before {
      display: none; }
    .home main .green_bg:after {
      background-color: #fff;
      bottom: -20%;
      height: 30%;
      transform: rotate(2deg); }
.home .cover {
  background: #fff; }
  .home .cover .image-container {
    background-image: url(../img/congresso.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 90%;
    padding-top: 75%; }
  .home .cover .description {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
    padding-left: 60px; }
    .home .cover .description h3 {
      margin-bottom: 5px; }
    .home .cover .description p {
      font-size: 2em;
      text-align: left;
      margin-bottom: 0;
      line-height: 1.2em; }
    .home .cover .description .label-congresso {
      margin: 2em 0; }
    .home .cover .description .logo {
      margin-top: 10px; }
  .home .cover:after {
    background: none; }
.home .purple {
  color: #912C8D; }
.home .cyan {
  color: #26AEE5; }
.home .green {
  color: #03B5A4; }
.home .yellow {
  color: #FFC218;
  font-weight: bold;
  margin: 0 5px;
  font-size: 1.2em; }
@media (max-width: 767px) {
  .home .cover .image-container {
    background-size: 80%;
    padding-top: 80%; }
  .home .cover .description {
    align-items: center;
    padding-left: 0; }
    .home .cover .description p {
      font-size: 1em;
      text-align: center; }
    .home .cover .description .label-congresso {
      margin: 1em 0; }
    .home .cover .description .btn-group {
      margin-top: 15px; } }
@media (max-width: 1280px) {
  .home .cover .image-container {
    background-size: 90%;
    padding-top: 75%; } }

.btngroup {
  margin-bottom: 60px;
  position: relative;
  z-index: 1; }

.btn.padding-btn-twoline {
  padding: 10px 25px;
  max-width: 200px; }

.margin-bottom {
  margin-bottom: 1em; }

.anchor-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 1em !important; }
  @media (max-width: 767px) {
    .anchor-wrap {
      display: block;
      margin-top: 0 !important; } }

.home .btn.padding-btn-twoline {
  max-width: 400px; }

.margin-right-1 {
  margin-right: 1em; }

.page-template-page-candidati .select2-container {
  width: 190px !important; }

main.plain-page {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background-color: #000; }
  main.plain-page h1 {
    font-size: 5em;
    font-family: 'Gotham Black';
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2em;
    font-weight: normal; }
    @media screen and (max-width: 576px) {
      main.plain-page h1 {
        font-size: 3em; } }

body.page-template-page-plain .addthis-smartlayers {
  display: none; }
body.page-template-splash-page .addthis-smartlayers {
  display: none; }
body.page-template-splash-page main {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background-color: #000000; }
  body.page-template-splash-page main h1 {
    font-size: 5em;
    font-family: 'Gotham Black';
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2em;
    font-weight: normal; }
    @media screen and (max-width: 576px) {
      body.page-template-splash-page main h1 {
        font-size: 3em; } }
  body.page-template-splash-page main .btn-group.splah-btn a {
    font-size: 3em;
    line-height: 62px;
    padding: 0 25px;
    height: 55px;
    color: #212121 !important; }
    @media screen and (max-width: 576px) {
      body.page-template-splash-page main .btn-group.splah-btn a {
        font-size: 2em;
        padding: 0 20px;
        height: 30px;
        line-height: 54px;
        min-width: 120px; } }
  body.page-template-splash-page main .step2 {
    display: none; }
    body.page-template-splash-page main .step2 .text-left {
      color: #fff;
      font-family: 'Gotham Rounded'; }
      body.page-template-splash-page main .step2 .text-left p {
        margin-bottom: 0;
        font-size: 22px; }
      body.page-template-splash-page main .step2 .text-left a {
        text-decoration: none;
        text-transform: uppercase;
        color: #FFC218;
        font-size: 20px; }
body.page-template-reveal-page .addthis-smartlayers {
  display: none; }
body.page-template-reveal-page main {
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background-image: linear-gradient(to bottom, #000522, #000c31, #001140, #00134e, #00145d); }
  body.page-template-reveal-page main h1 {
    font-size: 5em;
    font-family: "Gotham Black";
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2em;
    margin-top: 180px; }
    @media screen and (max-width: 576px) {
      body.page-template-reveal-page main h1 {
        font-size: 2em; } }
    body.page-template-reveal-page main h1 span {
      color: #FFC218;
      font-family: 'Gotham Rounded', sans-serif; }
  body.page-template-reveal-page main .text {
    color: #FFC218;
    font-family: 'Gotham Rounded';
    font-weight: bold;
    font-size: 22px;
    line-height: 1.2em; }
    @media screen and (max-width: 576px) {
      body.page-template-reveal-page main .text {
        font-size: 16px; } }
  body.page-template-reveal-page main .white {
    color: #fff;
    font-weight: normal;
    font-size: smaller; }
  body.page-template-reveal-page main .text-container {
    width: 55%;
    margin: 0 auto; }
    @media screen and (max-width: 576px) {
      body.page-template-reveal-page main .text-container {
        width: 100%; } }
  body.page-template-reveal-page main .form-container {
    width: 55%;
    margin: 0 auto;
    color: #fff;
    margin-bottom: 30px; }
    @media screen and (max-width: 576px) {
      body.page-template-reveal-page main .form-container {
        width: 80%; } }
    body.page-template-reveal-page main .form-container .inputs {
      display: flex;
      justify-content: space-between; }
      @media screen and (max-width: 576px) {
        body.page-template-reveal-page main .form-container .inputs {
          flex-direction: column; } }
      body.page-template-reveal-page main .form-container .inputs input {
        width: 48%;
        height: 40px;
        font-size: 14px; }
        @media screen and (max-width: 576px) {
          body.page-template-reveal-page main .form-container .inputs input {
            width: 100%;
            margin-bottom: 20px; } }
    @media screen and (max-width: 576px) {
      body.page-template-reveal-page main .form-container .checkbox-group input {
        -webkit-appearance: none;
        padding: 0;
        border-radius: 0; } }
    body.page-template-reveal-page main .form-container .checkbox-group.first {
      margin-bottom: 0 !important; }
    body.page-template-reveal-page main .form-container .checkbox-group.second {
      margin-top: 0 !important; }
    body.page-template-reveal-page main .form-container .checkbox-group input {
      margin-top: 5px;
      padding: 0; }
    body.page-template-reveal-page main .form-container .checkbox-group label span {
      padding-left: 14px;
      vertical-align: text-top;
      font-weight: normal; }
body.page-template-reveal-page .input-group {
  margin: 20px 0 !important;
  font-size: 14px; }
  body.page-template-reveal-page .input-group label {
    color: #FFC218;
    font-family: 'Gotham Rounded';
    font-weight: bold;
    font-size: 22px; }
    @media screen and (max-width: 576px) {
      body.page-template-reveal-page .input-group label {
        font-size: 16px; } }
body.page-template-reveal-page .select2-search.select2-search--dropdown {
  display: none !important; }
body.page-template-reveal-page .select2-container {
  width: 100% !important; }
body.page-template-reveal-page .select2-container--default .select2-selection--single .select2-selection__rendered {
  text-align: left;
  line-height: 40px;
  padding: 0 20px; }
body.page-template-reveal-page .select2-container .select2-selection--single,
body.page-template-reveal-page .select2-selection__arrow {
  height: 40px !important;
  border-radius: 20px; }
body.page-template-reveal-page .btn {
  min-height: 40px;
  padding: 10px 20px;
  min-width: 150px; }
body.page-template-reveal-page .textarea-group {
  width: 100%; }
  body.page-template-reveal-page .textarea-group textarea {
    min-height: 80px;
    width: 100%;
    border-radius: 40px;
    padding: 20px;
    font-size: 14px;
    font-family: inherit; }
    @media screen and (max-width: 576px) {
      body.page-template-reveal-page .textarea-group textarea {
        min-height: 70px; } }
body.page-template-reveal-page .step1.cr {
  display: none; }
body.page-template-reveal-page .step2 {
  display: none; }
  body.page-template-reveal-page .step2 p {
    color: #fff; }
  body.page-template-reveal-page .step2.cr .text_wrapper {
    width: 40%;
    margin: 0 auto; }
    @media screen and (max-width: 576px) {
      body.page-template-reveal-page .step2.cr .text_wrapper {
        width: 100%;
        text-align: center; } }
    body.page-template-reveal-page .step2.cr .text_wrapper p span {
      color: #FFC218;
      font-size: 36px;
      font-weight: bold;
      line-height: 1.2em; }
  body.page-template-reveal-page .step2.cr .btn {
    line-height: 20px; }
.home main section.banner.iscrizione {
  padding-top: 90px; }
  .home main section.banner.iscrizione img.medium {
    margin: 0 30px;
    padding: 0; }
  .home main section.banner.iscrizione p {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 20px; }
    .home main section.banner.iscrizione p span {
      font-size: 17px;
      display: block;
      margin-top: 10px; }

h2.custom-title {
  font-family: 'Gotham Rounded';
  font-size: 2em !important;
  margin-top: 35%;
  font-weight: bold !important; }
  @media screen and (max-width: 768px) {
    h2.custom-title {
      font-size: 1.7em !important;
      margin-top: 50%; } }
  @media screen and (max-width: 576px) {
    h2.custom-title {
      font-size: 1em !important;
      margin-top: 52%; } }
  h2.custom-title span.yellow {
    color: #FFC218; }

.elezioni-page-content {
  margin: 30px 0; }

.toggle li {
  list-style-type: none;
  border-top: 1px solid; }
  .toggle li .title {
    padding: 15px 0;
    font-size: 1.4em;
    cursor: pointer; }
    .toggle li .title :before {
      content: '\f078';
      display: block;
      position: absolute;
      right: 0;
      right: 30px;
      font-family: "Font Awesome 5 Free"; }
  .toggle li .content {
    display: none; }
  .toggle li.open .title :before {
    content: '\f077'; }

@media screen and (min-width: 700px) and (max-width: 1120px) {
  main section.banner.iscrizione img {
    width: 28%; } }
@media screen and (max-width: 1180px) {
  main section#cover .cover-30 .section-newsletter.container {
    background: none; }

  main section#cover .cover-70 {
    height: 70vh; }

  main section#cover .cover-30 {
    height: 30vh; } }
@media screen and (max-width: 991px) {
  header nav {
    padding-top: 10px; }
    header nav .menu li a {
      font-size: 18px; }
    header nav .btn-mobile .highlighted {
      text-align: center; }
    header nav .socials {
      display: block; }

  header .socials {
    display: none;
    margin: 0; } }
@media screen and (max-width: 699px) {
  .home main section.banner.iscrizione img.medium {
    margin: 0px; }

  .home main section.banner.iscrizione {
    padding-top: 50px; }
    .home main section.banner.iscrizione img {
      max-width: 320px; } }
@media screen and (max-width: 850px) {
  main section#cover .cover-70 {
    height: 65vh; }

  main section#cover .cover-30 {
    height: 35vh; }

  main section#temi {
    padding-bottom: 70px;
    margin: 0; }

  .single .video-title h1 {
    margin-bottom: 0;
    font-size: 28px; }

  #testata h1 span.gotham {
    font-size: 40px;
    line-height: 1; }
  #testata h1 span#etichetta-header {
    margin-top: 0px;
    display: block;
    font-size: 20px; }

  main section#news.related h3 {
    font-size: 20px; }

  h1 {
    font-size: 28px; }

  .preview .top {
    padding: 20px; }
    .preview .top h1 {
      margin-bottom: 0; }
    .preview .top time {
      font-size: 16px; }
    .preview .top .category {
      height: 25px;
      color: #fff;
      font-size: 16px;
      padding: 2px 10px 2px 10px;
      line-height: 1.4; }
      .preview .top .category strong {
        font-size: 16px; } }
@media screen and (max-width: 710px) {
  .btngroup {
    margin-bottom: 30px; }
    .btngroup a {
      margin: 0 0 5px 0 !important;
      min-width: 100% !important; } }
@media screen and (max-width: 650px) {
  main section#cover .cover-70 {
    height: 295px;
    border: 10px solid #fff;
    background-size: cover;
    background-repeat: no-repeat;
    display: none; }
    main section#cover .cover-70.noheader {
      display: block;
      background-image: url(../img/testata-mobile.jpg); }
      main section#cover .cover-70.noheader.img {
        background-image: url(../img/testata-mobile.jpg) !important; }
    main section#cover .cover-70.mobile {
      display: block;
      background-image: url(../img/testata-mobile.jpg); }
    main section#cover .cover-70 .cover {
      display: none; }
      
      .page-id-4861 #testata{
	      background-image: url(../img/testata-primedonne-mobile.jpg) !important;
      }

  .single-post main {
    margin-top: -100px; }

  main section#liste {
    padding: 0 0 40px 0; }
    main section#liste .candidato .text h2 {
      font-size: 28px; }
    main section#liste .candidato .text a.file {
      font-size: 15px; }

  #testata h1 span.gotham {
    font-size: 25px; }

  main section#banner, main section.banner {
    padding-top: 20px; }
    main section#banner .mb, main section.banner .mb {
      display: block; }
    main section#banner .dk, main section.banner .dk {
      display: none; }

  main section#cover .cover-30 {
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px; }

  .preview {
    box-shadow: none; }
    .preview img {
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
      margin: 0; }
    .preview .overlay {
      display: none; }

  main h3 {
    margin-bottom: 0; }

  .single .video-title h1 {
    font-size: 23px; }

  .home main section#cover {
    height: auto;
    display: block; }
    .home main section#cover .cover-wrapper {
      position: static; }

  main h3 {
    font-size: 28px; }

  h1 {
    font-size: 23px; }

  .single article .content {
    padding-top: 20px; }

  header .menu-mobile {
    top: 0;
    right: 0;
    padding-right: 0;
    margin-right: 0;
    margin-top: 6px; }
    header .menu-mobile i {
      margin-right: 18px; }

  header #search {
    position: absolute;
    top: 13px;
    right: 60px; }
    header #search input[type=search] {
      margin-right: 4px;
      margin-top: 8px;
      padding: 8px 0;
      width: 34px;
      margin-bottom: 0; }
      header #search input[type=search]:focus {
        margin-top: 8px;
        margin-right: 0; }

  header .logo-wrapper {
    width: 150px;
    padding: 18px 20px 11px 12px;
    height: 60px; }

  .preview {
    position: relative;
    margin-top: 0px; }
    .preview .top {
      padding: 10px;
      position: static; }

  main .btn-group {
    margin: 15px 0 0; }

  #testata {
    height: 200px; }
    #testata h1 span {
      padding: 2px 0 0 26px;
      font-size: 30px;
      margin-top: 25px; }
      .blog #testata h1 span.gotham, .post-type-archive-comunicati #testata h1 span.gotham, .single-comunicati #testata h1 span.gotham {
        padding: 0px 0 0 26px; }
        .blog #testata h1 span.gotham:before, .post-type-archive-comunicati #testata h1 span.gotham:before, .single-comunicati #testata h1 span.gotham:before {
          background-size: 24px 24px;
          width: 24px;
          height: 24px;
          margin: 0; }

  main section#news {
    padding-top: 30px; } }

/*# sourceMappingURL=style.css.map */
