:root {
	--primary-color: #00a95c;
	--secondary-color: #D01C1F;
	--third-color: #337ab7;
	--light-color: #f4f4f4;
	--dark-color: #333;
	--darker-color: #D1D2D3;
	--white-color: #000;
	--black-color: #000;
	--rgba: rgba(44, 54, 145, .8);
	--font: "Oughuiya";
}


/*======================= reset CSS*/

@font-face {
    font-family: Oughuiya;
    src: url(fonts/LouguiyaFR.ttf);
}

html[dir="rtl"]{
	overflow-x: hidden;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: var(--font);
	outline: none !important;
}


ul {
	list-style: none;
}

a{
	text-decoration: none;
	color: var(--primary-color);
}


.btn-primary{
	color: var(--primary-color) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img {
	margin-bottom: 1rem;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font);
	font-weight: 400;
	font-style: normal;
	font-size: 15px;
	color: #666666;
	line-height: 24px;
}

.img {
	max-width: 100%;
	-webkit-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}

.fix {
	overflow: hidden
}

.aligncenter {
	display: block;
	margin: 0 auto 15px;
}

a,
.button {
	-webkit-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}

.uppercase {
	text-transform: uppercase;
}

.capitalize {
	text-transform: capitalize;
}

h1 {
	font-size: 30px;
}

h2 {
	font-size: 25px;
}

h3 {
	font-size: 22px;
}

h4 {
	font-size: 20px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

.pt-20 {
	padding-top: 20px;
}

.pb-20 {
	padding-bottom: 20px;
}

.mt-20 {
	padding-top: 20px;
}

.mb-20 {
	padding-bottom: 20px;
}

.tabl {
	display: table;
	width: 100%;
	height: 100%;
}


.table_cell {
	width: 100%;
	height: 100%;
	display: table-cell;
	vertical-align: middle;
}

.bg_standard {
	background-size: cover;
	background-repeat: no-repeat;
}

.bg_fixed {
	background-attachment: fixed;
}

.theme-overlay {
	position: relative
}

.theme-overlay::before {
	background: var(--primary-color);
	content: "";
	height: 100%;
	left: 0;
	opacity: 0.4;
	position: absolute;
	top: 0;
	width: 100%;
}

/*======================= upper_bar*/

.upper_bar {
	padding: 10px;
	color: var(--white-color);
	background: #00A95C;
	background: linear-gradient(138deg, rgba(0, 169, 92, 1) 14%, rgba(208, 28, 31, 0.67) 78%);
    display: none !important;
    
}

.upper_bar span {
	color: var(--white-color);
}

.upper_bar span.quote {
	display: inline-block;
	border: 1px solid #ec1c23;
	padding: 2px 10px;
	margin-left: 20px;
}

.logo_area {
	display: none !important;
}
.logo_area p{
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 200;
}

.logo_area img{
	width: 50%;
}

/*==================== navbar*/

.lang li{
	margin-right: 30px;
}

.lang li a{
	font-size: 15px;
}


.navbar {
	padding: 0 !important;
     position: relative;
	z-index: 9999 !important;
   
}

.image_logo{
    width: 30%;
    margin-left: auto;
    margin-right: 20px;
    display: block;
}

.navbar-light .navbar-nav .nav-link {
	font-size: 16px;
	margin-left: 20px;
	color: #000 !important;
	text-transform: uppercase;
}

.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link:hover {
	opacity: .8;
}

.navbar-light .navbar-toggler {
	border: none !important;
	margin-left: auto !important;;
}

.bar {
	width: 30px;
	height: 3px;
	margin: 5px;
	background: var(--white-color);
	transition: all 300ms ease-in-out;
}

.toggler-btn {
	padding: 5px;
	transition: all 2s ease;
}

.change .bar1 {
	transform: rotate(-45deg) translate(-5px, 6px);
}

.change .bar2 {
	opacity: 0;
}

.change .bar3 {
	transform: rotate(45deg) translate(-5px, -8px);
}

.dropdown-menu.show {
	border-radius: 0px;
}

/*==================== banners*/

.banners {
	min-height: 350px;
}

.banners h4 {
	position: absolute;
	top: 50%;
	left:50%;
	transform:translate(-50%,-50%);
	z-index: 10;
	color: var(--white-color);
	font-size: 30px;
	text-shadow: -2px 3px var(--black-color);
}

@media (max-width: 727px){
	.banners.bg_standard{
		background-position: bottom center;
	}
}


/*==================== main section*/
.main-section {
	margin: 40px 0;
}

/* ---------------presentation du site */
.box-pres {
	margin: 20px 0;
	background-color: rgba(221, 221, 221, 0.34);
	border: 2px solid var(--primary-color);
	border-radius: 3px;
	padding: 5px;
}

.box-pres .box-info h1 {
	font-size: 18px;
	color: var(--black-color);
	font-weight: bold;
	margin: 16px 0px 10px 10px;
}

.box-pres .box-info p {
	font-size: 17px;
	text-align: justify;
	padding: 0 10px;
}

.box-pres .box-info img {
	background: #fff;
	border: 2px solid var(--darker-color);
	padding: 4px;
	margin: 10px;
	border-radius: 3px;
	font-weight: bold;

}

/* ------------------ DG word */

.dg-word {
	background: #fff;
	border: 2px solid var(--primary-color);
	margin: 40px 0;
	padding: 5px;
}

.dg-word .dg-info {
	background-color: var(--primary-color);
}

.dg-word .dg-info h2 {
	color: #fff;
	font-size: 20px;
	text-align: center;
}

.dg-pic {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	margin: auto;
	overflow: hidden;
	border: 2px solid var(--primary-color);
}

.dg-pic img {
	width: 100%;
	height: 100%;
}

.dg-desc p {
	margin: 20px 0;
}

.dg-word a {
	padding: 3px 21px;
	background: var(--primary-color);
	color: #fff;
	display: inline-block;
	text-align: center;
}

/* ========== widgets */
.widgets {
	border: 2px solid var(--primary-color);
	padding: 5px 8px;
	margin: 30px 0;
}

.now-date {
	background: var(--primary-color);
	color: var(--white-color);
	text-align: center;
	padding: 3px;
	margin-bottom: 15px;
}

.widgets-menu ul li {
	margin-bottom: 6px;
}

/* ------------ 3- cnss-ads */

.cnss-ads {
    background-repeat: no-repeat;
    height: 200px;
    margin: auto;
    width: 180px;
}




/* -------------  */
.communiques {
	margin: 40px 0;
}

.box-com {
	border-bottom: 2px solid var(--primary-color);
	border-left: 2px solid var(--primary-color);
	border-right: 2px solid var(--primary-color);
	margin: 20px 0;
}

.com-info {
	background: #2c3691;
	padding: 5px 10px;
	color: #fff;
}

.com-date span {
	display: block;
	text-align: center;
}

.com-info,
.box-com {
	border-radius: 8px 5px 0px 0px;
	overflow: hidden;
}

.com-title h2 {
	 font-size: 16px;
    text-align: center;
    font-weight: normal;
}

.com-title,
.com-img {
	border-left: 3px solid #fff;
	padding-left: 8px;
}

.com-img a {
	color: #fff;
	text-align: center;
}

.com-desc {
	padding: 6px;
}

@media(max-width:767px){
	.com-img a{
		display: block;
	}

	.com-title h2 {
		margin: 10px 0;
	}

	.com-date span{
		margin: 5px 0;
	}

	.copyright{
		text-align: center;
	}

	.footer_area span{
		float: none !important;
		text-align: center;
		display: block;
	}
}

/*==================== slider*/


/* ================= footer area */

.footer_area {    
	background: #00A95C;
	background: linear-gradient(138deg, rgba(0, 169, 92, 1) 14%, rgba(208, 28, 31, 0.67) 78%);
	padding: 20px;
	color: #fff;
}

.copyright_date{
	float: right;
}

.footer-heading {
    letter-spacing: 2px;
}

.footer_area a {
    color: #fff !important; 
    line-height: 40px;
    font-size: 14px;
    transition: all 0.5s;
}

.footer_area a:hover {
    color: #1bbc9b;
}

.contact-info {
    color: #fff;
    font-size: 14px;
}

.footer-social-icon {
    font-size: 15px;
    height: 34px;
    width: 34px;
    line-height: 34px;
    border-radius: 3px;
    text-align: center;
    display: inline-block;
}

.facebook {
    background-color: #4e71a8;
    color: #ffffff;
}

.twitter {
    background-color: #55acee;
    color: #ffffff;
}

.google {
    background-color: #d6492f;
    color: #ffffff;
}

.apple {
    background-color: #424041;
    color: #ffffff;
}

.footer-alt {
    color: #fff;
}

.footer-heading {
    position: relative;
    padding-bottom: 12px;
}

.footer-heading:after {
    content: '';
    width: 25px;
    border-bottom: 1px solid #FFF;
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    border-bottom: 1px solid #373789;
}


/* ================= page */

.item_banner {
	height: 200px;
	position: relative;
	z-index: 9;
}

.item_banner h3 {
	color: var(--white-color);
	position: relative;
	z-index: 10;
}

.item_banner .breadcrumb {
	justify-content: center;
	position: relative;
	z-index: 10;
	background-color: transparent;
}


.item_banner .breadcrumb li a {
	color: var(--white-color);
	font-weight: normal;
}

.item_banner .breadcrumb li {
	font-weight: bold;
	color: var(--white-color);
}

/*========================= single */

.single{
	margin:50px;
}
.blog_pic{
	position: relative;
}

.blog_pic.comm h2{
	margin: 20px 0;
}
.image_fulwidth img {
    max-width: 100%;
    height: 100%;
}

.date_position {
    position: absolute;
    left: 15px;
    bottom: 5px;
    color: #fff;
    font-size: 14px;
    background-color: var(--secondary-color);
    padding: 7px 19px;
    display: inline-block;
}
.blog_pic.comm .date_position{
	right: 15px;
	left: auto;
}
.title_position{
	 position: absolute;
    left: 15px;
    top: -15px;
    color: #fff;
    font-size: 11px;
    background-color: var(--secondary-color);
    padding: 7px 19px;
    display: inline-block;
}

.card{
	overflow: hidden;
}


.card-img-top {
    overflow: hidden;
    height: 200px;
    WIDTH: 200px;
 }

.card-title a{
	font-size: 14px;
}

.act_blog{
	margin-bottom: 60px;
}

.text .btn-primary{
	color: var(--secondary-color) !important;
	background-color: var(--primary-color);
	outline: none;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle{
	background-color: transparent;
	color: unset;
}

.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus{
	box-shadow: unset;
}

/*

New Style 

*/


.carousel-item img {
    height: 300px;
    object-fit: cover;
}

.urgent{
    display: inline-block;
    background: #dc3545;
    text-align: center;
    margin-bottom: 8px;
    padding: 4px 20px;
    border-radius: 4px;
    font-weight: bold;
    color : var(--black-color); 
    position: absolute;
    right: 20px;
    animation: fade-in-out 2s ease-in infinite;
}

@keyframes fade-in-out {
  0% {
    opacity: 0.1;
  }
    25% {
    opacity: 0.5;
  }
    50% {
    opacity: 1;
  }
    75% {
    opacity: 0.5;
  }
    100% {
    opacity: 0.2;
  }
}

.lang li a {
    color: var(--white);
}

.copyright a{
	color: #fff; 
    margin: 0 20px;
 }
 
 .communiques .card{
 	margin-bottom: 20px;
 }
 
.communiques .card-header,.communiques .card-footer{
background: #302C83;
background: radial-gradient(circle, rgba(48, 44, 131, 1) 0%, rgba(48, 44, 131, 0.67) 50%);
    color: #fff;
}

.card-header h2{
	font-size: 16px; 
    text-align: justify;
 }
.communiques .card-footer i, .communiques .card-footer span{
	font-size: 16px; 
    color: #fff;
    margin-right: 10px; 
 }

.communiques a {
background-color: #302C83;;
color: #fff !important; } 
 /* -------- title style ------- */


.line-title {
    position: relative;
    width: 400px;
    padding: 20px 13px;
    border-left: 3px solid var(--primary-color);
    text-transform: uppercase;
    border-radius: 5px;
}
.line-title::before,
.line-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  border-radius: 2px;
}
.line-title::before {
  width: 100%;
  background: #f2f2f2;
}
.line-title::after {
  width: 32px;
  background: var(--primary-color);
}
 
 /* Carousel 4*/
 
 .content {
 position: relative;
  padding: 4rem 0; } 
  
.content .img_bg{
    background-size: cover;
    background-repeat: no-repeat;
    opacity: .5;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
} 
.testimony-29101 .image {
  width: 40%;
  height: 425px;
  background-size: cover;
  background-position: center center; }
  @media (max-width: 991.98px) {
    .testimony-29101 .image {
      height: 300px; } }

.testimony-29101 .text {
direction: ltr; 
  width: 60%;
  padding: 7rem 4rem;
  background: #f8f9fa; }
  .testimony-29101 .text blockquote {
    position: relative;
    padding-bottom: 50px;
    font-size: 18px; }
    .testimony-29101 .text blockquote .author {
      font-size: 14px;
      position: absolute;
      bottom: 0; }

@media (max-width: 991.98px) {
  .testimony-29101 .image, .testimony-29101 .text {
    width: 100%;
    display: block !important; } }

@media (max-width: 991.98px) {
  .slide-one-item .owl-nav {
    display: none; } }

.slide-one-item .owl-nav .owl-prev,
.slide-one-item .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #000; }
  .slide-one-item .owl-nav .owl-prev span,
  .slide-one-item .owl-nav .owl-next span {
    font-size: 30px; }
  .slide-one-item .owl-nav .owl-prev:hover,
  .slide-one-item .owl-nav .owl-next:hover {
    color: #000; }
  .slide-one-item .owl-nav .owl-prev:active, .slide-one-item .owl-nav .owl-prev:focus,
  .slide-one-item .owl-nav .owl-next:active,
  .slide-one-item .owl-nav .owl-next:focus {
    outline: none; }

.slide-one-item .owl-nav .owl-prev {
  left: 20px; }

.slide-one-item .owl-nav .owl-next {
  right: 20px; }

.slide-one-item .owl-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 2; }
  .slide-one-item .owl-dots .owl-dot {
    display: inline-block; }
    .slide-one-item .owl-dots .owl-dot > span {
      -webkit-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
      -o-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
      transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
      display: inline-block;
      width: 20px;
      height: 5px;
      background: #302c83;
      margin: 3px; }
    .slide-one-item .owl-dots .owl-dot.active > span {
      width: 15px;
      background: #0183e9; }
      
      
 .item{
    opacity: 1;
    transition: .4s ease all;
    margin: 0 20px;
    transform: scale(1);
}

.item img{ width:100%; height:500px !important;  }
@media(max-width:1000px){
  .item{margin:0; transform:scale(.9)}
}
.active .item{
  opacity:.5;
  transform:scale(.8);
} 


.owl-item {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1.0, 1.0);
}

.inner{background: rgba(255,255,255,0.6); position:absolute; bottom:30px; left:0; right:0; text-align:center;  padding: 10px;}
.inner a{ color:#302c83; text-decoration:none; border-bottom:3px solid rgba(255,255,255,0.8); transition:.3s ease border-color}
.inner a{
    border-radius: 1px; font-size: 16px; color:#000; border-color:rgba(0,0,0,0.4)}
.inner a:hover{border-color:#000;}
.owl-carousel:after{content:""; display:block; position:absolute; width:8%; top:0; bottom:0; left:50%; margin-left:-4%; pointer-events: none; 
}

.owl-controls{position:absolute; margin-top:300px;}


.navbar-light .navbar-toggler{
	margin-left: auto !important;
 }
 
.toggler-btn {
	border: transparent; 
 }
 
 .wrapper_container{
position:relative; 
padding: 20px 0;
 }

 .wrapper_img {
	position: relative;
 }

 .wrapper_img::before{
	position: absolute;
	background-color: rgba(255,255,255,0.8);
	content: "";
	width: 100%;
	height: 100%;
    top:0;
    left:0;
	
 }
.wrapper_img img {
    width: 100%;
    height: 661px;
    object-fit: cover;
}


.wrapper_text {
    position: absolute;
	content: " ";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	width: 100%;
}

.wrapper_text h2{
  color:  #dc3545;
  font-weight: bold;
  text-align: center;
  font-size: 22px;
}


@media (max-width: 768px) {
   .wrapper_text h2 {
    font-size: 20px !important;
}

}
    
 
  
.ads {
  border: 2px solid #00a95c;
  background: #dc3545;
  color: #fff;
  padding: 50px;
  width: 100%;
  text-align: center;
  font-size: 22px;
}


.single-gallery {
	position: relative;
	margin-bottom:30px;
}

.single-gallery img {
	width: 100%;
}

.single-gallery:hover .gallery-hover {
	-webkit-transform: scale(1);
	        transform: scale(1)
}

.gallery-hover {
	position: absolute;
	left: 0;
	top: 0;
	text-align: center;
	width: 100%;
	height: 100%;
	-webkit-transform: scale(0);
	        transform: scale(0);
	-webkit-transition: .5s;
	transition: .5s
}

.gallery-content {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	height: auto;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	color: #fff;
}

.gallery-hover:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background-color: black;
	left: 0;
	top: 0;
	opacity: .85;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
}

.gallery-content h3 a {
	color: #fff;
	font-size: 20px;
	text-transform: capitalize;
	margin: 0px;
	display: block;
}

.gallery-content h3 a span {
	display: block;
	font-weight: 300;
	font-size: 15px;
	margin-top: 7px;
}

.gallery-content h3 a i.fa {
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid #fff;
	line-height: 40px;
	margin: 0 auto;
	margin-bottom: 10px;
}


/* Blog Area */
.post-content {
	padding: 30px 20px;
}

.post-title h4 {
	text-transform: capitalize;
	font-size: 20px;
}

.post-title {
	margin-bottom: 10px;
}

.pots-meta ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pots-meta ul li {
	display: inline-block;
	text-transform: uppercase;
	font-size: 13px;
}

.pots-meta ul li:before {
	content: "/";
	padding: 0 5px;
}

.pots-meta ul li:first-child:before {
	content: "";
	padding-left: 0px;
	margin-left: -5px;
}

.pots-meta {
	margin-bottom: 10px;
	border-bottom: 1px dashed #eee;
	padding-bottom: 10px;
}
.single-blog .box-btn {
	margin-top: 20px;
}

.single-blog {
	border: 1px solid #eee;
	margin-bottom:20px;
}

.single-blog img {
	width: 100%;
}

.google-map iframe {
	width: 100%;
	height: 295px;
	border: 1px solid gray;
}

.blog-single h2, .portfolio-single h2 {
	margin-bottom: 20px;
  }
  .blog-single img, .portfolio-single img {
	width: 100%;
	border: 1px solid #ddd;
	padding: 3px;
  }
  .blog-single p, .portfolio-single p {
	margin: 20px 0;
  }
  .comments h4 {
	text-transform: capitalize;
	margin-bottom: 20px;
	margin-top: 40px;
  }
  .comments input, .comments textarea {
	width: 100%;
	border: 1px solid #ddd;
	margin-bottom: 20px;
	padding: 10px;
  }
  .blog-single input[type="submit"] {
	background-color: var(--primary-color);
	width: auto;
	color: #fff;
	padding: 10px 30px;
	font-weight: bold;
	cursor: pointer;
  }
  
.single-sidebar h4, .portfolio-sidebar h4 {
	text-transform: capitalize;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid #ddd;
  }
  .single-sidebar ul, .portfolio-sidebar ul {
	margin: 0;
	padding: 0;
	list-style: none;
  }
  .single-sidebar, .portfolio-sidebar {
	margin-bottom: 50px;
  }
  .single-sidebar ul li, .portfolio-sidebar ul li {
	margin-bottom: 5px;
	padding-bottom: 5px;
	font-size: 16px;
	font-weight: 600;
  }

  /* BTN Css */
a.box-btn {
	background-color: #00a95c;
	display: inline-block;
	color: #fff;
	padding: 10px 25px;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 1px;
	position: relative;
}

a.border-btn {
	border: 2px solid #dc3545;
	display: inline-block;
	color: #fff;
	padding: 8px 25px;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 1px;
	position: relative;
}

a.box-btn i.fa {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	right: 25px;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	-webkit-transition: .5s;
	transition: .5s;
}

a.box-btn:hover i.fa {
	right: 10px;
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.video-area .card {
	margin: 20px 0 ;
}
.video-area .card iframe{
	width: 100%;
	height: 200px;
}