@font-face {
  font-family: 'Graphik';
  src: url('../fonts/GRAPHIK\ ARABIC\ EXTRALIGHT.OTF') format('truetype');
  font-weight: 100;

}

@font-face {
  font-family: 'Graphik';
  src: url('../fonts/GRAPHIK\ ARABIC\ LIGHT.OTF') format('truetype');
  font-weight: 200;

}

@font-face {
  font-family: 'Graphik';
  src: url('../fonts/GRAPHIK\ ARABIC\ THIN.OTF') format('truetype');
  font-weight: 300;

}

@font-face {
  font-family: 'Graphik';
  src: url('../fonts/GRAPHIK\ ARABIC.OTF') format('truetype');
  font-weight: 400;

}

@font-face {
  font-family: 'Graphik';
  src: url('../fonts/GRAPHIK\ ARABIC\ MEDIUM.OTF') format('truetype');
  font-weight: 500;

}

@font-face {
  font-family: 'Graphik';
  src: url('../fonts/GRAPHIK\ ARABIC\ SEMIBOLD.OTF') format('truetype');
  font-weight: 600;

}

@font-face {
  font-family: 'Graphik';
  src: url('../fonts/GRAPHIK\ ARABIC\ BOLD.OTF') format('truetype');
  font-weight: 700;

}

@font-face {
  font-family: 'Graphik';
  src: url('../fonts/GRAPHIK\ ARABIC\ BLACK.OTF') format('truetype');
  font-weight: 800;

}

html {
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Hide the scroll bar */

::-webkit-scrollbar {
  width: 0px;
}

/* Document Format */

* {

  margin: 0;
  padding: 0;
  box-sizing: border-box;


}

body {

  position: relative;
  font-family: 'Graphik', sans-serif;
  font-size: 12px;
  font-weight: 200;
  overflow-y: scroll;
  padding-bottom: 256px;
  justify-content: center;
  overflow: hidden;

}

.loader {

  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fefefe;
  transition: opacity 0.75s, visibility 1s;
  z-index: 30;

}


.loader::after {

  content: "";

}

.loader svg {

  animation: loader-beat 0.75s ease-in-out infinite;

}

.loader-hidden {

  opacity: 0;
  visibility: hidden;

}



@keyframes loader-beat {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

header {

  position: fixed;
  top: 0;
  left: auto;
  right: auto;
  width: 96%;
  margin: 32px;
  height: 85px;
  background: #fefefe;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.2);
  direction: rtl;
  z-index: 20;
  border-radius: 48px;
  padding-left: 24px;
  transition: margin 0.3s ease-in-out, border-radius 0.3s ease-in-out, width 0.3s ease-in-out, padding-left 0.3s ease-in-out;

}

header.scrolled {
  margin: 0;
  border-radius: 0;
  width: 100%;
  padding-left: 48px;
}

header .avatar {

  height: 48px;
  width: 48px;
  border-radius: 50%;

}

header ul {

  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 0;
  padding: 0;

}

header ul li {

  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 4px;

}

header ul li a {

  position: relative;
  text-decoration: none;
  color: #6B6E77;
  font-size: 1rem;
  font-weight: 700;

}

header ul li iconify-icon {

  color: #6B6E77;
  font-size: 1.2rem;

}

header ul li.active a {

  color: #239F97;

}

header ul li.active iconify-icon {

  color: #239F97;

}

#eduNav.active iconify-icon {
  color: #189C42;
}

#eduNav.active a {
  color: #189C42;
}

#sportNav.active iconify-icon {
  color: #F6A018;
}

#sportNav.active a {
  color: #F6A018;
}

#artNav.active iconify-icon {
  color: #EB53A4;
}

#artNav.active a {
  color: #EB53A4;
}


header .actions {

  display: flex;
  align-items: center;
  gap: 16px;

}

header .actions iconify-icon {

  color: #6B6E77;
  font-size: 1.5rem;

}

header .actions .headerLogin a {

  font-size: 1rem;
  font-weight: 600;
  color: #FEFEFE;
  background-color: #E63946;
  height: 40px;
  padding: 12px 16px;
  border-radius: 48px;
  text-decoration: none;

}

header .actions .language {

  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;

}

header .actions .language p {

  font-size: 1rem;
  font-weight: 700;
  color: #6B6E77;

}

header ul li:hover {

  transform: scale(1.1);
  transition: 0.1s ease-in-out;

}



header .menuToggle {

  position: relative;
  display: none;
  color: #6B6E77;
  font-size: 1.5rem;


}




.hero {

  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 85px;
  width: 100%;
  align-items: center;
  height: fit-content;
  background-color: #078EBE;
  margin-bottom: 128px;
  border-radius: 0 0 48px 48px;

}

#eduHero {
  background-color: #189C42;
}

#sportHero {
  background-color: #F6A018;
}

#artHero {
  background-color: #EB53A4;
}

.contentHero {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero .heroImg {

  position: relative;
  display: flex;
  max-width: 50%;
  width: 100%;

}

.hero .heroImg img {

  position: relative;
  display: flex;
  max-width: 100%;
  height: auto;



}

.hero .heroCnt {

  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: right;
  width: 100%;
  padding-right: 48px;
  direction: rtl;
  gap: 8px;
  z-index: 15;
  padding-bottom: 32px;
  /* padding-left: 50%; */

}

.hero .heroCnt h1 {

  display: block;
  font-size: 48px;
  color: #fefefe;
  margin-top: 16px;
  line-height: 1.5;

}

.hero .heroCnt p {
  font-family: 'Graphik Arabic';
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  /* or 133% */
  display: flex;
  align-items: center;
  text-align: right;

  color: #FFFFFF;



}

.hero .heroCnt .tagline p {

  display: flex;
  font-size: 48px;
  color: #F6A018;
  font-weight: 600;


}

.hero .heroCnt .tagline em {

  color: #F6A018;
  font-weight: 600;

}


.hero .heroCnt em {

  font-weight: 500;
  font-style: normal;
  margin-right: 8px;


}

.hero .heroCnt a {

  display: flex;
  height: 48px;
  width: fit-content;
  padding: 12px 32px;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  border-radius: 48px;
  background: #F6A018;
  margin-top: 16px;
  text-decoration: none;
  color: #fefefe;
  font-size: 24px;
  font-weight: 600;
  transition: 0.5s ease-in-out;


}

#sportHero a {
  background-color: #078EBE;
}

.hero .heroCnt a:hover {


  scale: 1.2;

}

.courses {

  position: relative;
  /* top: 48px; */
  display: flex;
  width: 100vw;
  height: 100%;
  align-items: center;
  justify-content: right;
  direction: rtl;
  padding: 24px 0px;
  padding-right: 24px;
  background-color: transparent;
  transform: translateY(+256px);
  margin-top: -320px;

}

.courses .coursesCnt {

  position: relative;
  display: flex;
  flex-direction: column;
  height: 256px;
  width: 50%;
  background-color: #012143;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  padding: 24px 48px;
  z-index: 10;
  /* margin-top:24px; */


}

.courses .coursesCnt h1 {


  font-size: 1.5rem;
  color: #fefefe;
  padding-bottom: 16px;

}

.courses .coursesCnt p {

  font-size: 1.2rem;
  font-weight: 300;
  color: #fefefe;
  padding-bottom: 32px;
}

.courses .coursesCnt a {

  display: flex;
  height: 48px;
  width: fit-content;
  padding: 12px 24px;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #239F97;
  margin-top: 16px;
  text-decoration: none;
  color: #fefefe;
  font-size: 1.2rem;
  font-weight: 400;
  transition: 0.5s ease-in-out;


}

.courses .coursesCnt a:hover {

  box-shadow: 0px 0px 64px #4DC7BF, 0px 0px 0px 8px rgba(130, 239, 243, 0.25);

}

.container {

  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: right;
  /* margin: 64px; */
  margin-left: 0;
  padding: 72px;
  overflow: hidden;
  margin-top: 104px;

}

.testimonial {

  width: 534px;
  height: 304px;
  flex-shrink: 0;
}

.testimonial .image {

  width: 50%;
  height: 100%;
  object-fit: cover;
  /* padding: 48px;
  border-radius: 48px; */

}

.testi-content {

  width: 100%;
  gap: 48px;


}

.testimonial .slide {

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  row-gap: 30px;
  max-height: 334px;
  max-width: 420x;
  height: 100%;
  width: 100%;
  direction: rtl;
  overflow: hidden;
  border-radius: 24px;
  background: #FEFEFE;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.17);
  /* margin: 24px; */
  padding-left: 0;

}

.testimonial .slide .details {

  width: 50%;
  margin: 24px;
  /* padding: 24px; */


}

.testimonial .slide .details a {

  display: inline-flex;
  height: 48px;
  padding: 12px 32px;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #012143;
  margin-top: 16px;
  text-decoration: none;
  color: #fefefe;
  font-size: 1rem;
  font-weight: 400;
  transition: 0.5s ease-in-out;

}

.testimonial .slide .details a:hover {

  box-shadow: 0px 0px 64px #4DC7BF, 0px 0px 0px 8px rgba(130, 239, 243, 0.25);

}

.slide h1 {

  font-size: 1.5rem;
  color: #012143;


}

.slide .presenter {

  font-weight: 600;
  padding-bottom: 8px;
  color: #6B6E77;

}

.slide p {

  font-size: 1rem;
  font-weight: 400;
  padding: 0;
  color: #2e2e2e;

}

.testimonial .slide .image {

  width: auto;
  height: 276px;
  margin: 0;

}

/* swiper button css */
.nav-btn {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 50%;
  transform: translateY(50%);
  background-color: rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}

.nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.nav-btn::after,
.nav-btn::before {
  font-size: 0.5rem;
  color: #fff;
}

.swiper-pagination-bullet {
  background-color: rgba(0, 0, 0, 0.8);
}

.swiper-pagination-bullet-active {
  background-color: #239F97;
}

@media screen and (max-width: 768px) {
  .slide p {
    padding: 0 0px;
  }

  .nav-btn {
    display: none;
  }
}

.bestOf {

  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: -240px;
  padding-bottom: 40px;
  transform: translateY(200px);

}

.bestOf h1 {

  font-size: 48px;
  direction: rtl;
  color: #fefefe;
  padding-bottom: 16px;


}

.bestOf p {

  font-size: 24px;
  color: #6B6E77;
  direction: rtl;


}

.introduction {

  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

}

.introduction h1 {

  font-size: 48px;
  direction: rtl;
  color: #EB53A4;
  padding-top: 48px;
  padding-bottom: 16px;

}

.yellow {

  color: #F6A018;

}

.green {

  color: #189C42;

}

.introduction p {

  font-size: 24px;
  color: #6B6E77;
  direction: rtl;

}

.fieldGallery {

  width: 100%;
  padding: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  grid-gap: 16px;
  justify-items: center;
  align-items: center;
}

.progPreview {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  width: 420px;
  height: 335px;
  padding: 32px;
  padding-left: 0px;
  background-color: #ffffff;
  border-radius: 32px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.17);
  overflow: hidden;
}

.progPreview img {}

.previewCnt {

  justify-content: right;
  text-align: right;

}

.previewCnt h3 {
  font-size: 24px;

}

.previewCnt p {
  font-size: 16px;
  margin: 24px;
  margin-right: 0;
}

.progPreview .previewCnt a {
  padding: 8px 16px;
  margin-top: 24px;
  border-radius: 48px;
  color: #fefefe;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: 0.5s ease-in-out;
}

.progPreview .previewCnt a:hover {
  scale: 1.2;
}

#eduProgram h3 {
  color: #189C42;
}

#eduProgram a {
  background-color: #189C42;
}

#artProgram h3 {
  color: #EB53A4;
}

#artProgram a {
  background-color: #EB53A4;
}

#sportProgram h3 {
  color: #F6A018;
}

#sportProgram a {
  background-color: #F6A018;
}



.videos {

  display: block;
  justify-content: center;
  width: 100%;
  padding: 48px;


}

.videos .section-title {

  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-content: center;
  direction: rtl;
  margin-bottom: 24px;
  padding: 0px 24px;
  color: #078EBE;

}

.videos .section-title a {
  display: inline-flex;
  height: 48px;
  padding: 12px 32px;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  border-radius: 48px;
  background: #078EBE;
  margin-top: 16px;
  text-decoration: none;
  color: #FEFEFE;
  font-size: 1rem;
  font-weight: 600;
  transition: 0.5s ease-in-out;

}

.videos .section-title a:hover {

  scale: 1.2;

}

.videos .titleName {

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 600;

}

.videos .titleName iconify-icon {

  font-size: 2rem;

}

#eduVideos .titleName {
  color: #189C42;
}

#eduVideos a {
  background-color: #189C42;
}

#sportVideos .titleName {
  color: #F6A018;
}

#sportVideos a {
  background-color: #F6A018;
}

#artVideos .titleName {
  color: #EB53A4;
}

#artVideos a {
  background-color: #EB53A4;
}

.video-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(425px, 1fr));
  grid-gap: 16px;
  justify-items: center;
  align-items: center;
}

.videoCard {
  position: relative;
  width: 425px;
  height: 340px;
  direction: rtl;
  padding: 0;
  margin-bottom: 16px;
  border-radius: 24px;
  background-color: #FEFEFE;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.17);
}

.video-thumbnail {

  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio (9 / 16 * 100) */
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.00) 0.01%, rgba(0, 0, 0, 0.00) 80.81%, rgba(0, 0, 0, 0.20) 100%), url(<path-to-image>), lightgray 50% / cover no-repeat;

}

.thumbnail {

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Maintain aspect ratio and cover container */
}


.videoDuration {
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 16px;
  color: #fefefe;
  font-size: 16px;
  font-weight: 400;
  padding: 4px 8px;
  background: rgba(40, 41, 44, 0.68);
  border-radius: 16px;
  z-index: 1;

}

.video-thumbnail:hover {

  opacity: 60%;
  transition: 0.5s ease-in-out;

}

.videoCard .vidInfo {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 8px;
  padding-top: 8px;
  padding-left: 24px;
  align-items: end;
}

.likeCounter {
  display: flex;
  flex-direction: row;
  gap: 4px;
  padding-bottom: 24px;
  color: #6B6E77;
  font-size: 16px;
  font-weight: 500;
  align-items: center;
  justify-content: center; 
  transition: 0.2s linear ease-in-out;
}

.likeCounter iconify-icon {
  font-size: 24px;
}

.likeCounter.clicked {
  color: #E93A69;
}

.likeCounter.clicked iconify-icon {
  color: #E93A69;
  /* transform: scale(1.1); */
}


.videoTitle {

  font-size: 1.2rem;
  font-weight: 600;
  padding-right: 16px;

}


.programName {

  color: #fefefe;
  padding: 8px 16px;
  background-color: #6B6E77;
  text-align: right;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Graphik';
  width: fit-content;
  border-radius: 48px;
  margin: 16px;
  cursor: pointer;

}

#eduCnt {
  background-color: #189C42;
}

#sportCnt {
  background-color: #F6A018;
}

#artCnt {
  background-color: #EB53A4;
}

.swiper { width: 100%; height: fit-content; }
.swiper-slide { display: flex; justify-content: center; align-items: center; background: #ccc; }
@media only screen and (max-width: 768px) {
  .video-card-grid {

    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    grid-gap: 8px;

  }

  .videoCard {
    width: 100%;
    height: fit-content;
    direction: rtl;
    padding: 0;
    /* margin-bottom: 16px; */


  }

  .videoCard .data {

    height: 221px;
    left: -56px;

  }

  .video-thumbnail {

    width: 100%;

  }

  .thumbnail {
    width: 100%;
    aspect-ratio: 16:9;
  }

  .videoDuration {
    font-size: 12px;
    margin: 16px;
  }

  .vidInfo {
    width: 100%; 
  }
  .videoTitle {

    font-size: 14px;
    font-weight: 600;
    padding-right: 16px;
    padding-bottom: 24px;
  
  }


  .videos .section-title {

    width: 100%;
    margin-right: -24px;
    justify-content: space-between;
    align-items: center;


  }
  .likeCounter iconify-icon {
    font-size: 14px;
  }

  .videos .section-title a {

    margin-left: -48px;


  }
}

@media only screen and (max-width: 414px) {

  .videos {

    padding: 24px;

  }

  .video-card-grid {


    width: 100%;
    justify-content: center;
    align-items: center;
    direction: rtl;
    /* margin-left: 24px; */
    /* padding: 24px; */

  }

  .video-thumbnail {

    width: 100%;


  }


}

.Vplayer {

  width: 100vw;
  transform: translateY(128px);
  margin-bottom: 128px;
  padding: 24px;
  direction: rtl;
  display: flex;
  gap: 24px;


}

.Aplayer {

  width: 100vw;
  transform: translateY(128px);
  margin-bottom: 128px;
  padding: 24px;
  direction: rtl;
  display: flex;
  gap: 24px;


}

.programEpisodes {

  position: relative;
  width: 30%;

}

.audioprogramEpisodes {

  position: relative;
  width: 30%;

}

.titleBanner {

  position: relative;
  width: 100%;
  padding: 24px;
  background: #012143;
  border-radius: 8px;

}

.nameAndCreator {

  margin: 24px;

}


.nameAndCreator h3 {

  color: #FEFEFE;
  font-size: 1.5rem;

}

.nameAndCreator p {

  color: #FEFEFE;
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 4px;

}

.episodesNo {

  display: flex;
  gap: 16px;
  margin: 24px;
  font-size: 1.5rem;
  color: #239F97;

}

.episodesGrid {

  position: relative;
  width: 100%;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;

}

.episodeCard {

  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;

}


.episodeCard img {

  position: relative;
  max-width: 90%;
  border-radius: 24px;
  aspect-ratio: 16/9;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.10);
  margin-left: 16px;
  max-height: 115.2px;

}

.episodeDtls {

  position: relative;
  width: 45%;
  font-size: 0.8rem;
  color: black;

}

.episodeTitle {

  color: #012143;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;

}

.cardCat {
  width: fit-content;
  padding: 8px;
  color: #fefefe;
  font-size: 12px;
  font-weight: 600;
  border-radius: 48px;
  margin-bottom: 8px;
}

.vidInfo {

  display: flex;
  position: relative;
  width: 70vw;
  flex-direction: column;
  padding: 24px;
  gap: 24px;


}

.AudioInfo {

  display: flex;
  position: relative;
  width: 60%;
  flex-direction: column;
  padding: 24px;
  gap: 24px;


}

.creatorAndLikes {

  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;

}

.creatorAndLikes h2 {

  font-size: 2rem;
  font-weight: 600;
  color: #012143;

}

.creator {

  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 8px;

}

.creator .creatorDtls {

  display: flex;
  flex-direction: row;
  gap: 8px;


}

.likes {

  display: flex;
  flex-direction: row;

}

.likeBtn {

  height: 40px;
  font-size: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 0px 48px 48px 0px;
  border-left: 2px solid #6B6E77;
  background: #EFEFEF;
  color: #6B6E77;
  direction: rtl;
  padding: 16px;
  font-weight: 600;

}

.dislikeBtn {

  height: 40px;
  font-size: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 48px 0px 0px 48px;

  background: #EFEFEF;
  color: #6B6E77;
  direction: rtl;
  padding: 16px;
  font-weight: 600;

}

.likeBtn iconify-icon,
.dislikeBtn iconify-icon {

  font-size: 1.5rem;

}


.creator img {

  height: 64px;
  width: 64px;
  border-radius: 50%;

}

.creatorText h3 {

  font-size: 1.2rem;
  color: #6B6E77;
  font-weight: 600;

}

.creatorText p {

  font-size: 1rem;
  color: #fefefe;
  font-weight: 500;
  margin: 0;
  margin-top: 8px;

}

.contner {

  max-width: 100%;
  width: 100%;
  position: relative;
  /* background-color: #2E2E2E; */
  border-radius: 8px;
  overflow: hidden;
  direction: ltr;
  margin: 0;

}

.contner.fullscreen {

  height: 100%;
  width: 100%;

}

.wrapper {

  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;


}

.wrapper::before {

  content: "";
  bottom: 0;
  width: 100%;
  z-index: -1;
  position: absolute;
  height: calc(100% + 35px);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);

}

.video-option,
.video-timer,
.options {

  display: flex;
  align-items: center;
  justify-content: center;

}

.video-controls {

  display: flex;
  width: 100%;
  padding: 5px 20px 10px;

}



.audioBio {

  background-color: #EBEBEB;
  border-radius: 8px;
  padding: 24px;
  margin-top: 16px;

}

.audioBio h2 {

  font-size: 1.5rem;
  margin-bottom: 16px;

}

.audioBio p {

  font-size: 1rem;

}

.videoBio {

  background-color: #EBEBEB;
  border-radius: 8px;
  padding: 24px;

}

.videoBio h2 {

  font-size: 1.5rem;
  margin-bottom: 16px;

}

.videoBio p {

  font-size: 1rem;

}

.options button {

  height: 40px;
  width: 40px;
  border: none;
  color: #FEFEFE;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;

}

.options button iconify-icon {

  /* width: 100%;
height: 100%; */
  /* line-height: 40px; */
  display: flex;
  justify-content: center;
  margin: 0;

}

.video-controls .options {

  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

}

.options input {

  height: 4px;
  max-width: 75px;
  color: #239F97;
  background-color: #239F97;

}

.video-timeline {
  height: 7px;
  width: 100%;
  cursor: pointer;
}

.video-timeline .progress-area {
  height: 3px;
  position: relative;
  background: rgba(255, 255, 255, 0.6);
}

.progress-area span {

  position: absolute;
  left: 50%;
  top: -25px;
  color: #FEFEFE;
  font-size: 0.9rem;
  transform: translateX(-50%);

}

.progress-area .progress-bar {
  width: 0%;
  height: 100%;
  position: relative;
  background: #239F97;
}

.progress-area .progress-bar::before {
  content: "";
  right: 0;
  top: 50%;
  height: 13px;
  width: 13px;
  background: inherit;
  position: absolute;
  transform: translateY(-50%);
  border-radius: 50%;

}

.progress-area span,
.progress-area .progress-bar::before {

  display: none;
  transition: 0.5ms ease-in-out;

}

.video-timeline:hover .progress-area span,
.video-timeline:hover .progress-area .progress-bar::before {

  display: block;


}

.video-controls .options .video-timer {

  font-size: 0.9rem;
  color: #FEFEFE;
  margin-left: 16px;

}

.video-timer .separator {

  font-size: 1rem;
  padding: 0 4px;

}

.video-controls .volumeSlide {

  height: 4px;

}

.playback-content {
  position: relative;
}

.playback-content .speed-options {
  position: absolute;
  bottom: 40px;
  left: -40px;
  width: 95px;
  opacity: 0;
  list-style: none;
  background: #fff;
  border-radius: 4px;
  transition: opacity 0.13s ease;
}

.playback-content .speed-options.show {
  opacity: 1;
  pointer-events: auto;
}

.speed-options li {
  font-size: 14px;
  font-weight: 400;
  padding: 8px 0 8px 16px;
  cursor: pointer;
}

.speed-options li.active {
  background: #239F97;
  color: #FEFEFE;
}

.wrapper .video-controls :first-child {

  justify-content: flex-start;

}

.wrapper .video-controls :last-child {

  justify-content: flex-end;

}



.contner video {

  width: 100%;

}



.prgrm {

  width: 100vw;
  position: relative;


}

.programCover {

  position: relative;
  height: 600px;
  width: 100vw;
  border-radius: 0 0 48px 48px;
  overflow: hidden;

}

.programCover img {

  width: 100%;
  height: 600px;
  object-fit: cover;

}

.programCover .programDtls {

  position: absolute;
  display: flex;
  bottom: 0;
  right: 0;
  padding: 48px;
  margin: 0;
  direction: rtl;
  width: 100%;
  justify-content: space-between;

  background: linear-gradient(180deg, rgba(46, 46, 46, 0.00) 0%, #2E2E2E 100%);
  flex-direction: row;
  justify-content: space-between;



}

.programCover .programDtls .info h3 {

  font-size: 2rem;
  color: #FEFEFE;
  margin-bottom: 16px;

}

.programCover .programDtls .info p {

  font-size: 1.5rem;
  color: #FEFEFE;

}

.programCover .programDtls .info iconify-icon {

  font-size: 1.5rem;
  color: #FEFEFE;

}

.programCover .programDtls .info .episodes {

  display: flex;
  flex-direction: row;
  align-items: center;
  padding-top: 16px;
  gap: 8px;

}

.programCover .programDtls .buttons {

  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: flex-end;

}

.programCover .programDtls .btn {

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 48px;
  gap: 8px;
  font-size: 1.5rem;
  color: #2E2E2E;
  background-color: #FEFEFE;
  padding: 16px;


}

.programCover .programDtls p {

  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}


.Biography {

  position: relative;
  width: 100vw;
  padding: 48px;

}

.programBio {


  position: relative;
  align-self: center;
  width: 100%;
  height: fit-content;
  padding: 24px;
  border-radius: 16px;
  background-color: #EBEBEB;

  direction: rtl;
  color: #2E2E2E;

}

.programBio .bioTitle {

  font-size: 1.5rem;
  padding-bottom: 16px;

}

.programBio p {

  font-size: 1rem;
  font-weight: 500;

}

@media only screen and (max-width: 414px) {

  .programCover .programDtls {

    padding: 24px;


  }

  .programCover .programDtls .info h3 {

    font-size: 1.5rem;

  }

  .programCover .programDtls .info p {

    font-size: 1rem;


  }

  .programCover .programDtls .info iconify-icon {

    font-size: 1rem;
    color: #FEFEFE;

  }

  .programCover .programDtls .info .episodes {

    display: flex;
    flex-direction: row;
    align-items: center;
    padding-top: 16px;
    gap: 8px;

  }

  .programCover .programDtls .buttons {

    display: flex;
    flex-direction: column;
    gap: 16px;

  }

  .programCover .programDtls .btn {

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 8px;
    gap: 8px;
    font-size: 1.2rem;
    color: #2E2E2E;
    background-color: #FEFEFE;
    padding: 8px;


  }

  .programCover .programDtls p {

    font-size: 1rem;
    font-weight: 600;

  }

  .Biography {

    padding: 24px;

  }


}

.aboutCntr {

  position: relative;
  width: 100vw;
  padding: 48px;
  height: fit-content;
  transform: translateY(128px);
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 88px;

}

.aboutCntr h1 {

  font-size: 2.5rem;
  color: #239F97;
  direction: rtl;

}

.aboutCntr p {

  font-size: 1.5rem;

}

footer {

  position: absolute;
  bottom: 0;
  height: 200px;
  width: 100%;
  background-color: #078EBE;
  padding: 48px;
  display: flex;
  gap: 16px;
  direction: rtl;
  align-items: center;
  justify-content: center;


}

footer .social {


  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.5rem;
  color: #012143;
  text-align: center;
  align-items: center;

  /* margin-top: 32PX; */

}

footer .social .socialIcons {


  display: flex;
  align-self: center;
  flex-direction: row;
  align-items: center;
  justify-content: center;

}

footer .social iconify-icon {

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 1.5rem;
  width: 1.5rem;
  color: #fefefe;
  text-align: center;
  border-radius: 16px;
  margin: 16px;

}

footer .social iconify-icon:hover {


  color: #F6A018;
  scale: 120%;
  transition: 0.3s ease-in-out;

}

footer .info {

  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-items: center;
  direction: rtl;
  align-items: center;
  padding-bottom: -4px;

}

footer .rights {

  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;

}

footer .rights .text {

  font-size: 1rem;
  color: #FEFEFE;
  padding-right: 24px;
  border-right: 2px solid #FEFEFE;

}

footer .rights .reserved {

  font-weight: 600;
  padding-bottom: 8px;

}

@media (max-width : 500px) {
  .introduction {
    padding: 48px;
  }

  .introduction h1 {
    font-size: 32px;
  }

  .fieldGallery {
    align-items: center;
    justify-content: center;
    grid-gap: 0;
  }

  .progPreview {
    scale: 80%;
  }

  .creatorAndLikes h2 {

    font-size: 16px;
    font-weight: 600;
    color: #012143;

  }

}

@media (max-width : 820px) {

  header {
    width: 100%;
    margin: 0;
    border-radius: 0;
    padding: 24px;
  }

  header.scrolled {
    padding: 24px;
  }

  header .menuToggle {

    position: absolute;
    display: block;
    cursor: pointer;
    z-index: 10;

  }

  header .logo {

    left: 0;
    transform: translateX(-48px);
    height: 100;
    width: 100;
    scale: 80%;

  }

  header .actions .subscribe a {

    font-size: 0.8rem;

  }

  header .actions .language p {

    display: none;

  }

  .searchBox {

    margin-right: 32px;

  }

  header {

    padding: 24px 24px;

  }

  header .navigation {

    position: absolute;
    opacity: 0;
    visibility: hidden;
    left: 100%;
    transition: left 0.3s ease-in-out;

  }

  header.open .navigation {

    opacity: 1;
    visibility: visible;
    top: 85px;
    left: 0;
    display: flex;
    flex-direction: column;
    background: #fefefe;
    align-items: start;
    justify-content: right;
    padding-right: 48px;
    padding-top: 24px;
    width: 100%;
    height: calc(100vh - 85px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    transition: left 0.3s ease-in-out;


  }

  header ul li::before {

    display: none;

  }

  header ul li a {

    font-size: 1.2rem;

  }

  header ul li iconify-icon {

    font-size: 1.2rem;

  }

  header .search.active {

    right: -50%;
    width: 100%;

  }

  header .notifications.active {

    top: 85px;
    right: 0;
    width: 100%;
    height: 100vh;
    border-radius: 0px;
    box-shadow: none;

  }

  header .setting.active {

    top: 85px;
    right: 0;
    width: 100%;
    height: 100vh;
    border-radius: 0px;
    box-shadow: none;

  }



  .hero {

    position: relative;
    overflow-y: none;
    height: fit-content;


  }

  .hero .heroImg {

    position: absolute;
    top: 0;
    left: 0;
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;

  }

  .hero .heroImg img {

    width: 80%;

  }

  .hero .heroCnt {

    position: relative;
    display: block;
    margin-top: 70%;
    justify-content: center;
    align-items: center;
    width: 100%;


  }

  .hero .heroCnt .tagline {

    display: flex;
    flex-direction: row;
    font-size: 32px;
    color: #fefefe;
    gap: 4px;
    width: 90vw;
    text-align: center;
    justify-content: center;
    /* margin-left: 8px; */

  }

  .hero .heroCnt.heroTxt {

    display: flex;
    flex-direction: row;
    justify-content: right;
    text-align: right;
    font-size: 0.5rem;
    color: #fefefe;
    font-weight: 300;
    width: 100%;

  }

  .hero .heroCnt a {
    margin-bottom: 24px;
    font-size: 24px;
  }

  .hero.tagline {

    display: block;
    width: 100vw;
    margin: 8px;

  }


  .bestOf {

    margin-top: 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0;
    transform: translateY(0px);

  }

  .courses {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
    margin: 0;

  }

  .courses .coursesCnt {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 0;
    margin-top: 32px;

  }

  .courses .coursesCnt h1 {

    font-size: 1.5rem;

  }

  .courses .container {

    width: 100%;
    margin: 24px;


  }

  .courses .container .testimonial {

    width: 90%;
    margin-bottom: -72px;


  }

  .courses .container .slide {

    width: 65%;
    height: 200px;

  }

  .hero {
    margin-bottom: 0px;
  }

  .hero .heroCnt {

    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: right;
    width: 100%;
    padding-right: 24px;
    direction: rtl;
    /* gap: 8px; */
    z-index: 15;
    padding-bottom: 24px;
    padding-left: 8px;

  }

  .hero .heroCnt h1 {

    display: block;
    font-size: 2rem;
    color: #012143;
    margin-top: 16px;

  }

  .hero .heroCnt p {

    display: block;
    width: 100%;
    font-size: 18px;
    color: #fefefe;
    font-weight: 400;


  }

  .hero .heroCnt .tagline {


    display: block;
    padding-left: 8px;
    align-items: right;


  }


  /* .hero .heroCnt em{
  
  font-weight: 500;
  font-style: normal;
  margin-right: 8px;
  
  
  } */

  .hero .heroCnt a {

    font-size: 24px;
    font-weight: 600;
    padding: 16px;
    height: 48px;

  }

  .courses .coursesCnt a {

    font-size: 1rem;
    font-weight: 600;
    padding: 16px;
    height: 48px;

  }

  .courses .coursesCnt p {

    font-size: 1rem;

  }

  .slide h1 {

    font-size: 1rem;
    padding-bottom: 16px;

  }

  .slide p {

    font-size: 0.7rem;

  }

  .slide a {

    font-size: 1rem;

  }

  .container {

    width: 100%;
    padding: 16px;

  }

  .videos .titleName {

    font-size: 18px;

  }

  .videos .section-title a {

    font-size: 0.8rem;


  }

  .sounds .titleName {

    font-size: 18px;

  }

  .sounds .section-title a {

    font-size: 0.8rem;


  }

  .sounds .titleName {

    font-size: 18px;

  }

  .sounds .section-title a {

    font-size: 0.8rem;


  }

  footer {

    /* margin-top: -16px; */

  }

  footer .social p {

    font-size: 0.5rem;

  }

  footer .about h3 {

    font-size: 1rem;

  }


  footer .info .rights .logo {

    scale: 80%;

  }

  footer .info .rights p {

    font-size: 0.8rem;

  }

  .Vplayer {

    flex-direction: column;
    padding: 0;

  }

  .video-controls {

    scale: 70%;
    justify-content: space-around;
    gap: 5%;

  }

  .programEpisodes {

    padding: 24px;

  }



  .vidInfo {

    width: 100%;

  }

  .programEpisodes {

    width: 100%;

  }

  .episodesNo {

    font-size: 1.2rem;

  }

  .Aplayer {

    flex-direction: column;
    padding: 24px;

  }

  .video-controls {

    scale: 70%;
    justify-content: space-around;
    gap: 5%;

  }

  .audioprogramEpisodes {

    padding: 24px;

  }



  .audioInfo {

    width: 100%;

  }

  .audioprogramEpisodes {

    width: 100%;

  }

  .audioprogramEpisodes .soundCard {
    position: relative;
    width: 100%;

  }

  .programdt p {

    color: #6B6E77;
    text-align: right;
    font-size: 0.8rem;
    font-weight: 500;

  }

  .episodesNo {

    font-size: 1.2rem;

  }

}

.main {
  position: relative;
  transform: translateY(128px);
  min-height: 40vh;
  width: 95%;
  align-self: center;
  margin: 24px;
  display: flex;
  align-items: center;
  gap: auto;
  justify-content: center;
  background: #012143;
  border-radius: 8px;

}

.main button {
  padding: 10px 12px;
  margin: 0 10px;
}

.main #logo {
  position: absolute;
  top: 10px;
  left: 30px;
  font-size: 25px;
  color: #ccc;
}

.main #logo i {
  margin-right: 15px;
}

/* left & right part */
.left {
  width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-self: left;
}

/* song image */
.left img {
  height: 300px;
  width: 300px;
  aspect-ratio: 1/1;
  border-radius: 15px;
  object-fit: cover;
  filter: drop-shadow(0px 6px 20px rgba(0, 0, 0, 0.20));
}

/* both range slider part */
input[type="range"] {
  -webkit-appearance: none;
  width: 50%;
  outline: none;
  height: 10px;
  margin: 0 15px;
  overflow: hidden;
  border-radius: 10px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 10px;
  width: 10px;
  background: #239F97;
  cursor: pointer;
  box-shadow: -415px 0 0 400px #239F97;
}

.right input[type=range] {
  width: 40%;
}

/* vlm part */
.left .vlm {
  margin-top: 25px;
  width: 300px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  /*	border: 1px solid #fff;*/
}

.vlm input[type="range"] {
  flex: 1;
}

.left .vlm p {
  font-weight: bold;
  font-size: 15px;
}

.left .vlm i {
  cursor: pointer;
  /* padding: 8px 12px;
	background: #239F97; */
  font-size: 1rem;
}

.left .vlm i:hover {
  background: rgba(245, 245, 245, 0.1);
}

.vlm #vlm_show {
  padding: 8px 12px;
  margin: 0 5px 0 0;
  background: rgba(245, 245, 245, 0.1);
}

/* right part */
.right {
  width: 50%;
  padding: 10px 0;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.right .middle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.right .middle button {
  border: none;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  transition: 0.5s;
  background: none;

}

header .search {

  position: absolute;
  right: -120%;
  transform: translateX(-50%);
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fefefe;
  transition: 0.5s ease-in-out;


}

header .search.active {

  right: 0;

}

header .searchBox {

  width: 80%;
  height: 48px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: #EAE9EF;
  border-radius: 48px;
  z-index: 25;

}

header .searchBox .input {

  display: flex;
  align-items: center;
  gap: 8px;

}

header .searchBox iconify-icon {

  color: #6B6E77;
  font-size: 1.5rem;

}

header .searchBox input {

  border: none;
  outline: none;
  height: 32px;
  width: 60%s;
  color: #6B6E77;
  background: #EAE9EF;
  font-size: 1.25em;
  font-family: 'Alexandria', sans-serif;
  font-size: 1rem;
  font-weight: 300;

}

header .searchBtn {

  transition: 0.5s ease-in-out;

}

header .searchBtn.active {

  opacity: 0;

}

@media (max-width : 820px) {
  header .search.active {

    right: -50%;
    width: 100%;

  }
  .search-container
  {
    margin-top: 50% !important;
  }
  .gap
  {
    margin-top: 40% !important;
  }
}

@media (max-width : 768px) {
  header .search.active {

    right: -50%;
    width: 100%;

  }
  .search-container
  {
    margin-top: 50% !important;
  }
  .gap
  {
    margin-top: 40% !important;
  }
}
.gap
{
  margin-top: 1%;
}
.search-container {
  display: flex;
  align-items: center; 
  border-radius: 5px;
  overflow: hidden;
  background-color: #fff;
}

.search_input { 
  outline: none;
  padding: 10px;
  font-size: 16px;
  flex: 1;
}

.search::placeholder {
  color: #aaa;
}

.search_button {
  border: none;
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.search_button:hover {
  background-color: #0056b3;
}

.search_button:active {
  background-color: #00408f;
}
header .actions .subscribe a{

  font-size: 1rem;
  font-weight: 600;
  color: #FEFEFE;
  background-color: #39e681;
  height: 40px;
  padding: 8px;

  border-radius: 48px;
  text-decoration: none;

}
header .actions .unsubscribe a{

  font-size: 1rem;
  font-weight: 600;
  color: #FEFEFE;
  background-color: #E63946;
  height: 40px;
  padding: 8px;


  border-radius: 48px;
  text-decoration: none;

}
.comment {

  background-color: #EBEBEB;
  border-radius: 8px;
  padding: 24px;
  margin-top: 10px;
  

}
.comment-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.comment h5 {

  font-size: 1.5rem;
 

}
.comment p {

  font-size: 1rem;
  font-weight: 300;

}
.commentDate{
  flex: 1; 
  margin-right: 10px;
  
   
}
.comment-actions {
  display: flex;
  gap: 5px;
}
.comment-actions a {
  cursor: pointer;
  font-size: 1rem;
  font-weight: 300;
  text-decoration: none;
}
#comment , #comment-update {
  width: 100%;
  height: 100px;
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
  outline: none;
}
.share-buttons {
  display: flex;
  gap: 10px;
}
.share-buttons a {
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
  color: white;
  font-weight: bold;
  display: inline-block;
}
.facebook { background: #3b5998; }
.x { background: #050405; }
.linkedin { background: #0077b5; }
.whatsapp { background: #25d366; }
.commentText {
 font-family: 'Zain';
}