/********** Template CSS **********/
:root {
    --primary: #32C36C;
    --light: #F6F7F8;
    --dark: #1A2A36;
}

body {
        color: #333333;
        font-family: "Open Sans",sans-serif !important;
}

p {
    font-size: 1.125rem;
    color: #333333;

}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary{
    color: #FFFFFF;
    background-color: #0476b2;
    border-color: #0476b2;
}

.btn.btn-primary:hover {
    color: #FFFFFF !important;
    background-color: #173849 !important;
    border-color: #173849 !important;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 70px;
    height: 70px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

/*.navbar .navbar-brand,
.navbar a.btn {
    height: 50px;
}*/

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
    .logo-agri {
        width:25% !important;

    }

   /* nav.navbar.navbar-expand-lg.navbar-dark {
            background-color:#F2F8F2 !important;
        }*/

    .navbar .navbar-nav {
        /*border-top: 1px solid #EEEEEE;*/
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }


    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 42%);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(255, 255, 255, .9);
    border-radius: 45px;
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    border-radius: 45px;
    transition: .5s;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/slide-banner-3.png) center center no-repeat;
    background-size: cover;
    min-height: 293px;
}

.page-sections-chcles {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/chiffres-cles.png) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.page-sections-gpproduct {
    /*height:500px;*/
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/gp-product.png) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.gp-document {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/gp-document.png) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.section-carte {
    background: url(../img/bg-carte.png) no-repeat;
    background-size: cover;
}



.breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-icon {
    position: relative;
    margin: -50px 0 25px 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 100px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover .service-icon {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-img {
    position: relative;
}

.portfolio-img::before,
.portfolio-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    background: #00953285;
    transition: .5s;
}

.portfolio-img::before {
    left: 50%;
}

.portfolio-img::after {
    right: 50%;
}

.portfolio-item:hover .portfolio-img::before {
    width: 49%;
    left: 0;
}

.portfolio-item:hover .portfolio-img::after {
    width: 51%;
    right: 0;
}

.portfolio-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 1;
    transition: .5s;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
    transition-delay: .3s;
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    border-radius: 8px 60px 0 0;
}

.team-item .team-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: #FFFFFF;
    transition: .5s;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }

}

@media (max-width: 992px) {
.logo-drapeau-republique, .logo-agriexport {
    padding-bottom: 30px;
}
}
.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    color: #009532;
    border: 1px solid #009532;
    border-radius: 38px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: #0476b2;
    border-color: #0476b2;
}

.footer p.mb-2 {
    color: black;
}


.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: black;
    font-weight: normal;
    /*text-transform: capitalize;*/
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #0476b2;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 10px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

i.faicon-menu {
color: #0FA958;
padding-right: 10px;
}

i.faicon-menu-home {
    color: #0FA958;
    /* padding-left: 3rem !important;*/
    }
.bg-soft {
    padding-bottom: 8px;
    padding-top: 8px;
    background-color: #F2F8F2;
}
/* a.nav-link.top-menu {
    color: black;
    border-right: 1px solid;
    padding: 0px;
}

a.nav-link.top-menu-lng {
    border-right: 1px solid black;
    padding: 0px;
}*/

span.bar-top-menu {
    color: black;
    padding-right: 12px;
    padding-left: 12px;
}

a.nav-link.top-menu-cnt {
    color: black;
    /*padding: 0px;*/
}
.p-item {
    padding-top: 7px;
}

.chiffres-counter, .title-counter {
    text-align: center;
    color: white;
}

h5.title-counter.mb-3.pt-3 {
    font-size: 21px;
}

h1.chiffres-counter.mb-0 {
    font-size: 33px;
}
.chiffres-cles-section .wow.fadeIn {
   /* border-left: 1px solid white;*/
    margin-bottom: 50px;
}
/* start slider acc */

/***annoce**/

.sec_annoce .prol_annonce {
    background: #ff0000;
    padding: 10px;
    color: white;
    font-size: 13px;
    margin-bottom: 10px;
}
a.link-ext.py-3.pr-5.mt-6.px-7 {
    font-size: 20px;
    font-weight: 500;
    color: #0062b7;
}

a.link-ext.py-3.pr-5.mt-6.px-7:hover {
    color: #ffbf06;
}

.sec_annoce .card small {
    font-weight: 700;
}
.sec_annoce .date_ouv_exp {
    color: var(--bleu);
}
.owl-dots {
    display: flex;
    justify-content: center;
    margin: 20px;
}

.owl-dot{
    width: 14px;
    height: 14px;
    border-radius: 100%;
    background-color: #cbcbcb;
    margin: 6px;
}

.owl-dot {
    position: relative;
}

.bloc_act .container, .bloc_projet .container, .sec_annoce .container
{    position: relative;
}
.bloc_act .btn_act,.sec_annoce .btn_act,
.bloc_projet  .btn_act,
.sec_offre .btn_act,
.sec-offre .btn_act,
.sec-recru .btn_act{
    background: var(--bleu);
    border-color: var(--bleu);
}
.bloc_act .btn_act:hover,.sec_annoce .btn_act:hover,
.bloc_projet  .btn_act:hover,
.sec_offre .btn_act:hover,
.sec-offre .btn_act:hover{
    background: var(--primary);
    border-color: var(--primary);
}
.bloc_act i.prev, .bloc_act i.next,
.sec_offre i.prev, .sec_offre i.next,
.bloc_projet i.prev,
.bloc_projet i.next,
.sec-offre i.next,
.sec-offre i.prev {
    position: absolute;
    top: 50%;
    color: white;
    padding: 10px;
}
.sec_annoce i.prev,
.sec_annoce i.next
{
    position: absolute;
    top: -46px;
    color: white;
    padding: 10px;
}

.sec_annoce i.next {
    left: 51%;
}
.sec_annoce i.prev{
    right: 50%;
}

.bloc_act .disabled i.prev, .bloc_act .disabled i.next,
.bloc_projet .disabled i.prev,
.bloc_projet .disabled i.next,
.sec_annoce .disabled i.next,
.sec_annoce .disabled i.prev,
.sec-offre .disabled i.prev,
.sec-offre .disabled i.next
{
    background-color: var(--primary);
    opacity: 0.5;
}

.bloc_act i.next,.bloc_projet i.next ,.sec-offre i.next  {
    right: 0;
}
.bloc_act i.prev, .bloc_projet i.prev, .sec-offre i.prev{
    left: 0;
}
.bloc_act i.next,.bloc_projet i.next , .sec-offre i.next {
    right: -35px;
}
.bloc_act i.prev ,.bloc_projet i.prev ,.sec-offre i.prev{
    left: -35px;
}

.bloc_act #ch_cles  i.next {
    right: -35px;
}
 .bloc_act #ch_cles i.prev {
    left: -35px;
}

.owl-dot.active {
    background-color: #009532;
}
/* .sec-offre .post-slide .text-center a {
    color: var(--bleu);
    background-color: #e9ecef;
    padding: 20px;
} */

/* end slider acc */

svg {
   /* width: 90vw;
    height: 90vh;*/
  }
  .carte path {
    stroke: #b1abab;
    fill: white;
    cursor: pointer;
  }
  .clickableCountry:hover {
    fill: #0476B2 !important;
    cursor: pointer !important;
  }
  .country{
    cursor: default !important;
  }
  .post-slide {
    margin: 0 15px;
}
.post-content {
    padding: 20px;
    text-align: center;
}

.post-slide .post-img img {
    height:244px;
    transform: scale(1);
    transition: all 1s ease-in-out 0s;
}
.post-slide:hover .post-img img {
    transform: scale(1.08);
}

/*.owl-stage-outer {
    padding-bottom: 28px;
}*/

img.img-partner {
    width: 50% !important ;

}

.bg-green {
    background-color: #009532;;

}
.text-footer {
    font-style: italic;
}

.partner-logos .owl-item {
    text-align: center;
}
.partner-logos .owl-item img {
    width: 50%;
}

.portfolio-img.box.document.rounded.overflow-hidden{
    border: 1px solid gray;
    padding: 20px;
}

.rounded-img {
    width: 15%;
    border: 1px solid;
    border-radius: 90px !important;

}
p.date.text-primary {
    padding-top: 32px;
    padding-left: 15px;
}
select {
    /* Reset Select */
    appearance: none;
    outline: 0;
    border: 1px solid black;
    box-shadow: none;
    /* Personalize */
    flex: 1;
    padding: 0 1em;
    color: black;
    background-color: var(--darkgray);
    background-image: none;
    cursor: pointer;
  }


  /* Remove IE arrow */
  select::-ms-expand {
    display: none;
  }
  /* Custom Select wrapper */
  .select {
    position: relative;
    display: flex;
    width: 20em;
    height: 3em;
    /*border-radius: .25em;*/
    overflow: hidden;
  }
  /* Arrow */
  .select::after {
    content: '\25bc';
    position: absolute;
    top: 0;
    color: white;
    right: 0;
    padding: 1em;
    background-color: #009532;
    transition: .25s all ease;
    pointer-events: none;
  }
  /* Transition */
  .select:hover::after {
    color: white;
  }

  /*#select-filter .col-lg-4 {
    text-align: -webkit-center;

  }*/

  /* select statistiques */
  .stat-select select {
    /* Reset Select */
    appearance: none;
    outline: 0;
    border: 1px solid black;
    box-shadow: none;
    /* Personalize */
    flex: 1;
    padding: 0 1em;
    color: black;
    background-color: var(--darkgray);
    background-image: none;
    cursor: pointer;
  }

  .stat-select .stat-select .select select {
    width: auto !important;
  }
  /* Remove IE arrow */
  .stat-select select::-ms-expand {
    display: none;
  }
  /* Custom Select wrapper */
  .stat-select .select {
    position: relative;
    display: flex;
    width: 11em;
    height: 3em;
    border-radius: .25em;
    overflow: hidden;
  }
  /* Arrow */
  .stat-select .select::after {
    content: '\25bc';
    position: absolute;
    top: 0;
    color: white;
    right: 0;
    padding: 1em;
    background-color: #009532;
    transition: .25s all ease;
    pointer-events: none;
  }
  /* Transition */
  .stat-select .select:hover::after {
    color: white;
  }

    /* select statistiques */


  .page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #009532;
    border-color: #009532;
}

.title-partner {
    color: #009532;

}
h6.date-article {
    color: #adadad;
    font-weight:300;
}

.btn-outline-light {
    color: #009532;
    background-color: white;
    border-color: #F6F7F8;
}

.btn-outline-light:hover {
    color: #009532;
    background-color: #F6F7F8;
    border-color: #009532;
}

.btn-success {
    color: #fff;
    background-color: #009532;
    border-color:#009532;
}

.col-lg-12.text-center.img_details_article {
    margin-top: -141px;
}

span.title-document {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 14px;
}

.table.table-stat thead tr {
    background-color: #00993433;
    color: black;
}

.table.table-stat thead tr:hover {
    background-color: #00993433;
    color: black;
}
table.table-stat tr:nth-child(even) {background-color: #f2f2f2;}
table.table-stat tr:hover {
    background-color:#f2f2f2;
}


.document-associes .portfolio-img.box.document.rounded.overflow-hidden {
    border: 1px solid white;
    padding: 20px;
}

.document-associes p.date.text-primary-date {
    padding-top: 32px;
    padding-left: 15px;
}

.document-associes .text-primary-date {
    color: white !important;
}

/* .document-associes .portfolio-img::before, .portfolio-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    background: #d9ddda85;
    transition: .5s;
} */

.select-statistiques {
    padding: 35px;
    color: #333;
   /* background: linear-gradient(#fff,#ebebeb) repeat scroll 0 0 transparent;*/
    background-color: #F2F8F2;
    font-weight: 600;
    border-radius: 6px;
}

/* start date picker style */
table.table-condensed {
    width: 345px;
}



/* end date picker style */

span.span-modal {
    font-style: italic;
    font-weight: 500;
    color: black;
}

.modal-dialog {
    max-width: 800px;
}

optgroup {
    color: black;
}


  label.form-check-label {
    font-weight: 400;
}

/* mega Menu style */
.navbar .megamenu{
    padding: 1rem;
}
/* ============ desktop view ============ */
@media all and (min-width: 992px) {

	.navbar .has-megamenu{position:static!important;}
	.navbar .megamenu{left:0; right:0; width:100%; margin-top:0;  }
    /* .px-menu {
        padding-right: 0rem;
        padding-left: 0rem;
    }*/


}
/* ============ desktop view .end// ============ */


/* ============ mobile view ============ */
@media(max-width: 991px){
	.navbar.fixed-top .navbar-collapse, .navbar.sticky-top .navbar-collapse{
		overflow-y: auto;
	    max-height: 90vh;
	    margin-top:10px;
	}

   /* .dropdown-menu.megamenu.show .row.g-3 {
        font-size: 9px;
    }*/

    /* .px-menu {
        padding-right: 0rem;
        padding-left: 0rem;
    } */
}
/* ============ mobile view .end// ============ */

/* Mega Menu style end */

#groupe-product-slider .post-img {
    width: 100%;
}

/* .px-menu {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
}*/

@media(max-width: 991px){
	a.nav-link.top-menu-lng, a.nav-link.top-menu, a.nav-link.top-menu-cnt {
        border-right:none;
        /*text-align: center;*/
    }
    .col-lg-4.col-md-3.col-sm-3.btn-top-menu  {
        text-align: center;
        padding-bottom: 15px;
        padding-top: 15px;

    }
    .navbar .navbar-nav .nav-link {
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    .btn-top-menu {
        display:none;

    }
    span.bar-top-menu {
        padding-left: 12px;
        padding-right: 12px;
    }


    /*.menu-elements ul {
        justify-content: center !important;
    }*/

}
@media (max-width: 563px) {
     [dir="rtl"] .menu-elements .nav-item a {
       font-size: 10px !important;

    }
}
@media(max-width: 1150px){
.navbar .navbar-nav .nav-link {
    font-size: 11px;
}

.logo-min {
    padding: 10px !important;
    height: 55% !important;
    width: 28% !important;
}

.pr-min-tun {
    font-size: 8px !important;
}

.logo-agri {
    padding-top: 20px;
}
.logo-min {
    padding: 10px;
    height: 87%;
    width: 22%;
}
/*.logo-agri {
    width: 100% !important;
}*/
}

/* drop down menu */
@media (max-width: 576px) {
    .megamenu a.dropdown-item {
        white-space: unset;

                }
 }



 .title-service {
    padding-bottom: 3rem !important;
 }

/*  @media(max-width:460px) {
    .dropdown-menu.top-menu-lng.bg-light.m-0.lang_change.show{
    margin-left: 88px !important;
}
}*/



.datepicker.datepicker-dropdown.dropdown-menu.datepicker-orient-left.datepicker-orient-bottom, .datepicker.datepicker-dropdown.dropdown-menu.datepicker-orient-left.datepicker-orient-top{
    color: black !important;
    /* padding: 7px; */
    padding: 0.5rem 0.5rem !important;
    cursor: pointer !important;
    }

    .datepicker .table-condensed tbody {
        text-align: center;

    }
    .datepicker .table-condensed thead {
        text-align: center;
        color: #009532;

    }
    .logo-agri {
        width: 60%;
    }

    .logo-min {
        width:100%
    }

   /*  .bg-green.document-associes .portfolio-img::before, .portfolio-img::after {
        position: absolute;
        content: "";
        width: 0;
        height: 100%;
        top: 0;
        background: rgba(255, 255, 255, 0.164) !important;
        transition: .5s;
    }

    .bg-green.document-associes .portfolio-img::before, .portfolio-img::after {
        position: absolute;
        content: "";
        width: 0;
        height: 100%;
        top: 0;
        background: rgba(255, 255, 255, 0.164) !important;
        transition: .5s;
    } */

    h6.title a {
        color: #1A2A36;
    }

    h6.title a:hover {
        color: #0FA958;
    }
    .menu-elements ul {
        justify-content: center;
        align-items: center;
        display:flex;
        list-style: none;
    }

    .dropdown-menu.megamenu.show {
        border-top: 1px solid #2c8928 !important;
    }

    .drapeau_tun-popup {
        width: 65px;
        height: 37px;;
        padding-right: 10px;
      }
      .dlab-login .login-form-box {
        background-color: #fff;
    }

    .dlab-login {
        position: relative;
        padding: 0;
    }

    .page-content {
        margin-top: 0;
    }

    /*.menu-elements li {
        padding-right: 30px;
    }*/
    /*li.item-elements-top {
        padding-top: 7px;
    }*/




    /* Start rtl style */

    [dir="rtl"] .breadcrumb-item+.breadcrumb-item::before {
        float: right !important;
        padding-left: 0.5rem;
    }
    [dir="rtl"] .breadcrumb-item+.breadcrumb-item {
        padding-right: 0.5rem;
    }
    [dir="rtl"] i.fa.fa-arrow-right.ms-2 {
        transform: rotate(180deg);
        margin-right: 0.5rem !important;
    }

    [dir="rtl"] .position-relative.p-4.pt-3 {
        text-align: right;
    }

    [dir="rtl"] .accordion-button::after {
        margin-right: auto !important;
        margin-left:0;
    }

    [dir="rtl"] .form-floating>label {
        left: unset;
        right: 0;
    }
    [dir="rtl"] .header-carousel .owl-dots {
        left: 30px;
    }
    [dir="rtl"] .chiffres-cles-section .col-md-6.col-lg-3.wow.fadeIn {
        border-right: 1px solid white;
        border-left: none;
    }

    [dir="rtl"] i.fa.me-3 {
        margin-left: 1rem !important;
        margin-right: 0rem !important;
    }

    [dir="rtl"] span.bar-top-menu {
        color: black;
        padding-left: 12px;
        padding-right: 0px;
    }

    [dir="rtl"] .dropdown-menu {
        text-align: right;
    }

    [dir="rtl"] .list-unstyled {
        padding-right: 0;
        list-style: none;
    }

    [dir="rtl"] i.faicon-menu {
        color: #0FA958;
        padding-right: 10px;
        transform: rotate(180deg);
    }

    [dir="rtl"] .owl-carousel-inner .justify-content-start {
        justify-content: end !important;
        text-align: end;
    }

    [dir="rtl"] .footer .btn.btn-link::before {
        margin-left: 10px;
        float: right;
        transform: rotate(180deg);
    }

    [dir="rtl"] .footer .btn.btn-link {
        text-align: right;
    }

    [dir="rtl"]  button.btn.btn-primary .me-2 {
        margin-left: 0.5rem !important;
        margin-right: 0 rem !important;
    }

    [dir="rtl"] button.btn.btn-primary.py-2.position-absolute.top-0.mt-2.me-2 {
        margin-left: 0.5rem !important;
        margin-right: 0rem !important;
    }
    [dir="rtl"] button.btn.btn-primary.end-0 {

            right: auto !important;
            left: 0 !important;
    }

    [dir="rtl"] .footer .btn.btn-social {
        margin-left: 5px;
        margin-right: 0px;
    }

    @media (min-width: 992px) {
        [dir="rtl"] .pe-lg-0 {
        padding-left: 0 !important;
      }
    }

    @media (max-width: 600px){
      .owl-nav i.prev {
      left: 0;
    }

     }

     @media (max-width: 600px){
        .owl-nav i.next {
        right: 0;
     }
    }

    [dir="rtl"] .fa.fa-download {
        padding-right: 10px;
        float: left;
      }

      [dir="rtl"] .drapeau_tun-popup {
        padding-left: 10px;
        width: 65px;
        height: 37px;;
      }

      [dir="rtl"] span.span-modal {
        float: right;
    }

    /*[dir="rtl"] .p-lg-5.pe-lg-0 {
        padding-left: 0 !important;
        padding-right: none !important;
    }*/


    /* section chiffres cles */

    .chiffres-cles-section .icone_chiffre
    {
        font-size: 85px;
        color: white;
    }

    .service-item {
        text-align: center;
    }

    .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
        color: #0fa958 !important;
    }
    /* style statistic table*/
    #thead_data tr{
        background-color: #F2F8F2;
        color: #000;
    }

    .slider-main-acc .owl-carousel .owl-item img {
        display: block;
        width: 100% !important;
        /*height: 750px !important;*/
        height: 453px;
    }

    .megamenu a.dropdown-item {
        white-space: unset !important;

    }

    .item-elements-top .nav-link {
        padding: 0px !important;
    }

    .bg-blue {
        background-color: #0476b2 !important;
    }

    hr.title-acc {
    width: 20%;
    margin: auto;
    height: 5px;
    color: #009532;
    text-align: center;
    opacity:1;
    }
    .title-acc-white {
    width: 10%;
    margin: auto;
    height: 5px !important;
    color: white;
    text-align: center;
    opacity:1;

    }

    .menu-elements .nav-item a {
        font-size: 15px;
        font-weight: bold;
        color:#333333;
    }
    .menu-elements .nav-item a:hover {
        color:#32C36C;
    }

    .menu-elements .dropdown-item.active, .dropdown-item:active {
        color: #fff !important;
        text-decoration: none;
        background-color: #32C36C;
    }


.service-item img.img-fluid {
    height: 244px;
    width: 100%;
}

.img_details_article img {
    width: 100%;
    height: 359px;
}

.position-relative.p-4.pt-3 {
    text-align: left;
}

@media (min-width: 992px){
.navbar-expand-lg .navbar-collapse {
    justify-content: center !important;
}
}

/* style spesifique collapse  */
.accordion-button:not(.collapsed) {
    color: white;
    background-color: #009532;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.125);
}

.accordion-button {
    color: #2db061;
    background-color: #ebf9f0;
    border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
}

/* style spesifique collapse  */


/* start news bar marquee*/
.news-holder {
    height: 50px;
    padding: 0 20px;
    background-color: #009532;
    position: relative;
    overflow: hidden
}

.news {
    white-space: nowrap;
    position: absolute;
    top: 5px;
    left: 100%;
    width: 100%;
    height: 40px;
    line-height: 40px;
}

.news .new {
    display: inline-block;
    padding: 0 10px;
    color: white;
    position: relative;
}

.news .new:not(:last-child):after {
    content: "";
    width: 1px;
    height: 24px;
    position: absolute;
    right: 0;
    top: 8px;
    background-color: #e7ded4;
}

/* end news bar marquee*/

/* Start style marker*/
::marker {
    color: #009532;
    /*font-size: 25px;*/
}

/* End style marker*/

.breadcrumb-item.active {
    text-decoration: underline !important;
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
  }
  [class^="bi-"]::before, [class*=" bi-"]::before {
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    padding: 8px;
    /* padding-top: 8px; */
    /* padding-bottom: 8px; */
    justify-content: center;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.owl-carousel, .owl-carousel.owl-loaded {
    direction: ltr;
}

.py-5-header {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

a#btn-search {
    width: 100%;
    height: 48px;
    padding: 12px !important;
    border-radius: 0px;
}

.breadcrumb-item a {

    color: #000;
}

.breadcrumb-item.active {
    color: #32c36c;
    font-weight: bold;
    /* text-decoration: underline !important; */
}
.breadcrumb {
    padding-bottom: 30px;
}

.pr-min-tun {
    font-size: 13px;
    padding-top: 20px;
    padding-bottom: 2px;
    font-weight: bold;
}
.lng-sch {
    justify-content: center;
    align-items: center;
    display: flex;
    list-style: none;
}

a.btn-top-menu.btn.btn-primary {
    border-radius: 25px;
}

h3.display-2.text-white.slideInDown {
    font-size: 2.5rem;
}

.slider-main-acc h1 span {
    font-size: 29px !important;
    font-weight: 500 !important;
}

.footer .fa, .fas {
    color: #009532;
    font-weight: 900;
}

.page-header h1.text-white.mb-3.animated.slideInDown {
    padding-top: 39px;
}

.page-header .container.py-5 {
 padding-top: 1rem !important;
padding-bottom: 0rem !important;
}

.page-header h1.text-white.mb-3.animated.slideInDown {
    font-size: 2rem;
}
ol.breadcrumb {
    padding-top: 80px !important;
    padding-bottom:0px;
}




/*.navbar .navbar-nav .nav-link a:last-child {
    margin-right: 0px;
}*/

/*ul.dropdown-menu.dropdown-menu-end:last-child {
    margin-left: -138px;
}*/











