.roller-block {
	margin-bottom: clamp(20px, 4vw, 50px);
}

.roller-block {
  position: relative;
  overflow: visible;
}



.roller-block .slider .flickity-viewport{border-radius: 25px;}
.roller-block .section-content{
	max-width:1384px;
	margin:0 auto;
	padding:0px;
}
.roller-block .flickity-prev-next-button{top:33%;opacity:1!important;}

.roller-block .flickity-prev-next-button:hover .arrow{fill:var(--giallo)!important;}
.roller-block .flickity-prev-next-button svg{border:0px!important;}
.roller-block .flickity-prev-next-button:hover svg{background-color: transparent!important;}
.roller-block-content .col-inner{
	padding:20px;
	text-align:center;
	border-radius: 25px;
}
.roller-block-content .col-inner p{
	font-weight: 400!important;
	font-size: clamp(26px, 2.25vw, 30px);
	line-height: clamp(28px, 2.55vw, 34px);
	color: var(--bianco);
	margin-bottom: 0px;
}
.roller-block-content .col-inner a{color:var(--bianco);}




  .roller-block-content { padding: 0px; }


.roller-block::before,
.roller-block::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  background-color: var(--giallo);
  z-index: 0;
  pointer-events: none;
  display: none;
}

.roller-block::before {
  border-radius: 25px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.roller-block::after {
  border-radius: 25px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

@media (min-width: 1920px) {
  .roller-block::before,
  .roller-block::after {
	display: block;
	width: 13%;
  }

  .roller-block::before {
	left: 0;
  }

  .roller-block::after {
	right: 0;
  }
}