/*	Table OF Contents
==========================
1-General Styles
2-Navigation
3-Audio Player
4-Social Fonts
5-Albums
6-Breadcrumb
7-Home-Slider
8-Latest News,events,videos
9-Artist
10-photo gallery
11-blog
12-Upcomming Events
13-Sidebar
14-Contact
15-Footer
16-Responsive

/* =========================
   1-Genral
   ========================*/
:root {
	--primary-color: #e62948;
	--border-color1: #1295dc;
	--text-color: #333;
	--background-color: #f4f4f4;
	--text-color: #061522;
}

.loader {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: rgba(255, 255, 255, 0.7);
	display: none;
}
body {
	font-family: 'Roboto', sans-serif;
	color: #fff;
	background: #ffffff;
}
a{
	outline:none !important;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Oswald', sans-serif;
}


/* =========================
   7-Home-Slider
   ========================*/
#home-slider {
	position: relative;
}

.slider-nav {
	position: absolute;
	bottom: 52px;
	left: 20px;
	z-index: 999;
}
#homeSliderNav {
	display: none;
}
.flexslider .slides > li {
	position: relative;
}
.flex-caption {
	position: absolute;
	max-width: 435px;
	bottom: 52px;
	left: 115px;
	border-right: 4px solid #1aa1ea;
	display: none;
}
.flex-caption h2 {
	margin: 0;
	padding: 0;
	line-height: 40px;
	text-transform: uppercase;
	padding: 14px;
	font-size: 20px;
	color: #fff;
	background: rgba(0,0,0,.3)
}
.flex-caption h2 {
	border-radius: 10px;
}
.home-inner {
	position: relative;
	margin-bottom: 0px;
	overflow:hidden;
	height: 100%;
	background-position: center !important;
	margin:0;
}
.slider-nav a {
	display: inline-block;
	outline: none;
	background: #000000;
	opacity: .5;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	filter: alpha(opacity=50);
	-moz-opacity: .5;
	-khtml-opacity: .5;
	width: 55px;
	height: 55px;
	line-height: 55px;
	text-align: center;
	color: #fff;
	font-size: 16px;
	text-decoration: none;
	border-radius: 50px;
}

.container-fluid {
	margin: 0 auto !important;
	padding: 0;
}

.slides li img{
	margin: 0 auto;
	width: 100%;
	height: 90vh;
	object-fit: cover;
	filter: brightness(0.8);
}

.slides li img:hover {
	filter: brightness(1)
}

.partner-slider {
	display: flex;
	width: 100% !important;
	justify-content:space-evenly;
	overflow: hidden;
}

.partner-slider .marquee-content {
	display: inline;
}

.partner-slider img {
	max-width: 130px;
	padding: 5px;
	margin: 10px;
	transition: all 0.3s ease-in-out;
	border: 1px solid var(--border-color1) !important;
}

.partner-slider img:hover {
	scale: 1.2;
}

/* CSS marquee-like Scrolling Effect */

 .marquee-container {
		padding: 0;
        width: 100%;
        overflow: hidden;
        white-space: nowrap; /* Important for single-line content */
    }

    .marquee-content {
        display: inline-block; /* Or flex for more complex layouts */
        animation: scroll-left 35s linear infinite; /* Adjust duration as needed */
    }

    .marquee-content span img {
        max-width: 150px; /* Adjust based on your design */
        padding: 5px;
        margin: 8px; /* Adjust spacing between images */
        height: auto;
        transition: all 0.3s ease-in-out;
        border-radius: 10px; /* Optional: for rounded corners */
        border: 1px solid var(--border-color1) !important;
    }

    .marquee-content span img:hover {
        scale: 1.2; /* Scale on hover */
    }

    @keyframes scroll-left {
        from {
            transform: translateX(0%);
        }
        to {
            transform: translateX(-50%); /* Adjust based on content duplication */
        }
    }

	/* Area CSS*/

.choose-area p {
	font-size: 16px;
	color: var(--text-color);
	margin-bottom: 20px;
}

.livetv-area p {
	font-size: 36px;
	color: var(--text-color);
	margin-bottom: 20px;
}


/* =========================
   16-Responsive
   ========================*/


/* Large desktop */
@media (min-width: 1200px) {
.track div {
	font-size: 16px;
}
.track .track_title {
	min-width: 250px;
}
.navbar-nav > li > a {
	padding-left: 13px;
	padding-right: 13px;
}
.flex-caption {
	left: 134px;
	border-right: none;
	border-left: 6px solid #e62948;	
}
.slider-nav {
	position: absolute;
	bottom: 52px;
	left: 50%;
	z-index: 999;
}
#leave-comment {
	max-width: 89.9%;
}
}

/* Landscape phone to portrait tablet */
@media (max-width: 800px) {
.collapse {
	width: 50% !important;
}	
.nav-item a {
    font-size: 16px !important;
}
.flex-caption {
	left: auto;
	border-right: none;
	border-left: none;
	border-bottom: 1px solid #2997e6;
	bottom: 0;
	position: relative;
	display: none;
	max-width: 100%;
	text-align: center;
}
.flex-caption h2 {
	width: 45px;
	height: 45px;
	font-size: 15px;
	line-height: 15px;
}
.slider-nav {
	bottom: 3%;
	left: 2%;
}
.slider-nav a {
	border-bottom: 1px solid #e62948;
}

.home-inner {
	position: relative;
	margin-bottom: 0px;
	overflow:hidden;
}
.slides li img{
	height: 80vh;
}

}

@media (max-width: 767px) {
.container{
	width:100% !important;
	height:auto;
}
}


