@charset "UTF-8";
@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;
}

.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;
}
@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: #ea218d;
  overflow: hidden;
}
.btn.btn-action span {
  position: relative;
  z-index: 3;
}
.btn.btn-action: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: #F15E5C;
  transition: all 300ms ease-out;
}
.btn.btn-action:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: #912C8D;
  transform-origin: 100% 0%;
  transform: rotate(-16deg) scale(1.1);
  transition: all 300ms ease-out;
}
.btn.btn-action:hover:before {
  transform: rotate(65deg) scale(1.1) translate(0, 30%);
}
.btn.btn-action:hover:after {
  transform: rotate(-65deg) scale(1.1);
}

.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.blog header, body.single header, body.archive header, body.page-template-page-partecipa header {
  position: relative;
}
body.blog header .menu-mobile i, body.single header .menu-mobile i, body.archive header .menu-mobile i, body.page-template-page-partecipa header .menu-mobile i {
  color: #2E388D;
}
body.blog header .socials .social svg, body.single header .socials .social svg, body.archive header .socials .social svg, body.page-template-page-partecipa header .socials .social svg {
  fill: #2E388D;
}
body.blog header .logo-wrapper, body.single header .logo-wrapper, body.archive header .logo-wrapper, body.page-template-page-partecipa header .logo-wrapper {
  background: #FFC218;
}
body.blog header .logo-wrapper svg #plus, body.single header .logo-wrapper svg #plus, body.archive header .logo-wrapper svg #plus, body.page-template-page-partecipa header .logo-wrapper svg #plus {
  fill: #fff;
}

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: 80px 0 20px;
  width: 100%;
  background: #2f398d;
  z-index: -1;
  transform: translateY(-100%);
  transition: transform 300ms ease-out;
}
body.menu-opened header nav {
  transform: translateY(0%);
}

header .menu {
  margin-top: 15px;
  margin-right: 20px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  flex-direction: column;
}
@media (max-width: 1024px) {
  header .menu {
    margin: 0;
    max-width: 90%;
  }
}
@media (min-width: 991px) {
  header .menu {
    padding-top: 25px;
  }
}
header .menu li {
  margin: 5px 15px;
}
header .menu li a {
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  transition: all 150ms ease-out;
}
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;
}
@media (max-width: 991px) {
  header .socials {
    display: flex;
    flex-wrap: wrap;
    width: 60px;
  }
  header .socials .social {
    flex: 0 0 100%;
    margin-right: 15px;
  }
}
header .btn-group {
  margin-top: 15px;
  margin-right: 32px;
  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;
}
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;
  }
}
@media (max-width: 991px) {
  header .menu-mobile {
    margin-top: -80px;
  }
}
header .btn-mobile {
  display: none;
}
@media (max-width: 990px) {
  header .btn-mobile {
    display: block;
  }
}
header .btn-mobile .highlighted {
  color: #FFC218;
  font-weight: bold;
  margin: 5px 15px;
  text-transform: uppercase;
  display: block;
}

body.blog main, body.single main, body.archive main {
  margin-top: 30px;
}

main p {
  font-size: 1.13em;
  margin-bottom: 1em;
}
main p strong {
  font-weight: 600;
}
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 {
  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 .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;
  padding: 15px;
}
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#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#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;
}
@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#news, main section.event-list, main section#comunicati {
  padding: 0px 0 90px;
}
@media (max-width: 1024px) {
  main section#news, main section.event-list, main section#comunicati {
    padding: 0 0 60px;
  }
}
main section#news .card-wrapper, main section.event-list .card-wrapper, main section#comunicati .card-wrapper {
  display: flex;
  flex-wrap: wrap;
}
main section#news .card, main section.event-list .card, main section#comunicati .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 {
    flex-direction: row;
    margin-bottom: 30px;
    border-bottom-right-radius: 40px;
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  main section#news .card, main section.event-list .card, main section#comunicati .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 {
  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 {
  font-size: 0;
  position: relative;
}
@media (min-width: 992px) {
  main section#news .card .teaser, main section.event-list .card .teaser, main section#comunicati .card .teaser {
    border-bottom-right-radius: 40px;
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  main section#news .card .teaser, main section.event-list .card .teaser, main section#comunicati .card .teaser {
    border-bottom-right-radius: 40px;
    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 {
    max-width: 240px;
  }
}
main section#news .card .teaser .category, main section.event-list .card .teaser .category, main section#comunicati .card .teaser .category {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  color: #fff;
  padding: 4px 12px 4px 8px;
  border-bottom-right-radius: 10px;
}
main section#news .card .teaser .category .material-icons, main section.event-list .card .teaser .category .material-icons, main section#comunicati .card .teaser .category .material-icons {
  font-size: 16px;
  margin-right: 4px;
}
main section#news .card .teaser .category strong, main section.event-list .card .teaser .category strong, main section#comunicati .card .teaser .category strong {
  text-transform: lowercase;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  top: -2px;
}
main section#news .card .teaser .category.cat-video, main section.event-list .card .teaser .category.cat-video, main section#comunicati .card .teaser .category.cat-video {
  background: #2E388D;
}
main section#news .card .teaser .category.cat-update, main section.event-list .card .teaser .category.cat-update, main section#comunicati .card .teaser .category.cat-update {
  background: #26AEE5;
}
main section#news .card .teaser .category.cat-dicono-di-noi, main section.event-list .card .teaser .category.cat-dicono-di-noi, main section#comunicati .card .teaser .category.cat-dicono-di-noi {
  background: #F15E5C;
}
main section#news .card .text, main section.event-list .card .text, main section#comunicati .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 {
    flex: 1 1 0;
  }
}
main section#news .card .text .top, main section.event-list .card .text .top, main section#comunicati .card .text .top {
  flex: 0 0 100%;
}
main section#news .card .text h4, main section.event-list .card .text h4, main section#comunicati .card .text h4 {
  margin-top: 10px;
  font-size: 1.13em;
  font-weight: 600;
  line-height: 1.3;
}
main section#news .card .text span, main section.event-list .card .text span, main section#comunicati .card .text span {
  display: block;
  margin-top: 30px;
  align-self: flex-end;
  font-weight: bold;
  color: #F15E5C;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
}
@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: 100vh;
}
@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: -10%;
  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;
  height: 100vh;
  min-height: 1100px;
}
@media (max-width: 991px) {
  main section.purple_bg {
    padding: 5% 1%;
    height: 60vh;
    min-height: 60vh;
  }
}
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: auto;
  }
}
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: 0.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: "";
}
main.group-page .groups-container .group-toggle {
  position: relative;
  cursor: pointer;
}
main.group-page .groups-container .group-toggle :before {
  content: "";
  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: 0.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;
}

.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;
}

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: 0.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: 0.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: 120px;
}
.single article .cover {
  height: 400px;
  margin-bottom: 30px;
}
.single article .content {
  padding-top: 45px;
  padding-bottom: 90px;
}
.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;
}

.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: #9B9B9B;
}

.tweets .flickity-viewport,
.slider .flickity-viewport {
  transition: height 0.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 .link {
  font-weight: bold;
  font-family: "Gotham Rounded";
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  color: #2E388D;
}
.press-wrapper .link:hover {
  color: #212967;
}
.press-wrapper .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);
}

#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;
}
.embed-wrapper iframe,
.embed-wrapper object,
.embed-wrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@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: 0.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: 150%;
  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;
}
@media (min-width: 1200px) {
  .tile .content {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .tile .content {
    padding: 30px;
  }
}
.tile .content .text {
  color: #fff;
  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;
}
@media (min-width: 1200px) {
  .tile .content .text h2 {
    font-size: 1.55em;
  }
}
.tile .content .text h2::first-letter {
  color: #FFC218;
}
@media (max-width: 767px) {
  .tile .content .text h2 {
    font-size: 1.75em;
  }
}
.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);
}

.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;
}

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: "";
  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: "";
}

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