.sezione-scorrevole .marquee-container{
	overflow: hidden;
	width: 100%;
	margin: 0 auto;
}

.text-sco {
font-family: "Libre Caslon Display", serif;
	font-size: 160px !important;
    line-height: 1.2;
	color: #CE902D;
    font-weight: 400;
}

.text-sco p{
	font-size: 160px !important;
}

.sezione-scorrevole .first-t{
	color: var(--primary);
}
.sezione-scorrevole .t-row{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	gap: 8px;
	
}

.sezione-scorrevole .marquee{
     
    white-space: nowrap;
    animation: marquee 30s linear infinite;
		padding-bottom: 25px;

  }

.sezione-scorrevole .marquee-reverse{
	 white-space: nowrap;
	 animation: marquee-reverse 30s linear infinite;
	padding-bottom: 65px;
	padding-top: 65px;
}
.sezione-scorrevole-bordata{
	margin-top: 25px;
	/*border-top: 1px solid #C7C7C7;
	border-bottom: 1px solid #C7C7C7;*/
	padding-top: 45px;
	padding-bottom: 45px;
	
}

.capability-control{
	transition: .4s all;
	border-radius: 50%;
	
}

.capability-control svg path{
	transition: .4s all;

	
}
.capability-control:hover{
	background:#C7C7C7 !important;
}

.capability-control:hover svg path{
	stroke: var(--white);
}


.sezione-scorrevole .second-t{
	color: var(--black) !important;
}

@keyframes marquee-reverse{
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-100%);
    }
  }


@keyframes marquee {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(100%);
    }
  }

@keyframes marquee-reverse{
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-100%);
    }
  }


@media only screen and (max-width: 767px) {
	
.sezione-scorrevole .marquee-reverse {
    padding-bottom: 20px;
    padding-top: 20px;
}
	.text-sco span {
    	font-size: 40px;
	}
	
	.text-sco p{
		font-size: 80px !important;
	}
	
	.sezione-scorrevole .marquee-reverse{
		 animation: marquee-reverse 15s linear infinite;
	}
	
	.sezione-scorrevole .marquee{
		animation: marquee 15s linear infinite;
	  }
}