/*!
Theme Name: AO
Theme URI: http://emagin.ma/
Author: EMB
Author URI: http://emagin.ma/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: ao
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

AO is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*________________ Commun _________________*/
html,
body {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.3;
    color: #282828;
    /* -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; */
    overflow-x: hidden;
    overflow-y: scroll;
    width: 100%;
    height: 100%;
    background-color: #f1efea;
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
    /* disable callout, image save panel (popup) */
    -webkit-tap-highlight-color: transparent;
    /* "turn off" link highlight */
}

a:focus {
    outline: 0;
}

a {
    text-decoration: none;
    color: #282828;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

a:hover {
    color: #f67300;
}

p {
    padding: 0;
    margin: 0 0 25px;
    margin: 0 0 1.73611vw;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0 0 2.016129vw;
    font-weight: 400;
    line-height: 1;
}

.is-hiddenInDesktop {
    display: none;
}

h1,
.h1 {
    font-size: 70px;
}

h2,
.h2 {
    font-size: 40px;
}

h3,
.h3 {
    font-size: 35px;
}

h4,
.h4 {
    font-size: 24px;
}

h5,
.h5 {
    font-size: 20px;
}

h6,
.h6 {
    font-size: 14px;
}

.margin__b0 {
    margin-bottom: 0 !important;
}

.padding__b0 {
    padding-bottom: 0 !important;
}

.padding__r0 {
    padding-right: 0 !important;
}

.margin__t100 {
    margin-top: 100px !important;
}

.event__none {
    pointer-events: none;
}

.transition__none {
    -webkit-transition: none !important;
    transition: none !important;
}

.text__small {
    font-size: 12px;
}

.text__xsmall {
    font-size: 10px;
}

.text__light {
    font-weight: 300;
}

.text__regular {
    font-weight: 400;
}

.text__medium {
    font-weight: 500;
}
.text__bold,
strong,
b {
    font-weight: 700;
}
.text__black {
    font-weight: 900;
}
.text__italic {
    font-style: italic;
}

.text__justify {
    text-align: justify;
}

.text__center {
    text-align: center;
}

.text__right {
    text-align: right;
}

.text__left {
    text-align: left;
}

.text__uppercase {
    text-transform: uppercase;
}

.text__lowercase {
    text-transform: lowercase;
}

.text__underline {
    text-decoration: underline;
}

.text__font1 {
    font-family: "Lato", sans-serif;
}

.text__font2 {
    font-family: "Montserrat", sans-serif;
}

.text__font3 {
    font-family: "Roboto", sans-serif;
}

.text__font4 {
    font-family: "Cinzel", serif;
}

.text__color1 {
    color: #e77a0e !important;
}

.text__color2 {
    color: #282828 !important;
}

.text__color3 {
    color: #753900 !important;
}

.text__white {
    color: white;
}

.list__inline > li {
    display: inline-block;
}

.list__inline .list__inline {
    display: inline-block;
}

.pos__relative {
    position: relative;
}

.pos__relative.is-fit {
    width: 100%;
    height: 100%;
}

.pos__fixed {
    position: fixed;
}

.pos__fixed.is-fit {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.pos__absolute {
    position: absolute;
}
.pos__absolute.is-fit {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.dis__table {
    display: table;
}
.dis__table > * {
    display: table-cell;
    vertical-align: middle;
}
.dis__table.is-fit {
    width: 100%;
}

.dis__inline_block {
    display: inline-block;
}

.dis__block {
    display: block;
}

.dis__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.dis__flex.flex-align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.dis__flex.flex-align-stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}
.dis__flex.flex-align-bottom {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.dis__flex.flex-space-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.dis__flex.flex-space-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}
.dis__flex.flex-justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.dis__flex.flex-justify-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}
.dis__flex.flex__row_wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}
.dis__flex.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.site__divider {
    height: 30px;
    height: 3.33333vh;
}
.site__divider.is-cent {
    height: 100px;
    height: 11.11111vh;
}
.site__divider.is-soixantequinze {
    height: 75px;
    height: 8.33333vh;
}
.site__divider.is-cinquante {
    height: 50px;
    height: 5.55556vh;
}
.site__divider.is-trente {
    height: 30px;
    height: 3.33333vh;
}
.site__divider.is-vingt {
    height: 20px;
}
.site__divider.is-quinze {
    height: 15px;
}

.site__loader {
    background: url("images/loader.gif") 0 0 no-repeat;
    display: block;
    width: 42px;
    height: 42px;
    margin: 100px auto;
}

.wrapper {
    width: calc(100% - 6.94vw);
    margin: 0 auto;
    max-width: 1240px;
}

/*_____________Freelance____________*/

.filter-black,
.filter-white {
    position: relative;
}

.filter-black:after,
.filter-white:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    height: 100%;
    width: 100%;
    z-index: 0;
}
.filter-white:after {
    background-color: #fff;
}

/* .chart-organization ul li ul */
.center-all {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 100;
    width: 100%;
    text-align: center;
}

/*________________ Header _________________*/

#site-header {
    width: 332px;
    height: 150px;
    background: url("images/bg-header.jpg") no-repeat 0 0 / cover;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 99999;
    padding: 30px 35px;
}

#site-header .lang {
    position: absolute;
    right: 15px;
    top: 15px;
}

#site-header .logo__wrapper img {
    width: 113.5px;
}

#menu-icon {
    position: absolute;
    right: 70px;
    top: 50%;
    display: block;
    width: 45px;
    height: 21.5px;
    margin: 0 auto;
    z-index: 200;
    transform: translateY(-50%);
}
#menu-icon span {
    display: block;
    width: 100%;
    height: 3.5px;
    background: white;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    position: absolute;
    left: 0;
}
#menu-icon span:first-child {
    top: 0;
}
#menu-icon span:nth-child(2) {
    top: 8.5px;
}
#menu-icon span:last-child {
    top: 17px;
}
#menu-icon.active span {
    background: white;
}
#menu-icon.active span:first-child {
    top: 9px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
#menu-icon.active span:nth-child(2) {
    left: -60px;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
}
#menu-icon.active span:last-child {
    top: 9px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
#menu-icon:hover span {
    background: #f67300;
}

.open-menu #site-header {
    background: none;
    position: fixed;
}

.open-menu #site-header .lang {
    display: none;
}

/*________________ Menu _________________*/

.menu-site {
    display: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background: url("images/menu-bg.gif") center top/cover no-repeat;
    z-index: 9999;
    padding: 60px 0;
}

.menu-site .center-all {
    text-align: left;
}

.menu-site .dis__flex > div {
    width: 50%;
    height: 75vh;
    padding: 0 50px;
    position: relative;
}

.menu-site > .dis__flex > div:first-child {
    padding-top: 50px;
}

.menu-site .dis__flex > .dis__flex {
    padding: 0;
}

.menu-site > .row > [class*="col-"]:after,
.menu__col_border:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: #656565;
}

.menu-site .link-menu {
    padding: 25px 0 25px 50px;
    border-bottom: 1px solid #656565;
    position: relative;
}

.menu-site .link-menu a {
    color: #fff;
    font-family: "Cinzel", sans-serif;
    font-size: 39px;
    font-weight: 400;
}

.menu-site .link-menu i {
    position: absolute;
    right: 50px;
    top: 45px;
    color: #fff;
    font-size: 20px;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.menu-site .link-menu.active i {
    transform: rotate(180deg);
    color: #f67300;
}

.menu-site .link-menu ul {
    /* padding: 0; */
    display: none;
}

.menu-site .link-menu ul li {
    padding-top: 5px;
}

.menu-site .link-menu ul li a {
    font-size: 15px;
}

.menu-site .link-menu a:hover,
#menuTransversal li.current_page_item a,
.menu-site .link-menu.active > a,
.menu-site .link-down a:hover {
    color: #f67300;
}

.menu-site .link-down {
    padding: 50px 0 0 50px;
}
.menu-site .link-down a {
    color: #fff;
    font-family: "Cinzel", sans-serif;
    font-size: 20px;
    font-weight: 400;
    display: block;
    margin-bottom: 10px;
}

.menu-site .link-legal {
    margin-top: 35px;
}

.menu-site .link-legal a {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    text-transform: uppercase;
}

.menu-site .block-new {
    display: block;
    margin-bottom: 35px;
}

.menu-site .block-new:last-child {
    margin-bottom: 0;
}
.menu-site .block-new img {
    width: 100%;
    height: 150px;
}

.menu-site .block-new h3 {
    transition: all 300ms ease-in-out;
}

.menu-site .block-new:hover h3 {
    color: #f67300;
}

.menu-site .social-menu {
    border-top: 1px solid #656565;
    border-bottom: 1px solid #656565;
    padding: 30px 0;
    text-align: center;
    width: 100%;
    /* margin-bottom: 85px; */
    margin: 75px 0;
}
.menu-site .social-menu .social-media {
    transform: none;
}

.menu-site .newsletter .h3-e {
    padding-bottom: 35px;
    margin: 0;
}

.menu-site .newsletter button {
    position: absolute;
    right: 20px;
    top: auto;
}

/*________________ Visu _________________*/

.section-head {
    height: 450px;
}
.section-head img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* .section-head .center-all {
    margin-top: 75px;
} */

/*________________ Breadcrumbs _________________*/

#breadcrumbs__wrapper {
    background: url("images/bg-after-header.jpg") no-repeat 0 0 / cover;
    padding: 30px 0;
}

#breadcrumbs {
    padding: 0;
    margin: 0;
}
#breadcrumbs * {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 400;
}

#breadcrumbs a {
    color: #282828;
}

#breadcrumbs > span > span > a:before {
    content: "";
    background: url("images/homeIcon.png") 0 0 / cover no-repeat;
    display: inline-block;
    width: 11.5px;
    height: 10px;
    margin-right: 15px;
}

#breadcrumbs a:hover,
#breadcrumbs .breadcrumb_last {
    color: #e99d63;
}

#breadcrumbs__wrapper ul {
    margin: 0;
    padding: 50px 0 20px;
    list-style: none;
    text-align: center;
}
#breadcrumbs__wrapper ul li {
    display: inline-block;
}
#breadcrumbs__wrapper ul li:after {
    content: "-";
    display: inline-block;
    padding: 0 3px;
}

#breadcrumbs__wrapper ul li::after,
#breadcrumbs__wrapper ul li,
#breadcrumbs__wrapper ul li a {
    font-family: "Cinzel", sans-serif;
    font-size: 25px;
    font-weight: 400;
    color: #753900;
}

#breadcrumbs__wrapper ul li:last-child:after {
    display: none;
}
#breadcrumbs__wrapper ul li.current_page_item a,
#breadcrumbs__wrapper ul li a:hover {
    color: #f67300;
}

/*________________ Footer _________________*/

#site-footer {
    margin-top: -75px;
    position: relative;
}

#site-footer .inner-footer {
    background: url("images/bg-footer.jpg") center top / cover no-repeat;
    padding: 50px 0 0;
}

#site-footer .inner-footer > [class*="col-"]:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;

    width: 1px;
    height: 100%;
    display: block;
    background: #696969;
}

#site-footer .inner-footer .col-md-7 {
    padding: 0 50px;
}

#site-footer .bas-footer {
    padding: 25px 0;
}

#site-footer .bas-footer img {
    margin-left: 15px;
}

.section-links {
    padding-top: 75px;
    padding-bottom: 150px;
}
#menuTransversal {
    padding: 0;
}
#menuTransversal li:after {
    content: "-";
    padding: 0;
    margin: 0 0 0 5px;
    font-weight: 100;
    color: white;
    display: inline-block;
}
#menuTransversal li:last-child:after {
    display: none;
}

.social-media {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.social-media li {
    margin-bottom: 25px;
    text-align: center;
}
.social-media li a {
    display: inline-block;
    width: 35px;
    height: 35px;
    /* background-color: #fff; */
    border-radius: 100%;
}
.social-media li a:hover {
    /* opacity: .8; */
    transform: scale(1.1);
}
/* .social-media li a i {
    color: #753900;
    font-size: 17px;
} */
.social-media li:last-child {
    margin-bottom: 0;
}
/*________________ Formcraft _________________*/

html .formcraft-css .powered-by {
    display: none;
}

html .formcraft-css .is-required {
    position: absolute;
    right: 25px;
    text-decoration: none !important;
}

html .formcraft-css .fc-form .form-element * {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    line-height: 1;
    font-weight: 400;
    color: #753900;
}

html .formcraft-css .fc-form .form-element:last-child .form-element-html {
    padding-bottom: 0;
}

html .formcraft-css .fc-form .form-element .form-element-html .main-label {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    line-height: 1;
    font-weight: 400;
    display: block;
    padding: 0 25px 15px 25px;
    margin: 0;
    width: 100%;
    position: relative;
    color: #753900;
    text-transform: uppercase;
}

html .formcraft-css .fc-form .form-element .form-element-html .main-label * {
    color: #753900;
    text-transform: uppercase;
}

html .formcraft-css .fc-form .form-element .form-element-html .main-label > span,
html .formcraft-css .fc-form .form-element .form-element-html .main-label > abbr {
    display: block;
    width: 100%;
}
html .formcraft-css .fc-form .form-element .form-element-html .main-label > span::after,
html .formcraft-css .fc-form .form-element .form-element-html .main-label > abbr::after {
    right: 0 !important;
    top: 2px !important;
    font-size: 14px;
    color: #e77a0e !important;
}

html .formcraft-css .fc-form .form-element .form-element-html .sub-label {
    display: none;
}

html .formcraft-css .fc-form .form-element .form-element-html .error {
    font-family: "Montserrat", sans-serif;
    color: #e77a0e !important;
    font-size: 10px;
    right: 10px !important;
    top: -20px;
    padding: 5px 10px;
    background: none;
}

html .formcraft-css .fc-form .form-element .form-element-html input[type="text"],
html .formcraft-css .fc-form .form-element .form-element-html input[type="email"],
html .formcraft-css .fc-form .form-element .form-element-html input[type="password"],
html .formcraft-css .fc-form .form-element .form-element-html select,
html .formcraft-css .fc-form .form-element .form-element-html textarea,
html .formcraft-css .fc-form .form-element .form-element-html .twitter-typeahead .tt-dropdown-menu {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    background: white !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #fff;
    padding: 15px 25px;
    display: block;
    width: 100%;
    color: #181950;
    outline: none;
    resize: vertical;
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 10px;
    text-transform: none;
}

html .formcraft-css .fc-form .form-element .form-element-html select {
    background-image: url("images/select-icon.png") !important;
    background-repeat: no-repeat !important;
    background-position: 95% 50% !important;
    background-color: #fff !important;
}

html .formcraft-css .fc-form .form-element.error-field .form-element-html select,
html .formcraft-css .fc-form .form-element.error-field .form-element-html .fileupload-cover > div {
    border-color: #e77a0e;
}
html .formcraft-css .fc-form .form-element .form-element-html .button {
    display: inline-block;
    background: #e77a0e !important;
    padding: 15px 45px;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
    color: white !important;
    text-align: center;
    vertical-align: middle;
    position: relative;
    z-index: 10;
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
    border-radius: 10px;
    border: 1px solid transparent;
    text-shadow: none !important;
}

html .formcraft-css .fc-form .form-element .form-element-html .button span {
    color: white !important;
}

html .formcraft-css .fc-form .form-element .fileupload-cover.field-cover .button-file {
    padding: 0 40px;
    border-radius: 15px;
    height: auto;
}

html .formcraft-css .fc-form .form-element .fileupload-cover.field-cover .button-file span {
    font-size: 12px;
    color: white;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}

html .formcraft-css .fc-form .form-element .fileupload-cover.field-cover .button-file .icon-upload-cloud {
    display: none;
}

html .formcraft-css .fc-form .form-element .form-element-html .submit-cover .submit-button .text,
html .formcraft-css .fc-form .form-element .form-element-html .field-cover .button,
html .formcraft-css .fc-form .form-element .form-element-html .submit-cover .submit-button:hover {
    text-shadow: none !important;
}

html .formcraft-css .fc-form .form-element .form-element-html .submit-response {
    font-family: "Montserrat", sans-serif;
    text-align: left;
}
html .formcraft-css .fc-form .form-element .form-element-html .submit-response > span.has-error {
    color: #181950;
}

html .formcraft-css .fc-form .form-element.error-field .form-element-html input,
html .formcraft-css .fc-form .form-element.error-field .form-element-html textarea {
    border-color: #e77a0e !important;
}

html .formcraft-css .fc-form .final-success span {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #e77a0e;
    text-transform: uppercase;
}

/*________________ Module Projets _________________*/

#projects__relatedpost .item-carousel .dis__flex{
    margin-bottom: 15px;
    min-height: 85px;
}

#projects__relatedpost .item-carousel h4{
    font-size: 24px;
    line-height: 1.1;
}

#projects__relatedpost .item-carousel h5{    
    line-height: 1.1;
    font-size: 16px;
}

#projects__relatedpost .item-carousel a{    
    display: block;
}

/*________________ Module Editos _________________*/

.vignette__wrapper .vignette {
    padding: 45px 0;
    border-bottom: 1px solid #d6baac;
}

.vignette__wrapper .vignette a {
    font-family: "Cinzel", sans-serif;
    font-size: 40px;
    color: #7b420c;
    display: block;
    font-weight: 400;
    line-height: 44px;
}

.vignette__wrapper .vignette:hover a {
    color: #f67300;
}

.vignette__wrapper .vignette time {
    padding: 15px 0 0 0;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #212121;
    display: block;
}

.gdoc__vignette .download-link,
.gdoc__vignette .pdf-count {
    padding: 0 30px;
}

.gdoc__vignette time {
    flex-grow: 1;
}
/*________________ Module News _________________*/

.news__vignette .h4-c {
    font-size: 24px;
    color: #282828;
    padding: 0;
}

/* .news__vignette .inner-carouseel > .dis__flex {
    min-height: 200px;
} */

.news__vignette .inner-carouseel {
    cursor: pointer;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    min-height: 237px;
}

.news__vignette .inner-carouseel:hover {
    -webkit-box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.1);
}

.news__vignette .inner-carouseel:hover .h4-c {
    color: #e77a0e;
}

/*________________ Module Partenaire _________________*/


.partenaire__item h5 {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 18px;
}

.partenaire__img {
    overflow: hidden;
    perspective: 500px; 
    position: relative;
}

.partenaire__item img {
    /*height: 335px;*/
    width: 100%;
    overflow: hidden;
    object-fit: cover;
    transform: scale(1);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.partenaire__item .partenaire__sommaire {
    height: 100%;
    width: 100%;	
	padding: 0;
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	transform: rotateY(90deg);
	transform-origin: 50%;	
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
	
}

.partenaire__item .partenaire__sommaire img{
    height: 100%;
    width: 100%;	
}
.partenaire__item:hover .partenaire__sommaire {
	transform: rotateY(0deg);
	opacity: 1;
}

.partenaire__item:hover h5 {
    color: #e77a0e;
}


/*________________ Cartouches _________________*/

.cartouche__wrapper {
    background: #212121;
    padding: 75px 0 150px;
}

.cartouche__wrapper a {
    display: block;
    height: 100%;
    height: 250px;
    overflow: hidden;
}

.cartouche__wrapper a h3 {
    font-size: 35px;
    max-width: 90%;
    word-wrap: break-word;
    margin: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.cartouche__wrapper img {
    height: 100%;
    transform: scale(1);

    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.cartouche__wrapper a:hover img {
    transform: scale(1.1);
}

.cartouche__wrapper a:hover h3 {
    color: #f67300;
}
/*________________ Module XXX _________________*/

.button__plus {
    font-family: "Cinzel", sans-serif;
    font-size: 20px;
    color: #212121;
}

/* .galeries-posts .h4-c {
    font-size: 24px;
    line-height: 29px;
} */

.menu-site .content-bas ul li.link-down a.is-active {
    color: #e77a0e;
}

.file__wrapper {
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 10px 0;
    margin-bottom: 15px;

    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.file__wrapper > * {
    padding: 0 25px;
}

.file__wrapper .file__title {
    flex-grow: 1;
}

.file__wrapper:hover {
    border: 1px solid #f67300;
}
.file__wrapper:hover .file__title,
.file__wrapper:hover .download-link i {
    color: #f67300;
}

.gdoc__vignette {
    padding: 30px;
    background: white;
    height: 100%;
}
.gdoc__vignette:hover {
    box-shadow: 0 0 13px rgba(0, 0, 0, 0.1);
}
.gdoc__vignette:hover .h4-c {
    color: #f67300;
}
/* .gdoc__vignette .category {
    color: #f67300;
} */
.gdoc__vignette .category:hover {
    color: #212121;
}


#filter__wrapper{
    position: relative;
    z-index: 99999;
}
#filter__wrapper input,
#filter__wrapper select {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #fff;
    /* height: 36px;
    line-height: 36px; */
    background: transparent;
    font-family: "Cinzel", sans-serif;
    /* color: #212121; */
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
    padding: 10px 0;
    position: relative;
    z-index: 10;
}

#filter__wrapper #input__search ~ a {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #f67300;
    font-size: 14px;
}
/*________________ Nav wrapper _________________*/

.nav__wrapper {
    margin: 100px 0;
}

.nav__wrapper a {
    font-family: "Cinzel", sans-serif;
    font-size: 25px;
    font-weight: 400;
    color: #753900;
    max-width: 50%;
    position: relative;
    padding: 0 100px;
}

.nav__wrapper a i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 58px;
    color: #753900;
    width: 50px;
    text-align: center;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.nav__wrapper a.next__button i {
    left: auto;
    right: 0;
}

.nav__wrapper a:hover,
.nav__wrapper a:hover i {
    color: #f67300;
}

/*_____________________________________*/

.share__wrapper {
    background-color: #fff;
    padding: 20px 25px;
    border-radius: 10px;
    margin-top: 50px;
}

.share__btn li {
    margin: 0 10px 0 0;
    text-align: center;
}

.share__btn li:last-child {
    margin: 0;
}

.share__btn li a {
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: #f67300;
    border-radius: 100%;
}

.share__btn li a:hover {
    background: #212121;
}

.share__btn li a i {
    color: #fff;
}

/* ________________Slider_________________ */
.slick-slider {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    height: 100%;
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after {
    content: "";
    display: table;
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir="rtl"] .slick-slide {
    float: right;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    background: #fff;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    border-radius: 55px;
    color: #e77a0e;
    z-index: 10;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    box-shadow: 0 0 13px rgba(0, 0, 0, 0.2) !important;
}
.slick-arrow i {
    font-size: 25px;
    line-height: 55px;
    text-align: center;
}
.slick-arrow:hover {
    background: #e77a0e;
}

.slick-arrow:hover i {
    color: white;
}

.slick-arrow.slick-prev {
    left: 25px;
}
.slick-arrow.slick-next {
    right: 25px;
    left: auto;
}

.slick-arrow.slick-disabled {
    display: none !important;
}

.slick-dots {
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    height: 9px;
    width: 9px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    border: 0;
    background: white;
    display: block;
    height: 9px;
    width: 9px;
    border-radius: 9px;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
    background: #00957a;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}
.slick-dots li.slick-active button {
    background: #00957a;
}

.brown-dots .slick-dots li button:hover,
.brown-dots .slick-dots li button:focus {
    background: #1f9b64;
}

.brown-dots .slick-dots li.slick-active button {
    background: #1f9b64;
}

.form-footer input {
    height: 42px;
    width: 80%;
    border: 0;
    border-bottom: 2px solid #fff;
    line-height: 33px;
    text-align: center;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    background: none;
    margin-bottom: 50px;
}

#site-footer .inner-footer .form-footer button i {
    font-size: 16px;
    padding-left: 10px;
    color: #fff;
}

#site-footer .inner-footer .form-footer button:hover,
#site-footer .inner-footer .form-footer button:hover i {
    color: #f67300;
}

.form-footer .h6-c {
    margin-bottom: 75px;
}

.elementor-widget-text-editor ul {
    padding-left: 20px;
    margin-bottom: 30px;
}

.elementor-widget-text-editor ul li {
    position: relative;
    margin-bottom: 10px;
    font-weight: 300;
}

.elementor-widget-text-editor ul li:before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background: #f67300;
    position: absolute;
    top: 10px;
    left: -20px;
}

/* .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{ 
    background-color: #656565;
    height: 10px; 
    border-radius:0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail{
    height: 1px;
    border-radius: 0;
    background-color:#f67300;
    margin: 6px 0 0;
}

.mCSB_horizontal.mCSB_inside > .mCSB_container{
	margin-bottom: 50px;
} */

.mCustomScrollBox {
    position: static;
}

.mCSB_scrollTools {
    width: 10px;
    right: -5px;
}

.mCSB_inside > .mCSB_container {
    margin: 0;
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 1px;
    background-color: #ffffff;
}

.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #656565;
}

#preloader__wrapper {
    background: #f1efea;
    z-index: 999999;
}

#preloader__counter {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#preloader__progress_bar {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 200;
    width: 0%;
    height: 5px;
    background: #e77a0e;
}
.animateMe {
    visibility: hidden;
    opacity: 0;
}

.elementor-editor-active .animateMe {
    visibility: visible;
    opacity: 1;
}

.section-gallery .owl-dots{
    display: none !important;
}


#mc_embed_signup_scroll ::placeholder{
    color: #FFF;
}


#search__form {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999999;
    background: #000;
}



#langue__wrapper:before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 10px;
    background: #F67300;
    margin: 0 15px;
}
#langue__wrapper li:after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 1px;
    background: #F67300;
    margin: 0 5px;
    vertical-align: middle;
}
#langue__wrapper li a {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
}
#langue__wrapper li a.is__active,#langue__wrapper li a:hover {
    color: #F67300;
    text-decoration: underline;
}
#langue__wrapper li a.text__arabe {
    font-size: 14px;
}
#langue__wrapper li:last-child:after {
    display: none;
}



/*
#langue__wrapper{
	display:none !important
}*/



#banniere{
	background : #ccc
}

#banniere .elementor-widget-container{
    direction:ltr;
    text-align:center;
	color:white
}

#banniere .elementor-widget-heading .elementor-heading-title{
	color:#000;
	padding : 15px 0;
	font-weight:300;
	font-size:15px;
}

#banniere .elementor-column.elementor-col-100, .elementor-column[data-col="100"]{
	margin:0	
}