/*-------------------------
         GENERAL
-------------------------*/
body {
    font-family: "Muli", sans-serif;
    font-weight: 300;
    background-color: #fff;
}

.full-screen {
    height: 100vh;
}

main#main {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
}

#main > section {
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100%);
    bottom: 0;
    overflow-x: hidden;
    overflow-y: auto;
    transform: translate3d(100%, 0, 0);
    z-index: 0;
    opacity: 0;
    background-color: #fff;
    transition: transform .6s ease .6s,opacity 0s ease .6s;
    padding-left: 80px;
}

#main > section.active {
    transform: translate3d(0, 0, 0);
    z-index: 2;
    opacity: 1;
    transition: transform .6s ease;
}

h1, h2, h3, h4, h5, h6, .h1 {
    font-family: "Poppins", sans-serif;
    line-height: 1.618;
}

h2, h2 span {
    font-weight: 700;
}

.pt-6 {
    padding-top: 100px;
}

.max-width-450 {
    max-width: 450px;
    margin: 0 auto;
}

a:hover {
    text-decoration: none;
}

a, button {
    outline: none !important;
}

.box-border {
    background-color: #f1f3f6;
    border-radius: 1.25rem;
    box-shadow: 3px 3px 3px #dadada, -3px -3px 3px #fafafa;
}

.box-hover-border {
    background-color: #f1f3f6;
    border-radius: 1.25rem;
    box-shadow: 3px 3px 3px #dadada, -3px -3px 3px #fafafa;
}

.box-hover-border:hover {
    box-shadow: inset 3px 3px 3px #dadada, inset -3px -3px 3px #fafafa;
}

.button-border {
    background-color: #f1f3f6;
    border-radius: 1rem;
    box-shadow: 3px 3px 3px #dadada, -3px -3px 3px #fafafa;
    display: inline-block;
    padding: 1px;
}

.button-border button {
    background-color: transparent;
}

.pill-button {
    border-radius: 1rem;
    border: none;
    padding: 10px 30px;
    transition: all 0.3s ease;
    font-size: 16px;
    display: inline-block;
}

.pill-button:hover, .pill-button.active {
    border: none;
    box-shadow: inset 3px 3px 3px #dadada, inset -3px -3px 3px #fafafa;
}

.image-border {
    background-color: #f1f3f6;
    border-radius: 1.25rem;
    box-shadow: 3px 3px 8px rgba(55, 84, 170, 0.1), -3px -3px 8px white;
    padding: 5px;
}

.image-border img {
    width: 100%;
    border-radius: 1rem;
}

.title h2 {
    font-size: 3rem;
}

.title p {
    font-size: 18px;
}

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

.display-content {
    vertical-align: middle;
    display: table-cell;
    padding: 5rem 0;
}

.center-item {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

/*-------------------------
        PRELOADER
-------------------------*/
#overlayer {
    position: fixed;
    z-index: 9999;
    background: white;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.loader {
    position: fixed;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
    z-index: 99999;
    border: 4px solid #e3e5d2;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*-------------------------
       OVERLAY MENU
-------------------------*/
/*-------------------------
        HEADER
-------------------------*/
.header {
    padding: 10px 0;
    transition: all 0.8s ease;
}

.header nav a {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    background-color: transparent !important;
    margin: 0 7px;
    line-height: 1.5em;
    transition: all 0.5s;
}

.header nav a.navbar-brand {
    color: #5f5f5f;
    font-weight: 700;
    font-size: 22px;
}

.header-sticky {
    background: #fff;
    padding: 5px 0;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border-bottom: none !important;
}

.header-sticky nav li a {
    color: #222;
}

.header-sticky nav a.navbar-brand {
    color: #222;
}

.header .menu-item-has-children {
    position: relative;
}

.header .menu-item-has-children a i{
    font-size: 12px;
}

.header .menu-item-has-children .sub-menu-div{
    padding: 12px 0 0 30px;
    display: block;
    position: relative;
}

.header .menu-item-has-children .sub-menu {
    width: 100%;
    list-style: unset;
    padding: 10px;
}

.header .menu-item-has-children .sub-menu .menu-item a {
    font-size: 14px;
    padding: 5px 0;
    display: inline-block;
}

@media (min-width: 992px){
    .header .menu-item-has-children .sub-menu-div{
        position: absolute;
        top: 41px;
        padding: 0;
        display: none;
        transition: all 0.8s ease;
    }
    .header-sticky .menu-item-has-children .sub-menu-div{
        padding-top: 18px;
    }
    .base .header-sticky .menu-item-has-children .sub-menu-div{
        padding-top: 14px;
    }
    .header .menu-item-has-children .sub-menu{
        background-color: #f1f3f6;
        box-shadow: 3px 3px 3px #dadada, -3px -3px 3px #fafafa;
        border-radius: 1rem;
        width: 130px;
    }
    .base .header .menu-item-has-children .sub-menu {
        background-color: #fefefe;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    }
    .header .menu-item-has-children a:hover ~ .sub-menu-div, .header .menu-item-has-children .sub-menu-div:hover {
        display: block;
    }
    .header .menu-item-has-children a .lni-minus, .header .menu-item-has-children:hover a .lni-plus{
        display: none;
    }
    .header .menu-item-has-children:hover a .lni-minus {
        display: inline;
    }
}
@media (max-width: 991px){
    .header .menu-item-has-children .sub-menu-div{
        padding: 0px 0 0 4px;
    }
    .header .menu-item-has-children .sub-menu {
        padding: 0px 10px;
    }
    .header .menu-item-has-children .sub-menu .menu-item a {
        font-size: 15px;
        padding: 7px 0;
        display: inline-block;
    }
    .header .menu-item-has-children a .lni-minus, .header .menu-item-has-children a .lni-plus{
        display: none
    }
    header.z-index{
        z-index: 1033;
    }
}

/*-------------------------
       COLOR SCHEME
-------------------------*/
.return-to-top {
    position: fixed;
    z-index: 999;
    right: 15px;
    bottom: -50px;
    padding: .5rem .75rem;
    border-radius: 0.75rem;
    transition: all 0.5s ease;
}

.color-scheme li {
    width: 40%;
    margin: 0 !important;
}

.color-scheme li a {
    display: block;
    padding: 8px 0;
    background-color: #f1f1f1;
    border-radius: 0.75rem;
    color: #222;
    transition: all 0.5s ease;
    font-size: 14px;
}

.color-scheme li a.light-scheme:hover, .color-scheme li a.light-scheme.active{
    background-color: #0fcae8;
    color: #fff;
}

.color-scheme li a.dark-scheme:hover, .color-scheme li a.dark-scheme.active{
    background-color: #2c2d30;
    color: #fff;
}

.theme-skin-title{
    background-color: #f1f3f6;
    margin: 0;
    padding: 15px 0 0;
    border-radius: 16px 16px 0 0;
}

.theme-skin {
    background-color: #f1f3f6;
    margin: 0;
    padding: 8px 0 16px;
}

.theme-skin li {
    width: 40%;
    margin: 0 !important;
}

.theme-skin li:last-child {
    background-color: #f1f3f6;
    border-radius: 0.75rem;
    box-shadow: 3px 3px 3px #dadada, -3px -3px 3px #fafafa;
    padding: 1px;
}

.theme-skin li:last-child a:hover, .theme-skin li:last-child a.active {
    border: none;
    box-shadow: inset 3px 3px 3px #dadada, inset -3px -3px 3px #fafafa;
}

.theme-skin li a {
    display: block;
    padding: 8px 0;
    border-radius: 0.75rem;
    color: #222;
    transition: all 0.5s ease;
    font-size: 14px;
}

.theme-skin li a.flat-skin {
    background-color: #fff;
    margin-right: 3px;
}

.return-to-top.show{
    bottom: 30px;
}

.scroll-button {
    display: none;
    background-color: white;
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
    bottom: 15px;
    z-index: 1000;
    position: fixed;
    transition: all 0.3s ease;
    height: 100px;
    right: 15px;
    width: 40px;
    border-radius: 0.75rem;
}

.scroll-button a {
    width: 40px;
    height: 50px;
    line-height: 55px;
    display: inline-block;
    transition: all 0.3s ease;
    display: block;
}

.scroll-button a i {
    font-size: 24px;
}

.social-box {
    position: fixed;
    left: 1.5rem;
    bottom: 0;
    width: 1.5rem;
    z-index: 100;
}

.follow-label {
    padding-right: 5rem;
    position: absolute;
    bottom: 100%;
    right: 0;
    color: #3c3c3c;
    line-height: 1.5rem;
    height: 1.5rem;
    white-space: nowrap;
    transform-origin: 100% 0;
    text-align: right;
    transform: rotate(90deg);
}

.follow-label::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 60px;
    height: 2px;
}

.social i {
    display: block;
    margin-bottom: 1rem;
    text-align: center;
}

.social a {
    color: #3c3c3c;
}

.title-content h2 {
    position: relative;
    display: inline-block;
    font-size: 40px;
    font-weight: 600;
}

.title-border {
    height: 2px;
    width: 65px;
    margin: 16px auto;
    transition: all 0.5s;
    background-color: #1ab394 !important;
}

.py-6 {
    padding-top: 100px;
    padding-bottom: 100px;
}

/*-------------------------
          mnd
-------------------------*/
.mnd {
    overflow-x: hidden !important;
}

.mnd .personal-item h1 {
    font-size: 2rem !important;
}

.mnd .mnd-content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 2;
    right: 0;
}

.mnd .mnd-content p {
    max-width: 450px;
}

/*-------------------------
          mnd-classic
-------------------------*/
.mnd-classic {
    background: url("../img/background.png") no-repeat center;
    background-size: cover;
    color: #fff;
}

.mnd-classic .scroll-down span {
    text-align: center;
    position: absolute;
    bottom: 40px;
    z-index: 2;
    left: calc(50% - 8px);
    width: 30px;
    height: 50px;
    border-radius: 50px;
    border: 3px solid #fff;
}

.mnd-classic .scroll-down span:before {
    position: absolute;
    content: '';
    width: 6px;
    height: 10px;
    left: calc(50% - 3px);
    margin-top: 10px;
    border-radius: 5px;
    animation: sdb10 2s infinite;
    box-sizing: border-box;
    background-color: #fff;
}

@keyframes sdb10 {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    80% {
        transform: translate(0, 20px);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

canvas.particles-js-canvas-el {
    position: absolute;
    top: 0;
    z-index: 1;
}

.particles-js-canvas-el {
    position: absolute;
    top: 0;
}

/*-------------------------
          mnd-07
-------------------------*/
.mnd-07 {
    background: url("https://placehold.co/1920x1280") no-repeat;
    background-size: cover;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.8);
}

.mnd-07 .scroll-down span {
    text-align: center;
    position: absolute;
    bottom: 40px;
    z-index: 1;
    left: calc(50% - 8px);
    width: 30px;
    height: 50px;
    border-radius: 50px;
    border: 3px solid #fafafa;
}

.mnd-07 .scroll-down span:before {
    position: absolute;
    content: '';
    width: 6px;
    height: 10px;
    left: calc(50% - 3px);
    margin-top: 10px;
    border-radius: 5px;
    animation: sdb10 2s infinite;
    box-sizing: border-box;
    background-color: #fafafa;
}

@keyframes sdb10 {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    80% {
        transform: translate(0, 20px);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/*-------------------------
          About
-------------------------*/
.about .personal-info ul li {
    margin-bottom: 1.25rem;
}

.about .personal-info ul li p {
    font-weight: 500;
}

.about .personal-info span {
    font-weight: 300;
    color: #5f5f5f;
}

/*-------------------------
         Count up
-------------------------*/
.count-up {
    margin: 4rem 0;
    padding: 32px 16px;
}

.count-number {
    font-size: 1.5rem;
    font-weight: 500;
}

.count-content {
    margin: 10px 0;
}

.count-icon i {
    font-size: 2.5rem;
}

/*-------------------------
         processus
-------------------------*/
.processus .processus-item {
    padding: 30px 10px;
    margin-top: 30px;
    overflow: hidden;
}

.processus .processus-item.data-background {
    margin-top: 0;
}

.processus .image-border {
    margin-top: 30px;
}

.processus .image-border .box-hover-border {
    border-radius: 1rem;
}

.processus .processus-item:hover .processus-icon {
    transform: rotateY(360deg);
    transition: 0.9s ease;
}

.processus .processus-content {
    padding-left: 3rem;
}

/*-------------------------
        team
-------------------------*/
.team .image-border {
    display: inline-block;
    border-radius: 50%;
    margin-right: 16px;
}

.team-header {
    display: flex;
}

.team-detail {
    align-self: center;
}

.team p {
    clear: left;
    margin-top: 16px;
}

.team .owl-carousel .team-item {
    padding: 30px;
}

.team .team-item::before {
    content: '\f10e';
    font-family: "FontAwesome", "sans-serif";
    font-size: 32px;
    position: absolute;
    right: 30px;
    top: 46px;
}

.team .owl-carousel .team-item img {
    width: 70px;
    display: inline-block;
    border-radius: 50%;
}

.team .owl-carousel .team-item:hover .team-border {
    width: 90px;
}

.team .owl-carousel .owl-stage-outer {
    padding: 1rem 0;
}

.team .owl-carousel .team-image {
    position: relative;
    display: inline-block;
    border-radius: 50%;
    padding: 10px;
    background-color: #f1f3f6;
    width: 115px;
    height: 115px;
}

.team .owl-carousel .team-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 2px;
    width: 92%;
    height: 40%;
    background-color: #f1f3f6;
    z-index: 1;
    right: 6px;
}

.team .owl-carousel .team-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 3px 3px 3px #dadada, inset -3px -3px 3px #fafafa;
    border-radius: 50%;
    z-index: 0;
    left: 2px;
}

.team .owl-carousel .team-image .img-thumbnail {
    background-color: transparent;
}

.team .owl-carousel .team-image-border {
    box-shadow: 3px 3px 3px #dadada, -3px -3px 3px #fafafa;
    border-radius: 50%;
    padding: 5px;
    position: relative;
    z-index: 2;
}

.team .owl-carousel .owl-dots {
    text-align: center;
    margin-top: 1rem;
}

.team .owl-carousel .owl-dot span {
    display: block;
    width: 24px;
    height: 5px;
    background-color: #e1e1e1;
    margin: 0 0.25rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.team .owl-carousel .owl-dot.active span {
    width: 32px;
    box-shadow: 3px 3px 8px rgba(55, 84, 170, 0.1), -3px -3px 8px white;
}

/*-------------------------
         RESUME
-------------------------*/
.resume .title {
    font-weight: 700;
    font-size: 2rem;
    margin-right: 6px;
    border-left: 2px solid #1ab394;
    padding-left: 15px;
}

.resume .timeline-items {
    padding: 30px;
    margin-top: 30px;
}

.resume .timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.resume .timeline-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    width: 1px;
    border-radius: 1rem;
    display: block;
}

.resume .timeline-contents {
    padding-left: 30px;
}

.resume .timeline-icon {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    position: absolute;
    top: 15px;
    left: -7px;
    z-index: 10;
}

.resume .timeline-year {
    font-size: 14px;
    font-weight: 500;
}

/*-------------------------
        Work SKILL
-------------------------*/
.skill-box {
    margin-top: 30px;
}

.skill-box .skillbar {
    position: relative;
    display: block;
    width: 100%;
    height: 10px;
    border-radius: 5px;
    transition: 0.1s linear;
    background-color: #f1f3f6;
    box-shadow: inset 2px 2px 4px rgba(55, 84, 170, 0.3), inset -2px -2px 4px white;
}

.skill-box .skillbar:not(:last-child) {
    margin-bottom: 56px;
}

.skill-box .skillbar-title {
    position: absolute;
    top: -28px;
    left: -17px;
    font-weight: 600;
    font-size: 14px;
}

.skill-box .skillbar-title span {
    margin-left: 18px;
}

.skill-box .fill-skillbar {
    height: 10px;
    width: 0;
    border-radius: 5px;
    float: left;
}

.skill-box .skill-bar-percent {
    position: absolute;
    font-weight: 500;
    bottom: 16px;
    right: 0;
}

/*-------------------------
      Language Skill
-------------------------*/
.language-bar {
    padding: 35px 30px;
    margin-top: 30px;
}

.language-skill:not(:last-child) {
    margin-bottom: 15px;
}

.language-skill h4 {
    font-size: 16px;
}

.language-skill h4 span {
    color: #5f5f5f;
    font-size: 14px;
    font-weight: normal;
}

/*-------------------------
         PORTFOLIO
-------------------------*/
.portfolio .portfolio-filter .list-inline-item:not(:last-child) {
    margin-bottom: 1rem;
}

.portfolio .portfolio-filter li a {
    padding: 5px 15px;
}

.portfolio .portfolio-item {
    margin-top: 30px;
}

.portfolio .portfolio-item-content {
    position: relative;
    border-radius: 1.25rem;
}

.portfolio .portfolio-item-content::before {
    content: "";
    position: absolute;
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    opacity: 0;
    transform: scale(0.8);
    transition: .5s all ease;
    border-radius: 1.25rem;
}

.portfolio .portfolio-item-content:hover .img-overlay-content {
    opacity: 1;
}

.portfolio .portfolio-item-content:hover::before {
    transform: scale(1);
    opacity: 1;
}

.portfolio .img-overlay-content {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    opacity: 0;
    transition: all .5s ease;
}

.portfolio .img-overlay-content h5 {
    color: #fafafa;
}

.portfolio .portfolio-icon a {
    background-color: white;
    width: 35px;
    height: 35px;
    line-height: 37px;
    margin: 0 8px;
    display: inline-block;
    border-radius: 4px;
    transition: all 0.3s ease;
    line-height: 37px;
}

.portfolio .portfolio-icon a i {
    font-size: 18px;
    font-weight: 700;
}

.portfolio .portfolio-icon a:first-child {
    background-color: white;
    width: 35px;
    height: 35px;
    line-height: 37px;
    margin: 0 8px;
    display: inline-block;
    border-radius: 4px;
    transition: all 0.3s ease;
    border-color: transparent;
}

.portfolio .portfolio-icon a:first-child i {
    font-size: 18px;
    font-weight: 700;
    position: relative;
    left: -2px;
}

.portfolio .portfolio-icon a:first-child:focus {
    outline: none !important;
}
.visible_item {
    display: none;
}

.portfolio-page .visible_item {
    display: block;
}

/*-------------------------
          BLOG
-------------------------*/
.blog .blog-item {
    padding: 30px;
    margin: 60px 0 30px;
}

.blog .blog-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 45px;
    width: auto;
    height: 57px;
    background-color: #f1f3f6;
    z-index: 1;
    right: 45px;
}

.blog .blog-content .list-inline-item:not(:last-child) {
    margin-right: 3rem;
}

.blog .blog-image {
    position: relative;
    display: inline-block;
    border-radius: 1.25rem;
    padding: 10px;
    margin-top: -88px;
    background-color: #f1f3f6;
}

.blog .blog-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 3px 3px 3px #dadada, inset -3px -3px 3px #fafafa;
    border-radius: 1.25rem;
    z-index: 0;
}

.blog .blog-intro {
    box-shadow: 3px 3px 3px #dadada, -3px -3px 3px #fafafa;
    border-radius: 1.25rem;
    padding: 5px;
    position: relative;
    z-index: 2;
    display: block;
}

.blog .blog-intro img {
    display: inline-block;
    border-radius: 1rem;
    width: 100%;
}

/*-------------------------
          CONTACT
-------------------------*/
::-moz-placeholder, .form-control::-moz-placeholder {
    color: #5f5f5f;
}

.contact .form-item .form-control {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    height: 44px;
    font-size: 14px;
    position: relative;
    transition: border .9s ease;
    padding: 1rem;
    border: none;
}

.contact .form-item .form-group {
    background-color: #f1f3f6;
    box-shadow: inset 3px 3px 3px #dadada, inset -3px -3px 3px #fafafa;
    -webkit-box-shadow: inset 3px 3px 3px #dadada, inset -3px -3px 3px #fafafa;
    -moz-box-shadow: inset 3px 3px 3px #dadada, inset -3px -3px 3px #fafafa;
    -o-box-shadow: inset 3px 3px 3px #dadada, inset -3px -3px 3px #fafafa;
    -ms-box-shadow: inset 3px 3px 3px #dadada, inset -3px -3px 3px #fafafa;
    border-radius: 1.25rem;
}

.contact-form textarea {
    min-height: 175px;
    resize: none;
}

.contact #message.toast {
    max-width: 500px;
    padding: 2px 0 1px;
    position: absolute;
    top: -2px;
    display: inline-block;
    left: 200px;
    border-radius: 1rem;
    color: #fafafa;
}

.contact .toast button span {
    position: relative;
    top: 8px;
}

.contact .contact-info ul li {
    margin-top: 1.5rem;
}

.contact .contact-info i {
    margin-right: 0.5rem;
}

.contact .contact-info img {
    width: 25px;
    margin-right: .5rem;
}

.contact .copy-right {
    position: relative;
    top: 5rem;
}

#my-map {
    width: 100%;
    height: 350px;
    border-radius: 1rem;
}

/*-------------------------
       BLOG SIDEBAR
-------------------------*/
.page-mnd {
    background-color: #fefefe;
}
.page-mnd .page-container {
    position: relative;
    z-index: 2;
}
.post-sidebar {
    position: fixed;
    display: block;
    width: 310px;
    right: -320px;
    padding: 0;
    top: 0;
    height: 100%;
    float: none;
    z-index: 1031;
    border-radius: 16px 0 0 16px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all .66s ease-in-out;
    -moz-transition: all .66s ease-in-out;
    -o-transition: all .66s ease-in-out;
    -ms-transition: all .66s ease-in-out;
    transition: all .66s ease-in-out;
}
.post-sidebar.open {
    right: 0;
}
.post-sidebar-content {
    overflow-y: scroll;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px 0;
    box-shadow: 3px 3px 3px #cdcdcd, -3px -3px 3px #fafafa;
    background-color: #f1f3f6;
    z-index: 1;
}
.post-sidebar-toggle{
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 46px;
    text-align: center;
    background-color: #f1f3f6;
    right: 70px;
    font-size: 19px;
    top: 88px;
    border-radius: 0.75rem;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 3px 3px 3px #cdcdcd, -3px -3px 3px #fafafa;
}
.post-sidebar-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 44%;
    background: #000;
    border-radius: 5px;
    opacity: 1;
    left: 13px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.post-sidebar-toggle span:nth-child(1) {
    top: 12px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}
.post-sidebar-toggle span:nth-child(2) {
    top: 19px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}
.post-sidebar-toggle span:nth-child(3) {
    top: 26px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}
.post-sidebar-toggle span:before {
    content: '';
    width: 3px;
    height: 3px;
    background-color: #000;
    position: absolute;
    left: -4px;
    border-radius: 5px;
}
.post-sidebar-toggle.open span{
    left: 14px;
}
.post-sidebar-toggle.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 14px;
}
.post-sidebar-toggle.open span:before {
    left: -2px;
}
.post-sidebar-toggle.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}
.post-sidebar-toggle.open span:before {
    left: -2px;
}
.post-sidebar-toggle.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 25px;
}
.post-sidebar-toggle.open span:before {
    left: -2px;
}
.aside-contents {
    margin: 0 15px 15px;
    box-shadow: 3px 3px 3px #cdcdcd, -3px -3px 3px #fafafa;
    background-color: #f1f3f6;
    border-radius: 16px;
    padding: 15px;
}
.search{
    padding: 15px;
}
.search .form-group {
    background-color: #f1f3f6;
    box-shadow: inset 3px 3px 3px #dadada, inset -3px -3px 3px #fafafa;
    border-radius: 1.5rem;
    margin: 0;
}
.search .form-group input {
    border: none !important;
    background-color: transparent;
    padding: 13px 16px 11px;
    font-size: 14px;
    outline: none !important;
    width: 88%;
}
.search .form-group button{
    position: absolute;
    right: 6px;
    top: 3px;
}
.aside-title {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}
.aside-title span {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    font-weight: 600;
}
.aside-title:after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 1px;
    top: 62%;
    position: absolute;
    background-color: #ddd;
}
.aside-item ul li{
    position: relative;
}
.aside-item ul li a {
    font-size: 14px;
    color: #444;
    padding: 4px 0px;
    display: inline-block;
    padding-left: 12px;
    transition: all 0.3s ease;
}
.aside-item ul li a:hover{
    padding-left: 17px;
}
.aside-item ul li:last-child a {
    padding-bottom: 0;
}
.aside-item ul li i{
    font-size: 8px;
    position: absolute;
    top: 10px;
    width: 12px;
    display: inline-block;
}

/* flat */
.base .post-sidebar-toggle, .base .search .form-group, .base .aside-contents{
    background-color: #fefefe;
    box-shadow: 0 0 3px 0px rgba(145, 145, 145, 0.3) !important;
}
.base .post-sidebar-content{
    background-color: #f8f8f8 !important;
    box-shadow: 0 0 8px 0px rgba(145, 145, 145, 0.3) !important;
}
.base .comments-devider{
    height: 1px;
}

/* media */
@media (max-width: 1199px){
    .post-sidebar-toggle{
        transform: none;
        transition: none;
    }
    .post-sidebar-toggle.open{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        background-color: rgba(0, 0, 0, 0.5) !important;
    }
    .post-sidebar-toggle.open span{
        display: none;
    }
    .blog-single .post-sidebar-toggle{
        right: 77px;
    }
}

/*-------------------------
        SINGLE BLOG
-------------------------*/
.modal-dialog {
    max-width: 75%;
}

.blog-single .modal-content {
    background-color: #f1f3f6;
}
.breadcrumb {
    border-radius: 1rem;
    background-color: transparent;
    padding: 0;
}
.breadcrumb li a {
    color: #222;
    font-weight: 600;
}
.blog-single .close {
    color: #5f5f5f;
    text-shadow: none;
}
.blog-single img {
    width: 100%;
    border-radius: 1rem;
}
.comments img {
    width: 80px;
    border-radius: 50%;
}
.comments .comment-info {
    margin-left: 100px;
}
.blog-single .entry-meta li:not(:last-child){
    margin-right: .75rem;
}
.blog-single .entry-meta li a {
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    top: 0;
}
.blog-single .entry-meta li a i{
    color: #666;
    font-size: 13px;
    padding-right: 5px;
}
.blog-single .entry-meta li a:hover {
    top: -3px;
    padding-bottom: 3px;
}
.comment-author {
    margin-left: 80px;
    position: relative;
    padding-top: 7px;
}
.comment-author span {
    font-weight: 600;
}
.comment-date {
    font-size: 13px;
    padding-top: 10px;
    font-weight: 400;
}
.comment-reply-link {
    position: absolute;
    top: 7px;
    right: 0;
    color: #444;
    font-size: 14px;
}
.comment-text {
    clear: both;
    padding-top: 5px;
    font-size: 15px;
    margin-left: 80px;
}
.comments-devider{
    background-color: #f1f3f6;
    box-shadow: inset 2px 2px 4px rgba(55, 84, 170, 0.3), inset -2px -2px 0px white;
    height: 10px;
    width: 90%;
    margin: 10px auto;
    border-radius: 15px;
}
.comments .commnet-image-border img {
    width: 65px;
    border-radius: 50%;
    height: 65px;
}
.reply-comment{
    margin-left: 3rem;
}

@media (min-width: 992px){
    .blog-single .post-sidebar {
        position: unset;
        width: 25%;
        max-width: 25%;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        z-index: 0;
        padding: 0 15px;
    }
    .blog-single .post-sidebar-content {
        position: unset;
        box-shadow: none;
        background-color: transparent;
        overflow: visible;
        padding-top: 0;
    }
    .blog-single .post-sidebar-toggle{
        display: none;
    }
    .blog-single .search{
        padding: 0 0 15px;
    }
    .blog-single .aside-contents {
        margin: 0 0 15px;
    }
    .base .blog-single .post-sidebar-content {
        background-color: transparent !important;
        box-shadow: none !important;
    }
    .base .search .form-group, .base .aside-contents {
        background-color: #fefefe;
        box-shadow: 3px 3px 8px 0px rgba(145, 145, 145, 0.1) !important;
    }
}

@media (max-width: 575px){
    .reply-comment{
        margin-left: 1rem;
    }
}

/*-------------------------
      SINGLE Portfolio
-------------------------*/
.portfolio-single .modal-content {
    background-color: #f1f3f6;
}

.portfolio-single .close {
    color: #5f5f5f;
    text-shadow: none;
}

.portfolio-single img {
    border-radius: 1rem;
    width: 100%;
}

/*-------------------------
      404 Page
-------------------------*/
.error-404 ~ .contact {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
@media (max-width: 991px) {
    .mnd.error-404 .mnd-content {
        position: inherit;
        transform: inherit;
    }
    .error-404 ~ .contact {
        position: inherit;
    }
}

/*-------------------------
           MEDIA
-------------------------*/
@media (max-width: 1199px) {
    .section {
        padding-right: 4rem;
        padding-left: 4rem;
    }
    .mnd-03 .mnd-content {
        padding-right: 4rem;
        padding-left: 4rem;
    }
    .scroll-button {
        display: block;
    }
    .menu-toggler.open {
        left: 105px;
    }
    .menu-toggler {
        display: block;
        position: fixed;
        top: 25px;
        left: 15px;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    .menu-toggler span {
        display: block;
        width: 40px;
        height: 40px;
        margin: auto;
        text-align: center;
        border-radius: 10px;
        line-height: 44px;
        font-size: 22px;
    }
    .blog-image::before {
        height: 24%;
    }
    .mnd-05 .mnd-slide {
        background-size: auto 100%;
    }
    .mnd-05 .mnd-slide.zoom {
        background-size: auto 200%;
    }
    .modal-dialog {
        max-width: 100%;
    }
    .processus-content h5 {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .header{
        background-color: #f1f3f6;
        padding: 5px 0;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
        border-bottom: none !important;
    }
    .base .header{
        background-color: #fafafa;
    }
    .mnd-03.full-screen{
        height: auto;
    }
    .mnd.mnd-3 .mnd-content{
        position: inherit;
        transform: translateY(0);
        padding-top: 80px;
    }
    .mnd-content .element {
        font-size:2rem;
    }
    .navbar-toggler span {
        color: #1a1a1a;
    }
    .skill-box {
        margin-top: 60px;
    }
    .mnd-03 .mnd-item {
        text-align: center;
        margin-top: 32px;
    }
    .mnd-03 .mnd-item p {
        margin: auto;
    }
    .mnd-03 .personal-image {
        text-align: center;
    }
    .mnd-03 .mnd-content {
        /* overflow-x: hidden; */
        position: inherit;
        transform: translateY(0);
        padding-top: 90px;
        padding-bottom: 8px;
    }
    .post-sidebar-toggle{
        right: 65px;
    }
    .return-to-top{
        right: 0;
        border-radius: 1rem 0 0 1rem;
    }
}

@media (max-width: 767px) {
    .social-box {
        display: none;
    }
    .section {
        padding-right: 0;
        padding-left: 0;
    }
    .mnd-03 .mnd-content {
        padding-right: 0;
        padding-left: 0;
    }
    .mnd-content .element {
        font-size:2rem;
    }
}

@media (max-width: 575px) {
    .mnd-02 .mnd-content {
        padding-left: 2rem;
    }
    .about .personal-info span {
        display: block;
    }
    .language-bar .list-inline-item:not(:last-child) {
        margin-right: .25rem;
    }
    #message.toast {
        top: 18px;
        left: inherit;
        font-size: 12px;
        padding: 3px 0;
    }
    .mnd-content .element {
        font-size:2rem;
    }
}

@media (max-width: 380px) {
    #message.toast {
        top: 60px;
        left: 15px;
    }
    .mnd-content .element {
        font-size:2rem;
    }
}

/*-------------------------
       MEDIA SCREENS
-------------------------*/
@media (max-width: 1199px) {
    .mnd-04 {
        padding: 0 !important;
    }
    .mnd-04 .swiper-slide .mnd-item-text {
        margin-left: 90px;
    }
}

@media (max-width: 991px) {
    .mnd-04 .mnd-left-title {
        position: absolute;
        z-index: 3;
        top: 50%;
    }
    .mnd-04 .text-swiper.bg-dark {
        background-color: transparent !important;
    }
    .mnd-04 .mnd-text {
        position: absolute;
        z-index: 2;
        height: 100%;
        width: 100%;
        padding: 0;
    }
    .mnd-04 .mnd-text .swiper-slide {
        background-color: rgba(255, 255, 255, 0.7);
        opacity: 0 !important;
    }
    .mnd-04 .mnd-text .swiper-slide.swiper-slide-active {
        opacity: 1 !important;
    }
    .mnd-04 .mnd-text .swiper-slide .mnd-item-text {
        max-width: 500px;
        padding: 0 15px;
        margin: 0 auto;
    }
    .mnd-04 .mnd-text .swiper-slide .mnd-item-text .slider-number {
        bottom: 0px;
        left: 5px;
    }
    .mnd-04 .swiper-buttons {
        display: none;
    }
    .mnd-04 .swiper-button-next, .mnd-04 .swiper-container-rtl .swiper-button-prev {
        left: 50%;
    }
    .mnd-04 .swiper-button-prev, .mnd-04 .swiper-container-rtl .swiper-button-next {
        right: 50%;
    }
}

/*-------------------------
      mandarine DARK
-------------------------*/
.mandarine-dark .header-sticky {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
}

.mandarine-dark .header .menu-item-has-children .sub-menu {
    background-color: #2c2d30;
    box-shadow: 3px 3px 3px #202125, -3px -3px 3px #3e3e3e;
}
.mandarine-dark.base .header .menu-item-has-children .sub-menu {
    background-color: rgba(52, 53, 57, 1) !important;
    box-shadow: 3px 3px 8px 0px rgba(45, 45, 45, 1) !important;
}

.mandarine-dark .mnd-02 {
    background: url("https://placehold.co/1920x1280") no-repeat;
    background-size: cover;
}

.mandarine-dark .mnd-classic .scroll-down span {
    border: 3px solid #fafafa;
}

.mandarine-dark .mnd-classic .scroll-down span:before {
    background-color: #fafafa;
}

.mandarine-dark .mnd-classic {
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.69);
}

.mandarine-dark {
    background-color: #2c2d30 !important;
    color: #fafafa;
}

.mandarine-dark .post-sidebar-toggle, .mandarine-dark .post-sidebar-content, .mandarine-dark .aside-contents{
    background-color: #2c2d30;
    box-shadow: 3px 3px 3px #202125, -3px -3px 3px #3e3e3e;
}

.mandarine-dark .blog-single .post-sidebar-content{
    box-shadow: none;
}

.mandarine-dark .post-sidebar-toggle span, .mandarine-dark .post-sidebar-toggle span:before{
    background: #fafafa;
}
.mandarine-dark .search .form-group button, .mandarine-dark .aside-item ul li a, .mandarine-dark .search .form-group input::placeholder,
.mandarine-dark .breadcrumb li a, .mandarine-dark .blog-single .entry-meta li a i, .mandarine-dark .comment-reply-link, .mandarine-dark ::placeholder{
    color: #fafafa;
}
.mandarine-dark .search .form-group {
    background-color: #2c2d30;
    box-shadow: inset 3px 3px 3px #202125, inset -3px -3px 3px #3e3e3e;
}
.mandarine-dark .comments-devider {
    background-color: #2c2d30;
    box-shadow: inset 2px 2px 4px #202125, inset -2px -2px 0px #3e3e3e;
}

.base.mandarine-dark .post-sidebar-toggle, .base.mandarine-dark .search .form-group, .base.mandarine-dark .aside-contents{
    background-color: rgba(52, 53, 57, 0.9) !important;
    box-shadow: 3px 3px 8px 0px rgba(45, 45, 45, 1) !important;
}
.base.mandarine-dark .post-sidebar-content{
    background-color: #2c2d30 !important;
    box-shadow: -2px -3px 3px #202125, 3px 3px 3px #3e3e3e !important;
}

.base.mandarine-dark .blog-single .post-sidebar-content{
    box-shadow: none !important;
}

.mandarine-dark .color-switcher h6 {
    color: #1a1a1a;
}

.mandarine-dark .header nav a, .mandarine-dark .follow-label {
    color: #fafafa !important;
}

.mandarine-dark .header-sticky {
    background-color: #2c2d30;
}

.mandarine-dark .mnd-images img {
    box-shadow: 3px 3px 3px #202125, -3px -3px 3px #3e3e3e;
}

.mandarine-dark .mnd-images .square img {
    box-shadow: none;
}

.mandarine-dark .text-dark, .mandarine-dark .mnd-content, .mandarine-dark .mnd-social li a, .mandarine-dark .social a, .mandarine-dark .blog-single .modal-content {
    color: #fafafa !important;
}

.mandarine-dark .text-muted, .mandarine-dark .about .personal-info span, .mandarine-dark .language-skill h4 span {
    color: #d2d2d2 !important;
}

.mandarine-dark .blog-content h5 a.text-dark:hover, .mandarine-dark .blog-content h5 a.text-dark:focus {
    color: #d2d2d2 !important;
}

.mandarine-dark .mnd-03 .personal-image img {
    box-shadow: 3px 3px 3px #202125, -3px -3px 3px #3e3e3e;
}

.mandarine-dark .team .owl-carousel .team-image::before, .mandarine-dark .skill-box .skillbar,
.mandarine-dark .blog-item:before, .mandarine-dark .blog-image, .mandarine-dark .team .owl-carousel .team-image, .mandarine-dark.base .blog-image,
.mandarine-dark .blog-single .modal-content, .mandarine-dark .portfolio-single .modal-content {
    background-color: #2c2d30;
}

.mandarine-dark .box-border, .mandarine-dark .box-hover-border, .mandarine-dark .button-border, .mandarine-dark .image-border {
    background-color: #2c2d30;
    box-shadow: 3px 3px 3px #202125, -3px -3px 3px #3e3e3e;
}

.mandarine-dark .box-hover-border:hover {
    box-shadow: inset 3px 3px 3px #202125, inset -3px -3px 3px #3e3e3e;
}

.mandarine-dark .pill-button:hover, .mandarine-dark .pill-button.active {
    border: none;
    box-shadow: inset 3px 3px 3px #202125, inset -3px -3px 3px #3e3e3e;
}

.mandarine-dark .team .owl-carousel .team-image::after, .mandarine-dark .skill-box .skillbar, .mandarine-dark .blog-image:after {
    box-shadow: inset 3px 3px 3px #202125, inset -3px -3px 3px #3e3e3e;
}

.mandarine-dark .team-image-border, .mandarine-dark .team .owl-carousel .team-image-border {
    box-shadow: 3px 3px 3px #202125, -3px -3px 3px #3e3e3e;
}

.mandarine-dark .team .owl-dot.active span {
    box-shadow: -1px -1px 4px rgba(83, 83, 83, 0.4), 1px 1px 4px rgba(0, 0, 0, 0.35);
}

.mandarine-dark .blog-intro {
    box-shadow: -2px -2px 7px rgba(83, 83, 83, 0.4), 2px 2px 7px rgba(0, 0, 0, 0.35);
}

.mandarine-dark .contact .form-item .form-group {
    background-color: #2c2d30;
    box-shadow: inset 3px 3px 3px #202125, inset -3px -3px 3px #3e3e3e;
    -webkit-box-shadow: inset 3px 3px 3px #202125, inset -3px -3px 3px #3e3e3e;
    -moz-box-shadow: inset 3px 3px 3px #202125, inset -3px -3px 3px #3e3e3e;
    -o-box-shadow: inset 3px 3px 3px #202125, inset -3px -3px 3px #3e3e3e;
    -ms-box-shadow: inset 3px 3px 3px #202125, inset -3px -3px 3px #3e3e3e;
}

.mandarine-dark .portfolio-single .close {
    color: white;
}

.mandarine-dark .mnd-04 .mnd-item-image {
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.5);
}

.mandarine-dark .mnd-04 .swiper-slide {
    background: #2c2d30;
}

.mandarine-dark .mnd-04 .swiper-button-next, .mandarine-dark .mnd-04 .swiper-button-prev {
    background-color: #fafafa;
}

.mandarine-dark .mnd-04 .swiper-button-next::after, .mandarine-dark .mnd-04 .swiper-button-prev::after {
    color: #1a1a1a;
}

.mandarine-dark .mnd-05 {
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.6);
}

.mandarine-dark .mnd-05 .scroll-down span {
    border: 3px solid #fafafa;
}

.mandarine-dark .mnd-05 .scroll-down span:before {
    background-color: #fafafa;
}

.mandarine-dark .blog-content h6 a:hover {
    color:#d2d2d2 !important;
}

.mandarine-dark .page-mnd {
    background-color: #2b2b2b;
}

@media (max-width: 1199px) {
    .base.mandarine-dark .post-sidebar-toggle.open{
        background-color: rgba(0, 0, 0, 0.5) !important;
    }
}

@media (max-width: 991px) {
    .mandarine-dark .header {
        background-color: #2c2d30;
    }
    .mandarine-dark .header{
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
    }
    .mandarine-dark .navbar-toggler span {
        color: #fafafa;
    }
    .base.mandarine-dark .blog-single .post-sidebar-content {
        box-shadow: -2px -3px 3px #202125, 3px 3px 3px #3e3e3e !important;
    }
    .mandarine-dark .blog-single .post-sidebar-content {
        box-shadow: 3px 3px 3px #202125, -3px -3px 3px #3e3e3e;
    }
}

/*-------------------------
      Flat Demo Light
-------------------------*/
.base {
    background-color: #fff;
}

.base .blog-single .modal-content, .base .portfolio-single .modal-content {
    background-color: #f8f8f8;
}

.base .header-sticky {
    background-color: #fff;
}

.base .team-image-border {
    background-color: #f8f8f8;
}

.base .team-image-border img {
    padding: 4px;
    background-color: transparent;
    border: 1px solid #e3e5d2;
    max-width: 100%;
    height: auto;
}

.base .skill-box .skillbar {
    background-color: #e1e1e1;
}

.base .menu li a {
    box-shadow: none;
}

.base .menu li a:hover, .base .menu li a.active {
    box-shadow: none;
}

.base .button-border {
    box-shadow: none;
    padding: 0;
}

.base .pill-button:hover, .base .pill-button.active, .base .team .owl-dot.active span,
.base .skill-box .skillbar, .base .blog-intro, .base .contact .form-item .form-group,
.base .team .owl-carousel .team-image-border {
    box-shadow: none;
}

.base .pill-button, .base .portfolio-filter .pill-button.active, .base .portfolio-filter .pill-button:hover {
    color: #fafafa;
}

.base .image-border {
    box-shadow: none;
    background-color: transparent;
    padding: 0;
}

.base .processus .image-border .box-hover-border {
    border-radius: 1.25rem;
}

.base .box-border, .base .box-hover-border, .base .contact .form-item .form-group, .base #my-map {
    background-color: #fefefe;
    box-shadow: 1px 1px 10px 1px rgba(255, 139, 69, 0.1) !important;
}

.base .processus .box-border, .base .blog .box-border {
    box-shadow: 0px 0px 16px rgba(145, 145, 145, 0.2) !important;
}

.base .team .owl-carousel .team-image::after, .base .team .owl-carousel .team-image::before,
.base .blog-item::before, .base .blog-image::after {
    display: none;
}

.base .team .owl-carousel .team-image, .base .portfolio-filter .button-border {
    background-color: transparent;
}

.base .portfolio-filter .pill-button {
    color: #3c3c3c;
}

.base .blog-image {
    background-color: #f8f8f8;
    padding: 0;
}

/*-------------------------
      Flat Demo Dark
-------------------------*/
.mandarine-dark.base .box-hover-border:hover {
    box-shadow: none;
}

.mandarine-dark.base .header-sticky, .mandarine-dark.base .team-image-border, .mandarine-dark.base .blog-single .modal-content, .mandarine-dark.base .portfolio-single .modal-content {
    background-color: #2c2d30;
}

.mandarine-dark.base .team-image-border img {
    border: 1px solid #3c3c3c;
}

.mandarine-dark.base .box-border, .mandarine-dark.base .box-hover-border, .mandarine-dark.base .contact .form-item .form-group,
.mandarine-dark.base #my-map {
    background-color: rgba(52, 53, 57, 0.9);
    box-shadow: 0px 0px 2px rgba(79, 79, 79, 0.2) !important;
}

.mandarine-dark.base .box-hover-border:hover {
    box-shadow: none;
}

.mandarine-dark.base .portfolio-filter .pill-button {
    color: #fafafa;
}

/*-------------------------
     Mono Color Light
-------------------------*/
.mono .header nav .nav-pills a.active, .mono .header nav a:hover {
    color: #666 !important;
}

.mono .team .team-item::before {
    color: #3c3c3c;
}

.mono header .navbar-brand span, .mono header .navbar-brand b, .mono .menu li a, .mono .pill-button,
.mono .language-skill ul li i {
    color: #3c3c3c;
}

.mono .base-color {
    color: #ff8b45 !important;
}

.mono .bg-base-color,
.mono .team .owl-dot.active span {
    background-color: #3c3c3c !important;
}

.mono .timeline-icon {
    border: 1px solid #3c3c3c;
    background-color: #3c3c3c;
}

.mono .timeline-item::before {
    border: 1px solid #3c3c3c;
}

.mono .timeline-year, .mono .portfolio .portfolio-icon a:first-child, .mono .portfolio .portfolio-icon a {
    color: #5f5f5f;
}

.mono .skill-box .fill-skillbar {
    background-color: #3c3c3c;
}

.mono .portfolio .portfolio-item-content::before {
    background-color: rgba(60, 60, 60, 0.9);
}

.mono .loader {
    border-top: 4px solid #3c3c3c !important;
}

.mono .menu-toggler span {
    background-color: #3c3c3c;
}

.mono .floating {
    background: #2c2d30;
}

.mono .circle-2 {
    background: #3c3c3c;
}

.mono .circle {
    background: #e1e1e1;
}

.mono .follow-label::before {
    background: #3c3c3c !important;
}

/*-------------------------
      Mono Color Dark
-------------------------*/
.mono.mandarine-dark .header nav .nav-pills a.active, .mono.mandarine-dark .header nav a:hover {
    color: #989898 !important;
}

.mono.mandarine-dark .team .team-item::before {
    color: #fafafa;
}

.mono.mandarine-dark .text-white {
    color: #3c3c3c !important;
}

.mono.mandarine-dark header .navbar-brand span, .mono.mandarine-dark header .navbar-brand b, .mono.mandarine-dark .menu li a, .mono.mandarine-dark .pill-button,
.mono.mandarine-dark .language-skill ul li i {
    color: #fafafa;
}

.mono.mandarine-dark .base-color {
    color: #dedede !important;
}

.mono.mandarine-dark .bg-base-color {
    background-color: #f8f8f8 !important;
}

.mono.mandarine-dark .mnd-social li a:hover, .mono.mandarine-dark .blog-link a:hover {
    color: #a1a1a1 !important;
}

.mono.mandarine-dark .timeline-icon {
    border: 1px solid #dedede;
    background-color: #dedede;
}

.mono.mandarine-dark .timeline-item::before {
    border: 1px solid #dedede;
}

.mono.mandarine-dark .timeline-year, .mono.mandarine-dark .portfolio .portfolio-icon a:first-child, .mono.mandarine-dark .portfolio .portfolio-icon a {
    color: #dedede;
}

.mono.mandarine-dark .skill-box .fill-skillbar, .mono.mandarine-dark .team .owl-dot.active span {
    background-color: #dedede;
}

.mono.mandarine-dark .team .owl-carousel .owl-dot span {
    background-color: #3c3c3c;
}

.mono.mandarine-dark .team .owl-carousel .owl-dot.active span {
    background-color: #dedede !important;
}

.mono.mandarine-dark .portfolio .portfolio-item-content::before {
    background-color: rgba(250, 250, 250, 0.8);
}

.mono.mandarine-dark .portfolio .img-overlay-content h5 {
    color: #3c3c3c;
}

.mono.mandarine-dark .portfolio .portfolio-icon a:first-child, .mono.mandarine-dark .portfolio .portfolio-icon a {
    background-color: #3c3c3c;
}

.mono.mandarine-dark .menu-toggler span {
    background-color: #fafafa;
}

.mono.mandarine-dark .floating {
    background: #f8f8f8;
}

.mono.mandarine-dark .circle-2 {
    background: #dedede;
}

.mono.mandarine-dark .circle {
    background: #e1e1e1;
}

.mono.mandarine-dark .follow-label::before {
    background: #fafafa !important;
}

/*-------------------------
         Flat Mono
-------------------------*/
.mono.base .pill-button {
    background-color: #5f5f5f;
    border: 1px solid #5f5f5f;
    color: #fafafa !important;
}

.mono.base .pill-button:hover {
    background-color: #3c3c3c;
    border: 1px solid #3c3c3c;
}

.mono.base .portfolio-filter .pill-button {
    background-color: transparent;
    border: none;
    color: #3c3c3c !important;
}

.mono.base .portfolio-filter .pill-button.active, .mono.base .portfolio-filter .pill-button:hover {
    color: #fafafa !important;
    background-color: #3c3c3c;
}

/*-------------------------
     Dark Flat Mono
-------------------------*/
.mandarine-dark.mono.base .pill-button {
    background-color: #fafafa;
    border: 1px solid #fafafa;
    color: #5f5f5f !important;
}

.mandarine-dark.mono.base .pill-button:hover {
    background-color: #dedede;
    border: 1px solid;
}

.mandarine-dark.mono.base .portfolio-filter .pill-button {
    background-color: transparent;
    border: none;
    color: #d2d2d2 !important;
}

.mandarine-dark.mono.base .portfolio-filter .pill-button.active, .mandarine-dark.mono.base .portfolio-filter .pill-button:hover {
    background-color: #dedede;
    color: #5f5f5f !important;
}

.mandarine-dark.mono.base .skill-box .skillbar {
    background-color: #3c3c3c !important;
}

/*-----------------------------
  Dark Media (IOS, MAC & ...)
-----------------------------*/
/*
@media (prefers-color-scheme: dark) {

    .header-sticky {
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
    }
    .page-mnd {
        background-color: #2b2b2b;
    }
    .header .menu-item-has-children .sub-menu {
        background-color: #2c2d30;
        box-shadow: 3px 3px 3px #202125, -3px -3px 3px #3e3e3e;
    }
    .base .header .menu-item-has-children .sub-menu {
        background-color: rgba(52, 53, 57, 1) !important;
        box-shadow: 3px 3px 8px 0px rgba(45, 45, 45, 1) !important;
    }

    .mnd-02 {
        background: url("https://placehold.co/1920x1280") no-repeat;
        background-size: cover;
    }

    .mnd-classic .scroll-down span {
        border: 3px solid #fafafa;
    }

    .mnd-classic .scroll-down span:before {
        background-color: #fafafa;
    }

    .mnd-classic {
        box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.69);
    }

    body{
        background-color: #2c2d30 !important;
        color: #fafafa;
    }

    .post-sidebar-toggle, .post-sidebar-content, .aside-contents{
        background-color: #2c2d30;
        box-shadow: 3px 3px 3px #202125, -3px -3px 3px #3e3e3e;
    }
    .post-sidebar-toggle span, .post-sidebar-toggle span:before{
        background: #fafafa;
    }
    .search .form-group button, .aside-item ul li a, .search .form-group input::placeholder,
    .breadcrumb li a, .blog-single .entry-meta li a i, .comment-reply-link, ::placeholder{
        color: #fafafa;
    }
    .search .form-group {
        background-color: #2c2d30;
        box-shadow: inset 3px 3px 3px #202125, inset -3px -3px 3px #3e3e3e;
    }
    .comments-devider {
        background-color: #2c2d30;
        box-shadow: inset 2px 2px 4px #202125, inset -2px -2px 0px #3e3e3e;
    }

    .base .post-sidebar-toggle, .base .search .form-group, .base .aside-contents{
        background-color: rgba(52, 53, 57, 0.9) !important;
        box-shadow: 3px 3px 8px 0px rgba(45, 45, 45, 1) !important;
    }
    .base .post-sidebar-content{
        background-color: #2c2d30 !important;
        box-shadow: -2px -3px 3px #202125, 3px 3px 3px #3e3e3e !important;
    }

    .color-switcher h6 {
        color: #1a1a1a;
    }

    .header nav a, .follow-label {
        color: #fafafa !important;
    }

    .header-sticky {
        background-color: #2c2d30;
    }

    .mnd-images img {
        box-shadow: 3px 3px 3px #202125, -3px -3px 3px #3e3e3e;
    }

    .mnd-images .square img {
        box-shadow: none;
    }

    .text-dark, .mnd-content, .mnd-social li a, .social a, .blog-single .modal-content {
        color: #fafafa !important;
    }

    .text-muted, .about .personal-info span, .language-skill h4 span {
        color: #d2d2d2 !important;
    }

    .blog-content h5 a.text-dark:hover, .blog-content h5 a.text-dark:focus {
        color: #d2d2d2 !important;
    }

    .mnd-03 .personal-image img {
        box-shadow: 3px 3px 3px #202125, -3px -3px 3px #3e3e3e;
    }

    .team .owl-carousel .team-image::before, .skill-box .skillbar,
    .blog .blog-item:before, .blog .blog-image, .team .owl-carousel .team-image, .base .blog-image,
    .blog-single .modal-content, .portfolio-single .modal-content {
        background-color: #2c2d30;
    }

    .box-border, .box-hover-border, .button-border, .image-border {
        background-color: #2c2d30;
        box-shadow: 3px 3px 3px #202125, -3px -3px 3px #3e3e3e;
    }

    .box-hover-border:hover {
        box-shadow: inset 3px 3px 3px #202125, inset -3px -3px 3px #3e3e3e;
    }

    .pill-button:hover, .pill-button.active {
        border: none;
        box-shadow: inset 3px 3px 3px #202125, inset -3px -3px 3px #3e3e3e;
    }

    .team .owl-carousel .team-image::after, .skill-box .skillbar, .blog .blog-image:after {
        box-shadow: inset 3px 3px 3px #202125, inset -3px -3px 3px #3e3e3e;
    }

    .team-image-border, .team .owl-carousel .team-image-border {
        box-shadow: 3px 3px 3px #202125, -3px -3px 3px #3e3e3e;
    }

    .team .owl-carousel .owl-dot.active span {
        box-shadow: -1px -1px 4px rgba(83, 83, 83, 0.4), 1px 1px 4px rgba(0, 0, 0, 0.35);
    }

    .blog .blog-intro {
        box-shadow: -2px -2px 7px rgba(83, 83, 83, 0.4), 2px 2px 7px rgba(0, 0, 0, 0.35);
    }

    .contact .form-item .form-group {
        background-color: #2c2d30;
        box-shadow: inset 3px 3px 3px #202125, inset -3px -3px 3px #3e3e3e;
        -webkit-box-shadow: inset 3px 3px 3px #202125, inset -3px -3px 3px #3e3e3e;
        -moz-box-shadow: inset 3px 3px 3px #202125, inset -3px -3px 3px #3e3e3e;
        -o-box-shadow: inset 3px 3px 3px #202125, inset -3px -3px 3px #3e3e3e;
        -ms-box-shadow: inset 3px 3px 3px #202125, inset -3px -3px 3px #3e3e3e;
    }

    .portfolio-single .close {
        color: white;
    }

    .mnd-04 .mnd-item-image {
        box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.5);
    }

    .mnd-04 .swiper-slide {
        background: #2c2d30;
    }

    .mnd-04 .swiper-button-next, .mnd-04 .swiper-button-prev {
        background-color: #fafafa;
    }

    .mnd-04 .swiper-button-next::after, .mnd-04 .swiper-button-prev::after {
        color: #1a1a1a;
    }

    .mnd-05 {
        box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.6);
    }

    .mnd-05 .scroll-down span {
        border: 3px solid #fafafa;
    }

    .mnd-05 .scroll-down span:before {
        background-color: #fafafa;
    }

    .blog-content h6 a:hover {
        color:#d2d2d2 !important;
    }

    @media (max-width: 1199px) {
        .base .post-sidebar-toggle.open{
            background-color: rgba(0, 0, 0, 0.5) !important;
        }
    }

    @media (max-width: 991px) {
        .header, .base .header {
            background-color: #2c2d30;
        }
        .header{
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
        }
        .navbar-toggler span {
            color: #fafafa;
        }
        .header .menu-item-has-children .sub-menu {
            box-shadow: none;
        }
        .base .blog-single .post-sidebar-content {
            box-shadow: -2px -3px 3px #202125, 3px 3px 3px #3e3e3e !important;
        }
        .blog-single .post-sidebar-content {
            box-shadow: 3px 3px 3px #202125, -3px -3px 3px #3e3e3e;
        }
    }
    .base .box-hover-border:hover {
        box-shadow: none;
    }

    .base .header-sticky, .base .team-image-border, .base .blog-single .modal-content, .base .portfolio-single .modal-content {
        background-color: #2c2d30;
    }

    .base .team-image-border img {
        border: 1px solid #3c3c3c;
    }

    .base .box-border, .base .blog .box-border, .base .box-hover-border, .base .contact .form-item .form-group,
    .base #my-map {
        background-color: rgba(52, 53, 57, 0.9);
        box-shadow: 0px 0px 2px rgba(79, 79, 79, 0.2) !important;
    }

    .base .box-hover-border:hover {
        box-shadow: none;
    }

    .base .portfolio-filter .pill-button {
        color: #fafafa;
    }

    .mono .header nav .nav-pills a.active, .mono .header nav a:hover {
        color: #989898 !important;
    }

    .mono .team .team-item::before {
        color: #fafafa;
    }

    .mono .text-white {
        color: #3c3c3c !important;
    }

    .mono header .navbar-brand span, .mono header .navbar-brand b, .mono .menu li a, .mono .pill-button,
    .mono .language-skill ul li i {
        color: #fafafa;
    }

    .mono .base-color {
        color: #dedede !important;
    }

    .mono .bg-base-color {
        background-color: #f8f8f8 !important;
    }

    .mono .mnd-social li a:hover, .mono .blog-link a:hover {
        color: #a1a1a1 !important;
    }

    .mono .timeline-icon {
        border: 1px solid #dedede;
        background-color: #dedede;
    }

    .mono .timeline-item::before {
        border: 1px solid #dedede;
    }

    .mono .timeline-year, .mono .portfolio .portfolio-icon a:first-child, .mono .portfolio .portfolio-icon a {
        color: #dedede;
    }

    .mono .skill-box .fill-skillbar, .mono .team .owl-dot.active span {
        background-color: #dedede;
    }

    .mono .team .owl-carousel .owl-dot span {
        background-color: #3c3c3c;
    }

    .mono .team .owl-carousel .owl-dot.active span {
        background-color: #dedede !important;
    }

    .mono .portfolio .portfolio-item-content::before {
        background-color: rgba(250, 250, 250, 0.8);
    }

    .mono .portfolio .img-overlay-content h5 {
        color: #3c3c3c;
    }

    .mono .portfolio .portfolio-icon a:first-child, .mono .portfolio .portfolio-icon a {
        background-color: #3c3c3c;
    }

    .mono .menu-toggler span {
        background-color: #fafafa;
    }

    .mono .floating {
        background: #f8f8f8;
    }

    .mono .circle-2 {
        background: #dedede;
    }

    .mono .circle {
        background: #e1e1e1;
    }

    .mono .follow-label::before {
        background: #fafafa !important;
    }

    .mono.base .pill-button {
        background-color: #fafafa;
        border: 1px solid #fafafa;
        color: #5f5f5f !important;
    }

    .mono.base .pill-button:hover {
        background-color: #dedede;
        border: 1px solid;
    }

    .mono.base .portfolio-filter .pill-button {
        background-color: transparent;
        border: none;
        color: #d2d2d2 !important;
    }

    .mono.base .portfolio-filter .pill-button.active, .mono.base .portfolio-filter .pill-button:hover {
        background-color: #dedede;
        color: #5f5f5f !important;
    }

    .mono.base .skill-box .skillbar {
        background-color: #3c3c3c !important;
    }

    .color-scheme-title, .color-scheme {
        display: none !important;
    }

}*/

.w-20p {
    width: 20px;
}
.w-100p {
    width: 200px;
}

.leaf {
    color: #325d33 !important;
}

section {
    z-index:10;
}

.title-content h2 {
    color: #cad6ca;
    font-size: 6rem;
    font-weight: 100;
    margin-top:40px;
}

.boowie {
    font-family: "BOOWIE Regular" !important;
}
.mnd-color {
    background-color: rgb(255 164 0 / 40%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.mnd-content .element {
    font-size:5rem;
}
div.number {
    font-size: 7rem;
    margin-top: -75px;
    margin-left: -15px;
    color: #325d33;
}
div.processus-content h5 {
    color: #325d33;
    font-family: "BOOWIE Regular" !important;
    font-weight: 100;
}
div.processus-item .processus-icon i {
    padding:0 10px;
    font-size:1.2rem;
}
#services, #contact {
    background: #fdf5e8;
}
.base .services-item {
    padding:20px;
    background:none;
    border:0;
    box-shadow:none !important;
}
.services-item i {
    font-size: 4rem;
}
.services-item h5 {
    font-weight: 100;
}
.base .team-item {
    box-shadow: 5px 5px 0px 1px #ff8b45 !important;
}
footer {
    background: #ff8b45;
    color: #fff;
}
#processus, #team {
    background: white url('../img/bg-white-orange.png') no-repeat bottom left;
    background-cover:contain;
}
#services {
    background: #fdf5e8 url('../img/bg-orange-white.png') no-repeat bottom left;
    background-cover:contain;
}