body {
	font-family: "Bebas Neue", sans-serif;
	margin: 0;
}
html{
	margin-top: 0;
}

@font-face {
	font-family: 'Switzer-Regular';
	src: url('../fonts/Switzer-Regular.eot');
	src: url('../fonts/Switzer-Medium.eot');
	src:
		local('Switzer-Regular'),
		local('Switzer-Regular'),
		url('../fonts/Switzer-Regular.otf') format('opentype'),
		url('../fonts/Switzer-Medium.otf') format('opentype');
}

.text-capitalize {
	text-transform: capitalize;
}

.sidebar-open {
	overflow: hidden;
}

.text-deco-none {
	text-decoration: none;
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.3);
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s;
}

.sidebar-open .overlay {
	opacity: 1;
	visibility: visible;
}

.header {
	padding: 7px 0;
	background-color: #1d1d1d;
	box-shadow: 0px 0px 2px #ccc;
	z-index: 99;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
}
.white-header {
    background: #fff;
}

.logo {
	color: #ffffff;
	font-size: 36px;
	font-weight: 700;
}

.logo img {
	width: 100px;
	margin: 0 0 -50px;
}

.container {
	padding: 0 15px;
	max-width: 1170px;
	margin-left: auto;
	margin-right: auto;
}

.main-section{
	background: #f8f8f8;
}
.row-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.submenu-inner {
	padding-left: 0;
}

.nav-wrap {
	margin-right: auto;
}

.button-wrap a {
	background: #AAA100;
	padding: 8px 32px 8px 32px;
	border-radius: 2px;
	color: #1D1D1D;
	font-size: 18px;
	text-decoration: none;
}

.nav-list {
	display: flex;
	align-items: center;
	column-gap: 20px;
}

.nav-list li {
	padding: 0 10px;
	text-transform: uppercase;
	list-style: none;
}

.nav-list li a {
	color: #ffffff;
	font-size: 20px;
	text-decoration: none;
	padding: 10px 0;
	position: relative;
	display: block;
}
.white-header .nav-list a {
    color: #1D1D1D;
}

.nav-list li a::after {
	content: "";
	background-color: #ffffff;
	width: 0;
	height: 2px;
	position: absolute;
	left: 0;
	bottom: 12px;
	transition: all 0.3s linear;
}

.white-header .nav-list li a::after {
    background-color: #1D1D1D;
}

.nav-list li a:hover::after {
	width: 100%;
}

.nav-list li.active a::after {
	width: 100%;
}

.nav-list li.with-submenu {
	position: relative;
	cursor: pointer;
	display: flex;
	align-items: center;
}

.nav-list li.with-submenu>a {
	margin-right: 10px;
}

.nav-list li.with-submenu::after {
	content: "";
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	position: absolute;
	width: 5px;
	height: 5px;
	transform: rotate(45deg);
	right: 0;
	margin-bottom: 5px;
	transition: all 0.3s;
}

.white-header .nav-list li.with-submenu::after {
    content: "";
    border-bottom: 2px solid #1D1D1D;
    border-right: 2px solid #1D1D1D;
}

.nav-list li.with-submenu:hover::after {
	transform: rotate(225deg);
	margin-top: 10px;
}

.nav-list li.with-submenu .submenu {
	position: absolute;
	left: 50%;
	top: 100%;
	background: #ffffff;
	border-radius: 10px;
	transform: translateX(-50%);
	box-shadow: 2px 2px 1px 2px #ccc;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease-in-out;
}

.nav-list li.with-submenu:hover .submenu {
	opacity: 1;
	visibility: visible;
}

.nav-list li.with-submenu .submenu li {
	padding: 0;
}

.nav-list li.with-submenu .submenu a {
	color: #000000;
	display: block;
	padding: 8px 30px;
	transition: all 0.3s;
}

.nav-list li.with-submenu .submenu a:hover {
	background-color: rgba(49, 20, 50, 0.3);
}

/* .nav-list li.with-submenu .submenu a::after {
    display: none;
  } */
.nav-list li.with-submenu>a {
	position: relative;
	z-index: 1;
}

.hamburger {
	display: none;
	z-index: 99;
}

.hamburger .line {
	width: 25px;
	height: 1.5px;
	background-color: #ffffff;
	display: block;
	margin: 5px 0;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.white-header .hamburger .line {
    background-color: #1D1D1D;
	height: 1.7px;
}

.hamburger .line:nth-child(2) {
	width: 15px;
}

.hamburger:hover {
	cursor: pointer;
}

.hamburger.is-active .line {
	background-color: #311432;
}

.hamburger.is-active .line:nth-child(2) {
	opacity: 0;
}

.hamburger.is-active .line:nth-child(1) {
	-webkit-transform: translateY(6.5px) rotate(45deg);
	-ms-transform: translateY(6.5px) rotate(45deg);
	-o-transform: translateY(6.5px) rotate(45deg);
	transform: translateY(6.5px) rotate(45deg);
}

.hamburger.is-active .line:nth-child(3) {
	-webkit-transform: translateY(-6.5px) rotate(-45deg);
	-ms-transform: translateY(-6.5px) rotate(-45deg);
	-o-transform: translateY(-6.5px) rotate(-45deg);
	transform: translateY(-6.5px) rotate(-45deg);
}
@media (min-width:768px) and (max-width:820px){
	.nav-list {
		column-gap: 0px;
		padding-left: 6px;
	}
}

@media (max-width: 767px) {
	.logo img {
		width: 85px;
	}
	.header {
		padding: 10px 0;
	}

	.hamburger {
		display: block;
	}

	.slider-sec {
		margin-top: 68px !important;
	}

	.button-wrap {
		display: none;
	}

	.nav-wrap {
		position: fixed;
		top: 0;
		right: -100%;
		transform: translateX(100%);
		background-color: #ffffff;
		transition: all 0.5s linear;
		max-width: 300px;
		width: 100%;
		height: 100%;
		box-shadow: 2px -5px 5px 3px #ccc;
		opacity: 0;
		visibility: hidden;
		z-index: 0;
	}

	.nav-wrap.is-open {
		transform: translateX(0);
		opacity: 1;
		visibility: visible;
		right: 0;
		z-index: 9;
	}

	.nav-list {
		flex-direction: column;
		align-items: unset;
		opacity: 0;
		visibility: hidden;
		transition-delay: 0.5s;
		transition-duration: 1s;
		transition-property: all;
		padding: 10px;
	}

	.nav-wrap.is-open .nav-list {
		opacity: 1;
		visibility: visible;
	}

	.nav-list li {
		padding: 7px 10px;
	}

	.nav-list li a {
		color: #311432;
		text-align: left;
		display: inline-block;
		padding: 2px 0;
	}

	.nav-list li a::after {
		background-color: #311432;
		bottom: 3px;
	}

	.nav-list li.with-submenu {
		display: block;
	}

	.nav-list li.with-submenu::after {
		border-color: #311432;
		right: 10px;
		top: 12px;
	}

	.nav-list li.with-submenu:hover::after {
		transform: rotate(45deg);
		margin-top: 0;
	}

	.nav-list li.with-submenu.is-open::after {
		transform: rotate(225deg);
		margin-top: 5px;
	}

	.nav-list li.with-submenu .submenu {
		position: static;
		transform: translateX(0);
		opacity: 1;
		visibility: visible;
		box-shadow: none;
		border-radius: 0;
		border-top: 1px solid #ccc;
		display: none;
		transition: auto;
		margin: 10px 0;
	}

	.nav-list li.with-submenu .submenu li {
		padding: 7px 10px;
	}

	.nav-list li.with-submenu .submenu li:hover a {
		background-color: transparent;
	}

	.nav-list li.with-submenu .submenu li a {
		display: inline-block;
		padding: 2px 0;
	}

	.nav-list li.with-submenu .submenu li a::after {
		display: block;
	}
	.footer .footer-menus-wrap {
		width: 100%;
	}

	.footer .footer-social-wrap {
		display: block;
	}

	.footer .copyright {
		display: block;
	}

	.footer-section .footer-sponsor-main h2 {
		font-size: 33px;
	}
	.inner-wrap {
		margin-top: -6px!important;
	}
	.prima-squadra-slider-sec .squadra-slider-content-wrap p {
		font-size: 11px;
		line-height: 0.12px;
	}
	.prima-squadra-slider-sec .squadra-slider-content-wrap h2 {
		font-size: 17px;
		line-height: 22.4px;
		margin-top: 5px;
	}
	.prima-squadra-slider-sec .squadra-slider-btn {
		padding: 6px 20px 6px 20px;
		color: #1D1D1D;
		font-size: 11px;
	}
	.classifi-match-wrap {
		row-gap: 20px;
    	flex-direction: column;
	}
	.classifi-match-wrap .classi-col {
		width: auto;
	}
	.classifi-match-wrap .match-col {
		width: auto;
	}
	.ultime-event-row {
		flex-direction: column;
	}
	.ultime-event-row .ultime-left-col {
		width: auto;
	}
	.ultime-event-row .ultime-right-col {
		width: auto;
		margin-top: 30px;
	}
	.video-gallery-row {
		flex-direction: column;
		row-gap: 25px;
	}
	.photo-row {
		flex-direction: column;
		row-gap: 20px;
	}
	.bottom-row {
		flex-direction: column;
		row-gap: 20px;
	}
	.sec-head h2 {
		font-size: 33px!important;
	}
	.sec-head h2 span {
		margin-left: 10px!important;
	}
	.content-slider-sec .content-slider-img-wrap {
		flex-direction: column;
	}
	.content-slider-sec .slider-content-wrap {
		width: auto;
	}
	.content-slider-sec .inner-slider-content-wrap {
		padding: 20px 40px;
	}
	.content-slider-sec .content-slier-img {
		width: auto;
	}
	.inner-match-info {
		flex-direction: column;
	}
}

.result-sec{
  background: #1D1D1D;
  padding-bottom: 50px;
}
.inner-wrap{
  background: #1D1D1D;
  border-radius: 2px;
  padding-bottom: 12px;
  /*margin-top: -100px;*/
  margin-bottom: 50px;
  position: relative;
  box-shadow: 0px 2px 4px 0px #00000029;

}
.result-head h4{
  margin-top: 0;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 400;
}
.result-head h4 span{
  font-size: 12px;
  color: #DDDDDD;
  margin-left: 20px;
}
.result-wrap{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 15px;
  column-gap: 8px;
}
.squadre-risultato-row{
  display: flex;
  justify-content: space-between;
  column-gap: 35px;
}
.squadre-risultato-row p{
  font-size: 12px;
  color: #888888;
  font-family: 'Switzer-Regular', arial, sans-serif;
  margin: 4px 0;
}

.result-img-txt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 7px 0;
}
.result-logo-text{
    font-size: 14px;
    color: #FFFFFF;
    font-family: 'Switzer-Regular', arial, sans-serif;
    margin: 0;
}
.inner-logo-text{
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.score{
  background: #303030;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #FFFFFF;
  margin: 0;
  font-family: 'Switzer-Regular', arial, sans-serif;
}
.classifi-match-wrap{
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
}
.classi-col{
  background: #FAFAFA;
  padding: 40px 20px 20px;
  width: 40%;
}
.classi-col h2{
  font-size: 28px;
  font-weight: 400;
  color: #1D1D1D;
  margin-top: 0;
}
.classi-table-row{
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  column-gap: 10px;
}
.classi-table{
  display: flex;
  overflow-y: scroll;
  max-height: 130px;
}
#content{
	margin: 0;
}
.classi-table-left{
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.table-serial{
	color: #AAA100;
	font-weight: 700;
}
.classi-table-right{
  display: flex;
  justify-content: space-between;
  column-gap: 40px;
}
.classi-table-row p{
  margin: 0;
}
.classi-table-row.classi-table-border{
	font-size: 13px;
	color: #1D1D1D;
	font-family: 'Switzer-Regular', arial, sans-serif;
}
.classi-table-row.classi-table-border .classi-table-right{
	font-weight: 600;
}
.classi-table-border{
  border-bottom: 1px solid #e3e3e3;
}
.classi-bottom-txt{
  font-size: 14px;
  color: #1D1D1D;
  font-family: 'Switzer-Regular', arial, sans-serif;
  text-align: center;
  font-weight: 500;
}
.match-col{
  width: 60%;
  background: url('../images/next-match-bg.png')no-repeat  0px 20px;
  background-size: contain;
}
.match-frame-wrap{
	background-color: #AAA100!important;
	padding: 5px;
}
.match-frame-wrap iframe{
	width: 100%;
}
@media (max-width: 767px){
	.match-frame-wrap iframe {
		margin-left: -5px;
	}
	.squadra-slider-img-wrap img {
		min-height: 150px;
	}
}
.inner-match-info{
	display: flex;
	height: 100%;
}
.match-info-wrap h4{
	font-size: 36px;
	font-weight: 400;
	color: #1D1D1D;
	margin: 0;
}
.match-info-wrap h4 span{
	color: #fff;
}
.match-left{
	display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.match-right{
	display: flex;
	flex-direction: column;
    justify-content: space-evenly;
}
.match-inner-logos-wrap{
	display: flex;
	column-gap: 20px;
	align-items: center;
	text-align: center;

}
.stadio-text{
	display: flex;
    justify-content: end;
    margin: 0;
	font-size: 20px;
	font-weight: 400;
	color: #1D1D1D;
}
.match-inner-logos-wrap p{
	font-size: 20px;
	font-weight: 400;
	color: #1D1D1D;
}
.vs-text{
	font-size: 36px;
	color: #1D1D1D;
}
.match-col img{
  width: 100%;
}
.ultime-sec {
	padding: 50px 0;
}
.ultime-head h2{
	font-size: 42px;
	font-weight: 400;
}
.ultime-head h2 span {
	color: #888888;
	font-family: 'Switzer-Regular', arial, sans-serif;
	font-size: 16px;
}
.ultime-sec img{
	width: 100%;
}
.ultime-left-title{
	color: #1D1D1D;
	font-size: 24px;
	line-height: 33.6px;
	margin: 15px 0;
}
.ultime-left-content{
	color: #1D1D1D;
	font-size: 16px;
	line-height: 21.12px;
	margin: 0;
}
.ultime-event-row{
	display: flex;
	justify-content: space-between;
	column-gap: 20px;
}
.ultime-left-col{
	width: 50%;
	font-family: 'Switzer-Regular', arial, sans-serif;	
}
.ultime-right-col{
	width: 50%;
	display: flex;
	flex-direction: column;
	row-gap: 20px;
}
.ultime-right-event{
	display: flex;
	justify-content: space-between;
	column-gap: 20px;
	color: #1D1D1D;
	font-family: 'Switzer-Regular', arial, sans-serif;
	line-height: 21.12px;
	border: 1px solid #fff;
	transition: 0.3s ease-in-out;
}
.ultime-right-event:hover{
	border: 1px solid #AAA100;
}
.right-event-single-img{
	width: 40%;
}
.right-event-single-img img{
	height: 100%;
	object-fit: cover;
}
.ultime-right-event p{
	margin: 0;
	width: 60%;
	transition: 0.3s ease-in-out;
}
.ultime-right-event:hover p{
	text-decoration: underline;
}
.prima-squadra-slider-sec {
	padding: 40px 0;
}
.squadra-slider-img-wrap{
	position: relative;
}
.squadra-slider-img-wrap img{
	width: 100%;
}
.squadra-slider-content-wrap{
	position: absolute;
	left: 50%;
    top: 50%;
    color: #fff;
    transform: translate(-50%, -50%);
    text-align: center;
}
.squadra-slider-content-wrap h2{
	font-size: 42px;
	line-height: 50.4px;
	font-weight: 400;
	margin-top: 20px;
}
.squadra-slider-content-wrap p{
	font-size: 16px;
	line-height: 21.12px;
	font-weight: 500;	
	font-family: 'Switzer-Regular', arial, sans-serif;
	margin: 0;
}
.squadra-slider-btn{
	background: #AAA100;
	padding: 12px 32px 12px 32px;
	border-radius: 2px;
	color: #1D1D1D;
	text-decoration: none;
	font-size: 16px;
	font-family: 'Switzer-Regular', arial, sans-serif;
	font-weight: 500;
}
.content-slider-sec{
	padding: 50px 0;
	background-color: #f5f5f5;
}
.content-slider-sec .slick-prev{
	left: 3%!important;
}
.content-slider-sec .slick-next{
	right: 3%!important;
}
.content-slider-sec .content-slider-img-wrap{
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 0px;
	max-width: 1100px;
	width: 100%;
}
.slider-content-wrap {
    flex: 1;
    width: 40%; /* Ensures equal width */
    background-color: #AAA100;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}



.inner-slider-content-wrap{
	padding: 35px 70px;
}
.slider-content-wrap h2{
	font-size: 36px;
	font-weight: 400;
	color: #1D1D1D;
	margin-bottom: 10px;
}
.slider-content-wrap p{
	font-size: 16px;
	color: #1D1D1D;
	font-weight: 500;
	font-family: 'Switzer-Regular', arial, sans-serif;
	padding-bottom: 15px;
}
.content-slider-btn {
	background: #1D1D1D;
	border-radius: 2px;
	padding: 14px 36px 14px 36px;
	color: #AAA100;
	text-decoration: none;
}
.content-slier-img{
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;	
	width: 50%;
}
.content-slier-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.video-gallery-sec{
	padding: 40px 0;
}
.sec-head h2{
	font-size: 42px;
	line-height: 50.4px;
	color: #1D1D1D;
	font-weight: 400;
	align-items: center;
	display: flex;
}
.sec-head h2 span {
	font-size: 16px;
	color: #888888;
	font-weight: 500;
	font-family: 'Switzer-Regular', arial, sans-serif;
	margin-left: 20px;
	align-items: center;
}
.sec-head h2 img{
	width: 10px;
	height: 10px;
}
.video-gallery-row{
	display: flex;
	justify-content: space-between;
	column-gap: 20px;
}
.video-col img{
	width: 100%;
}
.video-col a{
	text-decoration: none;
}
.video-col p{
	font-size: 12px;
	color: #888888;
	line-height: 14.88px;
	font-family: 'Switzer-Regular', arial, sans-serif;
}
.video-col h5{
	font-size: 16px;
	color: #1D1D1D;
	line-height: 19.2px;
	font-family: 'Switzer-Regular', arial, sans-serif;
	margin: 0;
	font-weight: 500;
}
.video-col:hover h5{
	color: #AAA100;
}
.photo-row{
	display: flex;
	justify-content: space-between;
	column-gap: 20px;
	margin: 50px 0;
}
.photo-wrap{
	position: relative;
}
.photo-wrap img{
	width: 100%;
}
.photo-info-wrap{
	position: absolute;
	left: 20px;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	color: #fff;
	font-family: 'Switzer-Regular', arial, sans-serif;
}
.photo-upper-info{
	display: flex;
	column-gap: 10px;
}
.photo-upper-info img{
	width: 20px;
	height: 20px;
}
.photo-upper-info p{
	font-size: 12px;
}
.photo-bottom-info p{
	color: #DDDDDD;
	font-size: 12px;
}
.photo-bottom-info h6{
	font-size: 16px;
	font-weight: 500;
	margin: 0 0 20px;
}
.bottom-row{
	display: flex;
	justify-content: space-between;
	column-gap: 20px;
}
.bottom-img-col img{
	width: 100%;
}
.bottom-img-col{
	position: relative;
}
.bottom-img-content{
	position: absolute;
    bottom: 10px;
    color: #fff;
    display: flex;
    justify-content: space-between;
	align-items: center;
    width: 93%;
    padding: 20px 20px 0;
}
.bottom-img-content h4{
	font-size: 36px;
	line-height: 47.52px;
	font-weight: 400;
	margin: 0;
}
.bottom-img-content p{
	color: #AAA100;
	font-size: 16px;
	font-family: 'Switzer-Regular', arial, sans-serif;
	margin: 0;
	opacity: 0;
	transition: 0.3s ease-in-out;
	align-items: center;
}
.bottom-img-content p img{
	width: 10px;
	height: 10px;
}
.bottom-img-col:hover .bottom-img-content p{
	opacity: 1;
}
.content-row{
	display: flex;
	justify-content: space-between;
	column-gap: 20px;
	row-gap: 20px;
	font-family: 'Switzer-Regular', arial, sans-serif;
	flex-wrap: wrap;
}
.content-col p{
	color: #888888;
	font-size: 14px;
}
.content-col h4{
	color: #1D1D1D;
	font-size: 24px;
	font-weight: 500;
	margin-top: 0;
	transition: 0.3s ease-in-out;
}
.content-col h6{
	color: #888888;
	font-size: 14px;
	font-weight: 500;
	transition: 0.3s ease-in-out;
}
.content-col:hover h4{
	text-decoration: underline;
}
.content-col:hover h6{
	color: #AAA100;
}



.footer-sponsor-main {
	text-align: center;
	padding: 60px 0px;
}

.footer-sponsor-main h2 {
	font-size: 42px;
	font-weight: 400;
}

.sponsor-img-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 30px;
	padding: 30px 0;
	flex-wrap: wrap;
	row-gap: 30px;
}

.sponsor-img-wrap img {
	width: 100%;
	max-width: 150px;
}

.sponsor-img-wrap img:last-child {
	max-width: 70px;
}

.sponsor-btn {
	background: #AAA100;
	padding: 10px 40px 10px 40px;
	border-radius: 2px;
	color: #1D1D1D;
	font-size: 18px;
	text-decoration: none;
}

.footer-social-wrap {
	display: flex;
	justify-content: space-between;
	width: 100%; /* Ensures it spans the full width of the footer */
    /*position: absolute;*/ /* Keep it at the bottom */
    bottom: 0; /* Fix it at the bottom */
    left: 0;
}

.footer {
	display: flex;
	padding: 50px 0;
	background-color: #1d1d1d;
	color: #fff;
}

.row-footer-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 30px;
}
@media (max-width: 768px) {
    .content-slider-sec .content-slider-img-wrap {
        flex-direction: column; /* Stack elements on smaller screens */
        align-items: center;
        text-align: center;
    }

    .slider-content-wrap, .content-slier-img {
        max-width: 100%; /* Allow full width */
    }

    .inner-slider-content-wrap {
        padding: 20px;
    }
}


.footer-logo img {
	width: 100%;
}

.info-wrap h2 {
	font-size: 36px;
	margin-bottom: 30px;
}

.info-wrap p {
	margin: 7px 0;
	font-family: 'Switzer-Regular', arial, sans-serif;
}

.info-wrap .info-mail {
	margin-bottom: 20px;
}

.info-wrap .info-link-text {
	color: #AAA100;
	text-decoration: none;
}

.footer-menus-wrap {
	margin-right: auto;
	margin-left: auto;
}

.footer-menus-wrap p a {
	color: #fff;
	text-decoration: none;
	font-size: 20px;
	line-height: 20px;
}

.copyright {
	display: flex;
	justify-content: space-between;
	/*flex-direction: column;
	text-align: center;*/
	column-gap: 30px;
	font-size: 12px;
	align-items: end;
}

.copyright p {
	margin-bottom: 0;
}

.tickets-icon {
	align-self: flex-end;
	display: flex;
	align-items: center;
	margin-bottom: auto;
	flex-direction: column;
}

.social-icons {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: auto;
}

.social-icons p, .tickets-icon p{
	font-size: 20px;
    margin-bottom: 10px;
}

.icons-wrap {
	display: flex;
	column-gap: 12px;
	justify-content: space-between;
	align-items: center;
}

.icons-wrap img {
	width: 19px;
}

.slider-sec {
	margin-top: 93px;
}

.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	overflow: hidden;
	display: block;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: none;
}

/*.slick-loading .slick-list {
	background: url(../images/ajax-loader.gif) center center no-repeat;
}*/

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	left: 0;
	top: 0;
	display: block;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	display: block;
	height: auto;
	float: left;
}

.slick-prev {
	left: -20px;
}

.slick-next {
	float: right;
	right: -20px;
}

.slick-dots {
	width: 100%;
    float: left;
    text-align: center;
    margin: 0;
    position: absolute;
    padding-left: 0;
    bottom: 20px;
	display: flex;
    column-gap: 12px;
    justify-content: center;

}
.slider-sec .slick-dots{
	/*bottom: 125px;*/
}
.slick-dots li:after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background: #1D1D1D;
    border-radius: 50%;
}
.slick-dots li.slick-active:after  {
	background: #AAA100;
}

@media (max-width: 767px){
	.slick-dots {
		bottom: -20px;
	}
	.slider-sec .slick-dots {
		bottom: 25px;
	}
}


.slick-dots li {
	display: inline-block;
	margin: 0 5px;
	padding: 0;
	cursor: pointer;
}

.slick-dots li button {
	border: 0;
	background: #1D1D1D;
	display: block;
	height: 12px;
	width: 10px;
	outline: none;
	cursor: pointer;
	color: transparent;
	border-radius: 50%;
	display: none;
}

@media (max-width: 767px){
	.slick-dots li button {
		height: 12px;
		width: 7px!important;
	}
}
.slick-dots li.slick-active button {
	background: #AAA100;
}

h3 {
	color: #3498db;
	font-size: 36px;
	line-height: 100px;
	margin: 0;
	padding: 0;
	position: relative;
	text-align: center;
}

/* .content{margin:auto;padding:20px; max-width:600px;} */


/******************* CSS ***********************/

.industry-slider-content.content .slider img.slider-img {
	height: 600px;
    width: 100%;
    object-position: center;
    object-fit: cover;
	display: block;
}

.slick-prev,
.slick-next {
	position: absolute;
	height: 20px;
	width: 20px;
	line-height: 0;
	font-size: 0;
	cursor: pointer;
	color: transparent;
	top: 50%;
	margin-top: -20px;
	outline: none;
	border: solid #D4D4D4 !important;
	border-width: 0 3px 3px 0 !important;
	display: inline-block !important;
	padding: 2px;
	border-radius: 0;
}

.slider button.slick-prev {
	background: transparent;
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	left: 7%;
	z-index: 1;
}
.content-slider-sec .slick-initialized .slick-slide {
    display: flex;
}

.slider button.slick-next {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	background: transparent;
	right: 7%;
}

.industry-slider-content .slick-slide h4 {
	text-align: center;
	margin-top: 10px;
}

.industry-slider-content .slick-slide h4 a {
	text-decoration: none;
	color: #576c2c;
	font-family: 'ProximaNova-Bold', Arial;
}


/* strutture page css */

.banner-bg{
	background: #303030;
	margin-top: 93px;
	padding: 70px 20px 10px;
}
.banner-blank-bg h2{
	color: #FFFFFF;
	font-size: 36px;
	font-weight: 400;
	line-height: 43.2px;
	margin-bottom: 20px;
}
.banner-img-sec img{
	width: 100%;
}
.content-sec {
	font-family: 'Switzer-Regular', arial, sans-serif;
	color: #1D1D1D;
	padding: 40px 20px;
	background: #f8f8f8;
}
.sub-container{
	width: 100%;
	max-width: 928px;
	margin-left: auto;
	margin-right: auto;
}
.content-heading{
	font-weight: 500;
	font-size: 32px;
}
.content-txt{
	font-size: 18px;
	line-height: 25.56px;
}
.inner-heading{
	font-size: 28px;
	font-family: "Bebas Neue", sans-serif;
	margin-top: 60px;
}
.secondry-txt{
	font-size: 16px;
	margin-top: 40px;
	margin-bottom: 23px;
}
.img-info-text{
	color: #888888;
	font-size: 14px;
}
.content-sec img{
	width: 100%;
}
.inner-ground-image-wrap{
	display: flex;
	justify-content: space-between;
	column-gap: 15px;
	row-gap: 15px;
}
.main-heading{
	font-size: 42px;
	line-height: 50.4px;
	color: #1D1D1D;
	font-weight: 400;
}


@media (max-width: 767px){
	.banner-bg {
		margin-top: 68px;
	}
	.inner-ground-image-wrap{
		flex-direction: column;
	}
}

/* organigramma-page */

.organigramma-sec{
	text-align: center;
	padding: 40px 5px;
	background: #f8f8f8;
}
.box-wrap{
	width: 100%;
	max-width: 310px;
	padding: 35px 25px 35px 25px;
	border: 2px solid #888888;
	margin: auto;
}
.pink-box{
	background: #ECA5CD;
	margin-bottom: 30px;
}
.yellow-box{
	background: #AAA100;
}
.gray-box{
	background: #DDDDDD;
}
.box-row-wrap{
	display: flex;
	justify-content: center;
}
.second-row{
	padding: 0 57px;
}
.box-row-wrap .box-wrap{
	margin: initial;
}
.second-row-box{
	max-width: initial;
}
.box-text{
	font-size: 16px;
	font-family: 'Switzer-Regular', arial, sans-serif;
	font-weight: 400;
	color: #1D1D1D;
}
.box-title{
	font-size: 24px;
	color: #1D1D1D;
	font-family: 'Switzer-Regular', arial, sans-serif;
	font-weight: 600;
	margin-top: 10px;
}
.m-0{
	margin: 0;
}
.spon-bg{
	background: #fff;
	padding: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
    min-height: 240px;
}
.contact-text-head{
	font-size: 22px;
	text-align: center;
	font-weight: 600;
}
.contact-text{
	font-size: 22px;
	text-align: center;
	font-weight: 500;
}

@media (max-width: 767px){
	.box-row-wrap {
		flex-direction: column;
	}
	.second-row {
		padding: 0;
	}
	.box-wrap {
		width: auto;
		padding: 35px 20px 35px 20px;
	}
	.sponsors-row-wrap{
		flex-direction: column;
		row-gap: 20px;
	}
	.sponsors-row-wrap .sponsors-left-col {
		width: auto;
		padding-right: 0px;
		border-right: none;
	}
	.sponsors-row-wrap .sponsors-right-col {
		width: auto;
		padding-left: 0;
	}
	.news-row-wrap {
		flex-direction: column;
		row-gap: 20px;
	}
	.news-row-wrap .sponsors-left-col {
		width: auto;
		padding-right: 0px;
		border-right: none;
	}
	.news-row-wrap .sponsors-right-col {
		width: auto;
		padding-left: 0;
	}
}

/* sponsors-page */

.sponsors-sec{
	background: #1D1D1D;
	padding: 40px 20px;
	text-align: center;
}
.sponsors-row-wrap{
	/*display: flex;
	 color: #fff; */
}
.sponsors-row-wrap img{
	width: 100%;
    max-width: 290px;
}
.sponsors-left-col{
	width: 80%;
	padding-right: 20px;
	border-right: 1px solid #DDDDDD;
}
.sponsors-right-col{
	width: 20%;
	padding-left: 20px;
}
.sponsors-logo{
	display: flex;
	column-gap: 20px;
}
.sponsors-title{
	font-size: 36px;
	font-weight: 400;
	color: #fff;
}
.sponsors-inner-logo-row .sponsors-title{
	margin-top: 60px;
}
.sponsors-logo p{
	margin: 0;
}
.sponsors-right-info-heading{
	font-size: 28px;
	font-weight: 400;
}
.right-date-text{
	color: #888888;
	font-size: 14px;
	font-weight: 400;
	font-family: 'Switzer-Regular', arial, sans-serif;
}
.right-date-title{
	/* color: #fff; */
	font-size: 18px;
	font-weight: 400;
	font-family: 'Switzer-Regular', arial, sans-serif;
	margin: 0;
	margin-bottom: 15px;
}
.right-date-info-row{
	border-bottom: 1px solid #DDDDDD;
}
.archivio-btn-wrap{
	margin: 40px 0;
}
.archivio-btn{
	background: #ECA5CD;
	padding: 12px 32px 12px 32px;
	border-radius: 2px;
	text-decoration: none;
	color: #1D1D1D;
}
.right-info-box-wrap{
	border: 1px solid #DDDDDD;
	padding: 15px;
}
.right-info-box-wrap h4{
	margin-bottom: 0;
	font-size: 22px;
	font-weight: 400;
	margin-top: 15px;
}
.right-info-box-wrap p{
	font-size: 14px;
	font-weight: 400;
	font-family: 'Switzer-Regular', arial, sans-serif;
	margin-top: 0;
    margin-bottom: 35px;
}
.info-box-btn-wrap{
	margin: 15px 0;
}
.posts-sec{
	background: #f8f8f8;
	padding: 60px 20px 60px;
}
.posts-wrap{
	display: flex;
    /* justify-content: space-between; */
	column-gap: 20px;
    row-gap: 20px;
    flex-wrap: wrap;
}
.sinlge-post-content{
	border: 1px solid #DDDDDD;
	width: 48%;
}
.sinlge-post-content img{
	width: 100%;
}
.post-inner-content{
	padding: 20px;
}
.post-inner-content p{
	margin-bottom:2px;
	font-size: 14px;
	font-weight: 400;
	font-family: 'Switzer-Regular', arial, sans-serif;
}
.post-inner-content h2{
	margin: 0;
	font-size: 24px;
	font-weight: 500;
	color: #121212;
	font-family: 'Switzer-Regular', arial, sans-serif;
}
.leggi-text-icon{
	color: #AAA100;
	font-size: 16px;
	font-weight: 500;
	display: flex;
	align-items: center;
}
.leggi-text-icon img{
	width: 12px;
	height: 12px;
	margin-left: 10px;
}
.table-frame{
	margin-left: -10px;
	height: 750px;
}
.pagination-wrap{
	display: flex;
    justify-content: end;
    column-gap: 10px;
	margin: 35px 0;
}
.pagination-wrap .page-numbers{
    background: #DDDDDD;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
	color: #1D1D1D;
    text-decoration: none;
	border-radius: 2px;
	font-family: 'Switzer-Regular', arial, sans-serif;
}
.pagination-wrap .page-numbers.current{
	background: #ECA5CD;
}
.featured-img{
	width: 100%;
	height: 100%;
	max-height: 300px;
	object-fit: cover;
}
iframe body#ranking_1{
	height: 100%;
    overflow: scroll;
    max-height: 400px;
}
@media (max-width:767px){
	.posts-wrap {
		flex-direction: column;
	}
	.sinlge-post-content {
		width: auto;
	}
}
@media (max-width: 768px){
	.industry-slider-content.content .slider img.slider-img {
		height: 400px !important; 
        max-height: 400px !important;
	}
	.slider.autoplay, .slider-sec {
        height: auto !important;
    }
}
@media (max-width: 500px) {
    .industry-slider-content.content .slider img.slider-img {
        /* 160px era troppo poco, ecco perché le vedevi piccole. 
           Usiamo 350px per un effetto "full screen" o quasi sul telefono. */
        height: 350px !important;
        max-height: 350px !important;
    }
    
    .slider-sec {
        margin-top: 50px !important; /* Riduciamo il margine top sui telefoni */
    }
}
.slick-dotted.slick-slider {
    margin-bottom: 0 !important;
}
.squadre-content-sec{
	background: #1D1D1D;
	padding: 20px 0;
}
.heading-select{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.select-heading{
	display: flex;
	column-gap: 30px;
	align-items: center;
	cursor: pointer;
	width: fit-content;
	position: relative;
	transition: 0.3s ease-in-out;
}
.select-heading img{
	width: 15px;
}
.select-heading-menus{
	background: #1D1D1D;
	border-radius: 2px;
	width: 100%;
	color: #fff;
	font-size: 16px;
	font-family: 'Switzer-Regular', arial, sans-serif;
	position: absolute;
	/* opacity: 0; */
	z-index: 999;
	top: 10px;
	display: none;
	transition: 0.2s ease-in-out;
}
.select-heading-menus a p{
	margin: 7px 0;
	cursor: pointer;
	padding: 7px 10px;
}
.select-heading-menus a p:hover{
	background: #303030;
}

.select-heading-menus a{
	color: #fff;
    text-decoration: none;
}

.select-heading:hover .select-heading-menus{
	/* opacity: 1; */
	top: 74px;
	display: block;
}
.player-active-sec{
	border-top: 1px solid #1D1D1D;
	background: #303030;
}
.player-active-sec p{
	font-size: 16px;
	font-family: 'Switzer-Regular', arial, sans-serif;
	color: #fff;
	margin: 0;
	padding: 10px 0;
	width: fit-content;
}
.player-active-menu{
	display: flex;
    column-gap: 20px;	
}
.single-active-menu{
	position: relative;
}
.single-active-menu::after{
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
	background: #AAA100;
	color: #fff;
}
.heading-select select{
	background: transparent;
    color: #fff;
    padding: 5px 38px 5px 7px;
	font-size: 14px;
	font-family: 'Switzer-Regular', arial, sans-serif;
	font-weight: 500;
	border-radius: 2px;
	border: 1.5px solid #DDDDDD;
}
.heading-select select option{
	background: #1D1D1D;
	border-radius: 0;
}
.color-white{
	color: #fff;
}
.main-img-wrap img{
	width: 100%;
}
.main-img-wrap p{
	font-size: 14px;
	color: #fff;
	font-family: 'Switzer-Regular', arial, sans-serif;
	margin: 0;
}
.team-wrap{
	margin-top: 50px;
}
.team-heading{
	font-size: 36px;
	font-weight: 400;
	color: #AAA100;
}
.player-card-wrap{
	display: flex;
    column-gap: 20px;
	row-gap: 20px;
    flex-wrap: wrap;
}
.player-card{
	padding: 10px;
	border: 2px solid #303030;
	width: 100%;
	max-width: 250px;
	display: flex;
    justify-content: center;
    align-items: center;
	flex-direction: column;
	position: relative;
	transition: 0.2s ease-in-out;
}
.player-card:hover{
	border: 2px solid #AAA100;
}
.player-card img{
	width: 100%;
}
.player-card:hover .player-full-info{
	opacity: 1;
	bottom: 65px;
}
.player-full-info{
	background: #1D1D1D;
	width: 100%;
	color: #fff;
	font-family: 'Switzer-Regular', arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	/* border-bottom: 1px solid #888888; */
	row-gap: 5px;
    display: flex;
    flex-direction: column;
	padding-top: 7px;
	padding-bottom: 10px;
    position: absolute;
    bottom: 0px;
    width: 100%;
	transition: 0.2s ease-in-out;
	opacity: 0;
}
.player-full-info hr{
	width: 90%;
    border-color: #888888;
}
.player-full-info p{
	margin: 0;
}
.player-single-info-row{
	display: flex;
	justify-content: space-between;
	padding: 0 15px;
}
.player-info {
	color: #fff;
	text-align: center;
	margin-top: 10px;
}
.player-info p{
	font-size: 18px;
	font-family: 'Switzer-Regular', arial, sans-serif;
	margin: 0;
}
.player-info h2{
	font-size: 42px;
	font-weight: 400;
	margin: 0;
}
.player-number{
	position: absolute;
	right: 20px;
	top: 20px;
}
@media (max-width: 820px){
	.player-card {
		max-width: 328px;
	}
	.player-card-wrap {
		justify-content: center;
	}
	.news-sec {
		padding: 40px 0px!important;
	}
	.news-cards-wrap{
		justify-content: space-between;
	}
	.news-cards-wrap .news-card {
		max-width: 160px;
	}
}
@media (min-width: 768px) and (max-width: 820px){
	.archivio-btn {
		padding: 12px 6px 12px 4px;
	}
}
.news-sec{
	padding: 40px 20px;
}
.news-row-wrap{
	display: flex;
}
.news-row-wrap img{
	width: 100%;
}
.f-14{
	font-size: 14px;
}
.news-row-wrap .ultime-event-row {
    border-bottom: 1px solid #ccc;
    padding-bottom: 50px;
}
.news-cards-wrap{
	padding: 40px 0;
	display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
	row-gap: 30px;
}
.news-card{
	max-width: 210px;
}
.news-card p{
	font-size: 14px;
	font-family: 'Switzer-Regular', arial, sans-serif;
	margin: 0;
}
.search-box{
	width: 100%;
	max-width: 245px;
	font-size: 14px;
	font-family: 'Switzer-Regular', arial, sans-serif;
	border: 1.5px solid #1D1D1D;
	border-radius: 2px;
	padding: 8px;
}
.heading-search{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media (max-width: 767px){
	.heading-search {
		align-items: flex-start;
		flex-direction: column;
		padding-bottom: 30px;
	}
	.interessarti-row-wrap{
		flex-direction: column;
	}
	.single-news-sec .inner-ground-col{
		width: auto;
	}
}
.single-news-text h2{
	color: #FFFFFF;
	font-size: 14px;
	font-family: 'Switzer-Regular', arial, sans-serif;
	font-weight: 400;
}
.bg-gray{
	background: #f8f8f8;
}
.inner-ground-col{
	width: 50%;
	row-gap: 12px;
    display: flex;
    flex-direction: column;
}
.intersti-sec {
	padding: 40px 20px;
}
.intersti-sec h2{
	text-align: center;
}
.interessarti-row-wrap{
	display: flex;
	column-gap: 15px;
	row-gap: 15px;
}
.interessari-col img{
	width: 282px;
    height: 139px;
	object-fit: cover;
}
.interessari-col p{
	font-size: 14px;
	font-family: 'Switzer-Regular', arial, sans-serif;
	font-weight: 400;
	width: 280px;
}
.date-share-wrap{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.date-share-wrap p{
	font-size: 14px;
	font-family: 'Switzer-Regular', arial, sans-serif;
	font-weight: 400;
	color: #091B35;
	opacity: 40%;
}
.date-share-wrap img{
	width: 30px;
}
.bottom-share-wrap{
	display: flex;
	align-items: center;
	column-gap: 50px;
}
.bottom-share-wrap .bottom-share-eventi-txt{
	background: #DDDDDD;
	padding: 12px 32px 12px 32px;
	font-size: 14px;
	font-family: 'Switzer-Regular', arial, sans-serif;
	font-weight: 400;
	border-radius: 40px;
	text-transform: uppercase;
	color: #888888;
}
.bottom-share-inner{
	display: flex;
	align-items: center;
	column-gap: 10px;
}
.bottom-share-inner img{
	width: 30px;
}
.bottom-share-img:hover .share-menus{
	visibility: visible;
}
.share-menus{
	background: #DDDDDD;
	padding: 12px;
	border-radius: 4px;
}
.share-menus p{
	font-size: 14px;
	font-family: 'Switzer-Regular', arial, sans-serif;
	font-weight: 400;
	color: #303030;
}
.single-share-row{
	display: flex;
	align-items: center;
	column-gap: 10px;
}
.share-menus hr{
	margin: 0;
    border: 1px solid #fff;
}
.single-share-row img{
	width: 20px;
}
.bottom-redirection {
	display: flex;
	column-gap: 10px;
	align-items: center;
	margin-top: 30px;
	justify-content: space-between;
}
.bottom-redirection img{
	width: 15px;
}
.bottom-redirection p{
	color: #AAA100;
	font-size: 16px;
	font-family: 'Switzer-Regular', arial, sans-serif;
	font-weight: 500;
}
@media (max-width: 330px){
	.single-news-sec .content-heading {
		font-size: 22px;
	}
	.bottom-share-wrap {
		column-gap: 6px;
	}
}
@media (max-width: 370px){
	.news-cards-wrap .news-card {
		max-width: 100%;
	}
}
a.menu_bar {
	color: #AAA100;
	text-decoration: none;
}

a.cus-href{
	color: #303030;
	text-decoration: none;
}

a.menu_bar:hover, a.cus-href:hover {
	text-decoration: underline;
}

.prev-post, .next-post {
	display: flex;
    align-items: center;
	column-gap: 10px;
}

.not-found-img {
	object-fit: contain;
    width: 100%;
    height: 600px;
}

.download-btn {
	background: #169d14;
    padding: 8px 50px 8px 50px;
    border-radius: 6px;
    color: #fff;
    font-size: 26px;
    text-decoration: none;
	transition: all 0.4s ease;
}

.download-btn:hover {
    color: #169d14;
    background-color: #ffffff;
    transform: scale(1.1); 
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* INIZIO DA QUI*/

/* Slider Container */
.slider.autoplay {
    width: 100%;
    overflow: hidden;
    margin-bottom: 2px; /* RISOLVE IL PUNTO 3: Spazio sotto lo slider */
}

/* Spazio tra le sezioni (Cubotti) */
.result-sec {
    padding-top: 20px; /* ulteriore controllo dello spazio */
}

/* Responsive: abbassiamo l'altezza sui cellulari */
@media (max-width: 768px) {
    .slider-sec, .slider.autoplay, .slider-img {
        height: 300px !important; /* Abbassiamo l'altezza a 300px sui telefoni */
        max-height: 300px;
    }
}

/* instagram*/

/*.instagram-sec {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.instagram-sec h2 {
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: bold;
}*/

/* Se usi Smash Balloon, puoi forzare la griglia */
#sbi_images {
    padding: 10px !important;
}

/* RUBRICAAAAAA */
.rubrica-presidente-sec {
    padding: 60px 0;
    background-color: #f4f4f4; /* Grigio chiaro per separare le sezioni */
    margin-top: 50px;
}

.rubrica-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.rubrica-content {
    flex: 1;
}

.rubrica-content h2.section-title {
    font-size: 32px;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-left: 5px solid #ff0000; /* Colore sociale, es. rosso */
    padding-left: 15px;
}

.rubrica-text h3 {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.btn-rubrica {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-rubrica:hover {
    background-color: #ff0000;
}

.rubrica-image {
    flex: 0 0 350px; /* Larghezza fissa per l'immagine */
}

.rubrica-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .rubrica-wrap {
        flex-direction: column-reverse; /* Foto sotto il testo sui telefoni */
    }
    .rubrica-image {
        flex: 0 0 auto;
        width: 200px;
    }
}

/*NEWS*/
.ultima-news-home-sec {
    padding: 60px 0;
    background-color: #f4f4f4; /* Grigio chiaro per separare le sezioni */
    margin-top: 50px;
}

.news-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.news-content {
    flex: 1;
}

.news-content h2.section-title {
    font-size: 32px;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-left: 5px solid #ff0000; /* Colore sociale, es. rosso */
    padding-left: 15px;
}

.news-text h3 {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.btn-news {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-news:hover {
    background-color: #ff0000;
}

.news-image {
    flex: 0 0 350px; /* Larghezza fissa per l'immagine */
}

.news-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .news-wrap {
        flex-direction: column-reverse; /* Foto sotto il testo sui telefoni */
    }
    .news-image {
        flex: 0 0 auto;
        width: 200px;
    }
}

/*SPONSOR*/
.sponsor-img-wrap {
    display: flex;
    overflow: hidden;
    gap: 50px;
    align-items: center;
    padding: 20px 0;
}

/* Se vuoi l'effetto scorrimento automatico (CSS puro) */
.sponsor-img-wrap img {
    height: 60px; /* Uniforma l'altezza di tutti i loghi */
    width: auto;
    filter: grayscale(100%); /* Li rende tutti grigi per eleganza */
    opacity: 0.7;
    transition: all 0.3s ease;
}

.sponsor-img-wrap img:hover {
    filter: grayscale(0%); /* Torna a colori al passaggio del mouse */
    opacity: 1;
    transform: scale(1.1);
}

/* ORGANIGRAMMA*/
.organigramma-sec {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.main-heading {
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 50px;
    font-weight: 800;
}

.sub-heading {
    font-size: 22px;
    text-transform: uppercase;
    color: #e31e24; /* Rosso sociale */
    margin: 40px 0 20px;
    font-weight: 700;
}

/* Struttura Righe */
.org-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

/* Griglia per i ruoli minori */
.org-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* Card base */
.org-card {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 8px;
    border-bottom: 4px solid #ddd;
    transition: all 0.3s ease;
}

.org-card:hover {
    transform: translateY(-5px);
    border-color: #e31e24;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* Card evidenziate (Presidente) */
.org-card.highlight {
    background: #1a1a1a;
    color: #fff;
    min-width: 320px;
    border-bottom: 4px solid #e31e24;
}

.org-card .role {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #888;
}

.org-card.highlight .role { color: #aaa; }

.org-card .name {
    font-size: 20px;
    margin: 0;
    font-weight: 700;
}

/* Divisore */
.org-divider {
    border: 0;
    height: 1px;
    background: #eee;
    margin: 40px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .org-row { flex-direction: column; align-items: center; }
    .org-card { width: 100%; }
}

/* contatti */

.contact-content-sec {
    padding: 60px 0;
    background-color: #fff;
}

.contact-grid {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-map {
    flex: 1.5; /* Diamo più spazio alla mappa */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-block {
    margin-bottom: 30px;
}

.contact-text-head {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    color: #e31e24; /* Il tuo colore rosso */
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.contact-text {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}

.contact-text a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-text a:hover {
    color: #e31e24;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .contact-grid {
        flex-direction: column;
    }
    .contact-map {
        width: 100%;
        height: 350px;
    }
}

/* GALLERY*/ 

/* Struttura della griglia automatica FooGallery */
.gallery-auto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); /* Responsive */
    gap: 30px;
}

/* Card dell'Evento */
.gallery-auto-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Ombra leggera */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-auto-card:hover {
    transform: translateY(-5px); /* Effetto sollevamento */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gallery-card-link {
    text-decoration: none;
    color: #333;
    display: block;
}

/* Gestione dell'immagine di copertina */
.gallery-card-thumb {
    position: relative;
    height: 220px; /* Altezza fissa */
    overflow: hidden;
}

.gallery-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Taglia senza schiacciare */
    object-position: center;
    transition: transform 0.5s ease;
}

/* Badge della data sulla foto (Rosso Sociale) */
.gallery-card-date {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #ff0000; /* Rosso Pozzuolo */
    color: #fff;
    padding: 8px 15px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Info testuali sotto la foto */
.gallery-card-info {
    padding: 20px;
    text-align: left;
}

.gallery-card-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.gallery-card-info .view-link {
    font-size: 13px;
    color: #ff0000; /* Rosso sociale */
    font-weight: bold;
}

.gallery-card-thumb {
    background-color: #eee; /* Grigio di attesa */
    min-height: 200px;
    display: block;
    position: relative;
}

.gallery-card-thumb img {
    display: block;
    width: 100%;
    height: 200px; /* Forza l'altezza */
    object-fit: cover;
}

/* sponsor */
.sponsors-page-sec {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.sponsor-group {
    margin-bottom: 60px;
    text-align: center;
}

.tier-title {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.tier-title::after {
    content: '';
    display: block;
    width: 50%;
    height: 3px;
    background: #e31e24; /* Rosso sociale */
    margin: 10px auto 0;
}

/* Griglia flessibile */
.sponsor-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Card Sponsor */
.sponsor-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.sponsor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #e31e24;
}

/* Dimensioni differenziate per importanza */
.main-tier .sponsor-card { width: 400px; height: 200px; }
.gold-tier .sponsor-card { width: 300px; height: 160px; }
.silver-tier .sponsor-card { width: 250px; height: 140px; }
.supporters-tier .sponsor-card { width: 200px; height: 120px; }

.sponsor-card img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
}

/* Fix per loghi bianchi su sfondo scuro (es. Colognesi) */
.sponsor-card.dark-bg {
    background-color: #363634;
}

/* Mobile */
@media (max-width: 768px) {
    .sponsor-card {
        width: 100% !important;
        max-width: 300px;
    }
}

/*documenti */ 

.documenti-sec {
    padding: 80px 0;
    background-color: #f4f4f4;
}

.docs-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.doc-card {
    background: #fff;
    display: flex;
    align-items: center;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-left: 5px solid #e31e24; /* Il rosso Pozzuolo */
    transition: transform 0.3s;
}

.doc-card:hover {
    transform: scale(1.01);
}

.doc-icon {
    flex: 0 0 80px;
    font-size: 50px;
    color: #e31e24;
    display: flex;
    justify-content: center;
}

.doc-info {
    flex: 1;
    padding: 0 30px;
}

.doc-title {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #333;
}

.doc-desc {
    font-size: 15px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.4;
}

.doc-contact span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #999;
}

.doc-contact a {
    color: #e31e24;
    font-weight: bold;
    text-decoration: none;
}

/* Pulsanti */
.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1a1a1a;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
    transition: 0.3s;
}

.btn-download:hover {
    background: #e31e24;
}

.btn-link {
    background: #555;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .doc-card {
        flex-direction: column;
        text-align: center;
    }
    .doc-info {
        padding: 20px 0;
    }
    .doc-icon {
        margin-bottom: 10px;
    }
}

/* news */ 
.news-grid-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.news-cubotto {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.news-cubotto:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.news-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-thumb {
    position: relative;
    height: 200px;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e31e24; /* Rosso Pozzuolo */
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 3px;
}

.news-body {
    padding: 20px;
}

.news-body h3 {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 800;
    text-transform: uppercase;
}

.news-body p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    font-size: 13px;
    font-weight: bold;
    color: #e31e24;
    text-transform: uppercase;
}

/* struttura */
.struct-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
}

.struct-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.struct-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.struct-card .multi-img {
    display: flex;
    height: 250px;
}
.struct-card .multi-img img {
    width: 50%;
}

.struct-info {
    padding: 20px;
}

.struct-info h4 {
    color: #e31e24; /* Rosso sociale */
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 10px;
    font-size: 18px;
}

.struct-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .struct-grid {
        grid-template-columns: 1fr;
    }
}

/* 404 */
.not-found-img {
    display: block;
    margin: 0 auto;
    max-height: 500px; /* Evita che l'immagine diventi gigantesca su schermi grandi */
    object-fit: contain;
}

/* prima squadra*/
/* --- GRIGLIA SQUADRA --- */
.ruolo-title {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    color: #1a1a1a;
    border-left: 6px solid #e31e24;
    padding-left: 20px;
    margin-bottom: 40px;
}

.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
}

.player-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.player-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(227, 30, 36, 0.15);
}

.player-img-box {
    position: relative;
    height: 280px;
    background: #eee;
}

.player-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.5s;
}

.player-card:hover .player-img-box img {
    filter: grayscale(0%);
}

.player-number {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #e31e24;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    padding: 10px 15px;
    border-radius: 8px 0 0 0;
}

.player-meta {
    padding: 15px;
    text-align: center;
}

.player-meta h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
}

/* --- SEZIONE STAFF --- */
.staff-footer-sec {
    background: #111;
    color: #fff;
    padding: 80px 0;
}

.staff-main-title {
    text-align: center;
    color: #e31e24;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 50px;
}

.staff-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.staff-item {
    text-align: center;
    max-width: 200px;
}

.staff-thumb img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #e31e24;
    margin-bottom: 15px;
    object-fit: cover;
}

.staff-info h5 {
    font-size: 18px;
    margin-bottom: 5px;
}

.staff-info span {
    color: #e31e24;
    font-weight: bold;
    font-size: 13px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .players-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
    .player-img-box { height: 200px; }
}

/* settore giovanile */ 

/* --- LAYOUT GENERALE --- */
.giovanili-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.categoria-card {
    background: #fdfdfd;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.categoria-card:hover {
    transform: translateY(-10px);
}

.cat-img {
    position: relative;
    height: 220px;
}

.cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    padding: 10px 20px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 14px;
}

.cat-content {
    padding: 25px;
}

.cat-content h4 {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.cat-actions {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.btn-tc {
    display: inline-block;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
}

.btn-tc:hover {
    text-decoration: underline;
}

/* --- STILI SPECIFICI PER MACRO-BLOCCHI --- */

/* 1. AGONISTICA (Rosso e Nero) */
.agonistica-section .macro-title {
    color: #1a1a1a;
}

.card-agonistica {
    border-bottom: 5px solid #e31e24; /* Rosso sociale */
}

.card-agonistica .cat-badge {
    background: #e31e24;
}

.card-agonistica .cat-content h4,
.card-agonistica .btn-tc {
    color: #e31e24;
}

/* 2. SCUOLA CALCIO (Un colore più "bambino" o differente - es. Oro o Grigio scuro) */
.scuola-section .macro-title {
    color: #555; /* Un grigio più morbido */
}

.scuola-section .macro-header hr {
    background: #AAA100; /* Oro/Verde lime (come il frame-wrap iframe) */
}

.card-scuola {
    border-bottom: 5px solid #AAA100; /* Colore differente */
}

.card-scuola .cat-badge {
    background: #AAA100;
}

.card-scuola .cat-content h4,
.card-scuola .btn-tc {
    color: #AAA100;
}

/* Responsività */
@media (max-width: 768px) {
    .giovanili-grid {
        grid-template-columns: 1fr;
    }
}

/* Modifica dinamica della linea di separazione per la scuola calcio */
.scuola-section .sep-line {
    background: #AAA100 !important;
}

/* Rendi il testo dei pulsanti un po' più evidente */
.btn-tc {
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.btn-tc:hover {
    padding-left: 5px; /* Effetto movimento al passaggio del mouse */
}

.categoria-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.categoria-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.categoria-card a:focus {
    outline: none;
}

/* Evitiamo che il link di Tuttocampo venga influenzato dal clic del box */
.cat-actions a {
    position: relative;
    z-index: 10;
}

/* Effetti Hover */
.categoria-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
}

.categoria-card img {
    transition: transform 0.6s ease;
}

.categoria-card:hover img {
    transform: scale(1.1);
}

/* Colore Oro/Lime per la Scuola Calcio */
.scuola-section .sep-line {
    background: #AAA100 !important;
}

.card-scuola {
    border-bottom: 4px solid #AAA100;
}

/* Colore Rosso per l'Agonistica */
.card-agonistica {
    border-bottom: 4px solid #e31e24;
}

/* Lightbox Customization */
.lb-outerContainer { border-radius: 10px; overflow: hidden; }
.lb-caption { font-weight: 800; text-transform: uppercase; font-size: 16px !important; }

.cat-link-box:hover .cat-img-container {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15) !important;
}

.cat-link-box:hover img {
    transform: scale(1.1);
}

.cat-link-box:hover .img-hover-overlay {
    opacity: 1 !important;
}

/* Colori titoli sezioni */
.agonistica-section h2 { border-left: 5px solid #e31e24; padding-left: 15px; }
.scuola-section h2 { border-left: 5px solid #AAA100; padding-left: 15px; }

/* Lightbox: rendiamo il testo dell'immagine (didascalia) più grande */
.lb-caption {
    font-size: 18px !important;
    font-weight: 900 !important;
    text-transform: uppercase;
}