html {
  overflow-x: hidden;
} 

body {
  background: #fff;
  color: #444;
  font-family: "Neo Sans Arabic", sans-serif;
    width: auto!important; overflow-x: hidden!important;    
}

a {
  color: #007bff;
  /* transition: 0.5s; */
}

.lg-m
{
    display: none;

    
}
.main
{
    padding: 80px 0 0 0;
}
a:hover,
a:active,
a:focus {
  color: #0b6bd3;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "NeoSansArabic", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Back to top button */

.back-to-top {
  position: fixed;
  display: none;
  background: #ffac1f;
  color: #353535;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #000;
}

/* Prelaoder */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #007bff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 12px 0;
  background: #1d1d1d;
  box-shadow: 0px 0px 30px rgb(0 1 2 / 30%);
}

#header.header-scrolled,
#header.header-pages {
  /* height: 80px; */
  padding: 12px 0;
  /* direction: rtl; */
}

#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #00366f;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  /* margin: 7px 0; */
  max-height: 60px;
  margin-left: 45px;
}

.main-pages {
  margin-top: 60px;
}

.mobile-nav > .liste-m {
  display:flex;
  flex-direction: column-reverse;
}


/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
  width: 100%;
  position: relative;
   background-size: cover;
  padding: 200px 0 120px 0;
}

#intro .intro-img {
  width: 50%;
  float: right;
}

#intro .intro-info {
  width: 50%;
  float: left;
}

#intro .intro-info h2 {
  color: #fff;
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: 700;
}

#intro .intro-info h2 span {
  color: #74b5fc;
  text-decoration: underline;
}

#intro .intro-info .btn-get-started,
#intro .intro-info .btn-services {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 0 20px 20px 0;
  color: #fff;
}

#intro .intro-info .btn-get-started {
  background: #007bff;
  border: 2px solid #007bff;
  color: #fff;
}

#intro .intro-info .btn-get-started:hover {
  background: none;
  border-color: #fff;
  color: #fff;
}

#intro .intro-info .btn-services {
  border: 2px solid #fff;
}

#intro .intro-info .btn-services:hover {
  background: #007bff;
  border-color: #007bff;
  color: #fff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */

.main-nav {
  /* Drop Down */
  /* Deep Drop Down */
}

.main-nav,
.main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.main-nav a {
    display: block;
    position: relative;
    color: #fff;
    padding: 12px 30px;
    transition: 0.3s;
    font-size: 18px;
    /* font-family: "Montserrat", sans-serif; */
    font-family: "Neo Sans Arabic", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    font-weight: bold;
}

.main-nav a:hover,
.main-nav .active > a,
.main-nav li:hover > a {
  color: #ffaa0c;
  text-decoration: none;
  /*border-bottom:solid 1px #ffaa0c;*/
}

.main-nav .drop-down ul {
   display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.main-nav .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.main-nav .drop-down li {
  min-width: 180px;
  position: relative;
}

.main-nav .drop-down ul a {
  padding: 10px 20px;
  font-size: 13px;
  color: #004289;
}

.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active > a,
.main-nav .drop-down ul li:hover > a {
  color: #007bff;
}

.main-nav .drop-down > a:after {
  content: "\f107";
    font-family: "NeoSansArabic", sans-serif;
  padding-left: 10px;
}

.main-nav .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.main-nav .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.main-nav .drop-down .drop-down > a {
  padding-right: 35px;
}

.main-nav .drop-down .drop-down > a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}

/* Mobile Navigation */

.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  right: -260px;
  width: 260px;
  padding-top: 18px;
  background: #212121e9;
  transition: 0.4s;
  direction: rtl;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
  text-align: right;
  direction: rtl;
  font-size: 22px;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: #ffac23;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\f078";
  font-family: "NeoSansArabic", sans-serif;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\f077";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  left: 15px;
  top: 0;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  margin: 18px 18px 0 0;
  color: #ffac1a;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: #32200394;
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  /*left: 0;*/
  right:0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}


/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

/* Sections Header
--------------------------------*/

.section-header h3 {
  font-size: 36px;
  color: #283d50;
  text-align: center;
  font-weight: 500;
  position: relative;
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  color: #556877;
  width: 50%;
}




/* Section with background
--------------------------------*/

.section-bg {
  background: #ecf5ff;
}

/* About Us Section
--------------------------------*/

#about {
  background: #fff;
  padding: 60px 0;
}

#about .about-container .background {
  margin: 20px 0;
}

#about .about-container .content {
  background: #fff;
}

#about .about-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}

#about .about-container p {
  line-height: 26px;
}

#about .about-container p:last-child {
  margin-bottom: 0;
}

#about .about-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
}

#about .about-container .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #007bff;
  transition: all 0.3s ease-in-out;
}

#about .about-container .icon-box .icon i {
  color: #007bff;
  font-size: 24px;
}

#about .about-container .icon-box:hover .icon {
  background: #007bff;
}

#about .about-container .icon-box:hover .icon i {
  color: #fff;
}

#about .about-container .icon-box .title {
  margin-left: 80px;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
}

#about .about-container .icon-box .title a {
  color: #283d50;
}

#about .about-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

#about .about-extra {
  padding-top: 60px;
}

#about .about-extra h4 {
  font-weight: 600;
  font-size: 24px;
}

/* Services Section
--------------------------------*/

#services {
  padding: 60px 0 40px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#services .box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 10px 40px 10px;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
}

#services .box:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

#services .icon {
  position: absolute;
  left: -10px;
  top: calc(50% - 32px);
}

#services .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}

#services .title {
  margin-left: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#services .title a {
  color: #111;
}

#services .box:hover .title a {
  color: #007bff;
}

#services .description {
  font-size: 14px;
  margin-left: 40px;
  line-height: 24px;
  margin-bottom: 0;
}

#why-us {
  padding: 60px 0;
  background: #004a99;
}

#why-us .section-header h3,
#why-us .section-header p {
  color: #fff;
}

 .bc {
 
margin-bottom: 15px;
 
/* flex: 1 1 auto; */
}

.lds-spinner {
  color: official;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #ffac23;
}
.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {

  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.img-ep-pd
{
    width: 100%;
    height: 100%;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    position: relative;
}

#why-us .card:hover {
  background: #003b7a;
  border-color: #003b7a;
}

#why-us .card i {
  font-size: 48px;
  padding-top: 15px;
  color: #bfddfe;
}

#why-us .card h5 {
  font-size: 22px;
  font-weight: 600;
}

#why-us .card p {
  font-size: 15px;
  color: #d8eafe;
}

#why-us .card .readmore {
  color: #fff;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease-in-out;
  border-bottom: #00458f solid 2px;
}

#why-us .card .readmore:hover {
  border-bottom: #fff solid 2px;
}

#why-us .counters {
  padding-top: 40px;
}

#why-us .counters span {
  font-family: "NeoSansArabic", sans-serif;
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #fff;
}

#why-us .counters p {

  padding: 0;
  margin: 0 0 20px 0;
  font-family: "NeoSansArabic", sans-serif;
  font-size: 14px;
  color: #cce5ff;
}

/* Portfolio Section
--------------------------------*/

#portfolio {
  padding: 60px 0;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#portfolio #portfolio-flters {
  padding: 0;
  margin: 5px 0 35px 0;
  list-style: none;
  text-align: center;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 15px 15px 15px 0;
  display: inline-block;
  padding: 6px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #007bff;
  border-radius: 50px;
  text-transform: uppercase;
  background: #ecf5ff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

#portfolio #portfolio-flters li:hover,
#portfolio #portfolio-flters li.filter-active {
  background: #007bff;
  color: #fff;
}

#portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

#portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

#portfolio .portfolio-item .portfolio-wrap {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  margin: 0;
}

#portfolio .portfolio-item .portfolio-wrap:hover img {
  opacity: 0.4;
  transition: 0.3s;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  opacity: 0;
  transition: 0.2s linear;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 {
  font-size: 22px;
  line-height: 1px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 0;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a:hover {
  color: #007bff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info p {
  padding: 0;
  margin: 0;
  color: #e2effe;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details {
  display: inline-block;
  line-height: 1;
  text-align: center;
  width: 36px;
  height: 36px;
  background: #007bff;
  border-radius: 50%;
  margin: 10px 4px 0 4px;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview i,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details i {
  padding-top: 6px;
  font-size: 22px;
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover {
  background: #3395ff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover i,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover i {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap:hover {
  background: #003166;
}

#portfolio .portfolio-item .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/* Testimonials Section
--------------------------------*/

#testimonials {
  padding: 60px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#testimonials .section-header {
  margin-bottom: 40px;
}

#testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  float: left;
}

#testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
  margin-left: 140px;
}

#testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
  margin-left: 140px;
}

#testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 140px;
}

#testimonials .owl-nav,
#testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#testimonials .owl-dot.active {
  background-color: #007bff;
}

/* Team Section
--------------------------------*/

#team {
 /*background: #fff;
  padding: 60px 0;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);*/
}

#team .member {
 
}

#team .member .member-info {
  opacity: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

#team .member .member-info-content {
  margin-top: 50px;
  transition: margin 0.2s;
  text-align: center;
}

#team .member:hover .member-info {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  opacity: 1;
  transition: 0.4s;
}

#team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

#team .member .t-p {
    font-weight: 600;
    margin-bottom: -3px;
    font-size: 19px;
    color: #1d1d1d;
    text-transform: uppercase;
}

#team .member span {
    font-weight: 600;
    font-size: 15px;
    color: #1d1d1d;
    text-transform: uppercase;
    /* text-align: center; */
}

#team .member .social {
  margin-top: 15px;
}

#team .member .social a {
  transition: none;
  color: #fff;
}

#team .member .social a:hover {
  color: #007bff;
}

#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

#team .member .add
{


    
}

.team {
 /*background: #fff;
  padding: 60px 0;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);*/
width:100%;    
}

.team .member {
 
}

.team .member .member-info {
  opacity: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  margin-top: 50px;
  transition: margin 0.2s;
  text-align: center;
}

.team .member:hover .member-info {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

.team .member .t-p {
    font-weight: 600;
    margin-bottom: -3px;
    font-size: 19px;
    color: #1d1d1d;
    text-transform: uppercase;
}

.team .member span {
    font-weight: 600;
    font-size: 15px;
    color: #1d1d1d;
    text-transform: uppercase;
    /* text-align: center; */
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  transition: none;
  color: #fff;
}

.team .member .social a:hover {
  color: #007bff;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member .add
{
    
}

/* Clients Section
--------------------------------*/

#clients {
  padding: 60px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#clients .clients-wrap {
  border-top: 1px solid #d6eaff;



  border-left: 1px solid #d6eaff;
  margin-bottom: 30px;
}

#clients .client-logo {
  padding: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 1px solid #d6eaff;
  border-bottom: 1px solid #d6eaff;
  overflow: hidden;
  background: #fff;
  height: 160px;
}

#clients .client-logo:hover img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

#clients img {
  transition: all 0.4s ease-in-out;
}

/* Contact Section
--------------------------------*/

#contact {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 0;
  overflow: hidden;
}

#contact .section-header {
  padding-bottom: 30px;
}

#contact .contact-about h3 {
  font-size: 36px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-family: "NeoSansArabic", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #007bff;
}

#contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "NeoSansArabic", sans-serif;
  color: #888;
}

#contact .social-links {
  padding-bottom: 20px;
}

#contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #007bff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #007bff;
}

#contact .social-links a:hover {
  background: #007bff;
  color: #fff;
}

#contact .info {
  color: #283d50;
}

#contact .info i {
  font-size: 32px;
  color: #007bff;
  float: left;
  line-height: 1;
}

#contact .info p {
  padding: 0 0 10px 36px;
  line-height: 28px;
  font-size: 14px;
}

#contact .form #sendmessage {
  color: #007bff;
  border: 1px solid #007bff;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;

  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input,
#contact .form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#contact .form button[type="submit"] {
  background: #007bff;
  border: 0;
  border-radius: 20px;
  padding: 8px 30px;
  color: #fff;
  transition: 0.3s;
}

#contact .form button[type="submit"]:hover {
  background: #0067d5;
  cursor: pointer;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background: #1d1d1d;
  padding: 25px 0 25px 0;
  color: #eee;
  font-size: 14px;
}

#footer .footer-top {
  background: #000000;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
 font-family: "NeoSansArabic", sans-serif;
  color: #fff;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#footer .footer-top .footer-info p {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "NeoSansArabic", sans-serif;
  color: #ecf5ff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #007bff;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;

  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #0067d5;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul li {
  padding: 8px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #ecf5ff;
}

#footer .footer-top .footer-links ul a:hover {
  color: #74b5fc;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type="email"] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type="submit"] {
  background: #007bff;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type="submit"]:hover {
  background: #0062cc;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
  font-size: 17px;
  text-transform: uppercase;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #f1f7ff;
}

#footer .credits a {
  color: #bfddfe;
}

#footer .credits a:hover {
  color: #f1f7ff;

}






/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (min-width: 992px) {
  #testimonials .testimonial-item p {

    width: 80%;
  }
}

@media (max-width: 991px) {
    
.mm-nt {

    float: left !important;
    margin-left: 5px;
    margin-top: 2px;

}
    
    .ico-m {

margin-left: 8px;

margin-right: 18px !important;
}
  #header {
    height: 60px;
    padding: 10px 0;
  }

  #header .logo h1 {
    font-size: 28px;
    padding: 8px 0;
  }

  #intro {
    padding: 140px 0 60px 0;
  }

  #intro .intro-img {
    width: 80%;










    float: none;
    margin: 0 auto 25px auto;
  }

  #intro .intro-info {
    width: 80%;
    float: none;
    margin: auto;
    text-align: center;
  }

  #why-us .card {
    margin: 0;
  }
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

@media (max-width: 767px) {
  #intro .intro-info {
    width: 100%;
  }

  #intro .intro-info h2 {
    font-size: 34px;
    margin-bottom: 30px;
  }

  .section-header p {
    width: 100%;
  }

  #testimonials .testimonial-item {
    text-align: center;
  }

  #testimonials .testimonial-item .testimonial-img {
    float: none;
    margin: auto;
  }

  #testimonials .testimonial-item h3,
  #testimonials .testimonial-item h4,
  #testimonials .testimonial-item p {
    margin-left: 0;
  }
}

@media (max-width: 574px) {
  #intro {
    padding: 100px 0 20px 0;
  }
   
}

.home
{
    width: 100%;
    height: 500px;
    /* margin-bottom: 30px; */
    background-image: url("../../img/bg_header.jpg?x");
    background-position:center top;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.txt-pt
{
    color: #fff;
    text-transform: uppercase;
    font-size: 1.1em;
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 120px;
    font-weight: bold;
    /* line-height: 1.5; */
}
.txt-pt-e
{
    color: #fff;
    text-transform: uppercase;
    font-size: 1.1em;
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 140px;
    font-weight: bold;
    /* line-height: 1.5; */
}
.ecouter
{
    color: #fff;
    text-transform: uppercase;
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    /* padding-top: 19px; */
    border-bottom: solid 4px #ffab12;
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}
.txt-pt2
{
    color: #fff;
    text-transform: uppercase;
    font-size: 1.1em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    font-weight: bold;
    text-align: center;
    /* line-height: 1.5; */
}
.img-header
{
    
     width: 100%;
    height: 100%; 
}
.t-header
{
    color: #ffac23;
    font-size: 5.5em;
    font-weight: bold;
    /* top: 62px; */
    margin-left: auto;
    margin-right: auto;
    padding-top: 0px;
    display: table;
    text-transform: uppercase;
}
.title
{
    font-size: 1.7em;
    color: #2b2b2b;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 25px;
    padding-top: 25px;
    text-align: right;
}

.lg
{
    /* padding: 4px; */
    background-color: #ffac23;
    margin-top: 9px;
    margin-right: -16px;
    margin-left: 19px;
    width: fit-content;
}
.lg a
{color: #1d1d1d !important;padding: 0px;padding-left: 3px;padding-right: 3px;padding-bottom: 0px;padding-top: 7px;font-size: 24px;margin-top: -9px;}
.lg a:hover
{
    color: #fff !important;

}

.line {
    width: 100%;
}

@media (max-width: 991px)
{
.t-header {
    font-size: 8.6vw;
    /* margin-bottom: 27px; */
}
}

@media (max-width: 1200px)
{
.main-nav a {padding: 10px 20px;}
 .lg
{
 margin-left: 15px;
 /* margin-right: -8px; */
 }
    .lg a
    {
       
padding-left: 3px;
       
padding-right: 2px;
       
padding-bottom: 0px;
       
padding-top: 6px;
       
font-weight: bold;
    }
}

.pict-so
{
    top: -5px;
    position: relative;
    width: auto;
    height: auto;
    max-width: 28px;
}
.mobile-nav    .lg
{
    
margin-right: 20px !important;
    
display: table;
    
margin-top: 11px;
    
margin-bottom: 17px;
}
.spot {
    margin-left: 30px;
}

.listen
{
    position:absolute;
    right: 0px;
    bottom: 0px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #fff;
}
.img-listen
{
    
max-width: 26px;
    
margin-top: 4px;
}
.derniers-episodes
{
    
 padding-top: 3px; 
    
padding-bottom: 40px;
    
background: rgb(123,119,112);
    
background: -moz-linear-gradient(90deg, rgba(123,119,112,1) 0%, rgba(229,173,72,1) 100%);
    
background: -webkit-linear-gradient(90deg, rgba(123,119,112,1) 0%, rgba(229,173,72,1) 100%);
    

background: linear-gradient(90deg, rgba(123,119,112,1) 0%, rgba(229,173,72,1) 100%);
    
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#7b7770",endColorstr="#e5ad48",GradientType=1);
    
direction: rtl;
}

.autres-episodes
{
    
padding-top: 0px;
    
/* padding-bottom: 30px; */
}

.autres-podcast
{
  
 padding-bottom: 30px;   
    
}

.series-podcast
{
    
    
background: rgb(161,158,153);
background: -moz-linear-gradient(90deg, rgba(161,158,153,1) 0%, rgba(236,196,124,1) 100%);
background: -webkit-linear-gradient(90deg, rgba(161,158,153,1) 0%, rgba(236,196,124,1) 100%);
background: linear-gradient(90deg, rgba(161,158,153,1) 0%, rgba(236,196,124,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a19e99",endColorstr="#ecc47c",GradientType=1);
 padding-bottom: 30px;   
    
}

.img-footer
{
    
max-width: 220px;
}
.title-em
{
    color: #2b2b2b;
    font-size: 23px;
    font-weight: 500;
    text-align: right;
    padding-top: 13px;
    padding-bottom: 16px;
}

.title-em a
{
    color: #2b2b2b;
 
}
 
.title-em a:hover
{
    /*color: #ffaa0c;*/
    color: #2b2b2b;
    text-decoration:underline;
 
}

.title-em3
{
    color: #2b2b2b;
    font-size: 23px;
    font-weight: 500;
    text-align: right;
    padding-top: 0px;
    padding-bottom: 16px;
    direction: ltr;
}

.title-em3 a
{
    color: #2b2b2b;
 
}
 
.title-em3 a:hover
{
    /*color: #ffaa0c;*/
    color: #2b2b2b;
    text-decoration:underline;
 
}

.title-ep
{
    color: #2b2b2b;
    font-size: 15px;
    text-align: right;
    padding-bottom: 14px;
    direction: ltr;
}
.img-b
{
    display: table;
    width: 100%;
    height: 100%;
    margin-bottom: 30px;
    position: relative;
}
.img-episode
{
    width: 230px;
    height: 230px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    float: right;
    /* margin-left: 25px; */
}

.photo-une-0
{
    width: 350px;
    height: 350px;   
    
}
.photo-une-1
{
    width: 350px;
    height: 350px;   
    
}
.title-em2
{
    color: #000000;
    font-size: 23px;
    font-weight: 500;
    text-align: right;
    padding-top: 13px;
    padding-bottom: 16px;
}

.autres-episodes-c {
    padding-top: 30px;
    padding-bottom: 30px;
}

.alleps{
    background-repeat: repeat-y;
    background-position: top center;
    background-size: contain;
    position: relative;
    padding-top: 40px;
}

.alleps::before{
  background-color: rgba(45, 45, 45,0.95);
 content: '';
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  top: 0px;
  left: 0px;
 
}


.title-em2 a
{
    color: #000000;
 
}
 
.title-em2 a:hover
{
    /*color: #ffaa0c;*/
     color: #000000;
     text-decoration:underline;
 
}

.lien-ep2 {
    background-color: #2d2d2d;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    display: table;
    padding-bottom: 1px;
    padding-left: 9px;
    padding-right: 1px;
    padding-top: 2px;
    /* position: absolute; */
    bottom: 0px;
    float: right;
    margin-left: 15px;
    margin-bottom: 5px;
}
.lien-ep2 a
{
    color: #fff;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: bold;
}


.lien-ep2 a:hover{
  color: #ffaa0c;
}

.lien-ep3 {
    background-color: #2d2d2d;
    border-radius: 50%;
    padding:2px;
    display: table;
    float: right;
    margin-left: 15px;
    margin-bottom: 5px;
}
.lien-ep3 a {








 margin-left:2px;
   
} 

.title-ep2
{
    color: #000000;
    font-size: 15px;
    text-align: right;
    padding-bottom: 14px;
    direction: ltr;
}

.dt-du
{
    color: #1d1d1d;
    font-size: 14px;
    font-weight: bold;
    text-align: right;
    padding-bottom: 30px;
   margin-bottom: 10px;
}

.dt-du2
{
    color: #1d1d1d;
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    /* padding-bottom: 30px; */
}

.lien-ep
{
    background-color: #1d1d1d;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    display: table;
    padding-bottom: 7px;
    padding-left: 14px;
    padding-right: 20px;
    padding-top: 4px;
    position: absolute;
    bottom: 0px;
    /* right: 13px; */
}

.lien-ep a
{
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    top: -1px;
    position: relative;
}



.lien-ep a:hover{
  color: #ffaa0c;
}

 
.rtl
{
    direction: rtl !important;
    
}

.ff{
     content: '';
     justify-content: center;
     width: 0;
     height: 0;
     margin-left: 6px;
     margin-right: -4px;
     border-top: 7px solid transparent;
     border-right: none;
     border-bottom: 7px solid transparent;
     border-left: 12px solid #ffaa0c;
     display: flex;
     float: right;
     margin-top: 5px;
     /* direction: rtl; */
     transform: rotate(180deg);
}
 
.currentTitle_em {
    /* margin-top: 20px; */
    margin-bottom: 6px;
    font-size: 2rem;
    color: #ffad1f;
    font-weight: 500;
    text-align: right;
}

.desc-em {
    text-align: right;
    direction: rtl;
    padding-top: 10px;
    color: #fff;
    font-size: 1.2em;
}
.about-podcast
{height: 300px;background-color: #1d1d1d;width: 100%;margin-top: 50px;margin-bottom: 0px;position: relative;}

.casque
{
    max-width: 280px;
    position: relative;
    top: -20px;
  /*  right: -179px;*/
}

.title-ab
{
    color: #ffac23;
    font-size: 3em;
    font-weight: bold;
    text-transform: uppercase;
    vertical-align: top;
    top: 28px;
    position: relative;
    margin-left: 285px;

}
.audio-h
{
    max-width: 760px;
    width: 100%;
    position: relative;
    top: -169px;
    /* float: right; */
    /* margin-left: 0px; */
    left: -311px;
}

.img-lg-m
{
    max-width: 140px;
    margin-left: -6px;
}

.active
{
    
    color: #ffac1a !important;
}

.pict-play
{
    
max-width: 27px;
    
position: relative;
    
top: -1px;
    
/* margin-right: -1px; */
}
.pict-dwln
{
    
max-width: 25px;
    
margin-right: 2px;
    
top: -2px;
    
position: relative;
}

.trait
{
    width: 50%;
    height: 3px;
    background-color: #1d1d1d;
    display: table;
    position: relative;
    margin-bottom: 30px;
}

.full
{
    width: 100% !important;
    
}

.hidden
{
    display: none;
    
}

.def-img
{
    
    width: 230px;
    height: 230px;
}

.page-404
{
        background-color: #4b4545;
    
    
}

.t-404 {
    color: #ffac23;
    font-size: 3em;
    font-weight: bold;
    /* top: 62px; */
    margin-left: auto;
    margin-right: auto;
    padding-top: 140px;
    display: table;
    text-transform: uppercase;
    text-align: center;
}
.tt-404
{
color: #ffac23;
    font-size: 2em;
    font-weight: bold;
    /* top: 62px; */
    margin-left: auto;
    margin-right: auto;
    /* padding-top: 140px; */
    display: table;
    text-transform: uppercase;
    padding-bottom: 200px;
    text-align: center;
}

.img-h {
    max-width: 260px;
}
.log-header
{
    margin-left: auto;
    margin-right: auto;
    padding-top: 70px;
    display: table;
}
/**********/

@media (min-width: 1200px) {
.casque
{

    right: -179px; 
}
}

@media (max-width: 991px) {
    .lg-m
    {
        display: block;
        
    }
    .title-ab
    {
        
font-size: 2em;
        
margin-left: 173px;
        
/* margin-top: 25px; */
        
top: 70px;
    }
    
  #intro {
    padding: 100px 0 20px 0;
  }
    #header .logo img
    {
    max-height: 40px;
    margin-left: 0px;
    }
    .main {
    padding: 60px 0 0 0;
}  
    .txt-pt
{
    margin-top: 6px;
    }
    .spot {

    margin-left: 0;
}

    
    .casque
{
   
    max-width: 190px;
    float: right;
}
    
    .img-footer

    {
        max-width: 200px;
        
    }
    
    #footer .copyright
    {
        font-size: 14px;
        
    }
    
    .ecouter {
        font-size: 1.5em;
    }
}


.infos-emission {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-bottom: 100px;
    padding-top: 60px;
    /* display: inline-block; */
    display: table;
    width: 100%;
    direction: rtl;
}
.name-c
{
    color:#ffac23;
    margin-top: 12px;
    display: table;
    margin-left: 11px;
    margin-right: 12px;
    font-weight: normal;
    font-size: 15px;
    display: none;
}
.ico-m
{
    
margin-top: 5px;
    
margin-right: 12px;
}
.arr-m
{
    
margin-top: 21px;
}
.connect
{
    display: -webkit-inline-box;
    /* width: 100%; */
    margin-left: 12px;
}

.arrow {
  margin-top: 14px;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.arrow:hover {
  border-top: 2px solid #ffac23;
  border-right: 2px solid #ffac23;
}

.arrow-bottom {
  transform: rotate(135deg);
}

.mm-nt .count
{
    background-color: #ff0202;
    color: #000;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 23px;
    left: 48px;
    /* display: none; */
}
.mm-nt2 .count
{
    background-color: #ff0202;
    color: #000;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 23px;
    left: 48px;
    /* display: none; */
}
.t-count
{
    margin-top: 1px;
    font-size: 13px;
}
.t-count:hover
{
     color: #ffac23;
}

.btn-modal2 {
    background: no-repeat;
    color: #ffab23;
    border: 1px solid #ffab23;
    height: 29px;
    border-radius: 15px;
    cursor: pointer;
    float: left;
    text-transform: uppercase;
    font-size: 15px;
    padding-bottom: 5px;
}
.btn-modal2:hover {
            background: #ffab23;
            color: white;
        }
@media (max-width: 574px) {
    
.name-c
{
    /*display: block;*/
    }
.connect {
   
margin-right: 16px;
}
    
 .txt-pt {
    margin-top: 90px;
}
    
  .title-ab {
    vertical-align: inherit;
    display: table;
    top: 0px;
    margin-bottom: 50px;
    font-size: 7vw;
} 
   
}

@media (max-width: 1200px) {
    .mm-nt2 .count {
    top: 23px;
    left: 37px;
 
}
    
 .audio-h {
   max-width: 582px ;
}
 #header .logo img
    {
        margin-right:0px;
    }
}

.inputs-modal .connect-input {
    width: 100%;
    color: #fff;
}


@media (max-width: 991px) {

 .audio-h {
   max-width: 80%;
   top: -32px;
   float:none;
   margin-left: 50px;
   left: -50px;
}
 
.about-podcast
    {
        display: table;
        
    }

   
}

@media (max-width: 767px) {
    .trait
    {
       margin-left: 12px;
        
margin-right: 12px; 
    }
.casque {
    max-width: 230px;
    /* left: 24%; */
    margin-left: auto;
    margin-top: -22px;
    margin-right: auto;
    display: table;
    top: 0;
    position: unset;
    float: none;
}
.listen
    {
        display: none;
        top: 0;
    }
.title-ab
    {
      vertical-align: inherit;
    display: table;
    top: 0px;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 16px;
    /*font-size: 7vw;  */  
    }    
    
    .audio-h {

    margin-left: 30px;
}
    
    .img-b
    {
        
margin-left: 12px;
        
margin-right: 12px;
        
width: 94%;
    }
    .img-episode
    {
        width: 100%;
        height: 100%;
        /*margin-bottom: 9px;*/
        margin-right: 0px;
    }
    
    .infos-emission
    {
           padding-top: 0px;
        padding-bottom: 50px;
    }
    
}

.ff-p
{
    max-height: 35px;

}
 .pict-app
{
        top: -3px;
}


.ems
     {
        display: table;
        /* margin-right: -15px; */
        margin-left: -15px;
        z-index: 1;
        width: 101%;
     }
.eps-h
     {
        display: table;
        margin-right: -15px;
        margin-left: -15px;
        overflow: hidden;
        z-index: 1;
        width: 100%;
        position: relative;
        display: -ms-flexbox;
        display: flex;
        direction: rtl;
     }
    .bc-ep
     {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        /*height: 470px;*/
         height: auto;
         
        float: right;
        width: 280px;
        padding-left: 25px;
        /* padding-left: 15px; */
        display: table;
        position: relative;
     } 
.bc-e2
     {
     -ms-flex: 0 0 auto;
     flex: 0 0 auto;
     height: 450px;
     float: right;
     width: 280px;
     padding-left: 25px;
     /* padding-left: 15px; */
     display: table;
     position: relative;
     direction: rtl;
     } 
     .bc-e
     {
     -ms-flex: 0 0 auto;
     flex: 0 0 auto;
     height: 500px;
     float: right;
     width: 280px;
     padding-left: 25px;
     /* padding-left: 15px; */
     display: table;
     position: relative;
     direction: rtl;
     } 
.ep_hidden
{
    display: none;

    
}

.m-app
{
   display: none;
    
}



.app img
{
    max-swidth: 100%;

    margin-bottom: 20px;
    
    
}
.m-app img
{
    max-height: 45px;
    
}
.ply
{
    margin-top: 35px;
    
    
}

.mm-lg
{
  display: none;
  background-color: #feac1a;
  font-weight: 500;
  font-size: 14px;
  float: left;
  margin: 11px 0 0 0px;
  height: 20px;
  padding-right: 3px;
  padding-left: 3px;
  text-transform: uppercase;
   margin-left: 16%;    
}
.mm-lg a
{
    position: relative;
    top: 1px;
    color: #1d1d1d;
}

.mm-lg a:hover
{
    color: #fff;
}


.result-m
{
    color: #ffab23;
    text-align: right;
    direction: rtl;
}
.resultat
{
    color: #ffab23;
    font-weight: 500;
    padding-bottom: 13px;
    font-size: 23px;
    display: table;
    width: 100%;
    text-align: center;
}

@media (max-width: 991px) {
 .m-app
{
    display: block !important;
    
}
    
.mm-lg
{
   display: block !important;
    
}
            
.ep_hidden
{
    display: block !important;
    
}
      .ep_hidden img
{ 
        height: auto;
             }
              .ems
     {
        display: table;
        display: -ms-flexbox;
        display: flex;
        margin-right: -15px;
        margin-left: -15px;
        overflow: hidden;
        z-index: 1;
        width: 100%;
        overflow-x: auto;
        direction: rtl;
        height: auto;
     }
              .eps-h
     {
        display: table;
        display: -ms-flexbox;
        display: flex;
        margin-right: -15px;
        margin-left: -15px;
        overflow: hidden;
        z-index: 1;
        width: 100%;
        overflow-x: auto;
        direction: rtl;
        height: auto;
     }
     }
.bc-ep
{
display:block;
}
.bc-e
{
display:block;

}
.img-ep-pd
{
height:auto;

}

.txt-pt a
{
  color: #fff;  
  text-decoration: none;  
}
.txt-pt a:hover
{
    
   color: #ffaa0c;
  text-decoration: none;
}

.txt-pt-em
{
    color: #fff;
    text-transform: uppercase;
    font-size: 1.1em;
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    font-weight: bold;
    /* line-height: 1.5; */
}

.txt-pt-em a
{
    
   color: #fff;
  text-decoration: none;
}

.txt-pt-em a:hover
{
    
   color: #ffaa0c;
  text-decoration: none;
}

.txt-pt-e a
{
    
   color: #fff;
  text-decoration: none;
}

.txt-pt-e a:hover
{
    
   color: #ffaa0c;
  text-decoration: none;
}

.abonnement-em{
    margin-top: 5px;
    font-size: 1.2rem;
    text-align: left;
    text-transform: uppercase;
    font-weight: 500;
}
.abonnement-em a
{
    
  color: #ffad1f !important;
 text-decoration: none;
    
}
.abonnement-em a:hover
{
    
  color: #ffad1f !important;
   text-decoration: underline !important;  
  
}
.toutes-ep{
    margin-top: 5px;
    font-size: 1rem;
    text-align: left;
    text-transform: uppercase;
    font-weight: 500;
}
.toutes-ep a
{
    
  color: #fff !important;
 text-decoration: none;
    
}
.toutes-ep a:hover
{
    
  color: #ffad1f !important;
   text-decoration: none !important;  
  
}

.img-play
{
    position: relative;
    
}


.m-inf
{
        max-width: 230px;
        height: 230px;
        float: right;
        /* margin-right: 40px; */
        margin-top: 0px;
}
.team .member:hover .m-inf {
 
  border-radius:0 !important;
   
 
}

.mm-inf
{
    max-width: 230px;
    height: 230px;
    float: left;
    margin-right: 40px;
    margin-top: 0px;
}
.team .member:hover .mm-inf {
 

   
 
}
.member2-info-content
{
 background: rgba(255, 255, 255, 0.7);
width: 100%;
    height: 100%;
}

.bloc-img-em
{
   position: relative;
    display:block;
    
}
.contain-ab
{
    padding-left: 22px;
     padding-right: 22px;
    position: relative;
    
}

.fav-em{
    margin-top: 10px;
    text-align: right;
    margin-bottom: -50px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    z-index: 100;

}

 .fav-ep{
    text-align: right;
    cursor: pointer;
    position: absolute;
    right: 20px;
    z-index: 100;
    top: 10px;
}
.fav1
{
    
}
.fav2
{
    display: none;
}

.currentTitle a{
    
color: #ffffff !important;

}
.currentTitle a:hover
{
    
  color: #ffad1f !important;
   text-decoration: none !important;  
  
}

.bg-fav{
    /*background: none !important;*/
    cursor: pointer !important;
    

}

.myfav-ep {margin-top: 4px;text-align: left;cursor: pointer;}
.bloc-ep-li
{
    position: relative;
    display: table;
    float: right;
    margin-left: 25px;
}

.fav-ep2 {
    text-align: right;
    cursor: pointer;
    position: absolute;
    right: 10px;
    z-index: 100;
    top: 10px;
}
.notif 
{
    margin-right: 3px;
}

.notif2 {
    margin-right: 8px;
    /* margin-left: 12px; */
}

.notif img
{
    margin-top: -5px
    
}
.connect a
{
    color: #ffac23;
    text-decoration: none;
    padding: 2px 9px 2px 9px;
    border: solid 2px #ffac23;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    margin-left: 4px;
    margin-top: 9px;
    width: max-content;
}
.modal-link
{
    padding: 0 !important;
    border: 0 !important;
    margin: 0 !important;
    display: -webkit-inline-box !important;
    cursor: pointer;
}

.modal-open { overflow:visible;padding-right:0px !important;}
.body.modal-open { height:auto;padding-right:0px !important;}


.btn-modal {
    background: no-repeat;
    color: #ffab23;
    border: 1px solid #ffab23;
    height: 30px;
    border-radius: 15px;
    cursor: pointer;
    float: right;
    text-transform: uppercase;
    font-size: 15px;
}
.btn-modal:hover {
            background: #ffab23;
            color: white;
        }
.name-c:hover {
          color: white;
        }
.username-container {
    display: flex;
    align-items: center;
    /* justify-content: space-around; */
    border-bottom: 1px solid #ffac23;
    padding-bottom: 20px;
    width: 100%;
    direction: rtl;
}
.avatar {
            vertical-align: middle;
            /* width: 50px; */
            /* height: 50px; */
            margin-left: 20px;
            margin-right: 20px;
        }

        .user-name {
            color: #ffac23;
            font-size: 1.2em;
            text-align: left;
            /* width: 60%; */
            text-transform: uppercase;
            font-weight: 500;
        }

    

        .menu-item {
            list-style: none;
            font-size: 1em;
            color: white;
            text-transform: uppercase;
            text-align: right;
        }

        .underline {
            border-bottom: 1px solid white;
        }
.connect a:hover
{
  color: #fff !important; 
border: solid 2px #fff;    
}
 .modal {
            position: absolute;
            top: 10px;
            right: 100px;
            bottom: 0;
            left: 0;
            z-index: 10040;
            overflow: auto;
            overflow-y: auto;
        }

        .modal-content {
               background: #111111;
            border-radius: 25px;
            padding: 10px;
            margin-top: 100px;
            position: absolute;
            background: rgb(17,17,17);
background: -moz-linear-gradient(180deg, rgba(17,17,17,1) 0%, rgba(29,29,29,1) 100%);
background: -webkit-linear-gradient(180deg, rgba(17,17,17,1) 0%, rgba(29,29,29,1) 100%);
background: linear-gradient(180deg, rgba(17,17,17,1) 0%, rgba(29,29,29,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#111111",endColorstr="#1d1d1d",GradientType=1);
            
        }


.link-m a
{
    color: #fff;
    
}

.link-m a:hover
{
    color: #ffac23;
    
}

.nn
{
    margin-bottom: 40px;
    
}

.profil
{
        display: table;
        max-width: 500px;
        margin-bottom: 50px;
        margin-top: 40px;
        margin-left: auto;
        margin-right: auto;
        direction: rtl;
}
.n-d-f
{
   width: 260px;
   display: -webkit-inline-box;
}
.d-f
{
    text-align: right;
    /* float: left; */
    margin-bottom: 20px;
}
.btn-prf
{
    float: none;
    display: table;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 1200px)
{

    .notif {
    margin-right: -5px;
}
}
@media (min-width: 576px)
{
.modal-dialog {
    max-width: 350px !important;

}
}    


.mm-nt
{
      display: none;
      float: right;
      padding-right: 8px;
      padding-left: 3px;
      position: relative;
}


@media (min-width: 575px) and (max-width: 991px) {
  .mm-nt
    {
         display: block;
     }
    .mm-nt .count
    {
        left: 23px !important;
        top: 18px  !important;
    }  
    
    .mm-nt  img {
    margin-top: 3px !important;
}
}

.desktop
{
    display: block;
    
}
.mb
{
    display: none;
    
}
@media (max-width: 991px) {

.mb
{
    position: relative;
    
    z-index: 100;
}    
    
.desktop
{
    display: none;
    
}
    
    .notif2 {
   
    margin-left: 0px;
}
    .mm-nt2 .count {
       left: 42px;
    top: 27px;
}
}
@media (max-width: 574px) {

   .mm-nt
    {
         display: block;
     }
    .mm-nt .count
    {
        left: 23px !important;
        top: 19px  !important;
    }
    
}
@media (max-width: 574px) {
    
.d-f
    {
       width: 100%; 
    }
.input-profil
    {
        display: table;
        
    }
.n-d-f
{
    width: auto;
    /* direction: rtl; */
    }
.notif2
{
    margin-left: 0;
    
    }
.name-c {

    margin-top: 9px;
    font-weight: normal;
    font-size: 18px;
}
    
.mm-nt2 .count {
       left: 42px;
}  
    
.connect a
{
    /* margin-left: 20px; */
}
.notif
    {
        margin-right: -2px;
        /* margin-left: -2px; */
    }
.notif img
{
    margin-top: 3px;
}
    
.dt-du2
    {
      margin-right: 20px;   
    }
.myfav-ep {
    margin-right: 20px;

 
}    
.bloc-ep-li
{
    margin-bottom: 10px;
    margin-left: 0;
    /* margin-right: 24px; */
    }
.audioplayer
    {
            margin-top: 20px !important
        
    }
    
.fav-em{
    margin-top: 10px;
    text-align: right;
    margin-bottom: -40px;
    right: 2px;

}
.contain-ab
{
    padding: 2px;
     
    
}
    
.img-play {
 
  padding-bottom: 0px !important;  
 
} 
.currentTitle_em
{
        margin-top: 11px;
        
}
    
.bloc-img-em
{
    position: relative;
    display: table;
    
    
}    
.m-inf
{
    width: 100%;
    height: 100%;
    max-width: 100%;
    margin-top: 0;
 
}
    
.mm-lg
{
   right: 90px !important;
    
}
}

.img-p
{
    position: relative;
    top:-5px;
     
    
    
}