@font-face {
	font-family: 'COM4tFineRegular';
	src: url('../fonts/COM4tFineRegular.eot');
	src: url('../fonts/COM4tFineRegular.eot') format('embedded-opentype'),
		url('../fonts/COM4tFineRegular.woff') format('woff'),
		url('../fonts/COM4tFineRegular.ttf') format('truetype'),
		url('../fonts/COM4tFineRegular.svg#COM4tFineRegular') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}


@font-face {
	font-family: 'Roboto-Light';
	src: url('../fonts/Roboto-Light.eot');
	src: url('../fonts/Roboto-Light.eot') format('embedded-opentype'),
		url('../fonts/Roboto-Light.woff') format('woff'),
		url('../fonts/Roboto-Light.ttf') format('truetype'),
		url('../fonts/Roboto-Light.svg#Roboto-Light') format('svg');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Roboto-Regular';
	src: url('../fonts/Roboto-Regular.eot');
	src: url('../fonts/Roboto-Regular.eot') format('embedded-opentype'),
		url('../fonts/Roboto-Regular.woff') format('woff'),
		url('../fonts/Roboto-Regular.ttf') format('truetype'),
		url('../fonts/Roboto-Regular.svg#Roboto-Regular') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Roboto-Bold';
	src: url('../fonts/Roboto-Bold.eot');
	src: url('../fonts/Roboto-Bold.eot') format('embedded-opentype'),
		url('../fonts/Roboto-Bold.woff') format('woff'),
		url('../fonts/Roboto-Bold.ttf') format('truetype'),
		url('../fonts/Roboto-Bold.svg#Roboto-Bold') format('svg');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'GESSTwoBold-Bold';
	src: url('../fonts/GESSTwoBold-Bold.eot');
	src: url('../fonts/GESSTwoBold-Bold.eot') format('embedded-opentype'),
		url('../fonts/GESSTwoBold-Bold.woff') format('woff'),
		url('../fonts/GESSTwoBold-Bold.ttf') format('truetype'),
		url('../fonts/GESSTwoBold-Bold.svg#GESSTwoBold-Bold') format('svg');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}


body {
	position: relative;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	height: 100%;
	overflow-x: hidden;
}

header {
	position: fixed;
	width: 100%;
	display: flex;
	top: 0;
	background-color: transparent;
	padding: 3vh 0 1vh 0;
	z-index: 99;
	transition: transform 0.4s, background-color 0.4s;
}

header.sticky {
	/* background-color: rgba(133, 82, 19, 0.5); */
	background-color: #0b152b;
	transition: background-color 0.4s;
}

.scroll-down header.sticky {
	transform: translate3d(0, -100%, 0);
	transition: transform 0.4s;
}

.scroll-up header.sticky {
	transform: none;
	transition: transform 0.4s;
}

/* nav styles */
.navbar {
	padding: 0;
}

.navbar-logo {
	width: 200px;
}

.navbar-nav .nav-item {
	margin-right: 12px
}

.navbar-nav {
	text-align: right;
}

.navbar-expand-sm .navbar-nav .nav-link {
	padding: 0 2px;
}

.navbar-expand-lg .navbar-collapse {
	justify-content: flex-end;
}

.navbar-light .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-light .navbar-toggler {
	color: rgba(0, 0, 0, .5);
	border-color: rgba(255, 255, 255, 1);
}

.bg-light {
	background-color: transparent !important;
}

.navbar-light .navbar-nav .nav-link {
	position: relative;
	font-family: 'COM4tFineRegular';
	color: #fff;
	font-size: 18px;
	line-height: 25px;
	text-transform: uppercase;
	background-color: transparent;
	text-shadow: none;
	will-change: text-shadow;
	transition: text-shadow .35s cubic-bezier(0.23, 1, 0.320, 1);
	padding: 0;
}

.navbar-light .navbar-nav .nav-link {
	padding-right: 0;
	padding-left: 0;
	margin-right: 0.5rem;
	margin-left: 0.5rem;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .dropdown-item:hover {
	/*    text-shadow: 0 0 0px #fff, 0 0 0px #fff, 0 0 0px #fff, 0 0 0px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 20px #fff;*/
	color: #ebc95b;
	background-color: transparent;
}

.navbar-light .navbar-nav .nav-link::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 3px;
	bottom: -2px;
	left: 0;
	background-color: #ebc95b;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .35s ease-in-out;
}

.navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link.active::before,
.navbar-light .navbar-nav .nav-item.active::before,
.navbar-light .navbar-nav .dropdown-menu::before {
	transform: scaleX(1);
	transform-origin: left;
	transition: transform .35s ease-in-out;
}


.navbar-light .navbar-nav .dropdown-menu {
	border: 0;
	visibility: hidden;
	height: 0;
	opacity: 0;
	overflow: hidden;
	display: block;
	transition: all .35s ease-in-out;
	background-color: #0b152b;
	padding: 5px 10px 0px 0px;

}

.navbar-light .navbar-nav .dropdown:hover>.dropdown-menu {
	visibility: visible;
	opacity: 1;
	height: auto;
	transition: all .35s ease-in-out;
}

.navbar-light .navbar-nav .nav-item .dropdown-item {
	color: #fff;
	width: fit-content;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	margin-bottom: 10px;
}

/*header social icons*/
.fixed-warpper {
	position: fixed;
	top: 40%;
	left: 0;
	right: 0px;
	z-index: 9;
}

.header-social-icons-container {
	position: relative;
	max-width: 1150px;
	float: none;
	margin: 0 auto;
}

.header-social-icons {
	position: absolute;
	top: 30px;
	right: -60px;
	z-index: 20;
}

.header-social-icons svg {
	width: 30px;
	height: 30px;
	display: block;
	fill: #fff;
	margin: 10px 7px 0px 7px;
}


.header-social-icons svg:hover {
	fill: #ebc95b;
}

.header-social-icons img:hover {
	filter: grayscale(1);
}

/*.anghami {padding: 0px 5px;}*/
.anghami:hover {
	content: url(../img/social/anghami-col.png);
}

.amazonmusic:hover {
	content: url(../img/social/amazonmusic-col.png);
}


/* home banner */
.home-top-section {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	background-image: url(../img/hesham-img.jpg);
	background-position: center top;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.home-banner-content {
	max-width: 100%;
}

.home-banner-content .row {
	position: absolute;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	max-width: 1140px;
	bottom: 5vh;
	z-index: 1;
}

.home-readmore button {
	border: solid 1px #a9a9a9;
	padding: 5px 25px;
	background-color: #fff;
	border-radius: 10px;
	font-family: 'Roboto-Bold';
	font-size: 16px;
	transition: all 0.5s;
}

.home-readmore button:hover {
	border: solid 1px #ebc95b;
	background-color: transparent;
	color: #ebc95b;
	transition: all 0.5s;
}

#audioimg {
	max-width: 300px;
	max-height: 100px;
}

.caption {
	color: #fff;
}

.caption h1 {
	font-family: 'Roboto-Bold';
	font-size: 32px;
	line-height: 32px;
}

.caption h5 {
	font-family: 'Roboto-Regular';
	font-size: 25px;
	line-height: 30px;
}

.caption p {
	font-family: 'Roboto-Light';
	font-size: 16px;
	line-height: 25px;
}



.player-social {
	display: flex;
	flex-direction: column;
	align-items: center;
	float: right;

}

.home-social svg#anghami,
.home-social svg#deezer {
	width: 35px;
	height: 35px;
	fill: #fff;
	transition: all 0.5s;
}

.home-social svg {
	width: 30px;
	height: 30px;
	fill: #fff;
	transition: all 0.5s;
}

.home-social svg:hover,
.home-social svg#anghami:hover,
.home-social svg#deezer:hover {
	fill: #ebc95b;
	transition: all 0.5s;
	/*	filter: drop-shadow(0px 4px 3px #fff);*/
	background-color: transparent;
}



/*About*/
/*
.home-about-section {
    position: relative;
    width: 100%;
	padding: 50px 0px 0px 0px;
 	background-image: url(../img/about-bg.jpg); 
	background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
	background-attachment: fixed;
	z-index: 10;
	color:#a9a9a9;
}
*/

.home-about-section {
	position: relative;
	width: 100%;
	padding: 50px 0px 0px 0px;
	background-image: url(../img/about-pattern1.png);
	background-repeat: repeat;
	background-attachment: fixed;
	z-index: 5;
	color: #a9a9a9;
	background-color: #060c18;
	animation: pattern_move 150s linear infinite;
}


@keyframes pattern_move {
	0% {
		background-position: 0 0;
	}

	100% {
		background-position: 2122px 0;
	}
}

.home-section-title h1 {
	font-family: 'COM4tFineRegular';
	color: #909193;
	font-size: 80px;
	line-height: 85px;
	text-transform: uppercase;
}

.home-about-text {
	margin-top: 10%;
}

.home-about-text p {
	font-family: 'Roboto-Light';
	font-size: 20px;
	line-height: 30px;
	margin-top: 30px;
	width: 90%;
}

.home-about-text .readmore {
	margin-top: 50px;
}

.home-about-text button {
	border: solid 1px #a9a9a9;
	padding: 5px 15px;
	background-color: transparent;
	border-radius: 15px;
}

.home-about-text button:hover {
	/* 	background-color: #ebc95b;*/
	color: #ebc95b;
	border: solid 1px #ebc95b;
}

.home-about-text button:hover a {
	color: #ebc95b;
}

.home-about-text button a {
	font-family: 'COM4tFineRegular';
	color: #a9a9a9;
	font-size: 18px;
	line-height: 25px;
	text-transform: uppercase;
}

.home-about-text button a:hover {
	color: #ebc95b;
	text-decoration: none;
}


/**** Works Swiper start***/
.works-section {
	padding: 50px 0px;
	z-index: 5;
	background-color: #000;
	position: relative;
}

.works-container {
	background-color: #000;
	padding: 20px 0px;
}

.works-img-text {
	text-align: center;
	margin-top: 15px;
	color: #fff;
}

.works-img-text h3 {
	font-size: 24px;
	line-height: 30px;
	font-family: 'COM4tFineRegular';
	text-transform: uppercase;
}

.works-img-text p {
	font-size: 14px;
	line-height: 16px;
	font-family: 'Roboto-Light';
	color: #8a8b8d;
}

.works-swipper .swiperHolder .scenesSlider .swiper-slide,
.works-swipper .swiperHolder .scenesSlider .swiper-slide img,
.works-swipper .swiperHolder .scenesSlider .swiper-slide.swiper-slide-active,
.works-swipper .scenesSlider .swiper-slide.swiper-slide-active img {
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}


.works-swipper {
	position: relative;
}

.works-swipper .scenesSlider {
	padding: 70px 0;
	margin: 0px;
}

.works-swipper .scenesSlider .swiper-slide img {
	width: 100%;
	opacity: 0.3;
}

.works-swipper .scenesSlider .swiper-slide .swiper-img {
	position: relative;
	background-color: #6c737a;
	border-radius: 10px;
	min-height: 210px;
	overflow: hidden;
}

.works-swipper .scenesSlider .swiper-slide .swiper-img .swiper-play {
	width: 20%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	opacity: 1;
}

.works-swipper .scenesSlider .swiper-slide .swiper-img .mainImg {
	transition: 1.5s;
}

.works-swipper .scenesSlider .swiper-slide .swiper-img:hover .mainImg {
	transform: scale(1.1);
	transition: 1.5s;
}

.works-swipper .scenesSlider .swiper-slide .swiper-img .swiper-play:hover {
	opacity: 0.6;
}

.works-swipper .scenesSlider .swiper-slide.swiper-slide-active {
	transform: scale(1.3);
	z-index: 1;
}

.works-swipper .scenesSlider .swiper-slide.swiper-slide-active img {
	opacity: 1;
}

.works-swipper .scenesSlider .swiper-slide .works-img-text {
	opacity: 0;
}

.works-swipper .scenesSlider .swiper-slide.swiper-slide-active .works-img-text {
	opacity: 1;
}

.works-swipper .scenesSliderNavs {
	margin: 0;
	transform: translateY(-50%);
	background-size: 27px 27px;
}

.works-swipper .scenesSliderNavs.swiper-button-prev {
	left: 27%;
	background-image: none;
	opacity: 0.5;
}

.works-swipper .scenesSliderNavs.swiper-button-next {
	right: 25.5%;
	background-image: none;
	opacity: 0.5;
}

.works-swipper .scenesSliderNavs.swiper-button-prev:hover {
	opacity: 1;
}

.works-swipper .scenesSliderNavs.swiper-button-next:hover {
	opacity: 1;
}

.works-swipper .scenesSliderNavs.swiper-button-prev:focus {
	outline-color: transparent;
}

.works-swipper .scenesSliderNavs.swiper-button-next:focus {
	outline-color: transparent;
}

.scenesSliderNavs img {
	width: 70%;
}

/**** works Swiper end***/

/*
.press-section {
	padding: 50px 0px 150px 0px;
	z-index: 10;
 	position: relative;
	background-image: url(../img/press-bg.jpg);
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #030811;
 }
*/

.press-section {
	padding: 50px 0px 150px 0px;
	z-index: 5;
	position: relative;
	background-image: url(../img/press-pattern.png);
	background-attachment: fixed;
	background-repeat: repeat-y;
	background-size: cover;
	background-color: #030811;
	animation: press_anim 200s linear infinite;
}

@keyframes press_anim {
	0% {
		background-position: 0 0;
	}

	100% {
		background-position: 0 -2122px;
	}
}

.press-maincontainer {
	display: flex;
	flex-wrap: nowrap;
	align-content: space-between;
	margin-top: 50px;
}

.modal-title {
	font-size: 15px;
	line-height: 16px;
	text-align: right;
}

.press-item {
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	justify-content: flex-start;
	width: 33%;
}

.press-item a:hover {
	text-decoration-color: #909193;
}

.press-image {
	width: 100%;
	height: 100%;
	max-height: 250px;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	margin: 20px 20px 10px 0;
}

.press-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	transition: all 0.7s;
}

.press-image:hover img {
	transform: scale(1.1);
	transition: all 0.7s;
}

.press-textsection {
	width: 95%;
	color: rgba(255, 255, 255, 0.8);
}

.press-textsection a {
	color: rgba(255, 255, 255, 0.8);
}

.press-textsection h3 {
	font-family: 'Roboto-Bold';
	font-size: 16px;
	line-height: 16px;
}

.press-textsection .arabictitle h3 {
	font-family: 'GESSTwoBold-Bold';
	font-size: 16px;
	line-height: 16px;
	text-align: right;
}

.press-textsection h6 {
	font-family: 'Roboto-Light';
	font-size: 14px;
	line-height: 18px;
}

.press-textsection p {
	font-family: 'Roboto-Light';
	font-size: 14px;
	line-height: 18px;
}

.press-section button {
	border: solid 1px #a9a9a9;
	padding: 5px 15px;
	background-color: transparent;
	border-radius: 15px;
	margin-top: 50px;
	float: right;
	margin-right: 15px;
}

.press-section button:hover {
	border: solid 1px #ebc95b;
}

.press-section button:hover a {
	color: #ebc95b;
}

.press-section button a {
	font-family: 'COM4tFineRegular';
	color: #a9a9a9;
	font-size: 18px;
	line-height: 25px;
	text-transform: uppercase;
}

.press-section button a:hover {
	color: #ebc95b;
	text-decoration: none;
}



/*Concerts*/
.concerts {
	padding: 50px 0px 0 0;
	z-index: 5;
	background-color: #060f21;
	position: relative;
	animation: pattern_move 150s linear infinite;

}

.concerts .row {
	margin-top: 40px;
}

.concerts2 {
	display: flex;
	flex-wrap: nowrap;
	align-content: space-between;
}

.concerts2:last-child {
	margin-top: 40px;
}

.concerts2 a:hover {
	text-decoration-color: #909193;
}

.concerts-img2 {
	max-width: 230px;
	width: 50%;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}

.concerts-img2 img {
	width: 100%;
	border-radius: 10px;
	transition: all 0.7s;
}

.concerts-img2:hover img {
	transform: scale(1.1);
	transition: all 0.7s;
}

.concerts-text {
	width: 50%;
	margin-left: 20px;
	color: rgba(255, 255, 255, 0.8);
}

.btn-concert {
	background-color: transparent;
	border: 1px solid #909193;
	border-radius: 10px;
	padding: 3px 15px;
	font-size: 14px;
	color: #909193;
	text-transform: uppercase;
}

.btn-concert:hover,
.btn-concert:focus {
	background-color: transparent;
	border: 1px solid #ebc95b;
	color: #ebc95b;
}

.concerts-text h3 {
	font-family: 'Roboto-Bold';
	font-size: 16px;
	line-height: 16px;
}

.concerts-text h6 {
	font-family: 'Roboto-Light';
	font-size: 14px;
	line-height: 18px;
}

.concerts-text p {
	font-family: 'Roboto-Light';
	font-size: 14px;
	line-height: 18px;
}


.concerts-container figure {
	position: relative;
	height: 350px;
	overflow: hidden;
	border-radius: 10px;
}


.concerts-container figure .concerts-img img {
	width: 100%;
	object-fit: contain;
	transition: all 0.7s;
}

.concerts-container figcaption {
	opacity: 0;
	position: absolute;
	top: 0px;
	bottom: 0px;
	width: 100%;
	height: 100%;
	z-index: 10;
	background-color: rgba(107, 107, 107, 0.5);
	padding: 5% 10%;
	text-align: center;
	transition: all 0.5s;
}

.concerts-container figure:hover figcaption {
	opacity: 1;
	transition: all 0.5s;
}

.concerts-container figure:hover img {
	transform: scale(1.1);
	transition: all 0.7s;
}

.concerts-container figure .hover-text {
	transform: translate(0, 50%);
	transition: all 1.5s;
}

.concerts-container figure:hover .hover-text {
	transform: translate(0, 0);
	transition: all 1.5s;
}


.concerts-container figcaption h3 {
	font-family: 'Roboto-Bold';
	font-size: 18px;
	line-height: 22px;
	color: rgba(255, 255, 255, 0.8);
	margin-top: 10%;
}

.concerts-container figcaption h6 {
	font-family: 'Roboto-Light';
	font-size: 14px;
	line-height: 18px;
	color: rgba(255, 255, 255, 0.8)
}

.concerts-container figcaption .showmore {
	position: absolute;
	bottom: 10%;
	left: 0px;
	right: 0px;
}

.concerts-container figcaption a {
	font-family: 'COM4tFineRegular';
	font-size: 14px;
	line-height: 18px;
	color: rgba(255, 255, 255, 0.8);
	border: 1px solid #fff;
	border-radius: 10px;
	padding: 7px 15px;
	text-transform: uppercase;
	background-color: rgba(107, 107, 107, 0.6);
}

.concerts-container figcaption a:hover {
	background-color: transparent;
	text-decoration: none;
	color: #ebc95b;
	border: solid 1px #ebc95b;
}

.concerts-events {
	display: flex;
	overflow: hidden;
}

.conce-events {
	width: 50%;
}

.conce-image {
	width: 50%;
	margin-bottom: -100px;
}

.event-item {
	display: flex;
	margin-top: 30px;
	/*  background: -webkit-linear-gradient(to left, #0a142a, #030b1e);  /* Chrome 10-25, Safari 5.1-6  
    background: linear-gradient(to left, #0a142a, #030b1e); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	padding: 20px;
	background: -webkit-linear-gradient(right, rgba(3, 8, 17, 0) 0%, rgba(3, 8, 17, 0.6) 50%);
	/**rgba(78,138,195,0) 0%, rgba(78,138,195,0.8)***/
	background: linear-gradient(to left, rgba(3, 8, 17, 0) 0%, rgba(3, 8, 17, 0.6) 50%);
	/****rgba(78,138,195,0) 0%, rgba(78,138,195,0.8)****/
}

.event-date {
	margin-right: 20px;
	font-family: 'Roboto-Bold';
	font-size: 22px;
	line-height: 22px;
	color: #fff;
}

.event-date span {
	display: block;
}

.event-location {
	margin-right: 15px;
	font-family: 'Roboto-Bold';
	font-size: 22px;
	line-height: 22px;
	font-style: italic;
	color: #fff;
	width: 60%;
}

.event-location span {
	font-family: 'Roboto-Regular';
	font-style: normal;
}

.event-ticket .btn-concert {
	border: 1px solid #00ff00;
	color: #00ff00;
	font-family: 'Roboto-Bold';
}

.event-ticket .btn-concert:hover {
	color: #000;
	background-color: #00ff00;
}

.event-ticket .sold-out {
	border: 1px solid #ff0000;
	color: #ff0000;
	font-family: 'Roboto-Bold';
}

.event-ticket .sold-out:hover {
	background-color: #ff0000;
}

/* modal background blure */
.firstBlur.modalBlur>*:not(.modal) {
	-webkit-filter: blur(6px);
}

.firstBlur.modalDesaturate>*:not(.modal) {
	-webkit-filter: saturate(0%);
}

/* modal background blure */
.modal-backdrop {
	opacity: 1;
	filter: alpha(opacity=1);
	background-color: transparent;
}

.concerts-modals .modal-content {
	background-color: transparent;
	background-image: url(../img/modal-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	border: solid 3px #017d7d;
	border-radius: 30px;
	-webkit-box-shadow: 7px 9px 16px 0px rgba(1, 125, 125, 1);
	-moz-box-shadow: 7px 9px 16px 0px rgba(1, 125, 125, 1);
	box-shadow: 7px 9px 16px 0px rgba(1, 125, 125, 1);
	padding: 0px;
}

@media (min-width:576px) {
	.concerts-modals .modal-dialog {
		max-width: 60%;
		margin: 14% auto auto auto;
	}
}

.concerts-modals .close {
	opacity: 1;
	font-size: 2rem;
	color: #fff;
	text-align: right;
	margin-right: 25px;
	margin-top: 10px;
	z-index: 200;
}

.concerts-modals .modal-body {
	padding: 20px 0px 0px 20px;
}

.concer-event-info {
	display: flex;
}

.event-info-text {
	width: 50%;
}

.event-info-img {
	width: 30%;
}

.event-info-img .image-position img {
	width: 40%;
	position: absolute;
	bottom: 0px;
	right: 0px;
}


.event-info-text h6 {
	color: #fff;
	font-size: 18px;
	line-height: 20px;
	font-family: 'Roboto-Bold';
	font-style: italic;
	text-transform: capitalize;
}

.event-info-text h2 {
	color: #f5d107;
	font-size: 26px;
	line-height: 30px;
	font-family: 'Roboto-Bold';
	font-style: italic;
	text-transform: capitalize;
}

.date-location {
	display: flex;
	color: #fff;
	font-size: 18px;
	line-height: 18px;
	font-family: 'Roboto-Bold';
	text-transform: capitalize;
	justify-content: space-between;
}

.date-location img {
	margin-right: 10px;
	display: inline-block;
	width: 70%;
}

.event-info-date,
.event-info-location {
	display: flex;
	align-items: center;
}

.date-location span {
	display: block;
}

.event-info-text p {
	color: #fff;
	font-size: 16px;
	line-height: 24px;
	font-family: 'Roboto-Light';
	margin-top: 20px;
	margin-bottom: 30px;
}

.modal-btn {
	position: absolute;
	bottom: 50px;
	right: 15%;
}


.awards {
	padding: 50px 0px 70px 0px;
	z-index: 5;
	position: relative;
	background-image: url(../img/awards-pattern.png);
	background-attachment: fixed;
	background-repeat: repeat;
	/*	background-size: cover;*/
	background-color: #030811;
	animation: pattern_move 130s linear infinite;
}


.awards .owl-carousel .owl-stage-outer {
	padding: 30px 30px 10px 25px;
	margin-top: 30px;
}

.awards .owl-carousel .owl-item {
	padding: 10px 20px 10px 0px;
}

.awards .owl-carousel .owl-item img {
	filter: grayscale(100%);
	transition: all 0.7s;
	width: 85%;
}

.awards .owl-carousel .owl-item:hover img {
	filter: grayscale(0%);
	transform: scale(1.2);
	transition: all 0.7s;
}

.awards .owl-carousel .owl-item p {
	font-family: 'Roboto-Light';
	font-size: 16px;
	line-height: 18px;
	color: rgba(255, 255, 255, 0.9);
	margin-top: 30px;
	opacity: 0;
	transition: all 0.7s;
	text-align: center;
	margin-right: 10px;
	display: none;
}

.awards .owl-carousel .owl-item:hover p {
	opacity: 1;
	transition: all 0.7s;
}

.awards .owl-carousel .owl-nav {
	display: block !important;
}

.awards .owl-carousel .owl-prev {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -50px;
}

.awards .owl-carousel .owl-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -40px;
}


.awards .inner-carousel .owl-item p {
	opacity: 1;
}

footer {
	background-color: #030811;
	padding: 40px 0px;
	position: relative;
	z-index: 2;
}

footer .footer-container {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	text-align: end;
	align-items: flex-end;
}

.footer-text,
.footer-text a {
	color: #c5c6c6;
	font-size: 16px;
	line-height: 18px;
	font-family: 'Roboto-Light';
}

.footer-text a:hover {
	color: #ebc95b;
}

.footer-social {
	margin-top: 15px;
}

.footer-social svg,
.footer-social svg #youtube {
	width: 35px;
	height: 35px;
	fill: #fff;
	text-align: right;
	margin-right: 3px;
	margin-top: 5px;
	transition: all 0.5s;
}

.footer-social svg:hover,
.footer-social svg:hover #youtube {
	fill: #ebc95b;
	transition: all 0.5s;
}

.mad-logo {
	transition: all 0.7s;
}

.mad-logo:hover {
	transition: all 0.7s;
	transform: scale(1.1);
}

.innerpages {
	padding-top: 11%;
	background-attachment: fixed;
	min-height: 85vh;
}

.inner-about-img {
	margin-top: 15%;
	margin-bottom: 30px;
}


.inner-about-text {
	margin-top: 40px;
	width: 100%;
}


.inner-about-text p {
	font-family: 'Roboto-Light';
	font-size: 18px;
	line-height: 26px;
}

.inner-press {
	flex-wrap: wrap;
}

.inner-press .press-item {
	width: 33%;
	margin-top: 50px;
}

.press-maincontainer.inner-press {
	margin-top: 0px
}

.concerts-innercontainer {
	display: flex;
	margin-top: 30px;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.concerts-innercontainer .concerts2 {
	width: 50%;
	margin-top: 20px;
	flex-wrap: nowrap;
}

.concerts-innercontainer .concerts2:last-child {
	margin-top: auto;
}

.concerts-innercontainer .concerts2 p {
	font-size: 16px;
	line-height: 20px
}

.concerts-innercontainer .concerts2 h3 {
	font-size: 18px;
	line-height: 20px
}



.press-release {
	margin-top: 20px;
}

.press-release img {
	border-radius: 10px;
	transition: all 0.7s;
}

.press-release:hover img {
	transform: scale(1.1);
	transition: all 0.7s;
}

.press-release.press-img {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}

.press-release h1 {
	color: #bf924b;
	font-style: italic;
	font-size: 26px;
	line-height: 28px;
	font-family: 'Roboto-Bold';
	text-transform: capitalize;
}

.press-release h4 {
	color: #bf924b;
	font-style: italic;
	font-size: 22px;
	line-height: 25px;
	font-family: 'Roboto-Light';
	text-transform: uppercase;
	margin-top: 10px;
}

.press-release p {
	color: #fff;
	font-size: 18px;
	line-height: 25px;
	font-family: 'Roboto-Light';
	margin-top: 10px;
}


.works-innersection {
	/*	padding: 150px 0px 150px 0px;*/
	z-index: 10;
	position: relative;
	background-image: url(../img/press-bg.jpg);
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
}



.films {
	display: flex;
	flex-wrap: nowrap;
}

.film-carousel {
	width: 70%;
	padding: 0px 50px;
}

.film-player {
	width: 30%;
	/*	margin-top: -50px; */
	margin-top: 20px;
}

.film-container {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	margin-top: 10px;
}

.film-img {
	width: 40%;
	max-height: 140px;
	position: relative;
	overflow: hidden;
	border-radius: 15%;
}

.film-text {
	width: 60%;
	padding-left: 10px;
}

.film-img .filmimg {
	border-radius: 15%;
	transition: all 0.7s;
	filter: brightness(0.7);
	width: 100%;
}

.film-img:hover .filmimg {
	transform: scale(1.1);
	transition: all 0.7s;
	filter: brightness(0.85);
}

.film-img .playimg {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 40% !important;
	transform: translate(-50%, -50%);
}

.sa-play {
	content: url('../img/filmplay.png');
}

.sa-pause {
	content: url('../img/filmpause.png');
}


.film-text h2 {
	color: #fff;
	font-size: 16px;
	line-height: 18px;
	font-family: 'Roboto-Bold';
	text-transform: uppercase;
	padding-right: 7px;
}

.film-text h2 span {

	font-family: 'GESSTwoBold-Bold';
	display: block;
	padding-top: 5px;
	padding-bottom: 5px;
}

.film-text p {
	color: #fff;
	font-size: 18px;
	line-height: 18px;
	font-family: 'Roboto-Regular';
	margin: 0px;
}

.film-carousel .owl-carousel .owl-nav {
	display: block !important;
}

.film-carousel .owl-carousel .owl-prev {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -60px;
}

.film-carousel .owl-carousel .owl-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -40px;
}

.film-player .audioworkimg {
	max-width: 290px;
	display: block;
	margin: auto;
}

.film-player #salahtrack {
	color: #fff;
	font-size: 18px;
	line-height: 20px;
	font-family: 'Roboto-Bold';
	text-transform: capitalize;
	text-align: center;
}

.film-player #salahtrack span {
	display: block;
	font-family: 'GESSTwoBold-Bold';
}


.listen {
	text-align: center;
	margin-top: 15%;
}

.listen span {
	color: #ebc95b;
	font-size: 16px;
	line-height: 20px;
	font-family: 'Roboto-Light';
	text-transform: capitalize;
	border: solid 1px #ebc95b;
	border-radius: 15px;
	padding: 6px 15px;

}

.fulllinks {
	display: none;
}

.tracklinkssvg {
	margin-top: 30px;
	text-align: center;
}

.tracklinkssvg svg#anghami,
.tracklinkssvg svg#deezer {
	width: 40px;
	height: 40px;
	fill: #fff;
	transition: all 0.5s;
}

.tracklinkssvg svg {
	width: 35px;
	height: 35px;
	fill: #fff;
	transition: all 0.5s;
}

.tracklinkssvg svg:hover,
.tracklinkssvg svg#anghami:hover,
.tracklinkssvg svg#deezer:hover {
	fill: #ebc95b;
	transition: all 0.5s;
	background-color: transparent;
}

.works-carousel .slick-arrow {
	position: absolute;
	top: 50%;
	margin-top: -15px;
}

.works-carousel .prevarrow {
	left: -80px;
}

.works-carousel .nextarrow {
	right: -40px;
}

.contact {

	margin-top: 60px;
}

/*

.contact h2 {
    color: #fff;
    font-size: 24px;
    line-height: 28px;
    font-family: 'Roboto-Regular';
    text-transform: capitalize;
    margin-top: 60px;
 }
*/

.contact p {
	margin-top: 20px;
}

.contact p a {
	color: #fff;
	font-size: 24px;
	line-height: 28px;
	font-family: 'Roboto-Light';
	margin-left: 10px;
}

.contact p a:hover {
	color: #ebc95b;
	text-decoration: none;
}


.contact-social {
	float: none;
	margin-top: 30px;
}