<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

        .carousel-container {
	width: 100%;
	overflow: hidden;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.carousel {
	display: flex;
	gap: 20px;
	/*transition: transform 0.3s ease-in-out;*/
	scroll-snap-type: x mandatory;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	scroll-behavior: smooth;
	padding: 20px 0 0 0;
	margin-bottom:30px;
	white-space: nowrap;
}
 .carousel::-webkit-scrollbar {
 display: none;
}
.carousel a {
	font-family: 'Aeonik';
	font-weight:bold;
	font-size:72px;
	line-height:72px;
	/*min-width: 150px;*/
            text-align: center;
	background: none;
	/*color: #DEDEDE;*/
	color: #9f9f9f;
	padding: 15px 40px;
	margin: 10px;
	text-decoration: none;
	border-radius: 5px;
	transition: transform 0.3s, opacity 0.3s;
	opacity: 0.5;
	scroll-snap-align: center;
	cursor: pointer;
	display: inline-block;
}
.carousel a:hover {
	color:#E84626;
	opacity: 1;
}
.carousel a.active {
	transform: scale(1.1);
	opacity: 1;
	color:#E84626;
}
 
	

		
	/*for scorll bar*/
	
	
 .carousel {
      width: 100%;
  /*    max-width: 500px;*/
      overflow-x: auto;
      overflow-y: hidden;
      white-space: nowrap;
      
      scrollbar-width: thin;                 /* Firefox */
      scrollbar-color: #fff #DEDEDE;         /* Firefox */
    }

    .carousel::-webkit-scrollbar {
      height: 10px; /* Height for horizontal scrollbar */
    }

    .carousel::-webkit-scrollbar-track {
      background: #E84626;
    }

    .carousel::-webkit-scrollbar-thumb {
      background: #fff;
      border-radius: 4px;
    }

    .carousel::-webkit-scrollbar-thumb:hover {
      background:#00f !important;
    }

 



@media (min-width: 992px) and (max-width: 1199px) {
	
	 .carousel a {
 font-family: 'Aeonik';
 font-weight:bold;
 font-size:48px;
 line-height:48px;
	 }
	
}


 @media (min-width: 768px) and (max-width: 991px) {
 .carousel a {
 font-family: 'Aeonik';
 font-weight:bold;
 font-size:40px;
 line-height:40px;
	/*min-width: 150px;*/
            text-align: center;
 background: none;
	/*color: #DEDEDE;*/
	color: #9f9f9f;
 padding: 15px 15px;
 margin: 10px;
 text-decoration: none;
 border-radius: 5px;
 transition: transform 0.3s, opacity 0.3s;
 opacity: 0.5;
 scroll-snap-align: center;
 cursor: pointer;
 display: inline-block;
}
 .carousel a:hover {
 color:#E84626;
 opacity: 1;
}
 .carousel a.active {
 transform: scale(1.1);
 opacity: 1;
 color:#E84626;
}
}
 @media (max-width: 767px) {
 .carousel a {
 font-size:20px;
 line-height:20px;
 padding:15px 15px;
 margin:10px 0;
}
}

 @media (max-width: 414px) {
 .carousel a {
 font-size:18px;
 line-height:18px;
 padding:15px 10px;
 margin:10px 0;
}
}



/* Portrait i phones and smaller */
@media (max-width: 380px) {
	
	 .carousel a {
 font-size:18px;
 line-height:18px;
 padding:15px 5px;
 margin:10px 0;
}
	
	
}
</pre></body></html>