@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');
/*------------------------------------------------------------------
[Table of contents]

1.  Template default CSS
	1.1	Variables
	1.2	Mixins
	1.3	Flexbox
	1.4	Reset
2.  Helper Css
3.  Header Section
4.  Hero Section
5.  Services Section
6.  Track Section
7.  Countdown Section
8.  Team Section
9.  Contact
10.  Footer Style
-------------------------------------------------------------------*/

/*----------------------------------------*/

/* Template default CSS
/*----------------------------------------*/

html,
body {
	height: 100%;
	font-family: "Now Regular";
	-webkit-font-smoothing: antialiased;
	max-width: 100%;

 
}

h1,
h2
h4,
h6 {
	margin: 0;
	color: #111111;
	font-weight: 400;
	font-family: "Rajdhani", sans-serif;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 36px;
}

h4 {
	font-size: 24px;
}

h6 {
	font-size: 16px;
}

p {
	font-size: 15px;
	font-family: "Now Regular";
	color: #444444;
	font-weight: 400;
	line-height: 26px;
	margin: 0 0 15px 0;
}

img {
	max-width: 100%;
}



button:focus {
	outline: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
	color: #ffffff;
}

ul {
	padding: 0;
	margin: 0;
}


/*---------------------
  Helper CSS
-----------------------*/
.font-skrzypek{
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	letter-spacing: 6px;
}


.section-title {
	margin-bottom: 40px;
	position: relative;
	z-index: 1;
}

.section-title h2 {
	font-size: 42px;
	color: #111111;
	font-weight: 700;
	text-transform: uppercase;
}

.section-title h1 {
	font-size: 100px;
	color: #f2f2f2;
	font-family: "Rockville Solid Regular";
	position: absolute;
	left: 0;
	top: -45px;
	width: 100%;
	z-index: -1;
}

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}

.spad {
	padding-top: 100px;
	padding-bottom: 100px;
}

/* buttons */

.primary-btn {
	display: inline-block;
	font-size: 15px;
	text-transform: uppercase;
	padding: 14px 25px 12px;
	color: #ffffff;
	background: #191919;
	letter-spacing: 2px;
}

.primary-btn.border-btn {
	background: transparent;
	border: 2px solid #191919;
	color: hsl(0, 0%, 10%);
}

/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #000;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

/*---------------------
  Header
-----------------------*/

.header__right__social {
	display: inline-block;
}

.header__right__social a {
	display: inline-block;
	font-size: 16px;
	color: #ffffff;
	margin-right: 16px;
}

.header__right__social a:last-child {
	margin-right: 0;
}

/*---------------------
  Hero background-color: #000;  pt-4 pr-5 mt-5 mr-5
-----------------------*/
.hero-font{
	font-family: "DM Serif Display", serif !important;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 2px;
	font-size: 5.5rem;	
}
.font-sd{
	font-family: "DM Serif Display", serif !important;	
}
.hero__text {
	text-align: center;
	margin-bottom: 4rem;
}
.hero {
	position: relative;
}

.hero-flex{
	justify-content: center;
	align-items: end;
}

.hero__text span {
	padding-top: 1rem;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 6px;
	font-weight: 600;	
}

.hero__text p {
	color: #ffffff;
	margin-bottom: 20px;
	padding-left: 1rem;

}

.linear__icon {
	position: absolute;
	left: 50%;
	bottom: 0;
	margin-left: -16px;
	-webkit-animation: mymove 1.3s infinite alternate;
	animation: mymove 1.3s infinite alternate;
}

.linear__icon i {
	font-size: 40px;
	color: #191919;
}

@-webkit-keyframes mymove {
	0% {
		bottom: 35px;
	}
	100% {
		bottom: -10px;
	}
}

@keyframes mymove {
	0% {
		bottom: 35px;
	}
	100% {
		bottom: -10px;
	}
}

/*---------------------
  Events
-----------------------*/

.event {
	padding-bottom: 60px;
}

.event .section-title {
	margin-bottom: 10px;
	position: relative;
}

.event .section-title:after {
	position: absolute;
	right: 46px;
	top: 25px;
	height: 2px;
	width: 775px;
	background: rgba(225, 225, 225, 0.3);
	content: "";
	z-index: -1;
}

.event__slider .col-lg-4,
.event__slider .col-lg-3 {
	max-width: 100%;

}

.event__slider.owl-carousel .owl-stage-outer {
	padding-top: 30px;
	padding-bottom: 40px;
}

.event__slider.owl-carousel .owl-nav {
	position: absolute;
	right: 15px;
	top: -50px;
}

.event__slider.owl-carousel .owl-nav button {
	font-size: 22px;
	color: #111111;
	opacity: 0.5;
	margin-right: 10px;
}

.event__slider.owl-carousel .owl-nav button:last-child {
	margin-right: 0;
}

.event__item {
	-webkit-box-shadow: 0px 3px 15px rgba(22, 41, 124, 0.1);
	box-shadow: 0px 3px 15px rgba(22, 41, 124, 0.1);
	display: flex;
	flex-direction: column;
	min-width: 18rem;
}

.event__item__pic {
	height: 15rem;
	position: relative;
}



.event__item__text {
	text-align: center;
	padding: 45px 10px 25px;
}

.event__item__text h4 {
	font-family: 'DM Serif Display', serif;
	font-size: 26px;
	font-weight: 700;
	color: #111111;
	margin-bottom: 10px;
}

.event__item__text p {
	color: #3d3d3d;
	margin-bottom: 0;
	font-size: 1.2rem;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.event__item__text p i {
	color: #191919;
	margin-right: 8px;
	font-size: 17px;
}

/*---------------------
  Track
-----------------------*/

.track {
	padding-top: 120px;
	padding-bottom: 40px;
	overflow: hidden;
}

.track .section-title {
	margin-bottom: 105px;
}

.track__content {
	height: 40rem;
	overflow-y: auto;
}

.track__all {
	text-align: right;
	margin-bottom: 100px;
}



.single_player_container {
	overflow: hidden;
	margin-bottom: 40px;
}

.single_player_container:last-child {
	margin-bottom: 0;
}


/*---------------------
  Youtube
-----------------------*/

.youtube {
	padding-bottom: 50px;
}

.youtube .section-title {
	text-align: center;
}

.youtube__item {
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
	margin-bottom: 30px;
}

.youtube__item:hover {
	-webkit-box-shadow: 0px 3px 30px rgba(22, 41, 124, 0.1);
	box-shadow: 0px 3px 30px rgba(22, 41, 124, 0.1);
}

.youtube__item__pic {
	height: 240px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.youtube__item__pic .play-btn {
	font-size: 16px;
	color: #191919;
	height: 60px;
	width: 60px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	display: inline-block;
	line-height: 60px;
	text-align: center;
	position: relative;
	z-index: 1;
}

.youtube__item__pic .play-btn i {
	position: relative;
	top: 2px;
	left: 2px;
}

.youtube__item__pic .play-btn:after {
	position: absolute;
	left: 10px;
	top: 10px;
	height: 40px;
	width: 40px;
	background: #ffffff;
	border-radius: 50%;
	content: "";
	z-index: -1;
}

.youtube__item__text {
	padding: 25px 30px 20px 20px;
	background: #ffffff;
}

.youtube__item__text h4 {
	font-family: 'DM Serif Display', serif;
	font-size: 26px;
	color: #111111;
	line-height: 34px;
	font-weight: 300;
}



/*---------------------
  Discography
-----------------------*/

/*---------------------
  Footer
-----------------------*/

.footer__address {
	margin-bottom: 50px;
}

.footer__address ul li {
	list-style: none;
	padding-left: 70px;
	position: relative;
	margin-bottom: 30px;
}

.footer__address ul li:last-child {
	margin-bottom: 0;
}

.footer__address ul li i {
	font-size: 18px;
	color: #191919;
	height: 50px;
	width: 50px;
	background: #ffffff;
	border-radius: 50%;
	line-height: 50px;
	text-align: center;
	position: absolute;
	left: 0;
	top: 0;
}

.footer__address ul li p {
	color: #ffffff;
	opacity: 0.7;
	margin-bottom: 8px;
}

.footer__address ul li h6 {
	font-size: 15px;
	font-weight: 700;
	color: #ffffff;
}

.footer__social {
	text-align: center;
	position: relative;
	margin-bottom: 50px;
}

.footer__social::before {
	position: absolute;
	left: -46px;
	top: 3px;
	width: 1px;
	height: 130px;
	background: rgba(255, 255, 255, 0.2);
	content: "";
}

.footer__social::after {
	position: absolute;
	right: -50px;
	top: 3px;
	width: 1px;
	height: 130px;
	background: rgba(255, 255, 255, 0.2);
	content: "";
}

.footer__social h2 {
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 25px;
}

.footer__social .footer__social__links a {
	font-size: 18px;
	color: #191919;
	height: 50px;
	width: 50px;
	background: #ffffff;
	border-radius: 50%;
	line-height: 50px;
	text-align: center;
	display: inline-block;
	margin-right: 10px;
}

.footer__social .footer__social__links a:last-child {
	margin-right: 0;
}

.footer__copyright__text {
	text-align: center;
}

.footer__copyright__text p {
	color: #999999;
}

/*---------------------
  Breadcrumb
-----------------------*/

/*---------------------
  About
-----------------------*/

.about {
	padding-top: 0;
}

.about__text {
	padding-top: 110px;
}

.about__text p {
	
	margin-bottom: 35px;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}

/*---------------------
  Skills
-----------------------*/

/*---------------------
  About Pic
-----------------------*/

/*---------------------
  About Services
-----------------------*/

/*---------------------
  Feature
-----------------------*/

/*---------------------
  Services
-----------------------*/

.services {
	overflow: hidden;
}

.services__list {
	margin: 0;
}

.service__item {
	background: #191919;
	height: 320px;
	padding: 70px 40px 40px 70px;
}

.service__item.deep-bg {
	background: #242424;
}

.service__item h4 {
	font-family: 'DM Serif Display', serif;
	font-size: 26px;
	color: #ffffff;
	font-weight: 700;
	margin-top: 25px;
	margin-bottom: 10px;
}

.service__item p {
	color: #ffffff;
	margin-bottom: 0;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}


/*---------------------
  Videos
-----------------------*/




/*---------------------
  Contact
-----------------------*/
p{
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	padding: 0.5rem;

}
	.gray-200{
		color:#3b3b3b;
		background-color: #242424;
	}

.bio{
	padding: 0 0;
	margin: 0 0;
	font-size: 1.1rem;
	line-height: 1.9rem;
}
.font-logo{
	font-size: 1.9rem !important;
}

.footer__address a{
	text-decoration: none;
	color: #fff;
}

.hero {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-image: url('../img/hero-bg.webp') !important;
}
.hero-name {
	display: inline;
  }


  .event__item__pic-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* This creates a square container */

}

.event__item__pic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.event__item a{
	text-decoration: none;
}
.tag-date {
	position: absolute;
	left: 0;
	bottom: -31px;
	width: 100%;
	text-align: center;
	display: flex;
	justify-content: center;
}

.tag-date span {
	font-size: 1rem;
	letter-spacing: 1px;
	color: #ffffff;
	display: inline-block;
	background: #191919;
	padding: 10px;
}

.album-cover img {
    max-height: 300px;
    object-fit: cover;
}

.list-group-item {
    border: none;
    padding: 15px 20px;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}

.list-group-item:hover {
    background-color: #f8f9fa;
}

.list-group-item button {
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.list-group-item button:hover {
    background-color: #007bff;
    transform: scale(1.1);
}
.btn-play-track{
	background-color: #242424 !important;
	color: #fff !important;
}


/*--------	 slajder------------- */

/*--------	 slajder------------- */

.bg-dark{
	background-color: #242424 !important;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}
.border-red{
	border: 1px solid red !important;
  }
.swiper-slide {
  background-size: cover;
  background-position: center;
}

.mySwiper2 {
  height: 80%;
  width: 100%;
}

.mySwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.language-switcher {
	display: flex;
	align-items: center;
	gap: 10px;
  }
  
  .language-switcher .current-language img {
	width: 2.5rem;
	height: auto;
	border-radius: 50%;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  }
  
  .language-switcher select {
	padding: 5px 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	background-color: #f9f9f9;
	font-size: 14px;
  }
  


  .language-switcher button {
	padding: 5px 10px;
	border: none;
	border-radius: 5px;
	background-color: #7c8185;
	color: white;
	font-size: 14px;
	cursor: pointer;
	transition: background-color 0.3s;
  }
  
  .language-switcher button:hover {
	background-color: #0056b3;
  }
  .language-selector option img {
  width: 20px;
  height: 14px;
  margin-right: 5px;
}
@media (max-width: 768px) {
	.hero {
	background-image: url('../img/hero-bg-mobile.webp') !important;
	}
	.hero-name {
	display: block;
	}  

	.hero-flex{
		min-height: 75vh;
	justify-content: center;
	align-items: end;
	gap: 0 !important;
	 
	}

	.hero__text span {
		color: #ffffff;
		text-transform: uppercase;
		letter-spacing: 1.25px;
		font-weight: 600;	
		font-size: .75rem !important;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
		margin-top: 0!important;
		margin-bottom: 0!important;
	}

	.hero__text p {
		color: #ffffff;
		letter-spacing: 1px;
	}  

}

/*--------------------------------- Responsive Media Quaries -----------------------------*/

@media only screen and (min-width: 1200px) {
	.container {
		max-width: 1170px;
	}
	.navbar-collapse{
		display: flex;
		justify-content: space-between;
	}

}

/* Medium Device = 1200px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	

	.service__item {
		padding: 40px 30px 30px 40px;
	}
	.navbar-collapse{
		display: flex;
		justify-content: space-between;
	}	
}

/* Tablet Device = 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {

	.header__right__social {
		display: none;
	}
	.event .section-title:after {
		width: 560px;
	}
	.track__all {
		text-align: left;
		margin-bottom: 60px;
	}
	.track__content {
		margin-bottom: 120px;
	
	}
	.track__pic img {
		height: auto;
	}
	.footer__social::before {
		display: none;
	}
	.footer__social::after {
		display: none;
	}
	.header__right__social{
		padding-top: .75rem;
	}
}

/* Wide Mobile = 480px */

@media only screen and (max-width: 767px) {

	.hero-font{
		font-size: 3rem !important;	
	}
	
	.event .section-title:after {
		display: none;
	}
	.track__all {
		text-align: left;
		margin-bottom: 60px;
	}
	.track__content {
		margin-bottom: 120px;
	}
	.track .p-0 {
		padding: 0 15px !important;
	}
	.track__pic img {
		height: auto;
	}
	.footer__social::before {
		display: none;
	}
	.footer__social::after {
		display: none;
	}
	.footer__social {
		text-align: left;
	}
	.service__item {
		height: auto;
	}
	.header__right__social{
		padding-top: .75rem;
	}	
}

