@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wdth,wght@0,125,100..900;1,125,100..900&display=swap");
.grid {
  max-width: 69em;
  list-style: none;
  margin: 30px auto;
  padding: 0;
}

.grid li {
  display: block;
  float: left;
  padding: 7px;
  width: 33%;
  opacity: 0;
}

.grid li.shown,
.no-js .grid li,
.no-cssanimations .grid li {
  opacity: 1;
}

.grid li a,
.grid li img {
  outline: none;
  border: none;
  display: block;
  max-width: 100%;
}

/* Effect 1: opacity */
.grid.effect-1 li.animate {
  -webkit-animation: fadeIn 0.65s ease forwards;
  animation: fadeIn 0.65s ease forwards;
}

@-webkit-keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
/* Effect 2: Move Up */
.grid.effect-2 li.animate {
  -webkit-transform: translateY(200px);
  transform: translateY(200px);
  -webkit-animation: moveUp 0.65s ease forwards;
  animation: moveUp 0.65s ease forwards;
}

@-webkit-keyframes moveUp {
  100% {
    -webkit-transform: translateY(0);
    opacity: 1;
  }
}
@keyframes moveUp {
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
/* Effect 3: Scale up */
.grid.effect-3 li.animate {
  -webkit-transform: scale(0.6);
  transform: scale(0.6);
  -webkit-animation: scaleUp 0.65s ease-in-out forwards;
  animation: scaleUp 0.65s ease-in-out forwards;
}

@-webkit-keyframes scaleUp {
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
@keyframes scaleUp {
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
/* Effect 4: fall perspective */
.grid.effect-4 {
  -webkit-perspective: 1300px;
  perspective: 1300px;
}

.grid.effect-4 li.animate {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: translateZ(400px) translateY(300px) rotateX(-90deg);
  transform: translateZ(400px) translateY(300px) rotateX(-90deg);
  -webkit-animation: fallPerspective 0.8s ease-in-out forwards;
  animation: fallPerspective 0.8s ease-in-out forwards;
}

@-webkit-keyframes fallPerspective {
  100% {
    -webkit-transform: translateZ(0px) translateY(0px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes fallPerspective {
  100% {
    -webkit-transform: translateZ(0px) translateY(0px) rotateX(0deg);
    transform: translateZ(0px) translateY(0px) rotateX(0deg);
    opacity: 1;
  }
}
/* Effect 5: fly (based on http://lab.hakim.se/scroll-effects/ by @hakimel) */
.grid.effect-5 {
  -webkit-perspective: 1300px;
  perspective: 1300px;
}

.grid.effect-5 li.animate {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-origin: 50% 50% -300px;
  transform-origin: 50% 50% -300px;
  -webkit-transform: rotateX(-180deg);
  transform: rotateX(-180deg);
  -webkit-animation: fly 0.8s ease-in-out forwards;
  animation: fly 0.8s ease-in-out forwards;
}

@-webkit-keyframes fly {
  100% {
    -webkit-transform: rotateX(0deg);
    opacity: 1;
  }
}
@keyframes fly {
  100% {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1;
  }
}
/* Effect 6: flip (based on http://lab.hakim.se/scroll-effects/ by @hakimel) */
.grid.effect-6 {
  -webkit-perspective: 1300px;
  perspective: 1300px;
}

.grid.effect-6 li.animate {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
  -webkit-transform: rotateX(-80deg);
  transform: rotateX(-80deg);
  -webkit-animation: flip 0.8s ease-in-out forwards;
  animation: flip 0.8s ease-in-out forwards;
}

@-webkit-keyframes flip {
  100% {
    -webkit-transform: rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flip {
  100% {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1;
  }
}
/* Effect 7: helix (based on http://lab.hakim.se/scroll-effects/ by @hakimel) */
.grid.effect-7 {
  -webkit-perspective: 1300px;
  perspective: 1300px;
}

.grid.effect-7 li.animate {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-animation: helix 0.8s ease-in-out forwards;
  animation: helix 0.8s ease-in-out forwards;
}

@-webkit-keyframes helix {
  100% {
    -webkit-transform: rotateY(0deg);
    opacity: 1;
  }
}
@keyframes helix {
  100% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    opacity: 1;
  }
}
/* Effect 8:  */
.grid.effect-8 {
  -webkit-perspective: 1300px;
  perspective: 1300px;
}

.grid.effect-8 li.animate {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scale(0.4);
  transform: scale(0.4);
  -webkit-animation: popUp 0.8s ease-in forwards;
  animation: popUp 0.8s ease-in forwards;
}

@-webkit-keyframes popUp {
  70% {
    -webkit-transform: scale(1.1);
    opacity: 0.8;
    -webkit-animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
@keyframes popUp {
  70% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 0.8;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@media screen and (max-width: 900px) {
  .grid li {
    width: 50%;
  }
}
@media screen and (max-width: 400px) {
  .grid li {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .row:not(.no-gutters) {
    margin-right: -5px;
    margin-left: -5px;
  }
  .row:not(.no-gutters) > .col,
  .row:not(.no-gutters) > [class*=col-] {
    padding-right: 5px;
    padding-left: 5px;
  }
}
body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #102739;
  word-break: break-word;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 18px;
  }
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.7rem;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 125;
  font-optical-sizing: auto;
}

h2, h3, h4, h5, h6, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 500;
}

h1 {
  font-size: 30px;
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 32px;
  }
}

h3 {
  font-size: 24px;
}

.cursive {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-variation-settings: "wdth" 125;
}

.font-weight-400 {
  font-weight: 400 !important;
}

.subtitle {
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .subtitle {
    font-size: 24px;
  }
}

a {
  color: rgb(252.5585774059, 62.9414225941, 161.4121338912);
}
a:hover {
  color: #EC037C;
}

p {
  font-weight: 400;
}
p a {
  text-decoration: underline;
  font-weight: 500;
}

.bg-gradient {
  background: linear-gradient(90deg, rgb(211, 0, 89) 0%, rgb(30, 80, 119) 100%);
  background: #EC037C;
  color: white;
}
.bg-gradient a {
  color: white;
}

.bg-gray {
  background: #ededed;
}

.bg-black {
  background: black;
  color: white;
}

.bg-blue {
  background: #014C89;
  color: white;
}

.bg-pink {
  background: #EC037C;
  color: white;
}

.bg-texture-pink {
  background: #EC037C;
  background: url("images/bg-pink.jpg") no-repeat;
  background-size: cover;
  color: white;
  position: relative;
}
.bg-texture-pink hr {
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  width: 100%;
  margin: 10px 0;
}

.bg-texture-blue {
  background: #014C89;
  background: url("images/bg-blue.jpg") no-repeat;
  background-size: cover;
  color: white;
  position: relative;
}
.bg-texture-blue hr {
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  width: 100%;
  margin: 10px 0;
}
.bg-texture-blue .bg-fade-blue {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  z-index: 0;
  background: linear-gradient(0deg, #014c89 10%, rgba(1, 76, 137, 0) 100%);
}

.bg-texture-gray {
  background: #757575;
  background: url("images/bg-gray.jpg") no-repeat;
  background-size: cover;
  color: #102739;
}
.bg-texture-gray hr {
  width: 100%;
  margin: 10px 0;
}

.text-primary {
  color: #EC037C !important;
}

.text-secondary {
  color: #014C89 !important;
}

.text-gray {
  color: #757575;
}

.badge-tag {
  background: transparent;
  border: 1px solid #757575;
  color: #757575;
  font-weight: 400;
  font-size: 12px;
  padding: 0.4em 1.2em;
  margin: 0 0.4em 0.4em 0;
}

.badge-primary {
  background: rgb(252.5585774059, 62.9414225941, 161.4121338912);
}

.badge-secondary {
  background: rgb(1.5543478261, 118.1304347826, 212.9456521739);
}

.loghi-affiancati {
  display: flex;
  align-items: center;
  justify-content: center;
}
.loghi-affiancati .line-spacer {
  width: 1px;
  height: 20px;
  border-left: 1px solid white;
  margin: 0 10px;
}

.btn-freccia img {
  margin: 0 5px;
  transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}
.btn-freccia:hover img {
  transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transform: translateX(10px);
}

.btn-calendar img {
  margin-left: 10px;
}

.btn {
  padding: 0.75rem 1rem;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
  display: block;
}
@media screen and (min-width: 576px) {
  .btn {
    display: inline-block;
  }
}

.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.btn-primary {
  background-color: #EC037C;
  border-color: #EC037C;
}
.btn-primary:hover {
  background-color: rgb(160.460251046, 2.039748954, 84.309623431);
  border-color: rgb(160.460251046, 2.039748954, 84.309623431);
}
.btn-primary.disabled, .btn-primary:disabled {
  background-color: gray;
  border-color: gray;
}
.btn-primary.disabled:hover, .btn-primary:disabled:hover {
  background-color: gray;
  border-color: gray;
}

.btn-outline-primary {
  border-color: #EC037C !important;
  color: #EC037C !important;
  background: white;
  border-radius: 6px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.35);
}
.btn-outline-primary:hover, .btn-outline-primary:focus {
  background-color: #EC037C;
  border-color: #EC037C;
  box-shadow: none !important;
  color: white !important;
}
.btn-outline-primary.active {
  background-color: #EC037C !important;
  border-color: #EC037C !important;
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary.active:not(:disabled):not(.disabled), .show > .btn-outline-primary.dropdown-toggle {
  background-color: #EC037C;
  border-color: #EC037C;
  box-shadow: none !important;
  color: white;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary.active:not(:disabled):not(.disabled), .show > .btn-primary.dropdown-toggle {
  background-color: #EC037C;
  border-color: #EC037C;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary.active:not(:disabled):not(.disabled):focus, .show > .btn-primary.dropdown-toggle:focus, .btn-primary:focus, .btn-primary.focus {
  box-shadow: none;
}

.btn-primary:focus, .btn-primary.focus {
  background-color: rgb(160.460251046, 2.039748954, 84.309623431);
  border-color: rgb(160.460251046, 2.039748954, 84.309623431);
}

.btn-secondary {
  background-color: #014C89;
  border-color: #014C89;
}
.btn-secondary:hover {
  background-color: rgb(1.5543478261, 118.1304347826, 212.9456521739);
  border-color: rgb(1.5543478261, 118.1304347826, 212.9456521739);
}

.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary.active:not(:disabled):not(.disabled), .show > .btn-secondary.dropdown-toggle {
  background-color: #014C89;
  border-color: #014C89;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary.active:not(:disabled):not(.disabled):focus, .show > .btn-secondary.dropdown-toggle:focus, .btn-secondary:focus, .btn-secondary.focus {
  box-shadow: none;
}

.btn-secondary:focus, .btn-secondary.focus {
  background-color: rgb(1.5543478261, 118.1304347826, 212.9456521739);
  border-color: rgb(1.5543478261, 118.1304347826, 212.9456521739);
}

.btn-back {
  display: flex;
  align-items: center;
  color: #102739;
}
.btn-back img {
  margin-right: 5px;
}

.modal .modal-header {
  border: none;
}

.font-10 {
  font-size: 10px !important;
}

.font-11 {
  font-size: 11px !important;
}

.font-12 {
  font-size: 12px !important;
}

.font-13 {
  font-size: 13px !important;
}

.font-14 {
  font-size: 14px !important;
}

.font-15 {
  font-size: 15px !important;
}

.font-16 {
  font-size: 16px !important;
}

.font-17 {
  font-size: 17px !important;
}

.font-18 {
  font-size: 18px !important;
}

.font-19 {
  font-size: 19px !important;
}

.font-20 {
  font-size: 20px !important;
}

.font-21 {
  font-size: 21px !important;
}

.font-22 {
  font-size: 22px !important;
}

.font-23 {
  font-size: 23px !important;
}

.font-24 {
  font-size: 24px !important;
}

.font-28 {
  font-size: 28px !important;
}

.font-30 {
  font-size: 30px !important;
}

.font-32 {
  font-size: 32px !important;
}

.font-36 {
  font-size: 36px !important;
}

.font-40 {
  font-size: 40px !important;
}

.font-44 {
  font-size: 44px !important;
}

.font-48 {
  font-size: 48px !important;
}

.text-gray {
  color: #757575;
}

.ui-menu .ui-menu-item {
  font-size: 14px;
  font-family: "Roboto", sans-serif;
}

.swiper-container {
  overflow: hidden;
}

.swiper .swiper-wrapper {
  margin-bottom: 40px;
}
.swiper .swiper-pagination .swiper-pagination-bullet {
  background-color: #EC037C;
  opacity: 1;
  height: 6px;
  width: 6px;
  transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 0.5);
}
.swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: transparent;
  border: 2px solid #EC037C;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  margin-bottom: -3px;
  transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 0.5);
}
.swiper .swiper-button-next, .swiper .swiper-button-prev {
  background-color: #EC037C;
  width: 30px;
  height: 30px;
}
@media screen and (min-width: 768px) {
  .swiper .swiper-button-next, .swiper .swiper-button-prev {
    width: 45px;
    height: 45px;
  }
}
.swiper .swiper-button-next::after, .swiper .swiper-button-prev::after {
  color: white;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .swiper .swiper-button-next::after, .swiper .swiper-button-prev::after {
    font-size: 15px;
  }
}
@media screen and (min-width: 992px) {
  .swiper .swiper-button-next::after, .swiper .swiper-button-prev::after {
    font-size: 20px;
  }
}
.swiper .swiper-button-next:hover, .swiper .swiper-button-prev:hover {
  background-color: #014C89;
}
.swiper .swiper-button-next {
  right: 0;
}
.swiper .swiper-button-prev {
  left: 0;
}
.swiper .swiper-button-pink {
  background-color: #EC037C;
}
.swiper .swiper-button-pink:hover {
  background-color: rgb(252.5585774059, 62.9414225941, 161.4121338912);
}

.swiper-live .swiper-button-next {
  top: var(--swiper-navigation-top-offset, 30%);
}
@media screen and (min-width: 768px) {
  .swiper-live .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 15%);
  }
}
.swiper-live .swiper-button-prev {
  top: var(--swiper-navigation-top-offset, 30%);
}
@media screen and (min-width: 768px) {
  .swiper-live .swiper-button-prev {
    top: var(--swiper-navigation-top-offset, 15%);
  }
}

.swiper-ospiti .swiper-button-next {
  top: var(--swiper-navigation-top-offset, 30%);
}
@media screen and (min-width: 768px) {
  .swiper-ospiti .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 23%);
  }
}
.swiper-ospiti .swiper-button-prev {
  top: var(--swiper-navigation-top-offset, 30%);
}
@media screen and (min-width: 768px) {
  .swiper-ospiti .swiper-button-prev {
    top: var(--swiper-navigation-top-offset, 23%);
  }
}

.swiper-generic .img-container {
  aspect-ratio: 1.2;
}
@media screen and (min-width: 768px) {
  .swiper-generic .img-container {
    aspect-ratio: 1.777;
  }
}
.swiper-generic .img-container img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-title img {
  margin-right: 10px;
  width: 40px;
}
@media screen and (min-width: 768px) {
  .section-title img {
    width: auto;
  }
}
.section-title h2, .section-title h3, .section-title h4, .section-title h5 {
  font-weight: 700;
  font-size: 24px;
  margin: 0;
  line-height: 1em;
  letter-spacing: 0.5px;
}
@media screen and (min-width: 768px) {
  .section-title h2, .section-title h3, .section-title h4, .section-title h5 {
    font-size: 32px;
  }
}
.section-title h2 b, .section-title h2 strong, .section-title h3 b, .section-title h3 strong, .section-title h4 b, .section-title h4 strong, .section-title h5 b, .section-title h5 strong {
  color: #EC037C;
}

.pagination {
  justify-content: center;
  gap: 10px;
}
.pagination li {
  background: #ededed;
  aspect-ratio: 1;
  min-width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #a8a8a8;
}
.pagination li a {
  background: #ededed;
  aspect-ratio: 1;
  min-width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 20px;
}
.pagination li:hover a, .pagination li.active a {
  background: #EC037C;
  color: white !important;
  text-decoration: none;
  font-weight: 600;
}

form input, form select {
  line-height: 40px;
}
form .form-group.has-error .help-block {
  color: red;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 3px 0;
}
form .form-group.has-error input, form .form-group.has-error select, form .form-group.has-error textarea {
  border-color: red;
}
form .check-box .css-checkbox {
  display: block;
}

.seo-hide {
  height: 0;
  line-height: 0;
  width: 0;
  opacity: 0;
  position: absolute;
}

@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  height: 80px;
  background-color: #ededed;
  padding-left: 100%;
  box-sizing: content-box;
  display: flex;
  align-items: center;
}
.ticker-wrap .ticker {
  display: inline-block;
  line-height: 4rem;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-name: ticker;
  animation-name: ticker;
  -webkit-animation-duration: 30s;
  animation-duration: 30s;
}
.ticker-wrap .ticker__item {
  display: inline-block;
  padding: 0 1rem;
}

.select2-container--krajee-bs3 .select2-selection--single .select2-selection__arrow b {
  margin-top: 8px !important;
  margin-left: 2px !important;
}

.top-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #EC037C;
  height: 50px;
}
@media screen and (min-width: 576px) {
  .top-header {
    height: 80px;
  }
}
.top-header .container .row {
  align-items: center;
}
.top-header .container .loghi-affiancati {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
@media screen and (min-width: 576px) {
  .top-header .container .loghi-affiancati {
    flex-direction: row;
    align-items: center;
  }
}
.top-header .container .loghi-affiancati a {
  display: flex;
}
.top-header .container .loghi-affiancati a img {
  max-height: 15px;
}
@media screen and (min-width: 576px) {
  .top-header .container .loghi-affiancati a img {
    max-height: 80px;
  }
}
.top-header .container .loghi-affiancati .divider {
  width: 1px;
  background-color: white;
  height: 20px;
  margin: 0 10px;
  display: none;
}
@media screen and (min-width: 576px) {
  .top-header .container .loghi-affiancati .divider {
    display: block;
  }
}
.top-header .container .top-header-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
}
@media screen and (min-width: 576px) {
  .top-header .container .top-header-logo {
    height: 80px;
  }
}
.top-header .container .top-header-logo img {
  max-height: 40px;
}
@media screen and (min-width: 576px) {
  .top-header .container .top-header-logo img {
    max-height: 70px;
  }
}

.header-teaser {
  position: fixed;
  width: 100%;
  transition: all 0.3s cubic-bezier(0.2, 0.6, 0.5, 1);
}
@media screen and (min-width: 576px) {
  .header-teaser {
    height: 80px;
    background-color: transparent;
  }
}
.header-teaser .container .top-header-logo {
  transform: scale(160%) translateY(50px);
  transition: all 0.3s cubic-bezier(0.2, 0.6, 0.5, 1);
}
@media screen and (min-width: 576px) {
  .header-teaser .container .top-header-logo {
    transform: scale(120%) translateY(80px);
  }
}

.top-header.smallHeader {
  background-color: #EC037C;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.25);
}
.top-header.smallHeader .top-header-logo {
  transition: all 0.3s cubic-bezier(0.2, 0.6, 0.5, 1);
  transform: scale(100%) translateY(0px);
}
.top-header.smallHeader .top-header-logo img {
  max-height: 40px;
}
@media screen and (min-width: 576px) {
  .top-header.smallHeader .top-header-logo img {
    max-height: 70px;
  }
}

.open-menu:hover, .close-menu:hover {
  opacity: 0.7;
}

.menu {
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  background-color: #014C89;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(-100%, 0);
  transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}
.menu.show {
  transform: translate(0, 0);
  opacity: 1;
  transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}
.menu .close-menu {
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 1001;
}
@media screen and (min-width: 576px) {
  .menu .close-menu {
    right: 3em;
    top: 3em;
  }
}
.menu .menu-container {
  overflow: auto;
  padding: 25% 0;
  position: fixed;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 576px) {
  .menu .menu-container {
    display: flex;
    padding: 0;
    align-items: center;
    justify-content: center;
  }
}
.menu .menu-container .menu-logo {
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 30px;
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
  width: 720px;
  text-align: center;
}
.menu .menu-container .menu-login {
  padding-top: 30px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  list-style: none;
}
@media screen and (min-width: 576px) {
  .menu .menu-container .menu-login {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 30px;
  }
}
.menu .menu-container .nav {
  max-width: 80%;
  width: 720px;
  margin: 0 10%;
}
.menu .menu-container .nav .nav-item {
  width: 100%;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 10px;
  padding-bottom: 10px;
}
@media screen and (min-width: 576px) {
  .menu .menu-container .nav .nav-item {
    width: 50%;
    border: 1px solid transparent;
    display: inline-block;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .menu .menu-container .nav .nav-item:hover {
    border: 1px solid white;
  }
}
.menu .menu-container .nav .nav-item .nav-link {
  color: white;
  text-align: center;
  font-weight: 300;
  font-size: 24px;
  text-transform: uppercase;
}
@media screen and (min-width: 576px) {
  .menu .menu-container .nav .nav-item .nav-link {
    font-size: 20px;
    font-weight: 400;
  }
}
.menu .section-social .row {
  gap: 20px;
}
.menu .section-social .row .social-link {
  width: 40px;
}

.header-internal {
  position: relative;
  margin-bottom: 2em;
}
.header-internal .header-bg-fade {
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: auto;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 80%);
}
@media screen and (min-width: 768px) {
  .header-internal .header-bg-fade {
    height: 35%;
  }
}
@media screen and (min-width: 992px) {
  .header-internal .header-bg-fade {
    height: 30%;
  }
}
.header-internal .bg-image {
  aspect-ratio: 3;
}
@media screen and (min-width: 768px) {
  .header-internal .bg-image {
    aspect-ratio: 5;
  }
}
.header-internal .bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header-internal .header-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  z-index: 1;
  display: flex;
  padding: 10px;
  align-items: flex-end;
}
.header-internal .header-content .container .row {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .header-internal .header-content .container .row {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
}
.header-internal .header-content .container h1, .header-internal .header-content .container h2 {
  color: white;
}
.header-internal .header-content .container a {
  color: white;
  text-transform: uppercase;
  text-decoration: underline;
}
.header-internal .header-content .container a:hover {
  color: #EC037C;
}

.section-streaming {
  padding: 20px 0;
  position: relative;
}
.section-streaming .event-alert {
  background: #ededed;
  padding: 10px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 992px) {
  .section-streaming .event-alert {
    width: calc(100% - 10px);
    position: absolute;
  }
}
.section-streaming .event-alert p {
  margin: 0;
}
.section-streaming .event-title-container {
  padding: 30px 0;
}
@media screen and (min-width: 992px) {
  .section-streaming .event-title-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.section-streaming .streaming-container .img-video-container {
  position: relative;
}
.section-streaming .streaming-container .img-video-container .streaming-countdown {
  font-size: 12px;
  z-index: 10;
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0.5em 1em;
  border-radius: 3em;
  text-transform: uppercase;
  font-weight: 500;
  color: white;
  background: #EE2323;
}
.section-streaming .streaming-container .img-video-container .streaming-countdown .live-dot {
  width: 5px;
  height: 5px;
  display: inline-block;
  background: white;
  border-radius: 5px;
  margin: 0 4px 2px 0;
  box-shadow: 0 0 0 0 rgb(255, 255, 255);
  transform: scale(1);
  animation: pulse 2s infinite;
}
.section-streaming .streaming-container .img-video-container .evento-live {
  position: absolute;
  z-index: 10;
  right: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  background: white;
  padding: 5px 10px;
  border-radius: 25px;
  display: inline-block;
}
.section-streaming .streaming-container .img-video-container .evento-live small {
  color: rgb(252.5585774059, 62.9414225941, 161.4121338912);
  text-transform: uppercase;
  font-weight: 600;
}
.section-streaming .streaming-container .img-video-container .evento-live img {
  margin-right: 5px;
  height: 25px;
}
.section-streaming .streaming-container .img-video-container .badge {
  z-index: 10;
  position: absolute;
  right: 20px;
  top: 20px;
  padding: 0.5em 1em;
  border-radius: 1em;
  color: white;
  background: black;
}
.section-streaming .streaming-container .img-video-container .badge p {
  margin: 0;
}
.section-streaming .streaming-container .img-video-container .badge .live-dot {
  width: 5px;
  height: 5px;
  display: inline-block;
  background: white;
  border-radius: 5px;
  margin: 0 4px 2px 0;
  box-shadow: 0 0 0 0 rgb(255, 255, 255);
  transform: scale(1);
  animation: pulse 2s infinite;
}
.section-streaming .streaming-container .img-video-container .badge.stato-live {
  background: #EE2323;
}
.section-streaming .streaming-container .img-video-container .badge.stato-replay {
  background: #EC037C;
}
.section-streaming .streaming-container .img-video-container .over-image {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(1, 76, 137, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-streaming .streaming-container .img-video-container .over-image .over-image-wrapper {
  text-align: center;
}
.section-streaming .streaming-container .img-video-container .over-image .over-image-wrapper img {
  filter: brightness(2000%);
  margin-bottom: 10px;
}
.section-streaming .streaming-container .info-container-hp {
  padding-top: 10px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.section-streaming .streaming-container .info-container-hp a {
  color: black;
}
@media screen and (min-width: 992px) {
  .section-streaming .streaming-container .info-container-hp .evento-info {
    padding-right: 10px;
  }
}
.section-streaming .streaming-container .info-container-hp .evento-info h1 {
  line-height: 1em;
  font-weight: 600;
}
@media screen and (min-width: 1200px) {
  .section-streaming .streaming-container .info-container-hp .evento-info h1 {
    font-size: 36px;
  }
}
.section-streaming .streaming-container .info-container-hp .evento-info .tag-container {
  display: flex;
  flex-wrap: wrap;
}
.section-streaming .streaming-container .info-container-hp .live-other {
  font-size: 14px;
  min-width: 100%;
  display: block;
}
.section-streaming .streaming-container .info-container-hp .live-other .live-dot {
  width: 5px;
  height: 5px;
  display: inline-block;
  background: #EE2323;
  border-radius: 5px;
  margin: 0 4px 2px 0;
  box-shadow: 0 0 0 0 rgb(238, 35, 35);
  transform: scale(1);
  animation: pulse 2s infinite;
}
.section-streaming .streaming-container .info-container-hp .live-other h4 {
  font-size: 14px;
}
.section-streaming .streaming-container .info-container-hp .sponsor {
  width: 100px;
  display: flex;
  flex-direction: columns;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.section-streaming .streaming-container .info-container-hp .sponsor small {
  display: block;
  font-size: 8px;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (min-width: 992px) {
  .section-streaming .streaming-container .info-container-hp .sponsor small {
    font-size: 10px;
    line-height: 1em;
  }
}
.section-streaming .streaming-container .info-container-hp .sponsor a {
  color: black;
  line-height: 0;
}
.section-streaming .streaming-container .info-container-hp .sponsor a:hover {
  opacity: 0.75;
  text-decoration: none;
}
.section-streaming .streaming-container .info-container-hp .sponsor a img {
  border-radius: 12px;
}
.section-streaming .side-container {
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .section-streaming .side-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
.section-streaming .side-container.hp-side-container {
  padding: 0 10px 20px;
}
@media screen and (min-width: 768px) {
  .section-streaming .side-container.hp-side-container .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-direction: column;
  }
}
.section-streaming .side-container.hp-side-container .container .text-center {
  z-index: 10;
  position: relative;
}
.section-streaming .side-container.hp-side-container .container h3 {
  text-transform: uppercase;
  font-size: 24px;
}
@media screen and (min-width: 576px) {
  .section-streaming .side-container.hp-side-container .dopo-festival {
    display: flex;
  }
}
@media screen and (min-width: 1200px) {
  .section-streaming .side-container.hp-side-container .dopo-festival {
    flex-direction: column;
  }
}
.section-streaming .side-container.hp-side-container .dopo-festival .dopo-link {
  margin-bottom: 20px;
}
@media screen and (min-width: 576px) {
  .section-streaming .side-container.hp-side-container .dopo-festival .dopo-link {
    margin-right: 10px;
    margin-bottom: 0;
  }
  .section-streaming .side-container.hp-side-container .dopo-festival .dopo-link:last-child {
    margin-right: 0;
  }
}
.section-streaming .side-container.hp-side-container .dopo-festival .dopo-link img {
  border-radius: 10px;
}
.section-streaming .side-container.hp-side-container .dopo-festival .dopo-link:last-child {
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .section-streaming .side-container.hp-side-container .dopo-festival .dopo-link {
    margin-bottom: 10px;
  }
  .section-streaming .side-container.hp-side-container .dopo-festival .dopo-link:last-child {
    margin-bottom: 0;
  }
}
.section-streaming .side-container .top-logo {
  background-color: #eee;
  border-radius: 10px;
  margin-bottom: 20px;
  box-sizing: border-box;
}
.section-streaming .side-container .top-logo a {
  padding: 10px;
  border-radius: 10px;
  display: block;
}
.section-streaming .side-container .top-logo a:hover {
  background-color: white;
}
.section-streaming .side-container .comunicazioni-container {
  overflow: auto;
}
.section-streaming .side-container .comunicazioni-container .comunicazioni-box {
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 10px;
  margin-bottom: 10px;
  border-radius: 5px;
}
.section-streaming .side-container .comunicazioni-container .comunicazioni-box p {
  margin: 0.1em 0;
  font-size: 14px;
  line-height: 1.2em;
}
.section-streaming .side-container .comunicazioni-container .comunicazioni-box .comunicazioni-date {
  text-align: right;
  display: block;
  font-size: 12px;
  margin-top: 6px;
}
.section-streaming .side-container .evento-info-top {
  width: 100%;
}
@media screen and (min-width: 576px) {
  .section-streaming .side-container .evento-info-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media screen and (min-width: 992px) {
  .section-streaming .side-container .evento-info-top {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (min-width: 1200px) {
  .section-streaming .side-container .evento-info-top {
    max-width: calc(100% - 120px);
  }
}
.section-streaming .side-container .evento-info-top .streaming-orario {
  text-transform: uppercase;
  margin: 0 0 10px;
}
@media screen and (min-width: 768px) {
  .section-streaming .side-container .evento-info-top .streaming-orario {
    font-size: 20px;
  }
}
.section-streaming .side-container .evento-info-top .evento-luogo {
  margin: 0 0 10px;
  display: flex;
  align-items: flex-start;
}
.section-streaming .side-container .evento-info-top .evento-luogo img {
  filter: brightness(1000%);
  width: 20px;
}
.section-streaming .side-container .evento-info-top .evento-luogo h3 {
  margin: 0 0 0 5px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .section-streaming .side-container .evento-info-top .evento-luogo h3 {
    font-size: 20px;
  }
}
@media screen and (min-width: 992px) {
  .section-streaming .side-container .evento-info {
    margin-top: 10px;
  }
}
.section-streaming .side-container .evento-info h1 {
  line-height: 1em;
}
@media screen and (min-width: 992px) {
  .section-streaming .side-container .evento-info h1 {
    font-size: 50px;
  }
}
.section-streaming .side-container .evento-info h2 {
  line-height: 1.1em;
  font-size: 26px;
}
@media screen and (min-width: 992px) {
  .section-streaming .side-container .evento-info h2 {
    font-size: 30px;
  }
}
.section-streaming .side-container .evento-info .author {
  margin-top: 10px;
}
@media screen and (min-width: 992px) {
  .section-streaming .side-container .evento-info .author {
    margin-top: 20px;
  }
}
.section-streaming .side-container .evento-live {
  display: flex;
  align-items: center;
  background: white;
  padding: 5px 10px;
  margin-top: 10px;
  margin-bottom: 20px;
  border-radius: 25px;
  display: inline-block;
}
.section-streaming .side-container .evento-live small {
  color: rgb(252.5585774059, 62.9414225941, 161.4121338912);
  text-transform: uppercase;
  font-weight: 600;
}
.section-streaming .side-container .evento-live img {
  margin-right: 5px;
  height: 25px;
}
.section-streaming .side-container .sponsor {
  margin-top: 30px;
  width: 100px;
  display: flex;
  flex-direction: columns;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.section-streaming .side-container .sponsor small {
  display: block;
  font-size: 8px;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (min-width: 992px) {
  .section-streaming .side-container .sponsor small {
    font-size: 10px;
    line-height: 1em;
  }
}
.section-streaming .side-container .sponsor a {
  color: white;
  line-height: 0;
}
.section-streaming .side-container .sponsor a:hover {
  opacity: 0.75;
  text-decoration: none;
}
.section-streaming .side-container .sponsor a img {
  border-radius: 12px;
}
.section-streaming .side-container .info-container {
  padding: 0 10px;
  display: flex;
  justify-content: space-around;
  height: 100%;
}
@media screen and (min-width: 992px) {
  .section-streaming .side-container .info-container {
    padding: 0;
    flex-direction: column;
  }
}
.section-streaming .side-container .info-container .streaming-info {
  padding: 0;
}
@media screen and (min-width: 1200px) {
  .section-streaming .side-container .info-container .streaming-info {
    flex-grow: 0;
  }
}
.section-streaming .side-container .info-container .streaming-info h1, .section-streaming .side-container .info-container .streaming-info h2 {
  font-size: 24px;
  line-height: 1.1em;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .section-streaming .side-container .info-container .streaming-info h1, .section-streaming .side-container .info-container .streaming-info h2 {
    font-size: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .section-streaming .side-container .info-container .streaming-info h1, .section-streaming .side-container .info-container .streaming-info h2 {
    font-size: 46px;
    margin-bottom: 20px;
  }
}
.section-streaming .side-container .info-container .streaming-info .share {
  margin: 0 0 20px -5px;
}
.section-streaming .side-container .info-container .streaming-info .btn-freccia {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .section-streaming .side-container .info-container .streaming-info .btn-freccia {
    font-size: 16px;
  }
}

.event-info-container .info-icon {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.event-info-container .info-icon img {
  width: 25px;
  margin-right: 15px;
}
.event-info-container .info-icon p {
  margin: 0;
  font-size: 18px;
  color: #686868;
}
.event-info-container .info-icon a {
  text-decoration: none;
}
.event-info-container .info-icon a:hover p {
  text-decoration: underline;
}

.header-content .info-icon {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.header-content .info-icon img {
  width: 16px;
  margin-right: 8px;
}
.header-content .info-icon p {
  margin: 0;
  font-size: 14px !important;
  color: #686868;
}
.header-content .info-icon a {
  text-decoration: none;
}
.header-content .info-icon a:hover p {
  text-decoration: underline;
}

.luoghi-info .info-icon {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.luoghi-info .info-icon img {
  height: 15px;
  margin-right: 15px;
}
.luoghi-info .info-icon p {
  margin: 0;
  font-size: 14px;
  color: #686868;
}
.luoghi-info .info-icon a {
  color: #686868;
}
.luoghi-info .info-icon a:hover {
  color: #EC037C;
}

@media screen and (min-width: 768px) {
  .event-sponsor {
    border-left: 1px solid #014C89;
  }
}
.event-sponsor a {
  display: flex;
  align-items: center;
  color: #757575;
}
@media screen and (min-width: 576px) {
  .event-sponsor a {
    flex-direction: column;
    justify-content: center;
  }
}
.event-sponsor a img {
  width: 180px;
}
@media screen and (min-width: 576px) {
  .event-sponsor a img {
    width: 100%;
  }
}
.event-sponsor a:hover {
  text-decoration: none;
}
.event-sponsor a:hover img {
  opacity: 0.75;
}

.section-programma-camp .camp-programma {
  margin: 40px 0;
}
.section-programma-camp .camp-programma .row-date, .section-programma-camp .camp-programma .row-events {
  display: flex;
  gap: 20px;
  width: 100%;
  margin-bottom: 20px;
  width: 100%;
}
.section-programma-camp .camp-programma .row-date .days-col, .section-programma-camp .camp-programma .row-events .days-col {
  flex: 1;
  max-width: 140px;
}
.section-programma-camp .camp-programma .row-date .days-col.active, .section-programma-camp .camp-programma .row-events .days-col.active {
  max-width: 100%;
}
.section-programma-camp .camp-programma .row-date .days-col .day-data, .section-programma-camp .camp-programma .row-events .days-col .day-data {
  background: #ededed;
  text-align: center;
  padding: 10px;
  cursor: pointer;
}
@media screen and (min-width: 992px) {
  .section-programma-camp .camp-programma .row-date .days-col .day-data, .section-programma-camp .camp-programma .row-events .days-col .day-data {
    font-size: 15px;
  }
}
.section-programma-camp .camp-programma .row-date .days-col .day-data:hover, .section-programma-camp .camp-programma .row-events .days-col .day-data:hover {
  background: rgb(254.1589958159, 188.8410041841, 222.7615062762);
}
.section-programma-camp .camp-programma .row-date .days-col .day-programma .camp-event, .section-programma-camp .camp-programma .row-events .days-col .day-programma .camp-event {
  border: 0.5px solid #757575;
  padding: 10px;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  border-left: 2px solid #EC037C;
}
.section-programma-camp .camp-programma .row-date .days-col .day-programma .camp-event .img-container, .section-programma-camp .camp-programma .row-events .days-col .day-programma .camp-event .img-container {
  aspect-ratio: 1.777;
  overflow: hidden;
  flex: 1;
}
.section-programma-camp .camp-programma .row-date .days-col .day-programma .camp-event .img-container img, .section-programma-camp .camp-programma .row-events .days-col .day-programma .camp-event .img-container img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.section-programma-camp .camp-programma .row-date .days-col .day-programma .camp-event .event-text, .section-programma-camp .camp-programma .row-events .days-col .day-programma .camp-event .event-text {
  flex: 2;
}
.section-programma-camp .camp-programma .row-date .days-col .day-programma .camp-event .event-text h4, .section-programma-camp .camp-programma .row-events .days-col .day-programma .camp-event .event-text h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 2px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .section-programma-camp .camp-programma .row-date .days-col .day-programma .camp-event .event-text h4, .section-programma-camp .camp-programma .row-events .days-col .day-programma .camp-event .event-text h4 {
    font-size: 16px;
  }
}
.section-programma-camp .camp-programma .row-date .days-col .day-programma .camp-event .event-text .info-icon, .section-programma-camp .camp-programma .row-events .days-col .day-programma .camp-event .event-text .info-icon {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.section-programma-camp .camp-programma .row-date .days-col .day-programma .camp-event .event-text .info-icon img, .section-programma-camp .camp-programma .row-events .days-col .day-programma .camp-event .event-text .info-icon img {
  width: 12px;
  margin-right: 5px;
}
.section-programma-camp .camp-programma .row-date .days-col .day-programma .camp-event .event-text .info-icon p, .section-programma-camp .camp-programma .row-events .days-col .day-programma .camp-event .event-text .info-icon p {
  margin: 0;
  font-size: 14px;
  color: #686868;
}
.section-programma-camp .camp-programma .row-date .days-col .day-programma .camp-event .event-text .cta a, .section-programma-camp .camp-programma .row-events .days-col .day-programma .camp-event .event-text .cta a {
  font-size: 14px;
}
.section-programma-camp .camp-programma .row-date .days-col .day-programma .camp-event.attivita, .section-programma-camp .camp-programma .row-events .days-col .day-programma .camp-event.attivita {
  border-left: 2px solid #014C89;
}
.section-programma-camp .camp-programma .row-date .days-col .day-programma .camp-event.attivita .img-container, .section-programma-camp .camp-programma .row-date .days-col .day-programma .camp-event.attivita .badge, .section-programma-camp .camp-programma .row-date .days-col .day-programma .camp-event.attivita .cta, .section-programma-camp .camp-programma .row-events .days-col .day-programma .camp-event.attivita .img-container, .section-programma-camp .camp-programma .row-events .days-col .day-programma .camp-event.attivita .badge, .section-programma-camp .camp-programma .row-events .days-col .day-programma .camp-event.attivita .cta {
  display: none !important;
}
.section-programma-camp .camp-programma .row-date .days-col.active, .section-programma-camp .camp-programma .row-events .days-col.active {
  width: auto;
}
.section-programma-camp .camp-programma .row-date .days-col.active .day-data, .section-programma-camp .camp-programma .row-events .days-col.active .day-data {
  background: #EC037C;
  color: white;
  font-weight: 600;
}
.section-programma-camp .camp-programma .row-date .days-col.active .camp-event .event-text h4, .section-programma-camp .camp-programma .row-events .days-col.active .camp-event .event-text h4 {
  -webkit-line-clamp: initial;
}
.section-programma-camp .camp-programma .row-events .days-col {
  display: none;
}
.section-programma-camp .camp-programma .row-events .days-col .day-programma .camp-event .img-container, .section-programma-camp .camp-programma .row-events .days-col .day-programma .camp-event .cta {
  display: none;
}
.section-programma-camp .camp-programma .row-events .days-col.active {
  display: block;
}
.section-programma-camp .camp-programma .row-events .days-col.active .day-programma .camp-event .img-container, .section-programma-camp .camp-programma .row-events .days-col.active .day-programma .camp-event .cta {
  display: block;
}
@media screen and (min-width: 992px) {
  .section-programma-camp .camp-programma .row-events .days-col {
    display: block;
  }
}

.event-bottom-sponsor {
  font-size: 14px;
  color: #686868;
  margin-top: 20px;
}
.event-bottom-sponsor b::before {
  content: " | ";
}
.event-bottom-sponsor b:first-of-type::before {
  content: "";
}

.section-evento-footer {
  padding: 20px 0;
}
.section-evento-footer .sponsor {
  border-radius: 12px;
  padding: 10px;
  display: flex;
  flex-direction: columns;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: white;
  aspect-ratio: 1;
  height: fit-content;
  margin-right: 1em;
}
.section-evento-footer .sponsor small {
  display: block;
  font-size: 8px;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (min-width: 992px) {
  .section-evento-footer .sponsor small {
    font-size: 10px;
    line-height: 1em;
  }
}
.section-evento-footer .sponsor a {
  line-height: 0;
}
.section-evento-footer .sponsor a:hover {
  opacity: 0.75;
  text-decoration: none;
}
.section-evento-footer .sponsor a img {
  border-radius: 12px;
}
.section-evento-footer .evento-footer-content p {
  margin-bottom: 10px;
}

.breadcrumb {
  background: transparent;
  margin: 0;
  padding: 0.75rem 0rem;
  font-size: 14px;
}
@media screen and (min-width: 576px) {
  .breadcrumb {
    font-size: 18px;
  }
}
.breadcrumb .breadcrumb-item a {
  color: black;
}
.breadcrumb .breadcrumb-item a:hover {
  color: #EC037C;
}
.breadcrumb .active a {
  font-weight: 700;
}

.banner-img-cta {
  position: relative;
  margin-bottom: 20px;
}
.banner-img-cta .btn {
  position: absolute;
  right: 20px;
  bottom: -20px;
}

.banner-img-text-cta {
  background: #757575;
  padding: 20px 20px 0;
  position: relative;
  height: 100%;
}
@media screen and (min-width: 576px) {
  .banner-img-text-cta {
    padding: 20px;
    display: flex;
    width: calc(100% - 40px);
  }
}
@media screen and (min-width: 768px) {
  .banner-img-text-cta {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 992px) {
  .banner-img-text-cta {
    margin-bottom: 0;
  }
}
.banner-img-text-cta .banner-text {
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 576px) {
  .banner-img-text-cta .banner-text {
    width: calc(100% - 120px);
  }
}
@media screen and (min-width: 992px) {
  .banner-img-text-cta .banner-text {
    width: calc(100% - 140px);
  }
}
.banner-img-text-cta .banner-text h3, .banner-img-text-cta .banner-text h4, .banner-img-text-cta .banner-text h5 {
  color: #EC037C;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.banner-img-text-cta .banner-text p {
  margin: 0;
}
.banner-img-text-cta .banner-img {
  width: 100%;
  margin-bottom: -20px;
  position: relative;
}
@media screen and (min-width: 576px) {
  .banner-img-text-cta .banner-img {
    width: 140px;
    position: absolute;
    right: -20px;
    bottom: -20px;
  }
}
@media screen and (min-width: 992px) {
  .banner-img-text-cta .banner-img {
    width: 160px;
  }
}
.banner-img-text-cta .banner-img .btn {
  position: absolute;
  right: 20px;
  bottom: -20px;
}

.swiper-ospiti {
  width: 100%;
}
.swiper-ospiti .ospiti-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.swiper-ospiti .ospiti-box .img-container {
  border-radius: 1em;
  overflow: hidden;
  aspect-ratio: 0.8;
  max-width: 120px;
  margin-bottom: 16px;
  position: relative;
  filter: drop-shadow(0px 1px 5px rgba(255, 255, 255, 0.2));
}
.swiper-ospiti .ospiti-box .img-container img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.swiper-ospiti .ospiti-box .img-container .bg-gradient {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  height: 50%;
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.swiper-ospiti .ospiti-box .img-container .ospite-info {
  z-index: 2;
  position: absolute;
  bottom: 5px;
  left: 10px;
  right: 10px;
  text-align: center;
  min-height: 30%;
}
.swiper-ospiti .ospiti-box .img-container .ospite-info h4 {
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  color: white;
  line-height: 1em;
  margin-bottom: 6px;
  margin-bottom-text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.75);
}
.swiper-ospiti .ospiti-box .img-container .ospite-info p {
  font-weight: 400;
  font-size: 14px;
  color: black;
}
.swiper-ospiti .ospiti-box .img-container .ospite-info p b {
  font-size: 16px;
}
.swiper-ospiti .ospiti-box:hover {
  text-decoration: none;
  opacity: 0.75;
}

.section-ospiti-evento {
  padding: 20px 0;
  overflow: hidden;
  width: 100%;
  display: block;
}
.section-ospiti-evento .swiper-ospiti .ospiti-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (min-width: 576px) {
  .section-ospiti-evento .swiper-ospiti .ospiti-box {
    flex-direction: row;
  }
}
.section-ospiti-evento .swiper-ospiti .ospiti-box .round-box {
  border-radius: 16px;
  overflow: hidden;
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
}
.section-ospiti-evento .swiper-ospiti .ospiti-box p {
  width: 120px;
  font-size: 12px;
  font-weight: 400;
}
@media screen and (min-width: 576px) {
  .section-ospiti-evento .swiper-ospiti .ospiti-box p {
    text-align: left;
    padding-left: 10px;
  }
}
.section-ospiti-evento .swiper-ospiti .ospiti-box p b {
  font-size: 14px;
}

.section-replay .evento-box {
  position: relative;
}
.section-replay .evento-box a {
  text-decoration: none;
  color: #014C89;
}
.section-replay .evento-box .wrapper {
  padding: 10px;
  display: block;
  overflow: auto;
  transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.5);
}
.section-replay .evento-box .wrapper .evento-img {
  background: #014C89;
  position: relative;
  margin-bottom: 20px;
}
.section-replay .evento-box .wrapper .evento-img img {
  opacity: 0.75;
  transition: all 0.3s ease;
}
.section-replay .evento-box .wrapper .evento-img .ico-play {
  position: absolute;
  right: 10px;
  bottom: -20px;
  background: #EC037C;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-replay .evento-box .wrapper .evento-img .ico-play img {
  width: 15px;
  opacity: 1;
  image-rendering: -webkit-optimize-contrast;
}
.section-replay .evento-box .wrapper .evento-info {
  display: flex;
}
.section-replay .evento-box .wrapper .evento-info .evento-text {
  margin-top: 10px;
  flex-grow: 1;
}
.section-replay .evento-box .wrapper .evento-info .evento-text p {
  font-size: 14px;
  color: #EC037C;
  font-weight: 600;
  margin: 0;
}
.section-replay .evento-box .wrapper .evento-info .evento-text h3, .section-replay .evento-box .wrapper .evento-info .evento-text h4, .section-replay .evento-box .wrapper .evento-info .evento-text h5 {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.02em;
}
.section-replay .evento-box .wrapper .evento-info .sponsor {
  text-align: center;
}
.section-replay .evento-box .wrapper .evento-info .sponsor small {
  display: block;
  margin-bottom: 10px;
  font-size: 9px;
  line-height: 1em;
  min-width: 60px;
  width: 60px;
}
.section-replay .evento-box .wrapper:hover {
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
}
.section-replay .evento-box .wrapper:hover .evento-img img {
  opacity: 1;
  transition: all 0.3s ease;
}
.section-replay .banner {
  padding: 10px;
}

.section-news .news-box {
  font-family: "Roboto Condensed", sans-serif;
}
.section-news .news-box .wrapper {
  display: flex;
  overflow: auto;
  transition: all 0.3s ease;
  gap: 10px;
}
@media screen and (min-width: 576px) {
  .section-news .news-box .wrapper {
    display: block;
  }
}
.section-news .news-box .wrapper .content {
  color: #102739;
  flex: 1 1 50%;
}
.section-news .news-box .wrapper .content h2, .section-news .news-box .wrapper .content h3, .section-news .news-box .wrapper .content h4, .section-news .news-box .wrapper .content h5 {
  color: #102739;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 18px;
}
@media screen and (min-width: 576px) {
  .section-news .news-box .wrapper .content h2, .section-news .news-box .wrapper .content h3, .section-news .news-box .wrapper .content h4, .section-news .news-box .wrapper .content h5 {
    font-size: 20px;
  }
}
.section-news .news-box .wrapper:hover {
  text-decoration: none;
}
.section-news .news-box .wrapper:hover h2, .section-news .news-box .wrapper:hover h3, .section-news .news-box .wrapper:hover h4, .section-news .news-box .wrapper:hover h5 {
  text-decoration: none;
  color: #EC037C;
}
.section-news .news-box .wrapper small {
  font-weight: 400;
  letter-spacing: 0.02em;
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
  color: #757575;
}
.section-news .news-box .img-container {
  flex: 1 1 50%;
  margin-bottom: 1em;
  aspect-ratio: 1.777;
}
.section-news .news-box .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-press .news-box .wrapper {
  color: black;
  background: white;
  padding: 1em;
  display: block;
}
.section-press .news-box .wrapper:hover {
  text-decoration: none;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.25);
}
.section-press .news-box .wrapper small {
  font-size: 16px;
  color: #757575;
  margin-bottom: 5px;
  display: block;
}
.section-press .news-box .wrapper h4 {
  font-family: "Roboto Condensed", sans-serif;
}
.section-press .news-box .wrapper p {
  margin: 0;
}
.section-press article h1 {
  font-size: 36px;
}
.section-press article h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 20px auto;
}
.section-press article p {
  font-size: 18px;
  letter-spacing: 0.4px;
}
.section-press article .img-container {
  width: 100%;
  margin-bottom: 20px;
  aspect-ratio: 1;
}
@media screen and (min-width: 992px) {
  .section-press article .img-container {
    aspect-ratio: 1.777;
  }
}
.section-press article .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-press article .data {
  color: #757575;
  font-size: 20px;
}

.section-prefestival {
  position: relative;
}
.section-prefestival .bg-gradient {
  height: 50%;
  width: 100%;
  position: absolute;
}
@media screen and (min-width: 576px) {
  .section-prefestival .bg-gradient {
    height: 75%;
  }
}
@media screen and (min-width: 576px) {
  .section-prefestival .swiper-prefestival {
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.35);
  }
}
.section-prefestival .swiper-prefestival .swiper-wrapper {
  margin-bottom: 0;
}
.section-prefestival .swiper-prefestival .swiper-title {
  text-align: center;
  bottom: 20px;
  left: 20px;
  background: #014C89;
  padding: 10px;
  color: white;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .section-prefestival .swiper-prefestival .swiper-title {
    text-align: left;
    max-width: 80%;
    padding: 20px;
    bottom: 20px;
    left: 10%;
    position: absolute;
    background: rgba(1, 76, 137, 0.9);
  }
}
.section-prefestival .swiper-prefestival .swiper-title h2, .section-prefestival .swiper-prefestival .swiper-title h3, .section-prefestival .swiper-prefestival .swiper-title h4 {
  font-size: 16px;
  letter-spacing: 0.02em;
  margin-bottom: 0.2em;
}
@media screen and (min-width: 576px) {
  .section-prefestival .swiper-prefestival .swiper-title h2, .section-prefestival .swiper-prefestival .swiper-title h3, .section-prefestival .swiper-prefestival .swiper-title h4 {
    font-size: 26px;
  }
}
@media screen and (min-width: 992px) {
  .section-prefestival .swiper-prefestival .swiper-title h2, .section-prefestival .swiper-prefestival .swiper-title h3, .section-prefestival .swiper-prefestival .swiper-title h4 {
    font-size: 30px;
  }
}
.section-prefestival .swiper-prefestival .swiper-title h2 b, .section-prefestival .swiper-prefestival .swiper-title h2 strong, .section-prefestival .swiper-prefestival .swiper-title h3 b, .section-prefestival .swiper-prefestival .swiper-title h3 strong, .section-prefestival .swiper-prefestival .swiper-title h4 b, .section-prefestival .swiper-prefestival .swiper-title h4 strong {
  font-weight: 600;
}
.section-prefestival .swiper-prefestival .swiper-title p {
  padding-right: 40px;
  margin: 0;
}
.section-prefestival .swiper-prefestival .swiper-title .btn {
  padding: 5px 15px;
  font-size: 13px;
  margin-top: 10px;
}
@media screen and (min-width: 576px) {
  .section-prefestival .swiper-prefestival .swiper-title .btn {
    position: absolute;
    right: -10px;
    bottom: -10px;
    font-size: 16px;
    padding: 0.75rem 1.5rem 1rem;
  }
}

.top-partner {
  padding: 20px 0;
}
.top-partner .row {
  align-items: center;
}
.top-partner .row .top-partner-main {
  padding: 0;
  flex: 0 0 70.8333%;
  max-width: 70.8333%;
}
.top-partner .row .top-partner-secondary {
  flex: 0 0 29.1667%;
  max-width: 29.1667%;
}
.top-partner .row .partner h4 {
  font-size: 9px;
  padding: 0 0 0 10px;
}
.top-partner .row .partner a img {
  margin-top: -10px;
}
.top-partner .row .line-left {
  border-left: 1px solid #757575;
}
.top-partner .swiper-top-partner .swiper-wrapper {
  margin: 0;
}
.top-partner .swiper-top-partner .swiper-slide {
  display: flex;
}
.top-partner .swiper-top-partner .swiper-slide .partner {
  width: 50%;
}
.top-partner .swiper-top-partner .swiper-slide .partner img {
  max-width: 100%;
}

.section-content a {
  color: rgb(252.5585774059, 62.9414225941, 161.4121338912);
}
.section-content a:hover {
  color: #EC037C;
}
.section-content .btn {
  color: white;
}
.section-content .btn:hover {
  color: white;
}
.section-content .sidebar {
  line-height: 1.1em;
}
.section-content .sidebar .btn {
  display: block;
}
.section-content .sidebar small {
  line-height: 1em;
}
.section-content .sidebar p {
  line-height: 1.4em;
}
.section-content .sidebar hr {
  margin: 30px 0;
}
.section-content h1, .section-content h2 {
  font-size: 24px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .section-content h1, .section-content h2 {
    font-size: 32px;
  }
}
.section-content h3 {
  font-size: 24;
  font-weight: 700;
}
.section-content .author {
  margin-bottom: 1em;
  color: #014C89;
}

.tag-title {
  font-size: 20px;
}

.section-ospiti .filter-ospiti-container form {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  justify-content: space-between;
  align-items: center;
}
.section-ospiti .filter-ospiti-container form .label-filter {
  width: auto;
}
.section-ospiti .filter-ospiti-container form .form-group {
  flex: 2;
  margin-bottom: 0;
}
.section-ospiti .filter-ospiti-container form .selection .select2-selection {
  border: none;
  box-shadow: none;
  border-bottom: 1px solid black;
  border-radius: 0;
}
.section-ospiti .filter-ospiti-container form .selection .select2-selection .select2-selection__rendered .select2-selection__clear {
  right: 40px;
}
.section-ospiti .filter-ospiti-container form .selection .select2-selection__arrow {
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 40px;
}
.section-ospiti .filter-ospiti-container form .selection .select2-selection__arrow b {
  position: relative;
  margin: 0;
  top: 0;
  left: 0;
  border-color: black transparent transparent transparent;
}
.section-ospiti .ospiti-container .ospiti-box {
  padding: 1em;
  box-sizing: border-box;
}
.section-ospiti .ospiti-container .ospiti-box .img-container {
  aspect-ratio: 0.8;
  border-radius: 1em;
  overflow: hidden;
  position: relative;
}
.section-ospiti .ospiti-container .ospiti-box .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-ospiti .ospiti-container .ospiti-box .img-container .bg-gradient {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  height: 50%;
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.section-ospiti .ospiti-container .ospiti-box .img-container .ospiti-info {
  z-index: 2;
  position: absolute;
  bottom: 5px;
  left: 10px;
  right: 10px;
  text-align: center;
  min-height: 30%;
}
.section-ospiti .ospiti-container .ospiti-box .img-container .ospiti-info h5 {
  text-align: center;
  color: white;
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 6px;
  line-height: 1em;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.75);
}
.section-ospiti .ospiti-container .ospiti-box .img-container .ospiti-info p {
  text-align: center;
  color: white;
  font-weight: 300;
  letter-spacing: 0.02em;
  font-size: 14px;
}
.section-ospiti .ospiti-container .ospiti-box .img-container .ospiti-info p b {
  font-size: 16px;
}
.section-ospiti .ospiti-container .ospiti-box:hover {
  text-decoration: none;
}
.section-ospiti .ospiti-container .ospiti-box:hover img {
  opacity: 0.75;
}
.section-ospiti .ospiti-container .ospiti-box .tag-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.section-ospiti .ospiti-filtri {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.section-ospiti .ospiti-filtri .btn-giorno {
  padding: 14px 0px;
  display: block;
  background: white;
  border: 1px solid black;
  text-align: center;
  color: black;
  flex: 1;
  box-shadow: none;
  font-weight: 500;
  text-transform: uppercase;
}
.section-ospiti .ospiti-filtri .btn-giorno span {
  margin-left: 0.5em;
}
.section-ospiti .ospiti-filtri .btn-giorno span:first-child {
  display: none;
}
@media screen and (min-width: 768px) {
  .section-ospiti .ospiti-filtri .btn-giorno span {
    display: none;
  }
  .section-ospiti .ospiti-filtri .btn-giorno span:first-child {
    display: inline-block;
  }
}
.section-ospiti .ospiti-filtri .btn-giorno:first-child {
  flex: 2;
}
@media screen and (min-width: 768px) {
  .section-ospiti .ospiti-filtri .btn-giorno:first-child {
    flex: 1;
  }
}
.section-ospiti .ospiti-filtri .btn-giorno.active {
  background: #EC037C;
  border-color: #EC037C;
  color: white;
  font-weight: 600;
}
.section-ospiti .ospiti-filtri .btn-giorno:hover {
  text-decoration: none;
  background: #EC037C;
  border-color: #EC037C;
  color: white;
}
.section-ospiti .ospiti-search {
  position: relative;
}
.section-ospiti .ospiti-search input {
  display: inline-block;
  border: none;
  border-bottom: 1px solid black;
  border-radius: 0;
  box-shadow: none !important;
}
.section-ospiti .ospiti-search .btn {
  top: -5px;
  right: -5px;
  height: 40px;
  position: absolute;
  box-shadow: none;
}
.section-ospiti .ospiti-search .btn:hover {
  opacity: 0.5;
}

.section-luoghi a {
  color: black;
  text-decoration: none;
}
.section-luoghi a:hover {
  opacity: 0.75;
  text-decoration: none;
}
.section-luoghi a .img-container {
  aspect-ratio: 1.777;
  margin-bottom: 10px;
}
.section-luoghi a .img-container img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.section-luoghi a p {
  margin: 0 0 10px 0;
}
.section-luoghi a h3 {
  margin: 0 0 10px 0;
  font-size: 22px;
}
.section-luoghi a .info-icon {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.section-luoghi a .info-icon img {
  width: 12px;
  margin-right: 5px;
}
.section-luoghi a .info-icon p {
  margin: 0;
  font-size: 14px;
  color: #686868 !important;
}

.header-programma {
  background: rgb(211, 0, 89);
  background: linear-gradient(90deg, rgb(211, 0, 89) 0%, rgb(30, 80, 119) 100%);
  background: #EC037C;
  color: white;
}
.header-programma pre {
  margin: 0;
}
.header-programma .programma-filtri-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.35);
  background: #102739;
  z-index: 999;
}
.header-programma .programma-filtri-mobile a {
  color: white;
}
.header-programma .programma-filtri-mobile .open-filtri {
  border: 2px solid white;
  padding: 0.5rem 1.5rem;
}
.header-programma .programma-filtri-mobile .reset-filtri img {
  width: 30px;
  image-rendering: -webkit-optimize-contrast;
  border: 2px solid white;
  padding: 5px;
}
@media screen and (min-width: 576px) {
  .header-programma .programma-filtri-mobile {
    display: none;
  }
}
@media screen and (min-width: 576px) {
  .header-programma {
    padding: 30px 0;
  }
}

.filter-container #filter-form {
  display: none;
}
@media screen and (min-width: 768px) {
  .filter-container #filter-form {
    display: block;
  }
}
.filter-container #filter-form .control-label {
  display: none;
}
.filter-container #filter-form #submit-filtri {
  width: 100%;
  background: white;
  border: 1px solid #EC037C;
  color: #EC037C;
  border-radius: 6px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.35);
  height: 44px;
  margin-top: 30px;
  font-size: 14px;
  font-weight: 600;
}
.filter-container #filter-form #submit-filtri:hover {
  color: white;
  background: #EC037C;
}
@media screen and (min-width: 768px) {
  .filter-container #filter-form #submit-filtri {
    margin-top: 0px;
  }
}
.filter-container #filter-form .form-group {
  margin: 0;
}
.filter-container #filter-form .field-programmafilter-sport .btn-group {
  width: 100%;
}
.filter-container #filter-form .field-programmafilter-sport .btn-group > .btn {
  justify-content: space-between;
  width: 100%;
  box-shadow: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid;
  padding-left: 0;
  padding-right: 0;
  font-size: 16px;
  font-weight: 400;
}
.filter-container #filter-form .field-programmafilter-sport .multiselect-container {
  width: 100%;
  background: #ededed;
  padding-left: 10px;
  border: none;
  max-height: 240px;
  overflow: auto;
}
.filter-container #filter-form .field-programmafilter-sport .multiselect-container > li > a > label {
  padding: 0;
  margin: 5px 0;
}
.filter-container #filter-form .field-programmafilter-sport .multiselect-container > li > a > label > input[type=checkbox] {
  width: 20px;
  height: 20px;
  transform: translateY(4px);
}
.filter-container #filter-form .field-programmafilter-luogo_id, .filter-container #filter-form .field-programmafilter-ospite {
  margin: 0;
}
.filter-container #filter-form .field-programmafilter-luogo_id .select2-container--krajee-bs3 .select2-selection--single, .filter-container #filter-form .field-programmafilter-ospite .select2-container--krajee-bs3 .select2-selection--single {
  height: 50px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  box-shadow: none;
  border-bottom: 1px solid;
  border-radius: 0;
}
.filter-container #filter-form .field-programmafilter-luogo_id .select2-container--krajee-bs3 .select2-selection--single .select2-selection__rendered, .filter-container #filter-form .field-programmafilter-ospite .select2-container--krajee-bs3 .select2-selection--single .select2-selection__rendered {
  color: black;
}
.filter-container #filter-form .field-programmafilter-luogo_id .select2-container--krajee-bs3 .select2-selection--single .select2-selection__arrow, .filter-container #filter-form .field-programmafilter-ospite .select2-container--krajee-bs3 .select2-selection--single .select2-selection__arrow {
  border: none;
}
.filter-container #filter-form .field-programmafilter-luogo_id .select2-container--krajee-bs3 .select2-selection--single .select2-selection__placeholder, .filter-container #filter-form .field-programmafilter-ospite .select2-container--krajee-bs3 .select2-selection--single .select2-selection__placeholder {
  color: black;
  font-size: 16px;
}
.filter-container #filter-form .field-programmafilter-luogo_id .select2-container--krajee-bs3 .select2-selection--single .select2-selection__arrow b, .filter-container #filter-form .field-programmafilter-ospite .select2-container--krajee-bs3 .select2-selection--single .select2-selection__arrow b {
  border-color: black transparent transparent transparent;
}
.filter-container #filter-form .field-programmafilter-luogo_id .select2-container--krajee-bs3 .select2-selection, .filter-container #filter-form .field-programmafilter-ospite .select2-container--krajee-bs3 .select2-selection {
  color: black;
  font-size: 16px;
}
.filter-container #filtri-show-button {
  width: 100%;
  background: white;
  border: 1px solid #EC037C;
  color: #EC037C;
  border-radius: 6px;
  margin-top: 30px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.35);
  height: 44px;
}
.filter-container #filtri-show-button:hover {
  color: white;
  background: #EC037C;
}
@media screen and (min-width: 768px) {
  .filter-container #filtri-show-button {
    display: none;
  }
}
.filter-container.show #filter-form {
  display: block;
}
.filter-container.show #filtri-show-button {
  display: none;
}

.select2-container--krajee-bs3 .select2-dropdown {
  border: none !important;
  border-radius: 0 !important;
}

.programma-partner {
  color: #757575;
}
.programma-partner .active-sponsor {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.programma-partner .active-sponsor .swiper {
  flex: 1;
}
.programma-partner .active-sponsor .swiper-container {
  margin-left: auto;
}
.programma-partner .active-sponsor .swiper-container .swiper-wrapper {
  margin: 0;
  justify-content: flex-end;
}
.programma-partner .active-sponsor .swiper-container .swiper-slide .partner-logo-container {
  text-align: center;
}
.programma-partner .active-sponsor .swiper-container .swiper-slide .partner-logo-container img {
  width: 100px;
}

.bootstrap-select .dropdown-menu .dropdown-item {
  color: #014C89 !important;
}

.section-programma .programma-tipo {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.section-programma .programma-tipo .tipo-tab {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  border-bottom: 1px solid #757575;
  color: #757575;
  text-transform: uppercase;
}
.section-programma .programma-tipo .tipo-tab.active {
  border-bottom: 2px solid #EC037C;
  color: #EC037C;
  font-weight: 600;
}
.section-programma .programma-tipo a:hover {
  text-decoration: none;
  color: #EC037C;
}
.section-programma .programma-giorno {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.section-programma .programma-giorno .data-tab {
  padding: 14px 0px;
  display: block;
  background: white;
  border: 1px solid black;
  text-align: center;
  color: black;
  flex: 1;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
}
@media screen and (min-width: 768px) {
  .section-programma .programma-giorno .data-tab {
    font-size: 15px;
  }
}
.section-programma .programma-giorno .data-tab span {
  margin-left: 2px;
}
.section-programma .programma-giorno .data-tab span:first-child {
  display: none;
}
@media screen and (min-width: 768px) {
  .section-programma .programma-giorno .data-tab span {
    margin-left: 0.5em;
    display: none;
  }
  .section-programma .programma-giorno .data-tab span:first-child {
    display: inline-block;
  }
}
.section-programma .programma-giorno .data-tab:first-child {
  flex: 1.5;
}
@media screen and (min-width: 768px) {
  .section-programma .programma-giorno .data-tab:first-child {
    flex: 1;
  }
}
.section-programma .programma-giorno .data-tab.active {
  background: #EC037C;
  border-color: #EC037C;
  color: white;
  font-weight: 600;
}
.section-programma .programma-giorno .data-tab:hover {
  text-decoration: none;
  background: #EC037C;
  border-color: #EC037C;
  color: white;
}
.section-programma .programma-container .programma-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.section-programma .programma-container .evento-box {
  width: 100%;
  position: relative;
  margin-bottom: 40px;
  padding: 0;
  flex: 1 100%;
}
@media screen and (min-width: 576px) {
  .section-programma .programma-container .evento-box {
    max-width: calc(50% - 5px);
    flex: 1 50%;
  }
}
@media screen and (min-width: 992px) {
  .section-programma .programma-container .evento-box {
    max-width: calc(25% - 7.5px);
    flex: 1 25%;
  }
}
.section-programma .programma-container .evento-box a {
  text-decoration: none;
  color: #014C89;
}
.section-programma .programma-container .evento-box .wrapper {
  display: block;
  overflow: auto;
  height: 100%;
}
.section-programma .programma-container .evento-box .wrapper .evento-img {
  aspect-ratio: 1.777;
  background: rgba(1, 76, 137, 0.2);
  position: relative;
}
.section-programma .programma-container .evento-box .wrapper .evento-img img {
  opacity: 1;
  transition: all 0.3s ease;
  image-rendering: -webkit-optimize-contrast !important;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-programma .programma-container .evento-box .wrapper .evento-img .badge {
  z-index: 10;
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 0.5em 1em;
  border-radius: 1em;
  color: white;
  background: black;
}
.section-programma .programma-container .evento-box .wrapper .evento-img .badge p {
  margin: 0;
}
.section-programma .programma-container .evento-box .wrapper .evento-img .badge .live-dot {
  width: 5px;
  height: 5px;
  display: inline-block;
  background: white;
  border-radius: 5px;
  margin: 0 4px 2px 0;
  box-shadow: 0 0 0 0 rgb(255, 255, 255);
  transform: scale(1);
  animation: pulse 2s infinite;
}
.section-programma .programma-container .evento-box .wrapper .evento-img .badge.stato-live {
  background: #EE2323;
}
.section-programma .programma-container .evento-box .wrapper .evento-img .badge.stato-replay {
  background: #EC037C;
}
.section-programma .programma-container .evento-box .wrapper .evento-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 20px;
}
.section-programma .programma-container .evento-box .wrapper .evento-info .evento-text {
  margin-top: 10px;
  margin-bottom: auto;
}
.section-programma .programma-container .evento-box .wrapper .evento-info .evento-text h4 {
  font-size: 24px;
  margin: 0 0 10px;
  color: black;
}
.section-programma .programma-container .evento-box .wrapper .evento-info .evento-text .info-icon {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.section-programma .programma-container .evento-box .wrapper .evento-info .evento-text .info-icon img {
  width: 12px;
  margin-right: 5px;
}
.section-programma .programma-container .evento-box .wrapper .evento-info .evento-text .info-icon p {
  margin: 0;
  font-size: 16px;
  color: #686868;
}
.section-programma .programma-container .evento-box .wrapper .evento-info .evento-text .evento-live {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.section-programma .programma-container .evento-box .wrapper .evento-info .evento-text .evento-live small {
  color: rgb(252.5585774059, 62.9414225941, 161.4121338912);
  text-transform: uppercase;
  font-weight: 600;
}
.section-programma .programma-container .evento-box .wrapper .evento-info .evento-text .evento-live img {
  margin-right: 5px;
  width: 25px;
  height: 25px;
}
.section-programma .programma-container .evento-box .wrapper .evento-info .sponsor {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px dashed rgba(236, 3, 124, 0.5);
}
.section-programma .programma-container .evento-box .wrapper .evento-info .sponsor small {
  display: block;
  margin-bottom: -10px;
  font-size: 9px;
  line-height: 1em;
  z-index: 10;
}
.section-programma .programma-container .evento-box .wrapper .evento-info .sponsor img {
  width: 100px;
}
.section-programma .programma-container .evento-box .wrapper .cta {
  position: absolute;
  right: 30px;
  bottom: -20px;
  background: #EC037C;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-programma .programma-container .evento-box .wrapper .cta img {
  opacity: 1;
  width: 15px;
  image-rendering: -webkit-optimize-contrast;
}
.section-programma .programma-container .evento-box .wrapper:hover .evento-img img {
  opacity: 0.75;
  transition: all 0.3s ease;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.header-content {
  padding: 20px 0;
  overflow: hidden;
}
.header-content .container {
  position: relative;
}
.header-content .header-text {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.header-content .header-text hr {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}
.header-content .header-text p {
  font-weight: 300;
  line-height: 1.6em;
  margin: 0;
}
@media screen and (min-width: 576px) {
  .header-content .header-text p {
    font-size: 18px;
  }
}
.header-content .header-text a:hover {
  opacity: 0.75;
}
.header-content .header-text .sponsor {
  text-align: center;
  font-size: 12px;
  max-width: 130px;
}
.header-content .row {
  z-index: 10;
  position: relative;
}
.header-content .bg-image {
  position: absolute;
  z-index: 1;
  opacity: 0.2;
  right: 0;
  top: 0;
  display: none;
}

.masterclass-menu {
  padding: 20px 0;
}
.masterclass-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 576px) {
  .masterclass-menu ul {
    display: flex;
    margin-left: -15px;
    margin-right: -15px;
    justify-content: space-between;
  }
}
.masterclass-menu ul li {
  width: 100%;
  margin-bottom: 10px;
}
@media screen and (min-width: 576px) {
  .masterclass-menu ul li {
    flex-grow: 1;
    padding: 0 10px;
  }
}
.masterclass-menu ul li .btn {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
}
.masterclass-menu ul li .btn:hover {
  background-color: #EC037C;
}

.section-masterclass-title {
  margin-bottom: -100px;
  position: relative;
  padding-bottom: 60px;
  padding-top: 30px;
}
.section-masterclass-title .section-title img {
  filter: brightness(600%);
}

.section-masterclass .evento-box {
  position: relative;
}
.section-masterclass .evento-box a {
  text-decoration: none;
  color: #014C89;
}
.section-masterclass .evento-box .wrapper {
  padding: 10px;
  display: block;
  overflow: auto;
  transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.5);
}
.section-masterclass .evento-box .wrapper .evento-img {
  background: #014C89;
  position: relative;
  margin-bottom: 20px;
}
.section-masterclass .evento-box .wrapper .evento-img img {
  opacity: 0.75;
  transition: all 0.3s ease;
}
.section-masterclass .evento-box .wrapper .evento-img .ico-play {
  position: absolute;
  right: 10px;
  bottom: -20px;
  background: #EC037C;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-masterclass .evento-box .wrapper .evento-img .ico-play img {
  width: 15px;
  opacity: 1;
  image-rendering: -webkit-optimize-contrast;
}
.section-masterclass .evento-box .wrapper .evento-info {
  display: flex;
}
.section-masterclass .evento-box .wrapper .evento-info .evento-text {
  margin-top: 10px;
  flex-grow: 1;
}
.section-masterclass .evento-box .wrapper .evento-info .evento-text p {
  font-size: 14px;
  letter-spacing: 0.02em;
  font-weight: 300;
  margin: 0;
}
.section-masterclass .evento-box .wrapper .evento-info .evento-text h3, .section-masterclass .evento-box .wrapper .evento-info .evento-text h4, .section-masterclass .evento-box .wrapper .evento-info .evento-text h5 {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.02em;
}
.section-masterclass .evento-box .wrapper:hover {
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
  background: white;
}
.section-masterclass .evento-box .wrapper:hover .evento-img img {
  opacity: 1;
  transition: all 0.3s ease;
}

.section-partner .modal .partner-eventi {
  box-sizing: border-box;
  margin-bottom: -20px;
}
.section-partner .modal .partner-eventi .eventi-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.section-partner .modal .partner-eventi .eventi-container .evento-box {
  width: 100%;
  position: relative;
  margin-bottom: 40px;
  padding: 0;
  flex: 1 100%;
}
@media screen and (min-width: 576px) {
  .section-partner .modal .partner-eventi .eventi-container .evento-box {
    max-width: calc(50% - 5px);
    flex: 1 50%;
  }
}
@media screen and (min-width: 992px) {
  .section-partner .modal .partner-eventi .eventi-container .evento-box {
    max-width: calc(33.333% - 7.5px);
    flex: 1 33.333%;
  }
}
.section-partner .modal .partner-eventi .eventi-container .evento-box a {
  text-decoration: none;
  color: #014C89;
}
.section-partner .modal .partner-eventi .eventi-container .evento-box .wrapper {
  display: block;
  overflow: auto;
  height: 100%;
}
.section-partner .modal .partner-eventi .eventi-container .evento-box .wrapper .evento-img {
  aspect-ratio: 1.777;
  background: rgba(1, 76, 137, 0.2);
  position: relative;
}
.section-partner .modal .partner-eventi .eventi-container .evento-box .wrapper .evento-img img {
  opacity: 1;
  transition: all 0.3s ease;
  image-rendering: -webkit-optimize-contrast !important;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-partner .modal .partner-eventi .eventi-container .evento-box .wrapper .evento-img .badge {
  z-index: 10;
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 0.5em 1em;
  border-radius: 1em;
  color: white;
  background: black;
}
.section-partner .modal .partner-eventi .eventi-container .evento-box .wrapper .evento-img .badge p {
  margin: 0;
}
.section-partner .modal .partner-eventi .eventi-container .evento-box .wrapper .evento-img .badge .live-dot {
  width: 5px;
  height: 5px;
  display: inline-block;
  background: white;
  border-radius: 5px;
  margin: 0 4px 2px 0;
  box-shadow: 0 0 0 0 rgb(255, 255, 255);
  transform: scale(1);
  animation: pulse 2s infinite;
}
.section-partner .modal .partner-eventi .eventi-container .evento-box .wrapper .evento-img .badge.stato-live {
  background: #EE2323;
}
.section-partner .modal .partner-eventi .eventi-container .evento-box .wrapper .evento-img .badge.stato-replay {
  background: #EC037C;
}
.section-partner .modal .partner-eventi .eventi-container .evento-box .wrapper .evento-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 20px;
}
.section-partner .modal .partner-eventi .eventi-container .evento-box .wrapper .evento-info .evento-text {
  margin-top: 10px;
  margin-bottom: auto;
}
.section-partner .modal .partner-eventi .eventi-container .evento-box .wrapper .evento-info .evento-text h4 {
  font-size: 24px;
  margin: 0 0 10px;
  color: black;
}
.section-partner .modal .partner-eventi .eventi-container .evento-box .wrapper .evento-info .evento-text .info-icon {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.section-partner .modal .partner-eventi .eventi-container .evento-box .wrapper .evento-info .evento-text .info-icon img {
  width: 12px;
  margin-right: 5px;
}
.section-partner .modal .partner-eventi .eventi-container .evento-box .wrapper .evento-info .evento-text .info-icon p {
  margin: 0;
  font-size: 16px;
  color: #686868;
}
.section-partner .modal .partner-eventi .eventi-container .evento-box .wrapper .evento-info .evento-text .evento-live {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.section-partner .modal .partner-eventi .eventi-container .evento-box .wrapper .evento-info .evento-text .evento-live small {
  color: rgb(252.5585774059, 62.9414225941, 161.4121338912);
  text-transform: uppercase;
  font-weight: 600;
}
.section-partner .modal .partner-eventi .eventi-container .evento-box .wrapper .evento-info .evento-text .evento-live img {
  margin-right: 5px;
  width: 25px;
  height: 25px;
}
.section-partner .modal .partner-eventi .eventi-container .evento-box .wrapper .evento-info .sponsor {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px dashed rgba(236, 3, 124, 0.5);
}
.section-partner .modal .partner-eventi .eventi-container .evento-box .wrapper .evento-info .sponsor small {
  display: block;
  margin-bottom: -10px;
  font-size: 9px;
  line-height: 1em;
  z-index: 10;
}
.section-partner .modal .partner-eventi .eventi-container .evento-box .wrapper .evento-info .sponsor img {
  width: 100px;
}
.section-partner .modal .partner-eventi .eventi-container .evento-box .wrapper .cta {
  position: absolute;
  right: 30px;
  bottom: -20px;
  background: #EC037C;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-partner .modal .partner-eventi .eventi-container .evento-box .wrapper .cta img {
  opacity: 1;
  width: 15px;
  image-rendering: -webkit-optimize-contrast;
}
.section-partner .modal .partner-eventi .eventi-container .evento-box .wrapper:hover .evento-img img {
  opacity: 0.75;
  transition: all 0.3s ease;
}

.no-hover-content .evento-box .wrapper .evento-img {
  background: white;
}
.no-hover-content .evento-box .wrapper .evento-img img {
  opacity: 1;
}

.tag-container ul {
  list-style: none;
  padding: 0;
}
.tag-container ul li {
  display: inline-block;
}
.tag-container ul li a:hover .badge-secondary {
  background-color: #088bcc;
}

.section-foto-gallery .box {
  margin-bottom: 40px;
}
.section-foto-gallery .box .box-img img {
  max-width: 100%;
}
.section-foto-gallery .box .box-img .ico-gallery {
  position: absolute;
  top: calc(35% - 45px);
  left: calc(50% - 45px);
  display: none;
  pointer-events: none;
}
.section-foto-gallery .box .box-text {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #EC037C;
  color: white;
  text-align: center;
}
.section-foto-gallery .box .box-text p {
  margin: 0;
}
.section-foto-gallery .box:hover .box-img .ico-gallery {
  display: block;
}

.booking-container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: white;
  z-index: 99;
  padding: 10px 20px 0;
  text-align: center;
  box-shadow: 0px -5px 16px 0px rgba(0, 0, 0, 0.3);
}
.booking-container p, .booking-container hr {
  display: none;
}
.booking-container h5 {
  font-size: 16px;
}
@media screen and (min-width: 576px) {
  .booking-container {
    position: relative;
    text-align: left;
    padding: 0;
    box-shadow: none;
  }
  .booking-container p, .booking-container hr {
    display: block;
  }
  .booking-container h5 {
    font-size: 1.25rem;
  }
}

.section-icon .icon-box {
  padding: 0 20px;
}
.section-icon .icon-box a {
  padding: 15px;
  background-color: #EC037C;
  display: block;
  border-radius: 50%;
  width: 120px;
  max-width: 100%;
  margin: 0 auto;
}
.section-icon .icon-box a:hover {
  opacity: 0.75;
}
.section-icon .icon-box .icon-text {
  color: #EC037C;
  text-align: center;
  text-transform: uppercase;
  padding: 10px 0;
  font-size: 20px;
}

.section-wall {
  position: relative;
}
.section-wall .wallsio-load-more-button {
  font-weight: 400;
  padding: 0.375em 0.75em !important;
  background-color: #EC037C !important;
  display: block;
  margin: 0px auto !important;
  color: white !important;
  border: none !important;
  text-transform: uppercase !important;
}
.section-wall .fade-wall {
  background: rgb(165, 48, 94);
  background: linear-gradient(0deg, rgb(165, 48, 94) 0%, rgba(165, 48, 94, 0) 100%);
  background: #EC037C;
  height: 300px;
  position: absolute;
  bottom: 0;
  z-index: 10;
  width: 100%;
  pointer-events: none;
}

.floating-btn-prenota {
  position: fixed;
  bottom: 1em;
  right: 1em;
  z-index: 200;
}
.floating-btn-prenota .btn {
  text-transform: uppercase;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
  padding: 0.7em 1.5em;
  background: rgb(252.5585774059, 62.9414225941, 161.4121338912);
  border-color: rgb(252.5585774059, 62.9414225941, 161.4121338912);
}
.floating-btn-prenota .btn:hover {
  background: rgb(251.9184100418, 12.5815899582, 136.8723849372);
  border-color: rgb(251.9184100418, 12.5815899582, 136.8723849372);
}

.masonry .grid.effect-4 {
  perspective: 1300px;
}
.masonry .grid.effect-4 li {
  transform-style: preserve-3d;
}
.masonry .grid.effect-4 li.animate {
  transform: translateZ(400px) translateY(300px) rotateX(-90deg);
  animation: fallPerspective 0.8s ease-in-out forwards;
}

@keyframes fallPerspective {
  100% {
    transform: translateZ(0px) translateY(0px) rotateX(0deg);
    opacity: 1;
  }
}
.teaser-hero {
  height: 75vh;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 992px) {
  .teaser-hero {
    height: 80vh;
  }
}
.teaser-hero video, .teaser-hero iframe, .teaser-hero img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
}
@media (min-aspect-ratio: 16/9) {
  .teaser-hero video, .teaser-hero iframe, .teaser-hero img {
    height: 56.25vw;
  }
}
@media (max-aspect-ratio: 16/9) {
  .teaser-hero video, .teaser-hero iframe, .teaser-hero img {
    width: 177.78vh;
  }
}
.teaser-hero .container {
  position: relative;
  z-index: 2;
}
.teaser-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.5;
  z-index: 1;
}

.teaser-countdown {
  position: relative;
  z-index: 10;
  margin-top: -10px;
  padding: 10px;
}
@media screen and (min-width: 576px) {
  .teaser-countdown {
    padding: 10px 30px;
    margin-top: -100px;
  }
}
@media screen and (min-width: 992px) {
  .teaser-countdown {
    margin-top: -100px;
  }
}
.teaser-countdown h2 {
  font-size: 24px;
}
@media screen and (min-width: 576px) {
  .teaser-countdown h2 {
    font-size: 32px;
  }
}
.teaser-countdown .wrapper-countdown-logo {
  max-width: 100%;
}
@media screen and (min-width: 375px) {
  .teaser-countdown .wrapper-countdown-logo {
    display: flex;
    padding: 0;
    justify-content: space-between;
  }
}
.teaser-countdown .logo-box {
  background: white;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 20px;
  padding: 15px 10px;
}
@media screen and (min-width: 375px) {
  .teaser-countdown .logo-box {
    flex-direction: column;
    padding: 5px 10px;
  }
}
.teaser-countdown .logo-box img {
  width: 40px;
}
.teaser-countdown .logo-box .separator {
  display: none;
  height: 40px;
  width: 1px;
  background-color: black;
}
@media screen and (min-width: 768px) {
  .teaser-countdown .logo-box {
    position: absolute;
    right: -5px;
    top: -160px;
    height: 80px;
    gap: 10px;
    padding: 5px 20px;
    flex-direction: row;
  }
}
@media screen and (min-width: 768px) and (min-width: 992px) {
  .teaser-countdown .logo-box {
    right: -25px;
  }
}
@media screen and (min-width: 768px) {
  .teaser-countdown .logo-box .separator {
    display: block;
  }
}
.teaser-countdown .text-only .logo-box {
  position: absolute;
  right: -5px;
  top: -130px;
  height: 80px;
  gap: 10px;
  padding: 5px 20px;
  flex-direction: row;
}
@media screen and (min-width: 992px) {
  .teaser-countdown .text-only .logo-box {
    right: -25px;
  }
}
.teaser-countdown .text-only h2 p {
  margin: 0 !important;
}
.teaser-countdown .countdown-box {
  padding: 1em;
}
@media screen and (min-width: 992px) {
  .teaser-countdown .countdown-box {
    padding: 1em 2em;
  }
}
.teaser-countdown .countdown-title {
  border-bottom: 1px solid #EC037C;
  padding: 10px 0px 20px;
}
@media screen and (min-width: 768px) {
  .teaser-countdown .countdown-title {
    border-right: 1px solid #EC037C;
    border-bottom: none;
    padding: 10px 20px;
  }
}
.teaser-countdown .countdown-title h2, .teaser-countdown .countdown-title h3, .teaser-countdown .countdown-title h4 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}
@media screen and (min-width: 992px) {
  .teaser-countdown .countdown-title h2, .teaser-countdown .countdown-title h3, .teaser-countdown .countdown-title h4 {
    font-size: 26px;
  }
}
@media screen and (min-width: 1200px) {
  .teaser-countdown .countdown-title h2, .teaser-countdown .countdown-title h3, .teaser-countdown .countdown-title h4 {
    font-size: 32px;
  }
}
.teaser-countdown .countdown-title h2 b, .teaser-countdown .countdown-title h3 b, .teaser-countdown .countdown-title h4 b {
  font-weight: 700;
}
.teaser-countdown .countdown-wrapper {
  padding: 20px 10px 10px 0;
  width: calc(100% - 60px);
}
@media screen and (min-width: 576px) {
  .teaser-countdown .countdown-wrapper {
    padding: 20px 10px 10px;
  }
}
@media screen and (min-width: 992px) {
  .teaser-countdown .countdown-wrapper {
    justify-content: space-around;
    padding: 20px;
    align-items: center;
    display: flex;
  }
}
.teaser-countdown .countdown-wrapper p {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .teaser-countdown .countdown-wrapper p {
    padding-left: 15px;
  }
}
@media screen and (min-width: 992px) {
  .teaser-countdown .countdown-wrapper p {
    padding-left: 0;
  }
}
.teaser-countdown .countdown-wrapper .countdown-container {
  display: flex;
  align-items: center;
  height: 100%;
}
.teaser-countdown .countdown-wrapper .countdown-container div {
  white-space: pre;
  text-align: center;
  font-size: 10px;
  min-width: 50px;
}
@media screen and (min-width: 576px) {
  .teaser-countdown .countdown-wrapper .countdown-container div {
    font-size: 12px;
    padding: 5px 0 0 0;
  }
}
.teaser-countdown .countdown-wrapper .countdown-container div span {
  font-size: 20px;
  font-weight: 300;
  margin: 0;
  line-height: 25px;
  display: block;
  border-right: 1px solid white;
  padding: 0 7px;
  margin-bottom: -10px;
}
@media screen and (min-width: 375px) {
  .teaser-countdown .countdown-wrapper .countdown-container div span {
    font-size: 30px;
    padding: 0 7px;
  }
}
@media screen and (min-width: 576px) {
  .teaser-countdown .countdown-wrapper .countdown-container div span {
    font-size: 28px;
    padding: 0 10px;
  }
}
@media screen and (min-width: 1200px) {
  .teaser-countdown .countdown-wrapper .countdown-container div span {
    font-size: 34px;
  }
}
.teaser-countdown .countdown-wrapper .countdown-container div:last-child span {
  border: none;
}
.teaser-countdown .countdown-wrapper .countdown-container div:first-child span {
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .teaser-countdown .countdown-wrapper .countdown-container div:first-child span {
    padding-left: 10px;
  }
}

.teaser-tab .tab-navigation {
  list-style: none;
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  z-index: 3;
  position: relative;
}
@media screen and (min-width: 576px) {
  .teaser-tab .tab-navigation {
    justify-content: center;
    padding: 0;
  }
}
.teaser-tab .tab-navigation li {
  text-align: center;
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}
.teaser-tab .tab-navigation li a {
  background: #ededed;
  padding: 10px 5px;
  display: block;
  height: 70px;
  transition: all 0.3s cubic-bezier(0.2, 0.6, 0.5, 1);
}
@media screen and (min-width: 768px) {
  .teaser-tab .tab-navigation li a {
    height: 120px;
  }
}
.teaser-tab .tab-navigation li a img {
  width: 60px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .teaser-tab .tab-navigation li a img {
    width: 80px;
  }
}
.teaser-tab .tab-navigation li a .ico-white {
  display: none;
}
.teaser-tab .tab-navigation li a p {
  color: white;
  margin: 0;
  text-transform: uppercase;
  opacity: 0;
  font-size: 9px;
  transform: translateY(-30px);
  transition: all ease 0.4s;
}
@media screen and (min-width: 576px) {
  .teaser-tab .tab-navigation li a p {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  .teaser-tab .tab-navigation li a p {
    font-size: 16px;
    margin-top: 10px;
  }
}
@media screen and (min-width: 992px) {
  .teaser-tab .tab-navigation li a p {
    font-size: 20px;
  }
}
.teaser-tab .tab-navigation li a.active, .teaser-tab .tab-navigation li a:hover {
  transition: all ease 0.3s;
  background: #EC037C;
  height: 100px;
}
@media screen and (min-width: 768px) {
  .teaser-tab .tab-navigation li a.active, .teaser-tab .tab-navigation li a:hover {
    height: 150px;
  }
}
.teaser-tab .tab-navigation li a.active p, .teaser-tab .tab-navigation li a:hover p {
  opacity: 1;
  transform: translateY(0);
}
.teaser-tab .tab-navigation li a.active .ico-black, .teaser-tab .tab-navigation li a:hover .ico-black {
  display: none;
}
.teaser-tab .tab-navigation li a.active .ico-white, .teaser-tab .tab-navigation li a:hover .ico-white {
  display: block;
}
.teaser-tab .tab-content {
  position: relative;
  z-index: 0;
  border-top: 2px solid #EC037C;
  margin-top: -30px;
}
@media screen and (min-width: 768px) {
  .teaser-tab .tab-content {
    border-top: 4px solid #EC037C;
  }
}
.teaser-tab .tab-content .swiper-container .wrapper {
  aspect-ratio: 1;
}
@media screen and (min-width: 576px) {
  .teaser-tab .tab-content .swiper-container .wrapper {
    aspect-ratio: 1.777;
  }
}
@media screen and (min-width: 768px) {
  .teaser-tab .tab-content .swiper-container .wrapper {
    aspect-ratio: 2;
  }
}
@media screen and (min-width: 992px) {
  .teaser-tab .tab-content .swiper-container .wrapper {
    aspect-ratio: 2.5;
  }
}
.teaser-tab .tab-content .swiper-container .wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.teaser-tab .tab-content .tab-pane .swiper-container .swiper-nav {
  position: absolute;
  height: auto;
  z-index: 99999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.teaser-tab .tab-content .tab-pane .swiper-container .swiper-nav .container {
  position: relative;
  height: 100%;
}
.teaser-tab .tab-content .tab-pane .swiper-container .swiper-nav .swiper-pagination {
  text-align: right;
  bottom: 70px;
  right: 15px;
}
.teaser-tab .tab-content .tab-pane .swiper-container .swiper-nav .swiper-pagination .swiper-pagination-bullet {
  margin-left: 6px;
}
.teaser-tab .tab-content .tab-pane .swiper-container .swiper-nav .swiper-button-prev, .teaser-tab .tab-content .tab-pane .swiper-container .swiper-nav .swiper-container-rtl .swiper-button-next {
  left: 15px;
  display: none;
}
@media screen and (min-width: 576px) {
  .teaser-tab .tab-content .tab-pane .swiper-container .swiper-nav .swiper-button-prev, .teaser-tab .tab-content .tab-pane .swiper-container .swiper-nav .swiper-container-rtl .swiper-button-next {
    display: flex;
  }
}
.teaser-tab .tab-content .tab-pane .swiper-container .swiper-nav .swiper-button-next, .teaser-tab .tab-content .tab-pane .swiper-container .swiper-nav .swiper-container-rtl .swiper-button-prev {
  right: 15px;
  display: none;
}
@media screen and (min-width: 576px) {
  .teaser-tab .tab-content .tab-pane .swiper-container .swiper-nav .swiper-button-next, .teaser-tab .tab-content .tab-pane .swiper-container .swiper-nav .swiper-container-rtl .swiper-button-prev {
    display: flex;
  }
}
.teaser-tab .tab-content .tab-pane .swiper-container .swiper-slide {
  position: relative;
}
.teaser-tab .tab-content .tab-pane .swiper-container .swiper-slide .overlayer {
  position: absolute;
  top: 70%;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0.4) 80%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  align-items: flex-end;
}
.teaser-tab .tab-content .tab-pane .swiper-container .swiper-slide .overlayer .container .title {
  margin: 0 0 25px 15px;
  width: 70%;
  color: white;
  font-weight: 700;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
  text-align: left;
}
@media screen and (min-width: 576px) {
  .teaser-tab .tab-content .tab-pane .swiper-container .swiper-slide .overlayer .container .title {
    margin: 0 0 25px;
  }
}

@media screen and (min-width: 768px) {
  .teaser-info .wrapper {
    display: flex;
    align-content: center;
  }
}
.teaser-info .wrapper .img-wrapper {
  aspect-ratio: 1;
}
@media screen and (min-width: 768px) {
  .teaser-info .wrapper .img-wrapper {
    max-width: 135px;
    min-width: 135px;
  }
}
.teaser-info .wrapper .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.teaser-info .wrapper .content-wrapper {
  padding: 1em;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.teaser-info .wrapper .content-wrapper h3 {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .teaser-info .wrapper .content-wrapper h3 {
    font-size: 24px;
  }
}
.teaser-info .wrapper .content-wrapper p {
  color: #686868;
  display: none;
}
@media screen and (min-width: 768px) {
  .teaser-info .wrapper .content-wrapper p {
    display: block;
  }
}
.teaser-info .wrapper .content-wrapper a:hover {
  text-decoration: none;
  color: rgb(185.640167364, 2.359832636, 97.539748954);
}

.swiper-camp a:hover, .swiper-other-events a:hover {
  text-decoration: none;
  opacity: 0.8;
}
.swiper-camp .swiper-slide .img-wrapper, .swiper-other-events .swiper-slide .img-wrapper {
  aspect-ratio: 1.777;
  margin-bottom: 10px;
  position: relative;
}
.swiper-camp .swiper-slide .img-wrapper img, .swiper-other-events .swiper-slide .img-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.swiper-camp .swiper-slide .img-wrapper .badge, .swiper-other-events .swiper-slide .img-wrapper .badge {
  z-index: 10;
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 0.5em 1em;
  border-radius: 1em;
  color: white;
  background: black;
}
.swiper-camp .swiper-slide .img-wrapper .badge p, .swiper-other-events .swiper-slide .img-wrapper .badge p {
  margin: 0;
}
.swiper-camp .swiper-slide .img-wrapper .badge .live-dot, .swiper-other-events .swiper-slide .img-wrapper .badge .live-dot {
  width: 5px;
  height: 5px;
  display: inline-block;
  background: white;
  border-radius: 5px;
  margin: 0 4px 2px 0;
  box-shadow: 0 0 0 0 rgb(255, 255, 255);
  transform: scale(1);
  animation: pulse 2s infinite;
}
.swiper-camp .swiper-slide .img-wrapper .badge.stato-live, .swiper-other-events .swiper-slide .img-wrapper .badge.stato-live {
  background: #EE2323;
}
.swiper-camp .swiper-slide .img-wrapper .badge.stato-replay, .swiper-other-events .swiper-slide .img-wrapper .badge.stato-replay {
  background: #EC037C;
}
.swiper-camp .swiper-slide h4, .swiper-other-events .swiper-slide h4 {
  font-size: 24px;
  margin: 0 0 10px;
  color: black;
}
.swiper-camp .swiper-slide .info-icon, .swiper-other-events .swiper-slide .info-icon {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.swiper-camp .swiper-slide .info-icon img, .swiper-other-events .swiper-slide .info-icon img {
  width: 12px;
  margin-right: 5px;
}
.swiper-camp .swiper-slide .info-icon p, .swiper-other-events .swiper-slide .info-icon p {
  margin: 0;
  font-size: 16px;
  color: #686868;
}
.swiper-camp .swiper-slide .tag-container, .swiper-other-events .swiper-slide .tag-container {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
}

.section-otherevents a {
  position: relative;
  color: black;
}
.section-otherevents a:hover {
  text-decoration: none;
  opacity: 0.8;
}
.section-otherevents .img-wrapper {
  aspect-ratio: 1.777;
  margin-bottom: 10px;
}
.section-otherevents .img-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.section-otherevents h4 {
  margin: 0 0 5px;
}
.section-otherevents .sponsor {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 5px;
}
.section-otherevents .sponsor img {
  width: 60px;
}
@media screen and (min-width: 992px) {
  .section-otherevents .sponsor img {
    width: 80px;
  }
}

.swiper-center-large {
  position: relative;
  height: auto;
  padding: 50px 0 0;
  margin: 0 auto;
  overflow: hidden;
}
.swiper-center-large .swiper-activities {
  width: 100%;
  overflow: visible;
}
.swiper-center-large .swiper-activities .swiper-slide {
  transition: all 0.3s ease;
}
@media screen and (min-width: 992px) {
  .swiper-center-large .swiper-activities .swiper-slide.swiper-slide-active {
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.35);
    transform: scale(1.2);
    z-index: 2;
  }
}
.swiper-center-large .swiper-activities .swiper-pagination {
  margin-bottom: -60px;
  z-index: 80;
}
.swiper-center-large .swiper-activities a {
  position: relative;
  display: block;
  color: black;
}
.swiper-center-large .swiper-activities a:hover {
  text-decoration: none;
}
.swiper-center-large .swiper-activities .img-wrapper {
  aspect-ratio: 1.777;
}
.swiper-center-large .swiper-activities .img-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.swiper-center-large .swiper-activities .text-container {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px;
}
.swiper-center-large .swiper-activities .text-container .back-shadow {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0.7499749599) 80%, rgb(0, 0, 0) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
}
.swiper-center-large .swiper-activities .text-container .info-icon {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  z-index: 10;
  position: relative;
}
.swiper-center-large .swiper-activities .text-container .info-icon img {
  width: 12px;
  margin-right: 5px;
}
.swiper-center-large .swiper-activities .text-container .info-icon p {
  margin: 0;
  font-size: 14px;
  color: white;
}
.swiper-center-large .swiper-activities .text-container h4 {
  margin: 0;
  font-size: 18px;
  color: white;
  z-index: 10;
  position: relative;
}
.swiper-center-large .swiper-ospiti {
  width: 100%;
  overflow: visible;
}
@media screen and (min-width: 992px) {
  .swiper-center-large .swiper-ospiti {
    overflow: hidden;
  }
}
.swiper-center-large .swiper-ospiti .swiper-slide {
  transition: all 0.3s ease;
  transform: scale(0.6);
}
.swiper-center-large .swiper-ospiti .swiper-slide .img-container {
  max-width: 100%;
}
.swiper-center-large .swiper-ospiti .swiper-slide.swiper-slide-active {
  transform: scale(1);
  z-index: 2;
}
.swiper-center-large .swiper-ospiti .swiper-slide.swiper-slide-active h4 {
  display: block;
}
@media screen and (min-width: 768px) {
  .swiper-center-large .swiper-ospiti .swiper-slide {
    transform: scale(1);
  }
  .swiper-center-large .swiper-ospiti .swiper-slide h4, .swiper-center-large .swiper-ospiti .swiper-slide p {
    display: block;
  }
}
.swiper-center-large .swiper-ospiti .swiper-pagination {
  margin-bottom: -60px;
  z-index: 80;
}
@media screen and (min-width: 992px) {
  .swiper-center-large .swiper-ospiti .swiper-pagination {
    margin-bottom: 0px;
  }
}

.field-prenotazione-attivita {
  justify-content: space-between;
}

@media screen and (min-width: 992px) {
  .form-check .form-group {
    gap: 10px;
  }
}
.form-check .prenotazione-checkbox {
  padding: 20px 20px 20px 40px;
  border: 1px solid #ededed;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .form-check .prenotazione-checkbox {
    max-width: calc(50% - 10px);
  }
}
.form-check .prenotazione-checkbox .badge {
  border-radius: 50px;
  text-transform: uppercase;
}
.form-check .prenotazione-checkbox .badge p {
  font-weight: 600;
  padding: 0 0.3em;
  font-size: 12px;
}
.form-check .prenotazione-checkbox p {
  margin-bottom: 0;
}
.form-check .prenotazione-checkbox input {
  margin-right: 10px;
  position: absolute;
  left: 20px;
}
.form-check .prenotazione-checkbox .info-container .data {
  font-size: 13px;
  text-transform: uppercase;
  color: #757575;
}
.form-check .prenotazione-checkbox .info-container .titolo {
  font-size: 16px;
}
.form-check .prenotazione-checkbox:hover {
  background: rgba(237, 237, 237, 0.2);
}

.section-translate .box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  aspect-ratio: 1;
  margin-bottom: 1em;
  padding: 1em;
}
.section-translate .box .bg-number {
  position: absolute;
  font-size: 250px;
  z-index: 2;
  opacity: 0.1;
  bottom: 0;
  font-weight: 100;
  left: 0;
}
@media screen and (min-width: 992px) {
  .section-translate .box .bg-number {
    font-size: 200px;
    top: auto;
    bottom: auto;
  }
}
.section-translate .box h3 {
  text-align: center;
  z-index: 3;
  font-size: 16px;
}
.section-translate .box img {
  z-index: 1;
  width: 60%;
}

.overlay-message {
  position: fixed;
  bottom: 1em;
  right: 1em;
  z-index: 99;
  width: calc(100% - 2em);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  border-radius: 1em;
  overflow: hidden;
}
.overlay-message p {
  font-size: 14px;
}
.overlay-message .overlay-close {
  background-color: #fff;
  border-radius: 50%;
  aspect-ratio: 1;
  font-size: 12px;
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  width: 20px;
  height: 20px;
  border: none;
  font-weight: bold;
  opacity: 0.75;
}
.overlay-message .overlay-close:hover {
  opacity: 1;
}
@media screen and (min-width: 576px) {
  .overlay-message {
    width: 300px;
  }
  .overlay-message p {
    font-size: 18px;
  }
}

.footer-partner {
  padding: 30px 0;
}
.footer-partner h4 {
  font-size: 10px;
  padding: 0 0 0 10px;
  color: #757575;
}
@media screen and (min-width: 992px) {
  .footer-partner .line-left {
    border-left: 1px solid #ededed;
    z-index: 10;
  }
}
.footer-partner .partner-main-container {
  border-bottom: 1px solid #ededed;
  align-items: center;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .footer-partner .partner-main-container .partner-main, .footer-partner .partner-main-container .partner-premium, .footer-partner .partner-main-container .partner-top {
    display: flex;
    flex-direction: column;
    height: 110px;
  }
}
.footer-partner .partner-main-container .partner-top {
  min-width: 50%;
}
@media screen and (min-width: 992px) {
  .footer-partner .partner-main-container .partner-top {
    min-width: 0;
    flex: 1 10%;
  }
}
.footer-partner .partner-main-container .partner-top a {
  overflow: hidden;
}
.footer-partner .partner-main-container .partner-top a img {
  object-fit: cover;
  width: 90%;
  height: 90%;
}
.footer-partner .partner-main-container .partner-main {
  min-width: 50%;
}
@media screen and (min-width: 992px) {
  .footer-partner .partner-main-container .partner-main {
    min-width: 0;
    flex: 1 10%;
  }
}
.footer-partner .partner-main-container .partner-main a {
  overflow: hidden;
}
.footer-partner .partner-main-container .partner-main a img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.footer-partner .partner-main-container .partner-premium {
  min-width: 50%;
  max-width: 50%;
}
@media screen and (min-width: 992px) {
  .footer-partner .partner-main-container .partner-premium {
    min-width: 0;
    max-width: 100%;
  }
}
.footer-partner .partner-secondary-container {
  justify-content: space-between;
}
.footer-partner .partner-secondary-container .partner {
  min-width: 25%;
  max-width: 25%;
  margin-bottom: 0px;
  padding-top: 20px;
}
@media screen and (min-width: 992px) {
  .footer-partner .partner-secondary-container .partner {
    min-width: 0;
    max-width: 120px;
    display: flex;
    flex-direction: column;
    height: 120px;
  }
}
@media screen and (min-width: 992px) {
  .footer-partner .partner-secondary-container .partner.partner-xl {
    max-width: 200px;
  }
  .footer-partner .partner-secondary-container .partner.partner-xl a {
    overflow: hidden;
  }
  .footer-partner .partner-secondary-container .partner.partner-xl a img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
.footer-partner .partner-secondary-container .partner.partner-xl {
  min-width: 33%;
}
@media screen and (min-width: 992px) {
  .footer-partner .partner-secondary-container .partner.partner-xl {
    max-width: 200px;
    min-width: 160px;
  }
}
.footer-partner .bottom-line {
  border-bottom: 1px solid #ededed;
}

.footer-partner-description a {
  color: #102739;
}
.footer-partner-description a:hover {
  color: #102739;
}
.footer-partner-description h4 {
  font-size: 36px;
  padding: 0;
  line-height: 2em;
}

footer {
  font-family: "Roboto Condensed", sans-serif;
  background-color: #014C89;
  color: white;
  font-weight: 300;
  word-break: break-word;
}
footer a {
  color: #F6C8CE;
}
footer a:hover {
  text-decoration: underline;
  color: #F6C8CE;
}
footer hr {
  border-color: #8693a7;
  opacity: 0.4;
}
footer h2 {
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  footer header {
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}
footer header img {
  width: 140px;
}
/**
 * Swiper 11.0.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 27, 2024
 */

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:var(--swiper-navigation-top-offset,50%);width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next svg,.swiper-button-prev svg{width:100%;height:100%;object-fit:contain;transform-origin:center}.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg{transform:rotate(180deg)}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-lock{display:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom,8px);top:var(--swiper-pagination-top,auto);left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius,50%);background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:var(--swiper-pagination-right,8px);left:var(--swiper-pagination-left,auto);top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:var(--swiper-pagination-progressbar-size,4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;touch-action:none;background:var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:var(--swiper-scrollbar-sides-offset,1%);bottom:var(--swiper-scrollbar-bottom,4px);top:var(--swiper-scrollbar-top,auto);z-index:50;height:var(--swiper-scrollbar-size,4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;left:var(--swiper-scrollbar-left,auto);right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);z-index:50;width:var(--swiper-scrollbar-size,4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:var(--swiper-scrollbar-border-radius,10px);left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active{pointer-events:auto}.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}