﻿@font-face {
	font-family: 'Sukar';
	font-weight: 400;
	src: url('fonts/Sukar-Regular.ttf') format('truetype');
	font-display: swap;
}
@font-face {
	font-family: 'Sukar';
	font-weight: 600;
	src: url('fonts/Sukar-Bold.ttf') format('truetype');
	font-display: swap;
}
* {
	outline: none;
	transition-property: background, border-color, color, box-shadow, display, padding, width, height;
	transition-duration: 0.3s;
	transition-timing-function: ease;
}
::selection {
	background: rgba(0,0,0,0.2); /* Safari */
}
::-moz-selection {
	background: rgba(0,0,0,0.2); /* Firefox */
}
html, body {
	margin: 0;
	padding: 0;
	direction: rtl;
	overflow-x: hidden;
}
body {
	position: relative;
	/*direction: rtl;*/
	font-family: 'Aref Ruqaa', serif;
}

#loader{
    /*background-color: rgba(0,0,0,0.5);*/
    background-color: rgba(255,255,255,0.5);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
	backdrop-filter: blur(3px);
}
#loader img {
    animation-name: loader;
    animation-duration: 2.2s;
    animation-iteration-count: infinite;
    width: 70px;
    height: 70px;
    background-color: #fff;
    border-radius: 10px;
    padding: 5px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}
@keyframes loader {
    0% {
      transform: rotate(0deg);
	  content: url(images/loader1.png);
    }
    25% {
      transform: rotate(90deg);
	  content: url(images/loader2.png);
    }
    50% {
      transform: rotate(180deg);
	  content: url(images/loader3.png);
    }
    75% {
        transform: rotate(270deg);
		content: url(images/loader4.png);

    }
}
a {
	color: inherit;
	text-decoration: none;
}
i {
	font-style: normal;
}
li {
	list-style-type: none;
	list-style-position: inside;
	padding: 0;
	margin: 0;
}
h1,h2,h3,h4 {
	font-weight: normal;
	margin: 0;
	padding: 0;
}
img {
	border-style: none;
}
header {
	height: 170px;
	background-color: #D2AC67;
	box-shadow: 0 3px 5px 0 rgba(0,0,0,0.1);
	display: grid;
	grid-template-columns: 1fr 475px 65px 660px 1fr;
	grid-template-rows: 1fr 1fr;
	grid-template-areas: 
		'. logo . socials .'
		'. logo . menu .'
	;
}
header .logo {
	display: block;
	grid-area: logo;
	background-image: url(images/bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
}
header .logo a {
	display: block;
    width: 326px;
    height: 140px;
    margin: 20px auto auto auto;
    grid-area: logo;
    background-image: url(images/logo.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
header::before {
	content: '';
	display: block;
	width: 700px;
	grid-column: 4/5;
	grid-row: 1/3;
	background-image: url(images/header-bg.png);
	background-repeat: repeat;
	background-attachment: fixed;
}
header .socials {
	display: flex;
	width: 150px;
	margin: auto auto auto 0;
	justify-content: space-between;
	color: #fff;
	height: 40px;
	grid-area: socials;
}
header .visits {
	background-color: #86efef;
    padding: 0 10px 4px 10px;
    border-radius: 18px;
    position: absolute;
    top: 0;
    right: -80px;
}
header .links {
	display: flex;
	justify-content: space-around;
	color: #fff;
	height: 35px;
	line-height: 30px;
	/*margin-right: 100px;*/
	padding: 5px 0 0 0;
	border-radius: 5px;
	grid-area: menu;
	background-color: rgba(0,0,0,0.45);
}
header .links a {
	display: block;
	font-size: 22px;
	border-bottom: 3px solid transparent;
}
header .links a:hover,
header .links a.current {
	border-color: #86c6c6;
}
header .links > li {
	position: relative;
	z-index: 20;
}
header .links > li ul {
	display: none;
	position: absolute;
    right: 0;
    top: 35px;
    padding: 10px;
    color: #333;
    width: 200px;
    backdrop-filter: blur(4px);
    background-color: rgb(255 255 255 / 90%);
    border-radius: 10px 0 10px 10px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 20%);
}
header .links > li:hover ul {
	display: block;
}
header .links > li ul li a {
	border: none;
	padding: 5px;
	border-radius: 5px;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
header .links > li ul li a:hover {
	padding-right: 10px;
	background-color: rgba(0,0,0,0.05);
	color: #86c6c6;
}
header .social-icons{
	grid-area: socials;
    list-style: none;
    display: flex;
    vertical-align: middle;
    margin-right: auto;
	position: relative;
}
header .social-icons li{
    margin-right: 8px;
    display: flex;
}
header .social-icons a{
	display: block;
    width: 30px;
    height: 30px;
    color: #fff;
    font-size: 20px;
    text-align: center;
    line-height: 28px;
    transition: all 0.3s ease;
	border-radius: 5px;
}
header .social-icons a.tiktok {
	background-image: url(images/tiktok.svg);
	background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
}
header .social-icons a:hover{
    background-color: rgba(0,0,0,0.45);
}
main {
	position: relative;
}
main .side {
	position: fixed;
    width: 10%;
    height: 50%;
	top: 210px;
	z-index: 100;
}
main .side img {
	width: 100%;
}
main .side.right {
    right: 20px;
	left: auto;
}
main .side.left {
    right: auto;
    left: 20px;
}
div.fixed {
	display: flex;
	width: 1200px;
    margin: -30px auto 0 auto;
}
div.fixed h2 {
	position: absolute;
    font-size: 30px;
    border-bottom: 3px solid #86C6C6;
}
div.fixed .fb-comments {
    flex-basis: 886px;
    background-color: rgba(255,255,255,0.5);
    backdrop-filter: blur(5px);
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
    border-radius: 10px;
    padding: 10px 30px 20px 30px;
    margin: 80px 0 40px 0;
    box-sizing: border-box;
    z-index: 10;
}
section {
	padding: 40px;
	position: relative;
}
section:empty {
	display: none;
}
section h2 {
	font-size: 40px;
	margin-bottom: 30px;
}
section .welcome {
	display: grid;
	grid-template-columns: 200px 500px;
	grid-template-rows: 70px 160px;
	width: 700px;
	color: #fff;
	background-image: url(images/header-bg-red.png);
	background-repeat: repeat-x;
	background-position-y: -90px;
	background-color: #474747;
	border-radius: 8px;
	box-shadow: 0 0 8px 0px rgb(0 0 0 / 50%);
}
section .welcome .img {
	width: 164px;
	height: 164px;
	margin: 18px;
	grid-column: 1/1;
	grid-row: 1/2;
	background-size: cover;
	border-radius: 50%;
}
section .welcome h2 {
	grid-column: 2/2;
	grid-row: 1/1;
}
section .welcome p {
	font-family: 'sukar';
	text-align: justify;
	padding: 0 10px 0 20px;
	grid-column: 2/2;
	grid-row: 2/2;
}
section.ml-0 .content {
	display: flex;
}
section.ml-0 .rand-song {
	margin-right: 40px;
	width: 100%;
}
section.ml-0 .rand-song h2 {
	color: #333;
	font-size: 32px;
	padding: 5px 0 15px 0;
}
section.ml-0 .rand-song .img {
	width: 140px;
	height: 100px;
	float: right;
	margin-left: 20px;
	background: url(images/bgr-red.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 5px;
	box-shadow: 0px 2px 9px rgb(0 0 0 / 20%);
	box-sizing: border-box;
	z-index: 10;
}
section.ml-0 .rand-song > a {
	font-family: 'sukar';
	display: block;
	border-radius: 5px;
	height: 100px;
}
section.ml-0 .rand-song a h3 {
	font-size: 22px;
	padding-right: 20px;
}
section.ml-0 .rand-song a sub {
	display: block;
	font-size: 16px;
	margin-bottom: 0;
}
section.ml-0 .rand-song a i {
	display: inline-block;
	padding: 0 8px;
	background-color: rgba(0,0,0,0.05);;
	border-radius: 5px;
}
section.ml-0 .rand-song a:hover {
	background-color: rgba(0,0,0,0.05);;
}

section.ml-1 {
	color: #fff;
	background-color: #BC6171;
}
section.ml-1::before {
	content: '';
	display: block;
	width: 280px;
	height: 100%;
	position: absolute;
	top: 0;
	right: calc(50% - 120px);
	background-image: url(images/header-bg-darkred.png);
	background-repeat: repeat;
	background-attachment: fixed;
	z-index: 0;
}
section.ml-1 ul {
	display: grid;
	position: relative;
	padding: 0;
	height: 450px;
	grid-template-columns: repeat(2,1fr);
	grid-template-rows: repeat(3,1fr);
	z-index: 10;
}
section.ml-1 li {
	display: block;
	grid-column: 2/3;
	width: 100%;
}
section.ml-1 li a {
	font-family: 'sukar';
	display: block;
	overflow: hidden;
	padding: 10px;
	border-radius: 5px;
	box-sizing: border-box;
}
section.ml-1 li:first-of-type {
	grid-column: 1/2;
	grid-row: 1/3;
}
section.ml-1 li:nth-of-type(2) {
	grid-row: 1/2;
}
section.ml-1 li:nth-of-type(3) {
	grid-row: 2/3;
}
section.ml-1 li:nth-of-type(4) {
	grid-row: 3/4;
}
section.ml-1 li a:hover {
	background-color: rgba(0,0,0,0.08);
}
section.ml-1 li:hover a .img {
	box-shadow: 0px 10px 15px rgb(0 0 0 / 30%);
}
section.ml-1 li a .img {
	width: 182px;
	height: 122px;
	float: right;
	margin-left: 20px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 5px;
	box-shadow: 0px 2px 9px rgb(0 0 0 / 20%);
	z-index: 10;
}
section.ml-1 li:first-of-type a .img {
	width: 560px;
	height: 300px;
	margin-bottom: 20px;
}
section.ml-1 li a h3,
section.ml-2 li a h3 {
	font-size: 20px;
	padding: 10px 0 0 0;
}
section.ml-1 li:first-of-type a h3 {
	font-size: 30px;
	padding-right: 20px;
}
section.ml-1 li a sub {
	display: block;
	font-size: 16px;
	margin: 0 20px 10px 0;
}
section.ml-1 li a i {
	display: inline-block;
	padding: 0 8px;
	background-color: #A5495A;
	border-radius: 5px;
}
section.ml-1 li:first-of-type a i {
	margin-right: 20px;
}

section.ml-2 {
	background-color: #fff;
	color: #333;
}
section.ml-2::before {
	content: '';
	display: block;
	width: 30%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	background-image: url(images/header-bg-grey.png);
	background-repeat: repeat;
	background-attachment: fixed;
	z-index: 0;
}
section.ml-2 .links {
	display: grid;
	position: relative;
	padding: 0;
	height: 400px;
	grid-template-columns: repeat(2,1fr);
	grid-template-rows: repeat(3,1fr);
	column-gap: 40px;
	z-index: 10;
}
section.ml-2 .links > li,
article .links.songs > li {
	font-family: 'sukar';
	display: flex;
	padding: 10px;
	margin-bottom: 10px;
	grid-column: 2/3;
	border-radius: 6px;
}
section.ml-2 .links > li:first-of-type {
	grid-column: 1/2;
	grid-row: 1/3;
}
section.ml-2 .links > li:nth-of-type(2) {
	grid-column: 1/2;
	grid-row: 3/4;
}
section.ml-2 .links > li:nth-of-type(3) {
	grid-row: 1/2;
}
section.ml-2 .links > li:nth-of-type(4) {
	grid-row: 2/3;
}
section.ml-2 .links > li:nth-of-type(5) {
	grid-row: 3/4;
}
section.ml-2 .links > li:hover,
article .links.songs li:hover {
	background-color: rgba(0,0,0,0.05);
}
section.ml-2 .links > li:hover .img,
article .links.songs li:hover .img {
	box-shadow: 0px 5px 5px rgb(0 0 0 / 20%);
}
section.ml-2 .links > li a,
article .links.songs li a {
	flex-grow: 1;
	z-index: 1;
}
section.ml-2 .links > li .img,
article .links.songs li .img {
	width: 182px;
	height: 100px;
	margin-left: 20px;
	background: url(images/bgr-blue2.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 5px;
	box-shadow: 0px 2px 9px rgb(0 0 0 / 20%);
	box-sizing: border-box;
	z-index: 10;
}
section.ml-2 .links > li:first-of-type .img {
	height: 230px;
	width: 184px;
	flex-shrink: 0;
	padding: 63px 40px;
	/*background: url(images/bgr-blue.jpg);*/
	background-position: center;
}
section.ml-2 .links > li:nth-of-type(n+3) .img,
article .links.songs li .img {
	width: 150px;
	height: 100px;
	flex-shrink: 0;
}
section.ml-2 .links > li:first-of-type a h3,
article .links.songs li h3 {
	font-size: 24px;
}
section.ml-2 .links > li a sub,
article .links.songs li a sub {
	display: block;
	font-size: 16px;
	margin-bottom: 0;
}
section.ml-2 .links > li a sub {
	display: none;
}
section.ml-2 .links > li a i,
article .links.songs li a i {
	display: inline-block;
	padding: 0 8px;
	background-color: rgba(0,0,0,0.05);;
	border-radius: 5px;
}

section.ml-3 {
	height: 380px;
	background-image: url(images/header-bg-white.png);
	background-repeat: repeat-x;
	background-position: bottom;
	background: rgb(186,220,207);
	background: linear-gradient(180deg, rgba(186,220,207,1) 0%, rgba(133,197,197,1) 100%);
}
section.ml-3 h2 {
	color: #fff;
}
section.ml-3::before {
	content: '';
	height: 90px;
	width: 100%;
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	background-image: url(images/header-bg-white.png);
	background-repeat: repeat;
	background-attachment: fixed;
	z-index: 0;
}
section.ml-3 ul {
	display: flex;
	padding: 0;
	justify-content: space-between;
	position: relative;
	z-index: 10;
}
section.ml-3 .links > li {
	font-family: 'sukar';
	display: block;
	width: 180px;
	height: 280px;
	overflow: hidden;
	background: #f0f0f0;
	border-radius: 6px;
	box-shadow: 0px 3px 6px rgb(0 0 0 / 20%);
	transition: all 0.3s ease;
}
section.ml-3 .links > li:hover {
	box-shadow: 0px 10px 15px rgb(0 0 0 / 30%);
}
section.ml-3 .links > li > a {
	display: block;
	padding: 15px;
	position: relative;
	z-index: 1;
}
section.ml-3 .links > li h3 {
	font-size: 15px;
	font-weight: bold;
}
section.ml-3 .links > li sub {
	display: block;
	font-size: 14px;
	position: absolute;
    top: -10px;
    right: 10px;
    background-color: #adadad;
    color: #fff;
    padding: 0 5px;
    border-radius: 3px;
	transition: all 0.5s ease;
	white-space: nowrap;
    max-width: calc(100% - 30px);
    text-overflow: ellipsis;
	overflow: hidden;
}
section.ml-3 .links > li:hover sub {
    background-color: #86c6c6;
}
.cp-container {
	width: 100%;
	padding: 38px 0;
}
section.ml-3 .cp-controls li {
	right: calc(50% - 25px);
}
section.ml-3 .cp-buffer-holder,
section.ml-3 .cp-progress-holder,
section.ml-3 .cp-circle-control {
	right: calc(50% - 52px);
}

section.ml-4,
section.ml-7 {
	background-color: #fff;
	color: #333;
	min-height: 320px;
}
section.ml-7 {
	background-color: #d2ac67;
}
section.ml-7 h2 {
	color: #fff;
}
section.ml-4::before,
section.ml-7::before {
	content: '';
	display: block;
	width: 30%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(images/header-bg-grey.png);
	background-repeat: repeat;
	background-attachment: fixed;
	z-index: 0;
}
section.ml-4 ul,
section.ml-7 ul,
article ul.sub-arts {
	display: flex;
	padding: 0;
	justify-content: space-between;
	position: relative;
	z-index: 10;
}
section.ml-4 li,
section.ml-7 li,
article .sub-arts li {
	font-family: 'sukar';
	overflow: hidden;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0px 3px 6px rgb(0 0 0 / 16%);
	transition: all 0.3s ease;
}
section.ml-4 li:hover,
section.ml-7 li:hover,
article .sub-arts li:hover {
	box-shadow: 0px 5px 10px rgb(0 0 0 / 20%);
}
section.ml-4 li a,
section.ml-7 li a,
article .sub-arts li a {
	display: block;
	width: 270px;
	box-sizing: border-box;
}
section.ml-4 li a .img,
section.ml-7 li a .img,
article .sub-arts li a .img {
	display: block;
	height: 150px;
	width: 100%;
	margin: auto;
	background-color: #ccc;
	background-size: cover;
	background-position: center;
	box-shadow: 0px 3px 6px rgb(0 0 0 / 16%);
	z-index: 10;
}
section.ml-4 li a h3,
section.ml-7 li a h3,
article .sub-arts li a h3 {
	text-align: center;
	padding: 15px;
}
section.ml-4 li,
section.ml-7 li {
	margin-bottom: 30px;
}
section.ml-4 li a h3,
section.ml-7 li a h3 {
	height: 56px;
}
section.ml-5 {
	color: #fff;
	background-color: #BC6171;
}
section.ml-5::before {
	content: '';
	height: 90px;
	width: 100%;
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	background-image: url(images/header-bg-darkred.png);
	background-repeat: repeat;
	background-attachment: fixed;
	z-index: 0;
}
section.ml-5 ul {
	display: flex;
	padding: 0;
	justify-content: space-between;
	position: relative;
	z-index: 10;
}
section.ml-5 li {
	font-family: 'sukar';
	overflow: hidden;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0px 3px 6px rgb(0 0 0 / 16%);
	transition: all 0.3s ease;
}
section.ml-5 li:hover {
	box-shadow: 0px 5px 10px rgb(0 0 0 / 20%);
}
section.ml-5 li a.img {
	display: block;
	width: 100%;
	height: 280px;	
	margin: auto;
	position: relative;
	filter: grayscale(1);
	background-color: #ccc;
	background-size: cover;
	box-shadow: 0px 3px 6px rgb(0 0 0 / 16%);
	transition: all 0.5s ease;
	z-index: 10;
}
section.ml-5 li:hover a.img {
	filter: grayscale(0);
}
section.ml-5 li a h3 {
	width: 100%;
	height: 150px;
	line-height: 150px;
	position: absolute;
	bottom: 0;
	padding: 15px;
	box-sizing: border-box;
	font-size: 20px;
	text-align: center;
	background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
}
section.ml-6 {
	background-color: #fff;
	color: #333;
	height: 500px;
	width: 100%;
	padding-top: 50px;
}
section.ml-6::before {
	content: '';
	height: 130px;
	width: 100%;
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	background-image: url(images/header-bg-grey.png);
	background-repeat: repeat;
	background-attachment: fixed;
	opacity: 0.5;
	z-index: 0;
}
section.ml-6 h2 {
	max-width: 1200px;
	text-align: center;
	margin: auto auto 50px auto;
}
section.ml-6 .swiper-slide {
	font-family: 'sukar';
	display: flex;
	align-items: center;
	justify-content: center;
	background-position: center;
	background-size: cover;
	width: 300px;
	height: 300px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.3);
	transition: all 0.5s ease;
	position: relative;
}
section.ml-6 .swiper-slide a {
	display: block;
	text-align: center;
	width: 90%;
	color: #fff;
	font-size: 20px;
	line-height: 32px;
	text-shadow: 0 2px 2px rgba(0,0,0,0.5);
	z-index: 1;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.5s ease;
}
section.ml-6 .swiper-slide:hover a {
	opacity: 1;
	transform: translateY(10px);
}
section.ml-6 .swiper-slide::after {
	content: '';
    background: linear-gradient(to top, #1f1f1f 0 ,#a5495ab0 60%,rgb(210 172 103 / 40%) 100%);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
	z-index: 0;
    opacity: 0;
}
section.ml-6 .swiper-slide:hover::after {
    opacity: 1;
}
.swiper-pagination {
	bottom: 0 !important;
	text-align: right;
}
.swiper-pagination-bullet {
	width: 12px;
    height: 12px;
	margin: 0 6px !important;
	border-radius: 4px;
	transform: rotate(45deg);
}
.swiper-pagination-bullet-active {
	background: #8DC9C7;
}
.ml-3 .swiper-pagination,
.ml-5 .swiper-pagination {
	top: 40px !important;
	bottom: auto !important;
	text-align: left;
}
.ml-3 .swiper-pagination-bullet-active,
.ml-5 .swiper-pagination-bullet-active {
	background: rgba(0,0,0,0.5);
}
.video-bg{
    height: 600px;
    padding: 0;
}
.content {
	width: 1200px;
	margin: auto;
	z-index: 10;
}
.content.inner {
	display: flex;
}
main .addon {
	display: block;
	height: 120px;
    margin: 20px auto;
    width: min(1000px, 100%);
	background-image: url(images/addon.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 5px;
	box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}
aside .addon {
	display: block;
	height: 140px;
    width: min(300px, 100%);
	background-image: url(images/addon2.jpg);
	position: relative;
	z-index: 10;
}
article {
	width: 900px;
	flex-basis: 900px;
	background-color: rgba(255,255,255,0.5);
	backdrop-filter: blur(5px);
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
    border-radius: 10px;
    padding: 10px 30px 20px 30px;
	margin: 40px 0;
    box-sizing: border-box;
	z-index: 10;
}
article h2 {
	font-size: 34px;
	color: #333;
}
article .main-img {
    display: block;
    width: 100%;
    height: 500px;
    float: none;
    margin-bottom: 15px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-color: #E6E6E6;
}
article .body {
	opacity: 0;
	font-size: 26px;
}
article p {
	font-size: 20px;
    text-align: justify;
	font-family: 'sukar';
}
article p:empty {
	display: none;
}
article .date {
	position: absolute;
	left: 10px;
	top: 5px;
}
article .body h3 {
	font-size: 30px;
    height: 50px;
}
article .songs {
	padding: 0;
}
.breadcrumbs {
	font-family: 'sukar';
	display: flex;
	padding: 5px 10px;
	background-color: #F7F7F7;
	border-radius: 5px;
	position: relative;
}
.breadcrumbs li{
    display: inline-block;
    margin-left: 5px;
}
.breadcrumbs li:not(:last-child)::after{
    content: '/';
    display: inline-block;
    margin-right: 5px;
}
.breadcrumbs li:hover a{
    color: #BC6171;
}
article .gallery {
	display: grid;
    grid-template-columns: repeat(auto-fill, minmax(194px, 1fr));
	gap: 20px 20px;
	padding-bottom: 20px;
}
article .gallery a {
	display: block;
	width: auto;
	height: 190px;
	position: relative;
	border-radius: 5px;
	background-size: cover;
	background-position: center;
	transition: all 0.3s ease;
}
article .gallery a.Vimeo {
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
}
article .gallery a.Vimeo::after {
	content: '';
    width: 50px;
    height: 50px;
    position: absolute;
    right: calc(50% - 25px);
    top: calc(50% - 25px);
    background: url(../images/controls-blue.png) -50px 0 no-repeat;
}
article .gallery a:hover {
	box-shadow: 0 3px 6px rgba(0,0,0,0.25);
}
article .sub-arts {
	flex-wrap: wrap;
}
article .sub-arts li {
	margin-bottom: 20px;
	width: 31%;
}
article .sub-arts li a {
	width: 100%;
	font-size: 14px;
}
aside {
	width: 300px;
	margin: 80px 20px 0 0;
}
aside .links {
	padding: 0;
}
aside .links li {
	color: #fff;
	background-color: rgb(0 0 0 / 50%);
	backdrop-filter: blur(4px);
	padding: 10px;
	margin: 10px 0;
	box-sizing: border-box;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16);
	width: 100%;
	border-radius: 6px;
}
aside .links li a {
	display: flex;
	font-size: 16px;
	font-family: 'sukar';
}
aside .links li a .img {
	width: 64px;
    height: 64px;
	flex-shrink: 0;
    display: block;
	margin-left: 10px;
	background-size: cover;
	background-position: center;
	border-radius: 6px;
}
aside .links li:hover {
	box-shadow: 0 5px 10px rgba(0,0,0,0.26);
	background-color: #BC6171;
}

.pagination {
    display: block;
    text-align: center;
    list-style: none;
    font-weight: 400;
    margin: 40px 0 0 0;
    padding: 0;
}
.pagination:empty {
	display: none;
}
.pagination li {
    display: inline-block;
    text-decoration: none;
    transition: all .3s;
    margin: 0 4px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 33px;
    border-radius: 3px;
    font-weight: 500;
}
.pagination li a.disabled {
    opacity: 0.5;
}
.pagination li.current {
    color: #fff;
    background-color: #86c6c6;
    font-family: 'sukar';
}
.pagination li a {
    color: inherit;
    text-decoration: none;
}
.statics {
    display: block;
    margin-top: 10px;
}

footer {
	display: grid;
	grid-template-columns: 1fr 300px 1fr 500px 1fr;
	grid-template-rows: 1fr 1fr 1fr;
	background-color: #474747;
	height: 200px;
	position: relative;
}
footer::before {
	content: '';
	height: 130px;
	width: 100%;
	display: block;
	position: absolute;
	top: -130px;
	right: 0;
	background-image: url(images/header-bg-grey.png);
	background-repeat: repeat;
	background-attachment: fixed;
	opacity: 0.5;
}
footer::after {
	content: '';
	display: block;
	width: 100%;
	height: 40px;
	position: absolute;
	top: 0;
	right: 0;
	background-image: url(images/header-bg.png);
	background-repeat: repeat;
	background-attachment: fixed;
	z-index: 0;
}
footer .logo {
	background-image: url(images/logo.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position:center;
	height: 100px;
	grid-column: 2/3;
	grid-row: 2/3;
}
footer .visits {
	background-color: #c59a4c;
    padding: 0 10px 4px 10px;
    border-radius: 18px;
	position: absolute;
    bottom: 10px;
	right: 20px;
}
footer .links {
	display: flex;
	justify-content: space-between;
	color: #fff;
	grid-column: 3/5;
	grid-row: 2/3;
	align-items: center;
}
footer .links a {
	font-size: 22px;
	padding-bottom: 5px;
	border-bottom: 3px solid transparent;
}
footer .links a.current,
footer .links a:hover {
	border-color: #86c6c6;
}
.copyrights{
    text-align: center;
    margin: auto;
	font-size: 14px;
	color: #d2aa63;
	grid-column: 4/4;
    grid-row: 3/4;
}
#live-player {
	display: grid;
	grid-template-columns: 50px 1fr;
	grid-template-rows: 20px 30px;
	column-gap: 10px;
	position: fixed;
    bottom: -70px;
    right: calc(50% - 160px);
    width: 300px;
    padding: 10px;
	color: #fff;
	font-family: 'sukar';
    background-color: #252525d4;
    backdrop-filter: blur(5px);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 5px 10px rgb(0 0 0 / 50%);
    z-index: 50;
}
#live-player div {
	grid-column: 1/1;
	grid-row: 1/3;
}
#live-player div a {
	display: block;
	width: 50px;
	height: 50px;
	background-image: url(images/controls-blue.png);
	background-position: bottom left;
}
#live-player div a:hover {
	background-position: bottom right;
}
#live-player div a#play {
	display: none;
	background-position: top left;
}
#live-player div a#play:hover {
	background-position: top right;
}
#live-player h3.marquee {
	direction: ltr;
 	overflow: hidden;  
	white-space: nowrap;
	grid-column: 2/2;
	grid-row: 2/3;
}
#live-player sub {
	color: #86c6c6;
	grid-column: 2/2;
	grid-row: 1/2;
}
.clear {
	clear: both;
}
.hide_z {
	opacity: 0;
	transform: scale(0.5);
	transition: all 0.5s ease;
}
.show_z {
	opacity: 1;
	transform: scale(1);
}
.hide_x {
	opacity: 0;
	transform: translateX(-100px);
	transition: all 0.5s ease;
}
.show_x {
	opacity: 1;
	transform: translateX(0);
}
.hide_y {
	opacity: 0;
	transform: translateY(100px);
	transition: all 0.5s ease;
}
.show_y {
	opacity: 1;
	transform: translateY(0);
}

/*-----------------------------------------------------------------------------------*/
/*  MONGID | SOFTWARE HOUSE
/*-----------------------------------------------------------------------------------*/
.mongiddesigns {
    position: absolute;
    bottom: 15px;
    left: 15px;
    direction: ltr;
}
.mongiddesigns span {
    display: block;
    position: relative;
    width: 36px;
    height: 36px;
    background-image: url(https://mongid.com/designs/mongid/iconxl2.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size:100%;
    border-radius: 50%;
    z-index: 10;
    transform: scale(0.85);
    transition: all 0.3s ease;
}
.mongiddesigns:hover span {
    transform: scale(1) rotate(360deg);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.3);
}
.mongiddesigns h3 {
    display: block;
    text-align: left;
    position: absolute;
    left: 0;
    bottom: 3px;
    height: 30px;
    padding: 0 10px 0 30px;
    border-radius: 0 15px 15px 0px;
    z-index: 1;
    opacity: 0;
    transition: left 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    transition-delay: 0.1s;
}
.mongiddesigns h3 i {
    color: #f5d08b;
    display: block;
    text-transform: capitalize;
    font-size: 10px;
    height: 10px;
    line-height: 16px;
    font-style: normal;
}
.mongiddesigns h3 b {
    color: #fff;
    display: block;
    font-size: 12px;
    line-height: 20px;
    height: 12px;
    white-space: nowrap;
}
.mongiddesigns:hover h3 {
    left: 15px;
    opacity: 1;
}
.mongiddesigns h3:hover {
    background-color: #fff;
}
.mongiddesigns h3:hover i {
    color: #666;
}
.mongiddesigns h3:hover b {
    color: #333;
}

/* RESPONSIVE */
@media(max-width:1580px){
	main .side {
		display: none;
	}
}
@media(max-width:1200px){
	header {
		grid-template-columns: 40% 60%;
		grid-template-rows: 1fr 1fr;
		grid-template-areas:
			'logo socials'
			'logo menu';
	}
	header .links {
		margin-right: 50px;
		margin-left: 20px;
	}
	header .social-icons {
		margin-left: 20px;
	}
	.content {
		width: 100%;
	}
	.content.inner {
		padding: 0 20px;
	}
	section .welcome {
		grid-template-columns: 130px 1fr;
		grid-template-rows: 70px 1fr;
		width: 60%;
	}
	section .welcome .img {
		width: 100px;
		height: 100px;
	}
	section.ml-0 .rand-song {
		width: 40%;
	}
	section.ml-1 li:first-of-type a .img {
		width: 95%;
		height: 220px;
	}
	section.ml-1 li a .img {
		width: 160px;
	}
	section.ml-1 li a h3,
	section.ml-2 li a h3 {
		font-size: 16px;
	}
	section.ml-2 .links > li:first-of-type .img {
		width: 178px;
		flex-shrink: 0;
	}
	section.ml-2 .links > li > a {
		width: 100%;
	}
	section.ml-3 {
		height: auto;
	}
	section.ml-3 .links > li {
		flex-shrink: 0;
		margin: 0 auto 20px auto;
	}
	article ul.sub-arts {
		flex-wrap: wrap;
	}
	article .sub-arts li {
		margin: 0 10px 20px 10px;
	}
	section.ml-5 li a.img {
		height: 240px;
	}
	article {
		width: 65%;
		flex-basis: auto;
	}
	article .main-img {
		height: 400px;
	}
	article iframe {
		height: 400px;
	}
	article .sub-arts li {
		width: 40%;
		flex-grow: 1;
	}
	article .sub-arts li a {
		width: 100%;
	}
	aside {
		width: 30%;
		margin: 40px 20px 0 0;
	}
}
@media(max-width:768px){
	header {
		height: 175px;
		grid-template-columns: 100%;
		grid-template-rows: 115px 40px;
		grid-template-areas: 
			'logo'
			'menu'
		;
	}
	header::before {
		display: none;
	}
	header .logo a {
		width: 100%;
		height: 100px;
		margin: 10px auto auto auto;
		background-position: center;
	}
	header .links {
		margin: 0 10px;
	}
	header .links a {
		font-size: 22px;
	}
	header .social-icons {
		display: none;
	}
	section {
		padding: 20px;
	}
	section h2 {
		margin-bottom: 0;
	}
	.content {
		width: 100%;
		flex-wrap: wrap;
	}
	.content.inner {
		flex-wrap: wrap;
		padding: 0;
	}
	section .welcome {
		width: 100%;
		box-sizing: border-box;
		grid-template-columns: 120px 1fr;
		grid-template-rows: 80px 1fr;
	}
	section .welcome .img {
		width: 80px;
		height: 80px;
		margin: 10px 20px;
		grid-column: 1/1;
	}
	section .welcome h2 {
		width: 200px;
	}
	section .welcome p {
		padding: 0 20px 0 20px;
		grid-column: 1/3;
		width: 100%;
    	box-sizing: border-box;
	}
	section.ml-0 .rand-song {
		width: 100%;
		margin-right: unset;
	}
	section.ml-0 .rand-song .img {
		width: 100px;
		padding: 0 !important;
	}
	section.ml-0 .rand-song h2 {
		padding: 15px 0;
	}
	section.ml-1::before {
		width: 30%;
		left: 0;
		right: unset;
	}
	section.ml-1 ul {
		display: flex;
		flex-wrap: wrap;
		height: auto;
	}
	section.ml-1 li:first-of-type {
		width: 100%;
	}
	section.ml-1 li:first-of-type a .img {
		width: 50%;
		height: 220px;
		margin-left: auto;
	}
	section.ml-1 li:first-of-type a h3 {
		font-size: 20px;
		padding-right: 52%;
	}
	section.ml-1 li:first-of-type a i {
		margin-right: 10px;
	}
	section.ml-1 li a .img {
		width: 120px;
		height: 80px;
	}
	section.ml-1 li a h3,
	section.ml-2 li a h3 {
		padding: 0;
	}
	section.ml-1 li a h3,
	section.ml-2 li a h3 {
		font-size: 15px;
	}
	section.ml-2 .links {
		display: flex;
		flex-wrap: wrap;
		height: auto;
	}
	section.ml-2 .links > li,
	article .links.songs li {
		padding: 0;
		width: 100%;	
	}
	section.ml-2 .links > li .img {
		height: 100px !important;
		min-width: 100px !important;
		max-width: 100px !important;
		padding: 0 !important;
		background: url(images/bgr-blue2.jpg) !important;
	}
	section.ml-2 .links > li a h3,
	article .links.songs li h3 {
		font-size: 18px !important;
	}
	section.ml-2 .links > li a sub,
	article .links.songs li a sub {
		display: none;
	}
	article ul.sub-arts {
		flex-wrap: wrap;
	}
	section.ml-4 li {
		width: 46%;
		margin-bottom: 20px;
	}
	section.ml-4 li a {
		width: 100%;
	}
	section.ml-3 {
		height: 100%;
	}
	.songs .cp-container {
		width: 104px;
		padding: 0;
	}
	section.ml-2 .links > li:nth-of-type(n+3) .img,
	article .links.songs li .img {
		width: 104px;
		min-width: 104px;
		height: 104px;
	}
	section.ml-5 li {
		margin: 0 auto 20px auto;
	}
	section.ml-3 .links > li i {
		display: none;
	}
	section.ml-5 li a.img {
		width: auto;
		height: 220px;
	}
	section.ml-6 {
		height: 370px;
		padding-top: 20px;
	}
	section.ml-6 .swiper-slide {
		width: 40%;
    	height: 240px;
	}
	section.ml-6 .swiper-slide a {
		font-size: 16px;
		line-height: 26px;
	}
	.swiper-button-prev,
	.swiper-button-next {
		top: 60%;
	}
	article {
		width: 100%;
		flex-basis: unset;
		margin: 20px 20px 10px 20px;
		padding: 10px 20px 30px 20px;
	}
	article h2 {
		font-size: 26px;
	}
	article .main-img {
		height: 400px;
	}
	article iframe {
		height: 400px;
	}
	article .sub-arts li {
		width: 45%;
		margin: 0 10px 20px 10px;
	}
	article .sub-arts li a {
		width: 100%;
	}
	article .gallery {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		gap: unset;
	}
	article .gallery a {
		width: 46%;
		margin-bottom: 10px;
		height: 140px;
	}
	.breadcrumbs {
		font-size: 14px;
	}
	aside {
		width: calc(100% - 40px);
		margin: 0 20px;
	}
	footer {
		grid-template-columns: 100%;
	}
	footer .links {
		display: none;
	}
	footer .logo {
		grid-column: 1/2;	
	}
	.copyrights{
		grid-column: 1/2;
		grid-row: 3/4;
	}
}
@media(max-width:576px){
	header .links a {
		font-size: 18px;
	}
	section.ml-1 li:first-of-type a .img {
		width: 100%;
	}
	section.ml-1 li:first-of-type a h3 {
		padding-right: 0;
	}
	section.ml-1 li:first-of-type a i {
		margin-right: 0;
	}
	section.ml-4 li {
		margin: 0 auto 20px auto;
	}
	section.ml-6 .swiper-slide {
		width: 60%;
    	height: 200px;
	}
	.swiper-pagination {
		text-align: center;
	}
	.ml-3 .swiper-pagination,
	.ml-5 .swiper-pagination {
		top: auto !important;
		bottom: 0 !important;
		text-align: center;
	}
	article .main-img {
		height: 220px;
	}
	article iframe {
		height: 260px;
	}
	article .sub-arts li {
		width: 100%;
	}
}