@media screen and (min-width: 768px) {
	.scelte {
		display: flex;
		justify-content: space-between;
		width: max-content;
		padding: 20px 15px !important;
	}
	.scelte a.buy {
		background-color: #419CD5;
		color: #FFF !important;
		border-radius: 50vh;
		padding: 4px 20px;
	}
	.scelte a.discover {
		margin: 4px 15px;
	}
}
@media screen and (min-width: 769px) {
	.no-touchevents .colonneGapY.aos-init-custom .vc_col-has-fill {
		transform: translateX(100px);
		opacity: 0;
	}
	.no-touchevents .colonneGapY.aos-init-custom .wpb_column:not(.vc_col-has-fill) {
		transform: translateX(-100px);
		opacity: 0;
	}
	.no-touchevents .colonneGapY.aos-init-custom.aos-animate .vc_col-has-fill {
		animation-iteration-count: 1;
		animation-duration: 900ms;
		animation-fill-mode: forwards;
		animation-timing-function: ease-out;
		animation-name: slideColumnFromRight;
	}
	@keyframes slideColumnFromRight {
		0% {
			transform: translateX(100px);
			opacity: 0;
		}	
		100% {
			transform: translateX(0);
			opacity: 1;
		}
	}
	.no-touchevents .colonneGapY.aos-init-custom.aos-animate .wpb_column:not(.vc_col-has-fill) {
		animation-iteration-count: 1;
		animation-duration: 800ms;
		animation-fill-mode: forwards;
		animation-timing-function: ease-out;
		animation-delay: 300ms;
		animation-name: slideColumnFromLeft;
	}
	@keyframes slideColumnFromLeft {
		0% {
			transform: translateX(-100px);
			opacity: 0;
		}	
		100% {
			transform: translateX(0);
			opacity: 1;
		}
	}
}
