/* --- Colors root --- */
:root {
    --main-color: #b19777;
    --font-grey: #555;
    --font-black : #191514;
    --bg-grey: rgba(34,34,34, .050);
    --font-family-main : 'Poppins', sans-serif; 
    --font-family-second : 'Teko', sans-serif; 
    }
    
/* --- Scroll bars styling --- */   
::-webkit-scrollbar {width: 5px;height: 4px;}
::-webkit-scrollbar-thumb {background: var(--main-color);border: 0;}
::-webkit-scrollbar-thumb:hover {background: var(--main-color);}
::-webkit-scrollbar-thumb:active {background: var(--main-color);}
::-webkit-scrollbar-track {background:grey; border-radius: 0;border: 0;}
::-webkit-scrollbar-track:hover {background: grey;}
::-webkit-scrollbar-track:active {background: grey;}

/* --- Typography --- */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none; 
    }

body {
    line-height: 1.5;
    font-weight: 400;
    overflow-x: hidden !important;
    font-family: var(--font-family-main);
    }

img {
    width: 100%;
    height: auto; 
    }

span, a, a:hover {
    display: inline-block;
    color: inherit; 
    }

h1 {font-size: 55px; }
h2 {font-size: 40px; }
h3 {font-size: 35px; }
h4 {font-size: 30px; }
h5 {font-size: 25px; }
h6 {font-size: 18px; }

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    line-height: 1.4;
    font-weight: 400; 
    }

p {
    color: var(--font-grey);
    font-size: 15px;
    font-weight: 400;
    line-height: 2;
    margin: 0; 
    }
.small {
    font-size: 70%;
    font-weight: 400;
    color: #999;
    }

a, span {
    display: inline-block; 
    }
a:hover, span:hover {
    text-decoration: none; 
    }

/* --- Preloader --- */
.pace {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99999999999999;
    position: fixed;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 400px;
    border: 0px;
    height: 1px;
    font-size: 50px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s; 
    }
.pace .pace-progress {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    max-width: 300px;
    position: fixed;
    z-index: 99999999999999;
    display: block;
    position: absolute;
    top: 0;
    right: 100%;
    height: 100%;
    width: 100%;
    background: var(--main-color); 
    }
.pace.pace-inactive {
    width: 100vw;
    opacity: 0; 
    }
.pace.pace-inactive .pace-progress {
    max-width: 100vw; 
    }

#preloader {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: fixed;
    z-index: 9999999; 
    }
#preloader:after, #preloader:before {
    content: '';
    position: fixed;
    left: 0;
    height: 50vh;
    width: 100%;
    background: #222;
    -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); 
    }
#preloader:before {
    top: 0; 
    }
#preloader:after {
    bottom: 0; 
    }
#preloader.isdone {
    visibility: hidden;
    -webkit-transition-delay: 1.5s;
    -o-transition-delay: 1.5s;
    transition-delay: 1.5s; 
    }
#preloader.isdone:after, #preloader.isdone:before {
    height: 0;
    -webkit-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
    -o-transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
    transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
    -webkit-transition-delay: 1s;
    -o-transition-delay: 1s;
    transition-delay: 1s; 
    }

.loading-text {
    font-weight: 300;
    font-size: 14px !important;
    text-transform: uppercase;
    letter-spacing: 10px;
    position: absolute;
    top: calc(50% - 80px);
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: var(--main-color);
    font-family: var(--font-family-second);
    z-index: 9999; 
    }
.loading-text span {
    display: block;
    margin-bottom: 15px;
    }
.loading-text.isdone {
    top: 50%;
    opacity: 0;
    -webkit-transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition-delay: .5s;
    -o-transition-delay: .5s;
    transition-delay: .5s;
    }

/* --- Text Animation & Images --- */
.splitting.animated .char {
    -webkit-animation: fadeInUp 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
    animation: fadeInUp 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
    -webkit-animation-delay: calc(30ms * var(--char-index));
    animation-delay: calc(30ms * var(--char-index)); 
    }
.splitting .whitespace {
    width: 10px; 
    }
@-webkit-keyframes fadeInUp {
    0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px); }
    100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@keyframes fadeInUp {
    0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px); }
    100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
.splitting.txt.animated .char {
    -webkit-animation: fadeIn 0.3s cubic-bezier(0.3, 0, 0.7, 1) both;
    animation: fadeIn 0.3s cubic-bezier(0.3, 0, 0.7, 1) both;
    -webkit-animation-delay: calc(10ms * var(--char-index));
    animation-delay: calc(10ms * var(--char-index)); 
    }
.splitting.txt .whitespace {
    width: 5px; 
    }
@-webkit-keyframes fadeIn {
    0% {
    opacity: 0; }
    100% {
    opacity: 1; } }
@keyframes fadeIn {
    0% {
    opacity: 0; }
    100% {
    opacity: 1; } }
.imago {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    -webkit-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
    -webkit-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s; 
    }
.imago.animated {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); 
    }

/* --- Scroll Progress button --- */
.progress-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 44px;
    width: 44px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear; 
    }
.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); 
    }
.progress-wrap::after {
    position: absolute;
    font-family: 'Font Awesome 5 Pro';
    content: '\f077';
    text-align: center;
    line-height: 44px;
    font-size: 13px;
    font-weight: 900;
    color: var(--main-color);
    left: 0;
    top: 0;
    height: 44px;
    width: 44px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear; 
    }
.progress-wrap svg path {
    fill: none; 
    }
.progress-wrap svg.progress-circle path {
    stroke: var(--main-color);
    stroke-width: 4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear; 
    }

/* --- Cursor style --- */
body {
    cursor: none; 
    }
.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden; 
    }
.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 6px;
    height: 6px;
    z-index: 10000001;
    background-color: var(--main-color);
    -webkit-transition: width .3s ease-in-out,
    height .3s ease-in-out,
    margin .3s ease-in-out,
    opacity .3s ease-in-out;
    -o-transition: width .3s ease-in-out,
    height .3s ease-in-out,
    margin .3s ease-in-out,
    opacity .3s ease-in-out;
    transition: width .3s ease-in-out,
    height .3s ease-in-out,
    margin .3s ease-in-out,
    opacity .3s ease-in-out; 
    }
.cursor-inner.cursor-hover {
    margin-left: -40px;
    margin-top: -40px;
    width: 80px;
    height: 80px;
    background-color: var(--main-color);
    opacity: .3;
    }
.cursor-outer {
    margin-left: -15px;
    margin-top: -15px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--main-color);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 10000000;
    opacity: .5;
    -webkit-transition: all .08s ease-out;
    -o-transition: all .08s ease-out;
    transition: all .08s ease-out;
    }
.cursor-outer.cursor-hover {
    opacity: 0; 
    }

/* --- Start / Overlay --- */
[data-overlay-dark],
[data-overlay-light] {
  position: relative; }

[data-overlay-dark] .container,
[data-overlay-light] .container {
  position: relative;
  z-index: 2; }

[data-overlay-dark]:before,
[data-overlay-light]:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1; }

[data-overlay-dark]:before {
  background: #02050b; }

[data-overlay-light]:before {
  background: #fff; }

[data-overlay-dark] h1,
[data-overlay-dark] h2,
[data-overlay-dark] h3,
[data-overlay-dark] h4,
[data-overlay-dark] h5,
[data-overlay-dark] h6,
[data-overlay-dark] span,
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6,
.bg-dark span,
.bg-color h1,
.bg-color h2,
.bg-color h3,
.bg-color h4,
.bg-color h5,
.bg-color h6,
.bg-color span {
  color: #fff; }

[data-overlay-dark] p,
.bg-dark p,
.bg-color p {
  color: #999; }

[data-overlay-dark="0"]:before,
[data-overlay-light="0"]:before {
  opacity: 0; }

[data-overlay-dark="1"]:before,
[data-overlay-light="1"]:before {
  opacity: .1; }

[data-overlay-dark="2"]:before,
[data-overlay-light="2"]:before {
  opacity: .2; }

[data-overlay-dark="3"]:before,
[data-overlay-light="3"]:before {
  opacity: .3; }

[data-overlay-dark="4"]:before,
[data-overlay-light="4"]:before {
  opacity: .4; }

[data-overlay-dark="5"]:before,
[data-overlay-light="5"]:before {
  opacity: .5; }

[data-overlay-dark="6"]:before,
[data-overlay-light="6"]:before {
  opacity: .6; }

[data-overlay-dark="7"]:before,
[data-overlay-light="7"]:before {
  opacity: .7; }

[data-overlay-dark="8"]:before,
[data-overlay-light="8"]:before {
  opacity: .8; }

[data-overlay-dark="9"]:before,
[data-overlay-light="9"]:before,
[data-overlay-color="9"]:before {
  opacity: .9; }

[data-overlay-dark="10"]:before,
[data-overlay-light="10"]:before {
  opacity: 1; }


/* --- Heading --- */
.section-head {
    position: relative;
    margin: 0 auto 80px; 
    }
.section-head h4 {
    font-family: var(--font-family-second);
    color: var(--font-black);
    font-weight: 400;
    font-size: 40px;
    letter-spacing: 2px; 
    }
.section-head h6 {
    color: var(--main-color);
    font-weight: 300;
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px; 
    font-family: var(--font-family-second);
    font-weight: 400;
    }
.section-head h2 {
    font-family: var(--font-family-second);
    color: var(--font-black);
    }
.sub-title {
    color: var(--main-color);
    font-family: var(--font-family-second);
    text-transform: uppercase;
    font-weight: 400;
    font-size: 14px;
    padding-left: 60px;
    letter-spacing: 4px;
    margin-bottom: 15px;
    position: relative; 
    }
.sub-title:before {
    content: "";
    width: 50px;
    height: 1px;
    background: var(--main-color);
    position: absolute;
    left: 0;
    top: 50%; 
    }

/* --- Button style --- */
.btn-curve {
    background: transparent;
    padding: 14px 35px 12px 35px;
    border: 1px solid #1e1e1e;
    font-family: var(--font-family-second);
    position: relative;
    overflow: hidden;
    cursor: pointer; 
    }
.btn-curve:focus, .btn-curve:hover {
    outline: none; 
    }
.btn-curve:hover:after {
    bottom: -30px;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg); 
    }
.btn-curve span {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
    -webkit-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s; 
    }
.btn-curve:hover span {
    color: #fff; 
    }
.btn-curve:after {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: 130%;
    background: #1e1e1e;
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
    -webkit-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s; 
    } 
.btn-curve.btn-color {
    background: var(--main-color);
    border-color: var(--main-color); 
    }
.btn-curve.btn-color:after {
    background: #fff; 
    }
.btn-curve.btn-color span {
    color: #fff; 
    }
.btn-curve.btn-color:hover span {
    color: var(--main-color); 
    }

/* --- Navbar --- */
.navbar {
    position: absolute;
    left: 0;
    top: 0;
    padding: 0;
    margin: 0;
    width: 100%;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
    min-height: 80px; 
    }
.navbar .icon-bar {
    color: #fff; 
    }
.navbar .navbar-nav .nav-link {
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 1px;
    padding: 15px 7px;
    margin: 10px; 
    }
.navbar .social-icon {
    padding: 0 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.1); 
    }
.navbar .social-icon a {
    color: #fff;
    margin: 0 10px;
    font-size: 13px; 
    }
.nav-scroll .social-icon a {
    color: #222;
    }
.light, .nav-scroll {
    background: #fff;
    -webkit-box-shadow: 0px 10px 30px rgba(37, 37, 49, 0.1);
    box-shadow: 0px 10px 30px rgba(37, 37, 49, 0.1);
    padding: 0;
    position: fixed;
    top: -80px;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    -o-transition: transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    -webkit-transform: translateY(80px);
    -ms-transform: translateY(80px);
    transform: translateY(80px); 
    }
.light .icon-bar, .nav-scroll .icon-bar {
    color: #222; 
    }
.light .navbar-nav .nav-link, .nav-scroll .navbar-nav .nav-link {
    color: #222; 
    }
.light .navbar-nav .logo, .nav-scroll .navbar-nav .logo {
    width: 100px;
    padding: 15px 0;
    color: RED; 
    }
 .navbar .logo {
    color: #FFF; 
    font-family: var(--font-family-main);
    letter-spacing: 0.15rem ;
    font-size: 16px;
    font-weight: 400;
    }
.navbar.nav-scroll .logo {
    color: #222; 
    }

/* --- Divers --- */
.full-width { width: 100% !important; }
.bg-gray { background-color: var(--bg-grey); }
.bg-img { background-size: cover;background-repeat: no-repeat; }
.bg-repeat { background-size: auto;background-repeat: repeat; }
.section-padding { padding: 120px 0; }
.section-mediabox { padding: 50px 0 120px 0; }
.section-details { padding: 20px 0 120px 0; }
.circle { border-radius: 50%; }
.valign { display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-align: center;-ms-flex-align: center;align-items: center; }

/* --- Text color --- */
.text-white { color: #FFF;}

/* --- Margin-top --- */
.mt-10 { margin-top: 10px !important; }
.mt-30 { margin-top: 30px !important; }
.mt-35 { margin-top: 35px !important; }
.mt-40 { margin-top: 40px !important; }
.mt-50 { margin-top: 50px !important; }
.mt-80 { margin-top: 80px !important; }
.mt-100 { margin-top: 100px !important; }

/* --- Margin-bottom --- */
.mb-0 { margin-bottom: 0 !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-80 { margin-bottom: 80px !important; }

/* --- Padding-top --- */
.pt-20 { padding-top: 20px !important; }
.pt-80 { padding-top: 80px !important; }

/* --- Padding-bottom --- */
.pb-80 { padding-bottom: 80px !important; }

/* --- Padding-left --- */
.pl-0 { padding-left: 0; }

/* --- Width  % --- */
.w-75 { width: 75%; }


/* Hero */
.pages-header {
    height: 40vh; 
    }


/* Index.php - Slider */
.slider {
    position: relative; 
    }
.slider.fixed-slider {
    position: fixed;
    top: 0;
    left: 0;
    right: 0; 
    }
.slider .swiper-slide-active {
    z-index: 3; 
    }
.slider .parallax-slider {
    position: relative; 
    }
.slider .parallax-slider .swiper-slide {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 100vh;
    padding-bottom: 50px; 
    }
.slider .parallax-slider .swiper-slide .bg-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover; 
    }
.slider .parallax-slider .swiper-slide-active .caption h1 {
    -webkit-transition: all 0s;
    -o-transition: all 0s;
    transition: all 0s;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); 
    }
.slider .parallax-slider .swiper-slide-active .caption h1 .char {
    -webkit-animation: fadeInUp 0.5s cubic-bezier(0.3, 0, 0.7, 1) both;
    animation: fadeInUp 0.5s cubic-bezier(0.3, 0, 0.7, 1) both;
    -webkit-animation-delay: calc(60ms * var(--char-index));
    animation-delay: calc(60ms * var(--char-index)); 
    }
.slider .parallax-slider .swiper-slide-active .caption .thin,
.slider .parallax-slider .swiper-slide-active .caption .btn-curve,
.slider .parallax-slider .swiper-slide-active .caption p {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); 
    }
.slider .parallax-slider .caption .thin {
    color: var(--main-color);
    font-family: var(--font-family-second);
    font-size: 20px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 5px;
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    -webkit-transition-delay: .8s;
    -o-transition-delay: .8s;
    transition-delay: .8s; 
    }
.slider .parallax-slider .caption .thin span {
    color: var(--main-color); 
    }
.slider .parallax-slider .caption h1 {
    font-family: var(--font-family-second);
    font-weight: 400; 
    font-size: 75px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .5s,
    visibility .5s;
    -o-transition: opacity .5s,
    visibility .5s;
    transition: opacity .5s,
    visibility .5s; 
    }
.slider .parallax-slider .caption h1 span {
    font-weight: 500; 
    }
.slider .parallax-slider .caption p {
    color: #eee;
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    -webkit-transition-delay: .8s;
    -o-transition-delay: .8s;
    transition-delay: .8s; 
    }
.slider .parallax-slider .caption .btn-curve {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    -webkit-transition-delay: 1s;
    -o-transition-delay: 1s;
    transition-delay: 1s; 
    }
.slider .parallax-slider .hmone h1 .thin {
    font-size: 30px;
    margin-bottom: 20px; 
    }
.slider .caption.center h1 {
    font-size: 75px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 2px;
    margin-bottom: 20px; 
    }
.swiper-slide .caption {
    position: relative; 
    }
.swiper-slide .caption .top-corn,
.swiper-slide .caption .bottom-corn {
    position: absolute;
    left: -60px;
    top: -60px;
    opacity: .9; 
    }
.swiper-slide .caption .top-corn:after, .swiper-slide .caption .top-corn:before,
.swiper-slide .caption .bottom-corn:after,
.swiper-slide .caption .bottom-corn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: var(--main-color); 
    }
.swiper-slide .caption .top-corn:after,
.swiper-slide .caption .bottom-corn:after {
    width: 30px;
    height: 1px; 
    }
.swiper-slide .caption .top-corn:before,
.swiper-slide .caption .bottom-corn:before {
    width: 1px;
    height: 30px; 
    }
.swiper-slide .caption .bottom-corn {
    top: auto;
    bottom: -60px; 
    }
.swiper-slide .caption .bottom-corn:before {
    top: auto;
    bottom: 0; 
    }
.slider .setone {
    position: absolute;
    bottom: 8%;
    right: 40px;
    z-index: 8; 
    }
.slider .setone .swiper-nav-ctrl {
    color: #ccc;
    font-size: 13px;
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    margin: 5px 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: static; 
    }
.slider .setone .swiper-nav-ctrl:after {
    display: none; }
.slider .setone.setwo {
    position: static; 
    }
.slider .setone.setwo .swiper-nav-ctrl {
    border-radius: 50%; 
    }
.slider .setone.setwo .next-ctrl {
    position: absolute;
    top: 50%;
    right: 30px; 
    }
.slider .setone.setwo .prev-ctrl {
    position: absolute;
    top: 50%;
    left: 30px; 
    }
.slider .swiper-pagination-fraction.top {
    position: absolute;
    right: 15%;
    left: auto;
    bottom: auto;
    top: 20%;
    width: auto;
    font-family: var(--font-family-second);
    color: #fff;
    font-size: 40px;
    font-weight: 500; 
    }
.slider .swiper-pagination-fraction.top .swiper-pagination-current {
    font-size: 60px;
    font-weight: 700;
    position: relative;
    color: transparent;
    -webkit-text-stroke: .5px #fff; 
    }
.slider .swiper-pagination-fraction.top .swiper-pagination-current:after {
    content: '/';
    color: #fff;
    position: relative;
    margin: 0 10px;
    font-size: 12px;
    font-weight: 100; 
    }
.slider .swiper-pagination-fraction.top.botm {
    top: auto;
    bottom: 40px;
    right: 40px; 
    }


/* Index.php - About */
.about {
    position: relative; 
    }
.about .logo {
    width: 60%;
    height: auto; 
    }
.about .presentation {
    position: relative;
    z-index: 2; 
    }
.about .presentation:after {
    content: '';
    width: 200px;
    height: 250px;
    position: absolute;
    top: -40px;
    right: -40px;
    border: 10px solid var(--bg-grey);
    z-index: -1; 
    }
.about .presentation h2 {
    font-family: var(--font-family-second);
    color: var(--font-black);
    }
.about .sign {
    border: 0px solid grey;
    }
.about .sign img {
    width: 24%;
    margin-left: 45%;
    }
.about .partner {
    display: block;
    width: 100%;
    height: 60px;
    }
.about .partner.p1 {
    background-image: url('../img/cemex-grey.jpg');
    background-position: center; 
    background-repeat: no-repeat;
    transition: .5s;
    }
.about .partner.p1:hover {
    background-image: url('../img/cemex-color.jpg');
    cursor: pointer;
    }
.about .partner.p2 {
    background-image: url('../img/lcl-grey.jpg');
    background-position: center; 
    background-repeat: no-repeat;
    transition: .5s;
    }
.about .partner.p2:hover {
    background-image: url('../img/lcl-color.jpg');
    cursor: pointer;
    }
.about .partner.p3 {
    background-image: url('../img/experensol-grey.jpg');
    background-position: center; 
    background-repeat: no-repeat;
    transition: .5s;
    }
.about .partner.p3:hover {
    background-image: url('../img/experensol-color.jpg');
    cursor: pointer;
    }


/* Index.php - Projet */
.skills-circle .skill {
    position: relative; 
    }
.skills-circle .skill span {
    width: 150px;
    height: 150px;
    line-height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-75px) translateY(-98px);
    -ms-transform: translateX(-75px) translateY(-98px);
    transform: translateX(-75px) translateY(-98px);
    font-size: 40px;
    font-weight: 300; 
    }
.skills-circle .skill h6 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 20px; 
    }


/* Index.php - Realisations */
.about .real-content {
    position: relative;
    z-index: 2; 
    padding-left: 40px;
    }
.about .real-content:after {
    content: '';
    width: 200px;
    height: 250px;
    position: absolute;
    top: -40px;
    right: -40px;
    border: 10px solid var(--bg-grey);
    z-index: -1; 
    }
.about .real-content h2 {
    font-family: var(--font-family-second);
    color: var(--font-black);
    }.about .real-content.nopat:after {
    display: none; 
    }
.about .real-content ul {
    margin: 30px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; 
    }
.about .real-content ul li {
    color : var(--font-black);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase; 
    }
.about .real-content ul li:after {
    content: '/';
    position: relative;
    margin: 0 15px;
    color: #777; 
    }
.about .real-content ul li:last-of-type:after {
    display: none; 
    }
.about .ab-exp .separate {
    height: 40px;
    margin: 80px auto;
    }
.about .ab-exp .pattern {
    height: 100%;
    width: 100%; 
    }
.about .ab-exp .rubrique-exp {
    position: relative;
    height: 100%;
    width: 100%;
    border: 10px solid var(--bg-grey); 
    }
.about .ab-exp .rubrique-exp .exp-text {
    position: absolute;
    bottom: 40px;
    left: -10px;
    padding: 10px 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    background: #fff; 
    }
.about .ab-exp .rubrique-exp .exp-text h2 {
    font-family: var(--font-family-second);
    font-weight: 400;
    font-size: 70px;
    line-height: 1;
    display: inline-block;
    position: relative;
    z-index: 2; 
    }
.about .ab-exp .rubrique-exp .exp-text h2:after {
    content: '';
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-grey);
    position: absolute;
    right: -15px;
    top: -15px;
    z-index: -1; 
    }
.about .ab-exp .rubrique-exp .exp-text h6 {
    font-size: 14px; 
    color: var(--font-black);
    }


/* Index.php - Avis Google */
.google.grid .avis {
    position: relative; 
    }
.google.grid .avis .slick-track {
    padding-top: 15px; 
    }
.google.grid .item {
    position: relative;
    margin: 0 20px; 
    }
.google.grid .item .quote-icon {
    position: absolute;
    top: -20px;
    right: 14%;
    width: 8%;
    z-index: 2; 
    }
.google.grid .item .cont {
    min-height: 280px;
    padding: 50px 40px 40px;
    border: 5px solid var(--bg-grey);
    border-top: 0;
    position: relative; 
    }
.google.grid .item .cont:after, .google.grid .item .cont:before {
    content: '';
    position: absolute;
    height: 5px;
    background: var(--bg-grey);
    top: 0; 
    }
.google.grid .item .cont:after {
    width: 75%;
    left: 0; 
    }
.google.grid .item .cont:before {
    width: 10%;
    right: 0; 
    }
.google.grid .item .cont p {
    font-size: 13px;
    font-weight: 400;
    font-style: italic;
    color: var(--font-grey); 
    }
.google.grid .item .info {
    margin-top: 30px;
    padding-left: 30px;
    position: relative; 
    }
.google.grid .item .info:after {
    content: '';
    width: 0;
    height: 0;
    border-top: 25px solid #f7f7f7;
    border-right: 30px solid transparent;
    position: absolute;
    left: 100px;
    top: -30px; 
    }
.google.grid .item .info h6 {
    display: table-cell;
    vertical-align: middle;
    padding-left: 20px;
    color: var(--font-black);
    font-size: 16px; 
    }
.google.grid .item .info h6 span {
    color: var(--main-color);
    font-size: 13px;
    font-weight: 400;
    margin-top: 5px;
    display: block; 
    }
.google.grid .navs {
    position: absolute;
    top: 30%;
    left: 0;
    width: 100%; 
    }
.google.grid .navs span {
    padding: 10px 20px;
    background: #f8f4f3;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0; 
    }
.google.grid .navs span:hover {
    background: var(--main-color);
    color: #fff; 
    }
.google.grid .navs .next {
    left: auto;
    right: 0; 
    }


/* Realisations.php */
.portfolio .filtering .filter {
	padding: 15px; 
	}
.portfolio .filtering .filter.box {
	-webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
	display: inline-block; 
	}
.portfolio .filtering span {
	font-weight: 600;
	font-size: 13px;
    color: var(--font-black);
	letter-spacing: 1px;
	text-transform: uppercase;
	margin: 0 20px;
	cursor: pointer;
	position: relative; 
	}
.portfolio .filtering span.active {
	color: var(--main-color); 
	}
.portfolio .filtering span:after {
	content: '';
	width: 7px;
	height: 7px;
	background: var(--main-color);
	border-radius: 50%;
	position: absolute;
	right: -24px;
	top: 40%; 
	}
.portfolio .filtering span:last-of-type:after {
	display: none; 
	}
.portfolio .gallery .items {
	padding: 0 15px; 
	}
.portfolio .gallery .items .item-img {
	overflow: hidden;
	position: relative;
	height: 440px; 
	}
.portfolio .gallery .items .item-img > a {
	display: block; 
	}
.portfolio .gallery .items .item-img:hover .item-img-overlay {
	opacity: 1;
	visibility: visible; 
	}
.portfolio .gallery .items .item-img img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s; 
	}
.portfolio .gallery .items .item-img:after, .portfolio .gallery .items .item-img:before {
	content: '';
	position: absolute;
	background: #fff;
	z-index: 2;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s; 
	}
.portfolio .gallery .items .item-img:after {
	width: 50px;
	height: 1px;
	top: 50%;
	left: -100px; 
	}
.portfolio .gallery .items .item-img:before {
	height: 50px;
	width: 1px;
	left: 50%;
	top: -100px; 
    }
.portfolio .gallery .items .item-img:hover:after {
	left: 50%;
	-webkit-transform: translateX(-25px);
	-ms-transform: translateX(-25px);
	transform: translateX(-25px); 
	}
.portfolio .gallery .items .item-img:hover:before {
	top: 50%;
	-webkit-transform: translateY(-25px);
	-ms-transform: translateY(-25px);
	transform: translateY(-25px); 
	}
.portfolio .gallery .items .item-img-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(38, 38, 40, 0.5);
	text-align: center;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
	opacity: 0;
	visibility: hidden; 
	}
.portfolio .gallery .items .info {
	background-image: url(../img/line-pattern.png);
	padding: 10px 20px; 
	}
.portfolio .gallery .items .info h5 {
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase; 
	}
.portfolio .gallery .items .info span {
	color: #777;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 4px; 
	}
.portfolio .gallery.twsty .items {
	width: 50%; 
	}
.portfolio .gallery.twsty .four-column {
	width: 25% !important; 
	}
.portfolio .gallery.twsty .four-column .item-img {
	height: 300px; 
	}
.portfolio .gallery.twsty .three-column {
	width: 33.333333% !important; 
	}
.portfolio .gallery.inf-lit .items {
	position: relative; 
	}
.portfolio .gallery.inf-lit .items:hover .info {
	opacity: 1;
	-webkit-transform: translate(0) skew(0);
	-ms-transform: translate(0) skew(0);
	transform: translate(0) skew(0);
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s; 
	}
.portfolio .gallery.inf-lit .items .caption {
	position: absolute;
	top: 10%;
	left: 10%;
	background-color: var(--main-color);
	color: #fff;
	font-weight: 400;
	padding: 6px 20px;
	}
.portfolio .gallery.inf-lit .items .info {
	background: #fff;
	position: absolute;
	bottom: 0;
	left: 15px;
	width: 90%;
	padding: 15px;
	-webkit-transform: translateX(-30px) translateY(30px) skew(10deg);
	-ms-transform: translateX(-30px) translateY(30px) skew(10deg);
	transform: translateX(-30px) translateY(30px) skew(10deg);
	opacity: 0;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s; 
	}
.portfolio .gallery.inf-lit .items .info h5 {
	font-weight: 600;
    color: var(--font-black);
	text-transform: capitalize; 
	}
.portfolio .gallery.inf-lit .items .info span {
	text-transform: capitalize;
	letter-spacing: 1px; 
	}


/* Details.php */
.details {
    position: relative;
    z-index: 2; 
    } 
.details h2 {
    font-family: var(--font-family-second);
    color: var(--font-black);
    }
.after-before {
    position: relative;
    color: #fff; 
    z-index: 10;
    }
.after-before .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: -1; 
    }
.after-before .dotsbg {
    position: relative; 
    }
.after-before .dotsbg:after {
    content: '';
    background-image: url(../img/line-pattern1.png);
    background-repeat: repeat;
    position: absolute;
    bottom: -60px;
    left: 10%;
    right: 10%;
    height: 40%;
    z-index: -1; 
    }
.details-item {
    margin: 80px 0;
    padding: 20px 0;
    background: url('../img/bg-lines.png') repeat center center;
    }


/* Conseils.php */
.blog-grid {
    position: relative; 
    }
.blog-grid .item .post-img .img {
    overflow: hidden; 
    }
.blog-grid .item .post-img:hover img {
    -webkit-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1); 
    }
.blog-grid .item .post-img img {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s; 
    }
.blog-grid .item .cont {
    position: relative;
    padding: 40px 30px 0;
    width: 92%;
    margin-left: 8%;
    margin-top: -40px;
    background: #fff; 
    }
.blog-grid .item .info {
    margin-bottom: 15px; 
    }
.blog-grid .item .info a {
    color: #777;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    margin-right: 10px; 
    }
.blog-grid .item .info a:last-of-type {
    margin-right: 0; 
    }
.blog-grid .item .info a i {
    margin-right: 2px; 
    }
.blog-grid .item .info .tag {
    color: var(--main-color);
    font-weight: 600;
    float: right; 
    }
.blog-grid .item h4 {
    font-family: var(--font-family-second);
    color: var(--font-black);
    }
.blog-grid .item h4:hover {
    cursor: pointer;
    }
.blog-grid .item h5 {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px; 
    }
.blog-grid .item .more {
    color: var(--main-color);
    font-family: var(--font-family-second);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--main-color);
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s; 
    }
.blog-grid .item .more:hover {
    cursor: pointer;
    color: var(--main-color);
    }
.blog-grid.center .item {
    text-align: center; 
    }
.blog-grid.center .item .cont {
    margin-left: 4%;
    padding: 40px; 
    }
.blog-grid.center .item .cont h5 {
    font-size: 21px; 
    }
.blog-pg.single {
    padding-bottom: 120px;
    }
.blog-pg.single .post .title-head {
    text-align: center;
    margin-bottom: 20px; 
    }
.blog-pg.single .post .title-head h2 {
    color: var(--font-black);
    font-size: 32px;
    margin-bottom: 6px; 
    }
.blog-pg.single .post .title-head p {
    color: var(--main-color);
    font-size: 14px;
    text-transform: uppercase;
    }
.blog-pg.single .post .content p {
    text-align: justify;
    margin: 30px 0; 
    }
.blog-pg.single .post .content .spacial p {
    color: var(--font-black);
    font-size: 15px;
    font-weight: 500; 
    margin: 0 0 50px 0;
    }
.blog-pg.single .post .content ul li {
    color: var(--font-grey);
    font-size: 15px;
    font-weight: 400;
    line-height: 2; 
    }
.blog-pg.single .post .content ul li span {
    display: block;
    margin-top: 20px;
    margin-right: 10px;
    font-weight: 500;
    font-size: 16px; 
    }
.blog-pg.single .post .content .quotes {
    background: #fafafa;
    padding: 30px;
    margin: 30px 0; 
    }
.blog-pg.single .post .content .quotes p {
    color: #111;
    font-size: 18px;
    font-style: italic; 
    }
.blog-pg.single .post .content h6 {
    color: var(--font-black); 
    }
.blog-pg.single .post .content .share-info {
    color: var(--font-black); 
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid var(--font-grey);;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; 
    }
.blog-pg.single .post .content .share-info .social a {
    font-size: 13px;
    margin-right: 20px; 
    }
.blog-pg.single .post .content .share-info .tags {
    margin-left: auto; 
    }
.blog-pg.single .post .content .share-info .tags a {
    font-size: 12px;
    margin: 0 10px; 
    }
.blog-pg.single .post .author {
    padding: 30px;
    margin-top: 40px;
    background: #fafafa; 
    }
.blog-pg.single .post .author .author-img {
    display: table-cell;
    vertical-align: middle;
    width: 140px; 
    }
.blog-pg.single .post .author .info {
    display: table-cell;
    padding-left: 40px; 
    }
.blog-pg.single .post .author .info h6 {
    margin-bottom: 10px;
    font-size: 15px; 
    }
.blog-pg.single .post .author .info h6 span {
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 10px; 
    }
.blog-pg.single .post .author .info p {
    padding: 0;
    margin: 0; 
    }
.blog-pg.single .post .author .info .social {
    margin-top: 15px;
    font-size: 13px; 
    color: var(--font-black); 
    }
.blog-pg.single .post .author .info .social a {
    margin-right: 15px; 
    }
.blog-pg.single .pagination {
    color: var(--font-black); 
    margin-top: 80px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; 
    }
.blog-pg.single .pagination span {
    width: 100%;
    padding: 20px;
    border-right: 1px solid #eee;
    border-left: 1px solid #eee;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 1px; 
    }
.blog-pg.single .pagination .icon {
    border: 0;
    width: 70px; 
    }


/* Contact.php */
.about .pat {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40%;
    z-index: 2; 
    }
.about .pat:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: .94; 
    }
.contact .info .item {
    padding: 40px 20px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; 
    }
.contact .info .item .icon {
    font-size: 30px;
    color: var(--font-grey);
    padding-right: 30px; 
    }
.contact .info .item .cont h6 {
    font-family: var(--font-family-second);
    font-weight: 400;
    font-size: 20px;
    color: var(--main-color);
    margin-bottom: 10px; 
    }
.contact .info .item .cont p {
    font-size: 13px; 
    }
.contact .form {
    padding: 0 5% 120px 5%; 
    }
.contact .form input, .contact .form textarea {
    font-size: 13px;
    color: #6c757d;
    padding: 15px 10px 15px 10px;
    background: #f7f7f7;
    border: 0;
    width: 100%; 
    }
.contact .form textarea {
    height: 160px; 
    }
.contact .form .alert-error {
    font-size: 11px;
    font-weight: 500;
    color: #721c24;
    background-color: #f8d7da;
    padding: 5px 10px 5px 10px;
    margin: 6px 0 20px 0;
    }
.contact .form .alert-success {
    font-size: 13px;
    font-weight: 500;
    color: #155724;
    background-color: #d4edda;
    padding: 15px 10px 15px 10px;
    margin-bottom: 20px;
    }


/* Footer.php */
.main-footer {
    padding: 100px 0 0; 
    background: #222;
    color: #fff;
    }
.main-footer .abot p {
    font-size: 13px; 
    color: #999;
    }
.main-footer .usful-links ul {
    margin: 0; 
    }
.main-footer .usful-links ul li {
    font-size: 13px;
    margin-bottom: 10px; 
    }
.main-footer .usful-links ul li:hover {
    color: var(--main-color); 
    }
.main-footer .usful-links ul li i {
    font-size: 10px;
    color: var(--main-color);
    margin-right: 5px; 
    }
.main-footer .fothead h6 {
    color: var(--main-color);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px; 
    }
.main-footer .fotcont .fothead h6 {
    position: relative;
    padding-bottom: 10px; 
    }
.main-footer .fotcont .fothead h6:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    background: rgba(177, 151, 119, 0.35); 
    height: 1px; 
    }
.main-footer .fotcont p {
    font-size: 13px;
    color: #999; 
    }
.main-footer .sub-footer {
    padding: 30px 0;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0); 
    }
.main-footer .sub-footer p {
    font-size: 13px; 
    color: #666;
    }



@media screen and (max-width: 991px) {

    .md-mb10 { margin-bottom: 10px; }
    .md-mb20 { margin-bottom: 20px; }
    .md-mb30 { margin-bottom: 30px; }
    .md-mb40 { margin-bottom: 40px; }
    .md-mb50 { margin-bottom: 50px; }
    .md-mb60 { margin-bottom: 60px; }
    .md-mb70 { margin-bottom: 70px; }
    .md-mb80 { margin-bottom: 80px; }
    .md-pb10 { padding-bottom: 10px; }
    .md-pb20 { padding-bottom: 20px; }
    .md-pb30 { padding-bottom: 30px; }
    .md-pb40 { padding-bottom: 40px; }
    .md-pb50 { padding-bottom: 50px; }
    .md-pb60 { padding-bottom: 60px; }
    .md-pb70 { padding-bottom: 70px; }
    .md-pb80 { padding-bottom: 80px; }
    .order2 {
        -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
        order: 2 !important; }
    .order1 {
        -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
        order: 1 !important; }
    
    /* --- Navbar --- */
    .navbar { min-height: 70px; background-color: rgba(0, 0, 0, 0.85); border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
    .navbar .navbar-collapse { min-height: 300px; overflow: auto; background: transparent; text-align: center; padding: 10px 15px; }
    .navbar .nav-link { margin: 10px auto !important; }
    .navbar .logo { margin-left: 10px; width: 250px; min-height: 70px; line-height: 70px; }
    .navbar.nav-scroll .logo { color: #fff; }
    .light .icon-bar, .nav-scroll .icon-bar { color: #fff; }
    .navbar-toggler:not(:disabled):not(.disabled) { cursor: pointer; }
    .navbar-toggler { padding: 0.25rem 0.75rem; font-size: 1.25rem; line-height: 1; background-color: transparent; border: 1px solid transparent; border-radius: 0.25rem; }
    .nav-scroll .navbar-collapse .nav-link,
    .light .navbar-collapse .nav-link { color: #fff !important; }
    .nav-scroll .navbar-collapse .active,
    .light .navbar-collapse .active { color: var(--main-color) !important; }
    .light .social-icon a,
    .nav-scroll .social-icon a { color: #fff; }
    .navbar .social-icon { border: 0; padding: 0; margin-top: 30px; }
    .navbar .social-icon a { width: 40px; height: 40px; line-height: 40px; text-align: center; border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 50%; }
    .navbar .navbar-nav .nav-link { padding: 0; }
    .navbar .navbar-nav .nav-link:hover { color: var(--main-color); }

    
    /* Index.php - Slider */
    .slider .parallax-slider .caption h1 { font-family: var(--font-family-second); font-weight: 400; font-size: 50px; text-transform: uppercase; letter-spacing: 4px; }
    .slider .swiper-pagination-fraction.top { position: absolute; right: 5%; top: 20%; color: #fff; font-size: 25px; font-weight: 500; }
    .slider .swiper-pagination-fraction.top .swiper-pagination-current { font-size: 40px; font-weight: 700; position: relative; color: transparent; -webkit-text-stroke: .5px #fff; }
    .slider .swiper-pagination-fraction.top .swiper-pagination-current:after { font-size: 8px; font-weight: 100; }
    .slider .setone .swiper-nav-ctrl { width: 45px; height: 45px; line-height: 45px; }
    .slider .caption.center h1 { font-size: 40px; }
    .swiper-slide .caption .top-corn,
    .swiper-slide .caption .bottom-corn { position: absolute; left: -60px; top: -60px; opacity: .9; }

    
    /* Index.php - Realisations & About */
    .about .ab-exp .separate { margin: 60px auto 10px auto; }
    .about .real-content { padding-left: 0; }
    .about .specialty,
    .about .real-content,
    .numbers .item,
    .team .slick-slider,
    .about .ab-exp,
    .about .txt-cont { margin-top: 50px; }
    .about .logo { width: 30%; margin: 0 auto 40px auto; }
    .about .presentation { margin-top: 50px; }
    .about .presentation:after { right: 0; }
    .about .logo { width: 30%; margin: 0 auto 40px auto; }
    

    /* Index.php - Projet */
    .skills-circle .skill { margin-bottom: 0; }
    .skills-circle { padding-bottom: 70px; }
    .skills-sec .content { margin-top: 50px; }
    
    
    /* Details.php */
    .details { margin-top: 50px; }
    .details:after { right: 0; }
    .details-item { margin: 80px 0; padding: 30px 0 0 0; }
    .section-details .item { margin-bottom: 30px; }
    .after-before { margin-top: 50px; }
    

    /* Contact.php */
    .contact .info .item { margin-bottom: 50px; }
    .contact .info { padding-bottom: 30px !important; }
    .contact .map-box { height: 400px; }
    .cont-map { background: #f8f4f3; }
    .cont-map .contact-form form { top: 0; right: 0; margin: 120px 0; }
    .cont-map .contact-map { position: relative; height: 400px; width: 100%; }
    .cont-map .bg-img { display: none; }
    
    
    /* --- Divers --- */
    .work-header {
        padding-top: 180px;
    }

    .services 
    .feat-top { 
    width: 100%;
    margin-top: 0;
    padding: 100px 30px 70px; }
    .services .feat-top .item-sm {
    margin-bottom: 30px;
    background: #fff;
    padding: 30px; }
    .portfolio.full-bg .cluom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    height: 50vh; }
    .process .coulmn:after {
    display: none; }
    .blog-grid .item,
    .process .item,
    .team.tmgrid .item,
    .blog-grid,
    .process,
    .team.tmgrid {
    padding-bottom: 70px; }
    .team.tmgrid {
    background: #fff; }
    .brands .box-top .item {
    margin: 20px 0; }
    .team {
    background: #f8f4f3; }
    .team .tit .navs span {
    background: #fff; }
    .team .tit .navs span:hover {
    background: var(--main-color); }
    .team .team-container {
    width: 100%; }
    .about .pat {
    display: none; }

    .portfolio .gallery.twsty .three-column {
    width: 50% !important; }
    footer .item {
    margin-bottom: 30px; }
    footer .sub-footer {
    margin-top: 20px; }
    footer .sub-footer .text-left,
    footer .sub-footer .text-right {
    text-align: center !important; }
    .cta__slider-item .media-wrapper .bg-img {
    width: 100%; 
    }
    footer .logo-footer img {
        width: 50%;
    }
    
    
}
    
@media screen and (max-width: 767px) {

    .sm-mb10 { margin-bottom: 10px; }
    .sm-mb20 { margin-bottom: 20px; }
    .sm-mb30 { margin-bottom: 30px; }
    .sm-mb40 { margin-bottom: 40px; }
    .sm-mb50 { margin-bottom: 50px; }
    .sm-mb60 { margin-bottom: 60px; }
    .sm-mb70 { margin-bottom: 70px; }
    .sm-mb80 { margin-bottom: 80px; }
    .sm-pb10 { padding-bottom: 10px; }
    .sm-pb20 { padding-bottom: 20px; }
    .sm-pb30 { padding-bottom: 30px; }
    .sm-pb40 { padding-bottom: 40px; }
    .sm-pb50 { padding-bottom: 50px; }
    .sm-pb60 { padding-bottom: 60px; }
    .sm-pb70 { padding-bottom: 70px; }
    .sm-pb80 { padding-bottom: 80px; }
    h1 { font-size: 35px; }
    h2 { font-size: 28px; }
    h3 { font-size: 24px; }
    h4 { font-size: 20px; }
    h5 { font-size: 18px; }
    h6 { font-size: 16px; }
    
    /* --- Scroll Progress button --- */
    .progress-wrap { right: 15px; bottom: 15px; } *
    
    /* --- Heading --- */
    .section-head h4 { font-size: 22px; }

    /* --- Button style --- */
    .btn-curve { padding: 8px 15px; }
    .btn-curve span { font-size: 15px; letter-spacing: 1px; }

    /* --- Navbar --- */
    .navbar .logo { width: 70%; }
    
    /* Index.php - Slider */
    .slider .caption.center h1 { font-size: 25px; }
    .slider .caption.center h1 br { display: none; }
    .slider .social-icon { left: 15px; bottom: 15px; display: none; }
    .slider .swiper-pagination-fraction.top.botm { right: 15px; bottom: 15px; }
    .slider .swiper-pagination-fraction.top span { font-size: 20px; }
    .slider .swiper-pagination-fraction.top .swiper-pagination-current { font-size: 25px; }
    .slider .setone.setwo .next-ctrl { right: auto; left: 70px; bottom: 15px; top: auto; width: 45px; height: 45px; line-height: 45px; }
    .slider .setone.setwo .prev-ctrl { left: 15px; bottom: 15px; top: auto; width: 45px; height: 45px; line-height: 45px; }
    .slider .parallax-slider .caption h1 { font-size: 35px; }
    .slider .setone .swiper-nav-ctrl { width: 45px; height: 45px; line-height: 45px; }
    .slider .setone { bottom: 15px; right: 15px; }

    /* Index.php - About */
    .about .partner.p1 { margin-bottom: 70px; }
    .about .partner.p2 { margin-bottom: 50px; }
    .about .ab-exp .rubrique-exp { height: 200px; margin-top: 10px;}
    
    /* Index.php - Projet */
    .skills-circle .item { padding-bottom: 70px; }
    
        .pages-header .cont h1 {
        font-size: 40px; }
    
    .cta__slider-item .caption h1 {
        font-size: 40px; }
    .cta__slider-arrows {
        right: 15px;
        bottom: 15px; }
    .slid-half .swiper-pagination-fraction.top {
        right: auto;
        top: auto;
        left: 15px;
        bottom: 15px; }
    .about .real-content:after {
        right: 0; }
    .about .exp-img .img {
        width: 100%; }
    .about .real-content ul {
        display: block; }
    .about .real-content ul li {
        margin-top: 10px;
        display: inline-block; }
    
    .services .feat-top {
        padding: 80px 10px 50px; }
    .services .item-sm .numb {
        padding-right: 30px; }
        .services .item-sm .numb:after {
        width: 15px; }
    .brands .box-top .row > div {
        width: 50%; }
    .blog-grid.center .item .cont {
        padding: 30px 20px; }
    .portfolio .gallery.twsty .items {
        width: 100%; }
    .portfolio .filtering span {
        margin: 5px 15px;
        font-size: 12px;
        letter-spacing: 0;
        text-transform: capitalize; }
    .portfolio.full-bg .cluom {
        height: 40vh;
        min-height: 250px; }
    .portfolio .gallery.twsty .three-column {
        width: 100% !important; }
    
    
    /* Conseils.php */
    .blog-pg .posts .item .content { position: relative; }
    .blog-pg .posts .item .content .col-10,
    .blog-pg .posts .item .content .col-2 { width: 100%; max-width: 100%; -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; }
    .blog-pg .posts .item .content .col-2 { position: absolute; right: 0px; top: -90px; z-index: 3; }
    .blog-pg .posts .item .content .date a { padding: 10px; background: #fff; margin: 0; }
    .blog-pg .posts .item .content .date .num { font-size: 25px; margin: 0; }
    .blog-pg.single .comments-area .item.relped { margin-left: 0px; }
    .blog-pg.single .comments-area .item .info h6 span { display: block; margin: 10px 0 0 0; } 

}
    

@media screen and (max-width: 480px) {
    
    /* Index.php - Projet */
    .skills-circle .item { padding-bottom: 70px; }
    
    /* Conseils.php */
    .blog-pg.single .post .title-head a { letter-spacing: 0; margin: 0 7px; }
    .blog-pg .posts .item .img .info { padding: 10px; }
    .blog-pg .posts .item .img .info .date .num { font-size: 20px; }
    .blog-pg.single .post .content .share-info { display: block; }
    .blog-pg.single .post .content .share-info .tags,
    .blog-pg.single .post .content .share-info .social { display: block; width: 100%; text-align: center; }
    .blog-pg.single .post .content .share-info .tags { margin-top: 20px; }
    .blog-pg.single .post .author { padding: 30px 15px; }
    .blog-pg.single .post .author .author-img { display: block; width: 120px; margin: 0 auto 30px; }
    .blog-pg.single .post .author .info { display: block; padding: 0; text-align: center; }
    .blog-pg.single .comments-area .item .comment-img { display: block; margin: 0 auto 30px; width: 60px; }
    .blog-pg.single .comments-area .item .info { display: block; padding: 0; text-align: center; }
    .blog-pg.single .comments-area .item.relped { margin-left: 0px; }
    .blog-pg.single .comments-area .item .info h6 { font-size: 14px; letter-spacing: 1px; }
    .blog-pg.single .comments-area .item .info .replay { top: -25px; } 

    .pages-header .cont .path { font-size: 15px; }
    .pages-header .cont .path span { margin: 0 10px; }

}
      
     
      