/*------------------------------------------------------------------
[Table of contents]

1. BODY
2. HEADER
2. SLIDER
3. FONT
4. COLOR
5. BUTTON
6. OTHER
7. TITLE HEADING
8. CAROUSEL
9. VIDEO BACKGROUND
10. ICON BOX
11. TABS
12. ICON LIST
13. COUNTER
14. ANIMATION
15. GOOGLE MAP
16. SERVICE BOX
17. PAGE TITLE
18. NAVIGATION
19. SCROLL TO TOP
20. COMING SOON
21. 404 PAGE
23. ACCORDION
24. BLOG
25. CONTACT FORM
26. COUNTDOWN
27. GOOGLE MAP
28. OURTEAM
29. PARTNER
30. PORTFOLIO
31. PROGRESS BAR
32. SINGLE IMAGE
33. SOCIAL ICON
34. TAB
35. TESTIMONIAL
36. WIDGET
37. FOOTER

-------------------------------------------------------------------*/


/*------------------------------------------------------------------
[1. BODY]
*/
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
    margin: 0 !important;
    font-family: 'Lato', sans-serif;
    line-height: 1.86;
    color: #444;
    font-weight: 500;
    /*letter-spacing: 0.1em;*/
}

.lg-backdrop {
    background-color: rgba(0, 0, 0, 0.85);
}

a {
    color: #444;
    text-decoration: none;
    outline: none;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
    color: #707173;
}

img {
    max-width: 100%;
    height: auto;
}

img.lk-img-thumb {
    width: 100%;
}

input:focus,
input:active,
textarea:focus,
button:focus,
button:active,
textarea:active {
    outline: none;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    color: #444;
	font-family: 'Lato', sans-serif;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 18px;
}

h4 {
    font-size: 16px;
}

h5 {
    font-size: 14px;
}

h6 {
    font-size: 13px;
}

ul.no-list-style {
    padding-left: 0;
    list-style: none;
}

.lk-bg-overlay,
.lk-bg-overlay-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.lk-bg-overlay {
    background-color: rgba(0, 0, 0, 0.7);
}

.lk-bg-overlay-light {
    background-color: rgba(0, 0, 0, 0.5);
}

.lk-bg-light-gray {
    background-color: #f7f7f7;
}

.lk-bg-overlay-full-dot {
    background-image: url(../images/dot.png);
    background-repeat: repeat;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.lk-bg-image-cover {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.lk-bg-image-contain {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.lk-container-center {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.bg-gray {
    background-color: #eee;
}

.lk-no-lh {
    line-height: 1;
}

.no-padding {
    padding: 0;
}

.lk-table {
    display: table;
    width: 100%;
}

.lk-table-cell {
    display: table-cell;
    position: relative;
}

.lk-vertical-middle {
    vertical-align: middle;
}

.lk-italic {
    font-style: italic;
}

header .menu ul > li > a {
    padding: 30px 0px;
}
header.header-main .logo {
    padding: 16px 0px;
}



/*------------------------------------------------------------------
[3. SLIDER]
*/

.lk-main-slider-container {
    width: 100%;
    min-height: 700px;
}
.lk-delay-05{
    -webkit-transition-delay: 0.5s !important;
    -moz-transition-delay: 0.5s !important;
    -ms-transition-delay: 0.5s !important;
    -o-transition-delay: 0.5s !important;
    transition-delay: 0.5s !important;
}
.lk-delay-10{
    -webkit-transition-delay: 1s !important;
    -moz-transition-delay: 1s !important;
    -ms-transition-delay: 1s !important;
    -o-transition-delay: 1s !important;
    transition-delay: 1s !important;
}
.lk-delay-15{
    -webkit-transition-delay: 1.5s !important;
    -moz-transition-delay: 1.5s !important;
    -ms-transition-delay: 1.5s !important;
    -o-transition-delay: 1.5s !important;
    transition-delay: 1.5s !important;
}
.lk-main-slider-container .slider-text .lk-fade-down,
.lk-main-slider-container .slider-text .lk-fade-up,
.lk-main-slider-container .slider-text .lk-fade-left,
.lk-main-slider-container .slider-text .lk-fade-right,
.lk-main-slider-container .slider-text .lk-fade-in{
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    position: relative;
    opacity: 0;
}
.lk-main-slider-container .slider-text .lk-fade-down{
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    transform: translateY(-100px);
}
.lk-main-slider-container .slider-text .lk-fade-up{
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
}
.lk-main-slider-container .slider-text .lk-fade-left{
    -webkit-transform: translateX(-100px);
    -moz-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    -o-transform: translateX(-100px);
    transform: translateX(-100px);
}
.lk-main-slider-container .slider-text .lk-fade-right{
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
    transform: translateX(100px);
}
.lk-main-slider-container .owl-item.active .slider-text .lk-fade-down,
.lk-main-slider-container .owl-item.active .slider-text .lk-fade-up{
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
}
.lk-main-slider-container .owl-item.active .slider-text .lk-fade-left,
.lk-main-slider-container .owl-item.active .slider-text .lk-fade-right{
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
}
.lk-main-slider-container .owl-item.active .slider-text .lk-fade-in{
    opacity: 1;
}
.lk-main-slider-container .owl-item .lk-item-slide{
    width: 100% !important;
    background-position: center;
}
.fill {
	background-size: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    height: 100%;
}

.dot.overlay {
    background-image: url(../images/dot.png);
}

.dark.overlay {
    background-color: rgba(0, 0, 0, 0.5);
}

.slider-text {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-20%) translateX(-50%);
    -moz-transform: translateY(-20%) translateX(-50%);
    -ms-transform: translateY(-20%) translateX(-50%);
    -o-transform: translateY(-20%) translateX(-50%);
    transform: translateY(-20%) translateX(-50%);
    left: 50%;
    display: inline-block;
    text-align: center;
}

.slider-text .title,
.slider-text .sub-title, .bandeau-text {
    line-height: 1.2;
}

.slider-text .sub-title {
    margin-top: 15px;
}

.slider-text .button-container {
    margin-top: 70px;
}

.nav-square .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: transparent;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    border: solid 2px #ccc;
    opacity: 1;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    cursor: pointer;

}

.transition-03 {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.transition-05 {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.nav-square .swiper-pagination-bullets .swiper-pagination-bullet:hover,
.nav-square .swiper-pagination-bullets .swiper-pagination-bullet-active {
    background-color: #0146c5;
    border-color: #0146c5;
}



/*------------------------------------------------------------------
[4. FONT]
*/
.ff-main {

}
.text-upper {
    text-transform: uppercase;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.fs-0 {
    font-size: 0;
}
.fs-12 {
    font-size: 12px;
}
.fs-14 {
    font-size: 14px;
}

.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px !important;
}

.fs-24 {
    font-size: 24px;
}
.fs-28 {
    font-size: 28px;
}

.fs-30 {
    font-size: 30px;
}

.fs-40 {
    font-size: 40px;
}
.fs-42 {
    font-size: 42px;
}

.fs-50 {
    font-size: 50px;
}

.fs-60 {
    font-size: 60px;
}

.bold {
    font-weight: 700;
}

.semi-bold {
    font-weight: 600;
}

.normal {
    font-weight: 500;
}
.light {
    font-weight: 300;
}

/*------------------------------------------------------------------
[5. COLOR]
*/
.c-white {
    color: #fff;
}
.c-orange {
    color: #faa353;
}
.c-orange2 {
    color: #e67f27;
}
.c-orange3 {
    color: #ffad84;
}
.c-orange4 {
    color: #ff9247;
}
.c-gris {
	color: #686d8a;
}
.c-gris2, .menu-item a{
	color: #707173 !important;
}
.c-gris3{
	color: #6f7072;
}
.c-gris4{
	color: #72768f;
}
.c-gris5{
	color: #434343;
}
.c-gris6{
	color: #828785;
}
.c-gris7{
	color: #3c3c3c;
}
.c-gris8{
	color: #a8bcc5;
}
.c-gris9{
	color: #aea9a6;
}
.c-gris10{
	color: #585858;
}
.c-gris11{
	color: #818181;
}
.c-gris12 {
	color: #363636;
}
.c-jaune{
	color: #fddeb5;
}
.c-jaune2{
	color: #ffe800;
}
.c-jaune3{
	color: #f5e078;
}
.c-jaune4{
	color: #fff602 !important;
}
.c-violet {
	color: #a03bff;
}
.c-violet2 {
	color: #50009b;
}
.c-violet3 {
	color: #a49aac;
}
.c-violet4 {
	color: #63254f;
}
.c-violet5, a.c-violet5 {
	color: #5f5999;
}
.c-violet6 {
	color: #a500a2;
}
.c-aluminium {
	color: #323b4e;
}
.c-pvc {
	color: #c691a3;
}
.c-pvc2 {
	color: #cf6f21;
}
.c-coulissants {
	color: #af967e;
}
.c-alu {
	color: #405b67;
}
.c-vitre {
	color: #4e4e51;
}
.c-portails {
	color: #fe672c;
}
.c-portails2 {
	color: #aba79b;
}
.c-portails3 {
	color: #4a4749;
}
.c-volets {
	color: #6e5c4f;
}
.c-main {
    color: #0146c5;
}
.c-green {
	color: #cfde6d;
}

.c-green2 {
	color: #85d654;
}
.c-green3 {
	color: #83ac00;
}
.c-green4 {
	color: #c6bb91;
}
.c-green5 {
	color: #9fc9a1;
}
.c-green6 {
	color: #43523d;
}
.c-pink {
	color: #ec72a3;
}
.c-pinkk {
	color: #f1949a;
}
.c-pink3 {
	color: #ee3186;
}
.c-pink4 {
	color: #ff8388;
}
.c-pink5 {
	color: #fa7481;
}
.c-pink6 {
	color: #fcc0d5;
}
.c-pink7 {
	color: #edb6cc;
}
.c-pink8 {
	color: #ff5d79;
}
.c-pink9 {
	color: #fe5774;
}
.c-black {
	color: #000;
}
.c-blacklight {
	color: #4d4d48;
}
.c-blacklight2 {
	color: #040404;
}
.c-blacklight3 {
	color: #333436;
}
.c-blacklight4 {
	color: #69645e;
}
.c-rouge {
	color: #531828;
}
.c-rouge2 {
	color: #985b69;
}
.c-rouge3 {
	color: #c92b41;
}
.c-rouge4 {
	color: #98001b;
}
.c-beige {
	color: #d8c1ab;
}
.c-beige2 {
	color: #d9cbbf;
}
.c-beige3 {
	color: #9b7e78;
}
.c-beige4 {
	color: #e8e7e2;
}
.c-marron {
	color: #867159;
}
.c-marron2 {
	color: #675435;
}
.c-marron3 {
	color: #2c2417;
}
.c-marron4 {
	color: #522926;
}
.c-bleu {
	color: #a4e4ff;
}
.c-bleu2 {
	color: #97b7be;
}
.c-bleu3 {
	color: #1a2d48;
}
.c-bleu4 {
	color: #8fc6ce;
}
.c-bleu5 {
	color: #05608d;
}
.c-bleu6 {
	color: #9dbed8;
}
.c-mauve {
	color: #9a736f;
}


footer .footer-gray a {
	color: #867159;
}
.slider-textx {
position:relative;
text-align:center;
}
.footer-links1 a {
	text-transform: uppercase;
	font-size: 15px;
}
.footer-links2 a {
	font-size: 15px;
}
.footer-links1 a:hover, .footer-links2 a:hover {
	color: #6f7072 !important;
}
.bg-main {
    background-color: #0146c5;
}
.menu-item {
	font-size: 15px;
}
header.header-fixed .menu ul.lk-root-menu > li > a {
    padding: 26px 0px;
}

header .menu ul.lk-root-menu > li.active > a::before, header .menu ul.lk-root-menu > li > a:hover::before {
	border-bottom: solid 2px #0146c5;
	bottom: 0px;
}
#saviezvous {
    position: absolute;
    top: -30px;
    right: 70%;
    z-index: 2;
    width: 180px;
    height: 180px;
    background-color: #fff;
    border-radius: 90px;
	color:#f0546f;
	cursor: pointer;
	text-align:center;
	padding: 38px 10px;
	line-height: 1.2;
}
#conseils {
    position: fixed;
    top: 65%;
    right: -17px;
    z-index: 2;
    width: 180px;
    height: 180px;
    background-color: #0146c5;
    border-radius: 90px;
	color:#fff;
	cursor: pointer;
	text-align:center;
	padding: 45px 10px;
	line-height: 1.2;
}

.rotate-conseil, .rotate-text {

/* Safari */
-webkit-transform: rotate(-20deg);

/* Firefox */
-moz-transform: rotate(-20deg);

/* IE */
-ms-transform: rotate(-20deg);

/* Opera */
-o-transform: rotate(-20deg);

/* Internet Explorer */
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);

}
.wrap {
  position: absolute;
  overflow: hidden;
  top: 10%;
  right: 10%;
  bottom: 85px;
  left: 10%;
  padding: 20px 50px;
  display: block;
  border-radius: 4px;
  transform: translateY(20px);
  transition: all 0.5s;
  visibility: hidden;
}
.wrap .content {
  opacity: 0;
}
.wrap:before {
  position: absolute;
  width: 1px;
  height: 1px;
  background: white;
  content: "";
  bottom: 10px;
  left: 50%;
  top: 95%;
  color: #fff;
  border-radius: 50%;
  -webkit-transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.wrap.active {
  display: block;
  visibility: visible;
  box-shadow: 2px 3px 16px silver;
  transition: all 600ms;
  transform: translateY(0px);
  transition: all 0.5s;
}
.wrap.active:before {
  height: 2000px;
  width: 2000px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  margin-left: -1000px;
  margin-top: -1000px;
  display: block;
  -webkit-transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.wrap.active .content {
  position: relative;
  z-index: 1;
  opacity: 1;
  transition: all 600ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/*------------------------------------------------------------------
[6. BUTTON]
*/
.bt {
    line-height: 1;
    display: inline-block;
    text-transform: uppercase;
    color: #343434;
    box-sizing: border-box;
    position: relative;
}

.bt.bt-normal {
    padding: 20px 30px;
}

.bt.bt-small {
    padding: 15px 20px;
    font-size: 13px;
}

.bt.bt-medium {
    padding: 20px 30px;
}

.bt.bt-large {
    padding: 25px 40px;
}

.bt.bt-xlarge {
    padding: 30px 50px;
}

.bt.bt-border-round {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.bt.bt-border-pill {
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
}

.bt.bt-no-border {
    border: none;
}

.bt.bt-border-1x {
    border-width: 1px;
}

.bt.bt-border-2x {
    border-width: 2px;
}

.bt.bt-border-3x {
    border-width: 3px;
}

.bt.bt-border-4x {
    border-width: 4px;
}

.bt.bt-border-5x {
    border-width: 5px;
}

.bt.bt-border-6x {
    border-width: 6px;
}

.bt.bt-border-7x {
    border-width: 7px;
}

.bt.bt-border-8x {
    border-width: 8px;
}

.bt.bt-icon-left span.bt-icon,
.bt.bt-icon-right span.bt-icon {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 20px;
}

.bt.bt-icon-left span.bt-text {
    padding-left: 35px;
}

.bt.bt-icon-right span.bt-text {
    padding-right: 35px;
}

.bt-medium.bt-icon-right span.bt-icon {
    right: 30px;
}

.bt-large.bt-icon-right span.bt-icon {
    right: 40px;
}

.bt-xlarge.bt-icon-right span.bt-icon {
    right: 50px;
}

.bg-main,
.bg-main-hover:hover {
    background-color: #0146c5;
}

.bg-transparent,
.bg-transparent-hover:hover {
    background-color: transparent;
}

.text-white,
.text-white-hover:hover {
    color: #fff;
}

.text-gray {
    color: #434343;
	transition:all 2s ease;
}


.text-main,
.text-main-hover:hover {
    color: #0146c5;
}

.border-main,
.border-main-hover:hover {
    border-color: #0146c5;
    border-style: solid;
}

.border-gray,
.border-gray-hover:hover {
    border-color: #ddd;
    border-style: solid;
}

.border-white,
.border-white-hover:hover {
    border-color: #fff;
    border-style: solid;
}

.bc-main {
    border: solid 2px #0146c5;
}

.bc-main.bt-small {
    padding: 18px;
}

.bc-main.bt-normal {
    padding: 18px 28px;
}

/*------------------------------------------------------------------
[7. OTHER]
*/
.transition,
.transition:before,
.transition:after {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.mg-top-0 {
    margin-top: 0px;
}

.mg-top-10 {
    margin-top: 10px;
}

.mg-top-15 {
    margin-top: 15px;
}

.mg-top-20 {
    margin-top: 20px;
}

.mg-top-30 {
    margin-top: 30px;
}

.mg-top-40 {
    margin-top: 40px;
}

.mg-top-50 {
    margin-top: 40px;
}

.mg-top-70 {
    margin-top: 70px;
}

.mg-top-80 {
    margin-top: 80px;
}

.mg-top-85 {
    margin-top: 85px;
}

.mg-top-90 {
    margin-top: 90px;
}

.mg-top-95 {
    margin-top: 95px;
}

.mg-top-100 {
    margin-top: 100px;
}
.mg-top-105 {
    margin-top: 105px;
}
.mg-top-110 {
    margin-top: 110px;
}
.mg-top-120 {
    margin-top: 120px;
}

.mg-bottom-0 {
    margin-bottom: 0px;
}

.mg-bottom-10 {
    margin-bottom: 10px;
}

.mg-bottom-15 {
    margin-bottom: 15px;
}

.mg-bottom-20 {
    margin-bottom: 20px;
}

.mg-bottom-30 {
    margin-bottom: 30px;
}

.mg-bottom-40 {
    margin-bottom: 40px;
}

.mg-bottom-50 {
    margin-bottom: 40px;
}

.mg-bottom-70 {
    margin-bottom: 70px;
}
.mg-bottom-75 {
    margin-bottom: 75px;
}
.mg-bottom-80 {
    margin-bottom: 80px;
}

.mg-bottom-90 {
    margin-bottom: 90px;
}

.mg-bottom-120 {
    margin-bottom: 120px;
}
.pd-top-6 {
    padding-top: 6px;
}
.pd-top-10 {
    padding-top: 10px;
}

.pd-top-20 {
    padding-top: 20px;
}

.pd-top-30 {
    padding-top: 30px;
}
.pd-top-50 {
    padding-top: 50px;
}
.pd-top-120 {
    padding-top: 120px;
}

.pd-bottom-10 {
    padding-bottom: 10px;
}

.pd-bottom-20 {
    padding-bottom: 20px;
}

.pd-bottom-30 {
    padding-bottom: 30px;
}
.pd-bottom-50 {
    padding-bottom: 50px;
}
.pd-bottom-120 {
    padding-bottom: 120px;
}

.w-85-p {
    width: 85%;
}
.w-100-p {
    width: 100%;
}

.dp-inline {
    display: inline-block;
}

/*------------------------------------------------------------------
[8. TITLE HEADING]
*/
.lk-title-heading {
    line-height: 1;
}

.lk-title-heading .lk-title {
    display: inline-block;
    position: relative;
    margin: 0px 0px 70px 0px;
    font-size: 24px;
}

.lk-title-heading .lk-title:after {
    content: "";
    width: 50px;
    border-bottom: solid 2px #0146c5;
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 19px;
}

.lk-title-heading .lk-title:before {
    content: "";
    width: 100%;
    position: absolute;
    border-bottom: solid 1px #ddd;
    top: 100%;
    margin-top: 20px;
}

.gray-style.lk-title-heading .lk-title {
    color: #ddd;
}

.gray-style.lk-title-heading .lk-title:before {
    border-bottom-color: #5a5a5a;
}

.lk-single-title-block {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 30px;
}

.lk-single-title-block h3 {
    margin-bottom: 0px;
    text-transform: uppercase;
    padding-right: 5px;
}

.lk-single-title-block .lk-single-title-line {
    border-bottom: solid 1px #eee;
    display: inline-block;
    flex-grow: 1;
    position: relative;
    height: 14px;
}

.lk-title-heading.lk-heading-center {
    text-align: center;
    overflow: hidden;
}

.lk-title-heading.lk-heading-center .lk-title {
    margin: 0px 0px 40px 0px;
}

.lk-title-heading.lk-heading-center .lk-title:before {
    width: 130%;
    left: -15%;
}

.lk-title-heading.lk-heading-center .lk-title:after {
    left: 50%;
    border-bottom-width: 3px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.lk-title-heading .lk-subtitle-heading {
    margin-bottom: 30px;
}

.lk-title-heading.lk-heading-center .lk-subtitle-heading,
.lk-title-heading.lk-heading-noline .lk-subtitle-heading {
    line-height: 1.6;
}

.lk-title-heading.lk-heading-center .lk-subtitle-heading,
.lk-title-heading.lk-heading-noline.text-center .lk-subtitle-heading {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.lk-title-heading.lk-heading-noline .lk-title {
    margin: 0px 0px 20px 0px;
}

.lk-title-heading.lk-heading-noline .lk-title:after,
.lk-title-heading.lk-heading-noline .lk-title:before,
.lk-title-heading.lk-heading-sub-above .lk-title:after,
.lk-title-heading.lk-heading-sub-above .lk-title:before {
    content: none;
}

.lk-title-heading.lk-heading-vertical-line .lk-title {
    padding: 10px 0px 10px 20px;
    color: #787878;
    margin-bottom: 50px;
}

.lk-title-heading.lk-heading-vertical-line .lk-title strong {
    color: #444;
}

.lk-title-heading.lk-heading-vertical-line .lk-title:after {
    content: none;
}

.lk-title-heading.lk-heading-vertical-line .lk-title:before {
    width: 1px;
    height: 100%;
    position: absolute;
    border-bottom: none;
    top: 0;
    left: 0px;
    margin-top: 0;
    border-left: solid 4px #0146c5;
}

.lk-title-heading.lk-heading-sub-above .lk-title {
    margin: 0px 0px 30px 0px;
}

.lk-title-heading.lk-heading-sub-above .lk-subtitle-heading {
    margin-bottom: 10px;
    text-transform: uppercase;
}

/*------------------------------------------------------------------
[9. CAROUSEL]
*/
.owl-carousel {
    overflow: hidden;
}

.owl-carousel .owl-dots {
    position: relative;
    text-align: center;
    line-height: 1;
    margin-top: 30px;
}

.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border: solid 1px #ddd;
    margin-left: 8px;
    margin-right: 8px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.owl-carousel .owl-dots .owl-dot.active,
.owl-carousel .owl-dots .owl-dot:hover {
    background-color: #0146c5;
    border-color: #0146c5;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
    position: absolute;
    width: 40px;
    height: 40px;
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 0.7;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    color: #000;
    text-align: center;
    line-height: 2;
    font-size: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.owl-carousel .owl-nav .owl-prev {
    left: -60px;
}

.owl-carousel .owl-nav .owl-next {
    right: -60px;
}

.owl-carousel:hover .owl-nav .owl-prev {
    /*left: 20px;*/
	padding-right: 5px;
}

.owl-carousel:hover .owl-nav .owl-next {
    padding-left: 5px;
    /*right: 20px;*/
}

.owl-carousel .owl-nav .owl-prev:hover,
.owl-carousel .owl-nav .owl-next:hover {
    background-color: rgba(255, 255, 255, 0.8);
    opacity: 1;
}

.lk-simple-nav .owl-nav .owl-prev,
.lk-simple-nav .owl-nav .owl-next,
.lk-simple-nav .owl-nav .owl-prev:hover,
.lk-simple-nav .owl-nav .owl-next:hover {
    background-color: transparent;
    color: #fff;
    font-size: 40px;
}

.owl-carousel div[class*="col-md"] {
    width: 100%;
    padding: 0;
}

/*------------------------------------------------------------------
[10. VIDEO BACKGROUND]
*/
.lk-video-bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    position: relative;
}

.lk-configurateur-bg {
    background-color: #f5f5f5;
    height: 200px;
    position: relative;
	background: linear-gradient(to right, #f5f5f5 50%, #0146c5 50%);
    background-size: 200% 100%;
    background-position:left bottom;
    transition:all 2s ease;
	padding-top: 60px;
	cursor: pointer;
}
.lk-configurateur-bg:hover{
	background-position:right bottom;
	color: #fff !important;
}
.lk-configurateur-bg:hover h2{
	color: #fff !important;
	transition:all 2s ease;
}

.lk-ptvente-bg {
	background-color: #a03bff;
}
.ptvente {
	background-image: url(../images/bg-ptvente.png);
    background-repeat: no-repeat;
	background-position: center center;
}

.lk-specialist-bg {
	background-image: url(../images/bg-specialist.jpg);
    background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.lk-bandeau-bg {
    background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	height: 768px;
}
.lk-societe-bg {
	background-image: url(../images/slider/societe-prefal.jpg);
    background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.lk-sites-bg {
	background-image: url(../images/Societe-Prefal-2.jpg);
    background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.lk-digitalisation-bg {
	background-image: url(../images/Societe-Prefal-3.jpg);
    background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.lk-valeur-bg {
	background-color: #fff;
}
.lk-qualite-bg {
	background-color: #0146c5;
}
.lk-durable-bg {
	background-color: #363636;
}
.lk-credit-bg {
	background-image: url(../images/slider/credit-impot.jpg);
    background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.lk-indice-bg {
	background-color: #fe5774;
}
.lk-aide-bg {
	background-color: #90283f;
}
.lk-dop-bg {
	background-image: url(../images/slider/Marquage-CE-1.png);
    background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.lk-dop2-bg {
	background-image: url(../images/Marquage-CE-2.jpg);
    background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.lk-contact-bg {
	background-image: url(../images/contact-1.png);
    background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.lk-contact2-bg {
	background-image: url(../images/contact-2.jpg);
    background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.lk-recrutement-bg {
	background-image: url(../images/recrutement-1.png);
    background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.lk-recrutement2-bg {
	background-image: url(../images/recrutement-2.jpg);
	background-color: #a400a1;
    background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
}
.lk-recrutement3-bg {
	background-color: #ff5c5c;
}
/*------------------------------------------------------------------
[11. ICON BOX]
*/
.lk-icon {
    display: inline-block;
    float: left;
}

.lk-big-icon .lk-icon-content {
    padding-left: 130px;
}

.lk-big-icon .lk-icon.arrow {
    display: inline-block;
    width: 90px;
    height: 100px;
    position: relative;
    margin-right: 40px;
    border: solid 1px #ddd;
}

.lk-big-icon .lk-icon.arrow:before {
    content: "";
    width: 0;
    height: 0;
    border-left: 20px solid #ddd;
    border-top: 50px solid #fff;
    border-bottom: 50px solid #fff;
    top: 0;
    left: 89px;
    position: absolute;
}

.lk-big-icon .lk-icon.arrow:after {
    content: "";
    border-style: solid;
    border-color: transparent transparent transparent #fff;
    border-width: 50px 0px 50px 20px;
    position: absolute;
    width: 0px;
    height: 0px;
    top: 0;
    left: 100%;
}

.lk-icon.arrow,
.lk-icon.arrow:after,
.lk-icon.arrow:before {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.lk-icon-box:hover .lk-icon.arrow,
.lk-icon.arrow:hover {
    border-color: #0146c5;
    background-color: #0146c5;
}

.lk-icon-box:hover .lk-icon.arrow:after,
.lk-icon-box:hover .lk-icon.arrow:before,
.lk-icon.arrow:hover:after,
.lk-icon.arrow:hover:before {
    border-color: transparent transparent transparent #0146c5;
}

.lk-icon-box:hover i,
.lk-icon.arrow:hover i {
    color: #fff;
}

.lk-icon.arrow i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}

/** icon small **/
.lk-small-icon .lk-icon.arrow {
    display: inline-block;
    width: 55px;
    height: 65px;
    position: relative;
    margin-right: 40px;
    border: solid 1px #ddd;
}

.lk-small-icon .lk-icon.arrow:before {
    content: "";
    width: 0;
    height: 0;
    border-left: 10px solid #ddd;
    border-top: 32px solid #fff;
    border-bottom: 32px solid #fff;
    top: 0;
    left: 54px;
    position: absolute;
}

.lk-small-icon .lk-icon.arrow:after {
    content: "";
    border-style: solid;
    border-color: transparent transparent transparent #fff;
    border-width: 32px 0px 32px 10px;
    position: absolute;
    width: 0px;
    height: 0px;
    top: 0;
    left: 100%;
}

.lk-small-icon .lk-icon.arrow i {
    font-size: 26px;
}

.lk-big-icon .lk-icon.arrow i {
    font-size: 36px;
}

.lk-small-icon .lk-icon-title-wrap {
    display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden;
    line-height: 1;
}

.lk-small-icon .lk-icon-title-wrap .lk-icon-title {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 80px;
    margin: 0;
}

.lk-small-icon .lk-icon-title-wrap .lk-icon-title h4 {
    margin-bottom: 0;
}

.lk-small-icon .lk-icon-title-wrap .lk-icon-subtitle {
    margin-top: 10px;
    display: inline-block;
    width: 100%;
}

.lk-small-icon .lk-icon-content {
    margin-top: 10px;
}

/** icon and title **/
.lk-icon-title-desc {
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
}

.lk-icon-title-desc .lk-icon {
    float: none;
    font-size: 30px;
    line-height: 1;
}

.lk-icon-title-desc:hover .lk-icon {
    -webkit-transition: background-color 0.5s;
    -moz-transition: background-color 0.5s;
    -ms-transition: background-color 0.5s;
    -o-transition: background-color 0.5s;
    transition: background-color 0.5s;
}

.lk-icon-title-desc:hover .lk-icon i {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.lk-icon-title-desc:hover .lk-icon i {
    color: #0146c5;

}

.lk-icon-title-desc .lk-icon-title h4 {
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 20px;
}

.lk-icon-title-desc.lk-icon-box-border .lk-icon {
    font-size: 24px;
}

.lk-icon-title-desc.lk-icon-box-border .lk-icon {
    width: 60px;
    height: 60px;
    line-height: 2.58;
    border: solid 1px;
}

.lk-icon-title-desc.lk-icon-box-border .lk-icon-title h4 {
    margin-top: 30px;
}

.lk-icon-title-desc.lk-icon-box-border:hover .lk-icon {
    background-color: #0146c5;
    border-color: #0146c5;
}

.lk-icon-title-desc.lk-icon-box-border:hover .lk-icon i {
    color: #fff;
}

.lk-icon-title-desc.lk-icon-round-border .lk-icon {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

/*------------------------------------------------------------------
[12. TABS]
*/
.lk-tab-container .lk-tab-wrap {
    margin-bottom: 30px;
}

.lk-tab-flex {
    margin-left: -15px;
    margin-right: -15px;
}

.lk-tab-flex {
    display: flex;
}

.lk-tab-flex li {
    flex: 1;
    margin-left: 15px;
    margin-right: 15px;
}

.lk-tab-no-margin .lk-tab-flex li,
.lk-tab-no-margin .lk-tab-flex {
    margin-left: 0;
    margin-right: 0;
}

.lk-tab-flex li a {
    display: inline-block;
    padding: 15px 10px;
    width: 100%;
    border: solid 1px #ddd;
    text-align: center;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.lk-tab-no-margin .lk-tab-flex li:not(:last-child) a {
    border-right-width: 0px;
}

.lk-tab-wrap h6.lk-tab-title {
    margin-bottom: 0;
}

.lk-tab li,
.lk-tab-content > li {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.lk-tab-flex .lk-tab a:hover,
.lk-tab-flex .lk-tab a.active {
    background-color: #0146c5;
    border-color: #0146c5;
    color: #fff;
}

.lk-tab-flex .lk-tab a:hover .lk-tab-title,
.lk-tab-flex .lk-tab a.active .lk-tab-title {
    color: #fff;
}

.lk-tab-content > li {
    display: none;
}

.lk-tab-content > li.active {
    display: block;
}

/*------------------------------------------------------------------
[13. ICON LIST]
*/
.lk-icon-list.lk-col-2 > li {
    width: 50%;
    float: left;
    padding-right: 15px;
}

.lk-icon-list > li > i {
    padding-right: 10px;
}

/*------------------------------------------------------------------
[14. COUNTER]
*/
.lk-counter-bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 180px 0px;
    position: relative;
}

.lk-counter-item {
    padding-top: 15px;
    padding-bottom: 15px;
}

.lk-counter-item .lk-counter-icon,
.lk-counter-item .lk-counter-number,
.lk-counter-item .lk-counter-title {
    line-height: 1;
}

.lk-counter-item .lk-counter-number {
    font-size: 45px;
    color: #fff;
    margin-top: 25px;
}

.lk-counter-title {
    font-size: 20px;
    margin-bottom: 0;
    margin-top: 30px;
}

/*------------------------------------------------------------------
[15. ANIMATION]
*/
.appear-animation:not(.manual) {
    opacity: 0;
}

.appear-animation.has-animated {
    opacity: 1;
}

ul.lk-magic-line{
    position: relative;
}
ul.lk-magic-line li.magic-line-bottom {
    position: absolute;
    bottom: -1px;
    width: 70px;
    left: 0;
    border-bottom: solid 3px #0146c5;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

/*------------------------------------------------------------------
[16. GOOGLE MAP]
*/
.container-fluid div[class*="col-md"] .lk-bg-map {
    margin-left: -15px;
    margin-right: -15px;
}

.lk-bg-map {
    padding-top: 60px;
    padding-bottom: 60px;
}

.lk-bg-map .lk-bg-overlay {
    background-color: rgba(250, 167, 26, 0.9);
}

.lk-map-title {
    position: relative;
}

.lk-map-title h4 {
    margin-bottom: 0;
}

/*------------------------------------------------------------------
[17. SERVICE BOX]
*/
.lk-service-box-style-number .lk-service-box-read-more a{
    color: #787878;
}
.lk-service-box-style-number .lk-service-box-read-more a:hover{
    color: #0146c5;
}

/*------------------------------------------------------------------
[18. PAGE TITLE]
*/
body.has-header-float .page-title-container {
    padding: 240px 0px 120px 0px;
}
.page-title-container {
    padding: 120px 0px;
    position: relative;
    background-position: center;
}

.page-title-container .page-title-heading {
    margin: 0;
    color: #fff;
    text-transform: uppercase;
}

.page-title-container .page-title-heading h1 {
    color: #fff;
    font-size: 50px;
}

.page-title-container .page-title {
    position: relative;
}

.page-title-container .breadcrumbs {
    padding-left: 0;
    margin: 0;
    list-style: none;
    text-transform: none;
}

.page-title-container .breadcrumbs li {
    display: inline-block;
}

.page-title-container .breadcrumbs li:not(:last-child):after {
    content: "/";
}

.page-title-container .breadcrumbs li a {
    color: #fff;
}
 body a {
	 color: #0146c5;
 }
#contactUs a {
	color: #444;
}
.page-title-container .breadcrumbs li span {
    color: #85d0f0;
}

.page-content {
    padding: 70px 0px;
}

/*------------------------------------------------------------------
[19. NAVIGATION]
*/
nav.pagination{
    width: 100%;
    text-align: center;
    font-weight: 500;
}
nav.pagination .prev{
    float: left;
    font-style: italic;
    line-height: 2.86;
}
nav.pagination .next{
    float: right;
    font-style: italic;
    line-height: 2.86;
}
nav.pagination .page-numbers:not(.prev):not(.next){
    width: 40px;
    height: 40px;
    text-align: center;
    display: inline-block;
    line-height: 2.86;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
nav.pagination .page-numbers:not(.prev):not(.next):hover,
nav.pagination span.page-numbers.current,
nav.pagination .page-numbers.active:not(.prev):not(.next){
    color: #fff;
    background-color: #0146c5;
}

/*------------------------------------------------------------------
[20. SCROLL TO TOP]
*/
.lk-scroll-to-top{
    display: inline-block;
    position: fixed;
    bottom: 24px;
    right: -100%;
    -webkit-transition: all 1.5s ease-in-out;
    -moz-transition: all 1.5s ease-in-out;
    -ms-transition: all 1.5s ease-in-out;
    -o-transition: all 1.5s ease-in-out;
    transition: all 1.5s ease-in-out;
}
.lk-scroll-to-top a{
    display: inline-block;
    width: 40px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    border-radius:4px;
    height: 40px;
    color: #fff;
    text-align: center;
    background-color: #0146c5;
    line-height: 2.5;
    font-size: 16px;
}
.lk-scroll-to-top.show-up{
    right: 30px;
}

/*------------------------------------------------------------------
[21. COMING SOON]
*/
.lk-coming-soon-video{
   /* position: relative;*/
}
.lk-coming-soon-bg header.header-float,
.lk-coming-soon-video header.header-float{
    border-bottom: none;
}
.lk-coming-soon-video .ytplayer-container {
    z-index: -1;
    position: fixed !important;
    top: 0px !important;
    left: 0px !important;
}

.lk-coming-soon-video .lk-bg-overlay-full-dot {
    z-index: 1;
}

.lk-coming-soon-video .lk-countdown-container {
    position: relative;
    z-index: 2;
}
.lk-coming-soon-container{
    position: relative;
    z-index: 5;
}
.lk-coming-soon-container .lk-countdown-simple .lk-countdown-info h4{
    font-size: 80px;
}
.lk-coming-soon-container .lk-countdown-simple .lk-countdown-info h5{
    font-size: 25px;
}
.lk-coming-soon-container .lk-coming-soon-title h2{
    color: #fff;
    font-size: 80px;
    margin-bottom: 0px;
    text-transform: uppercase;
}
.lk-coming-soon-container .lk-coming-soon-sub{
    color: #fff;
    text-transform: uppercase;
}
.lk-coming-soon-container .lk-countdown-container{
    margin-top: 60px;
}

/*------------------------------------------------------------------
[22. 404 PAGE]
*/
.lk-page-404-container .lk-page-404-title{
    font-size: 120px;
    font-weight: 600;
  ;
}
.lk-page-404-container .lk-page-404-subtitle{
    font-size: 24px;
    text-transform: uppercase;
    color: #444;
}
.lk-page-404-container .lk-page-404-desc{
    font-weight: 600;
    color: #444;
}

/*------------------------------------------------------------------
[23. ICONS]
*/
li.bg-num {
	list-style-type: none;
	padding-left: 15px;
	height: 22px;
} 
.download-me::before {
	background-image: url('../../assets/images/svg/prefal_site_pictos.svg');
	background-repeat: no-repeat;
	background-position: -399px -169px;
	width: 65px;
	height: 65px;
	display: block;
	position: relative;
	content: " ";
	top: -5px;
	left: calc(50% - 32px);
}
.download-me:hover::before {
	background-position: -399px -19px;
}

.stared::before {
	background-image: url('../../assets/images/svg/prefal_site_pictos.svg');
	background-repeat: no-repeat;
	background-position: -1000px -46px;
	width: 20px;
	height: 20px;
	display:block;
    position:relative;
    content: " ";
    top:22px;
    left: -21px;
}
.star::before {
	background-image: url('../../assets/images/svg/prefal_site_pictos.svg');
	background-repeat: no-repeat;
	background-position: -1000px -117px;
	width: 20px;
	height: 20px;
	display:block;
    position:relative;
    content: " ";
    top:22px;
    left: -21px;
}
.num1::before {
	background-image: url('../../assets/images/svg/prefal_site_pictos.svg');
	background-repeat: no-repeat;
	background-position: -1690px -116px;
	width: 20px;
	height: 20px;
	display:block;
    position:relative;
    content: " ";
    top:22px;
    left: -21px;
}
.num2::before {
	background-image: url('../../assets/images/svg/prefal_site_pictos.svg');
	background-repeat: no-repeat;
	background-position: -1740px -116px;
	width: 20px;
	height: 20px;
	display:block;
    position:relative;
    content: " ";
    top:22px;
    left: -21px;
}
.num3::before {
	background-image: url('../../assets/images/svg/prefal_site_pictos.svg');
	background-repeat: no-repeat;
	background-position: -1790px -116px;
	width: 20px;
	height: 20px;
	display:block;
    position:relative;
    content: " ";
    top:22px;
    left: -21px;
}
.num4::before {
	background-image: url('../../assets/images/svg/prefal_site_pictos.svg');
	background-repeat: no-repeat;
	background-position: -1840px -116px;
	width: 20px;
	height: 20px;
	display:block;
    position:relative;
    content: " ";
    top:22px;
    left: -21px;
}
.num5::before {
	background-image: url('../../assets/images/svg/prefal_site_pictos.svg');
	background-repeat: no-repeat;
	background-position: -1890px -116px;
	width: 20px;
	height: 20px;
	display:block;
    position:relative;
    content: " ";
    top:22px;
    left: -21px;
}
.num6::before {
	background-image: url('../../assets/images/svg/prefal_site_pictos.svg');
	background-repeat: no-repeat;
	background-position: -1940px -116px;
	width: 20px;
	height: 20px;
	display:block;
    position:relative;
    content: " ";
    top:22px;
    left: -21px;
}
.num7::before {
	background-image: url('../../assets/images/svg/prefal_site_pictos.svg');
	background-repeat: no-repeat;
	background-position: -1990px -116px;
	width: 20px;
	height: 20px;
	display:block;
    position:relative;
    content: " ";
    top:22px;
    left: -21px;
}
.arrow-big::before {
	background-image: url('../../assets/images/svg/prefal_site_pictos.svg');
	background-repeat: no-repeat;
	background-position: -350px -110px;
	width: 25px;
	height: 35px;
	content: " ";
	position: absolute;
	left: -40px;
	top: -9px;
	border: none;
}
.arrow-big:hover::before {
	background-image: url('../../assets/images/svg/prefal_site_pictos.svg');
	background-repeat: no-repeat;
	background-position: -350px -34px;
	width: 25px;
	height: 35px;
	content: " ";
	position: absolute;
	left: -40px;
	top: -9px;
	border: none;
}
.icn-youtube {
	background-image: url('../../assets/images/svg/prefal_site_pictos.svg');
	background-repeat: no-repeat;
	background-position: -1238px -18px;
	width: 64px;
	height: 64px;
}
.icn-youtube:hover {
	background-position: -1238px -118px;
}
.icn-facebook {
	background-image: url('../../assets/images/svg/prefal_site_pictos.svg');
	background-repeat: no-repeat;
	background-position: -1338px -18px;
	width: 64px;
	height: 64px;
}
.icn-facebook:hover {
	background-position: -1338px -118px;
}
.icn-instagram {
	background-image: url('../../assets/images/svg/prefal_site_pictos.svg');
	background-repeat: no-repeat;
	background-position: -1438px -18px;
	width: 64px;
	height: 64px;
}
.icn-instagram:hover {
	background-position: -1438px -118px;
}

.lk-scroll-to-top a {
    background-color: transparent;
}
.fa-long-arrow-up::before {

}
.fa-long-arrow-up:hover::before {
	background-position: -1569px -94px;
}
.left-arrow-prefal::before {
	background-image: url('../../assets/images/svg/prefal_site_pictos.svg');
	background-repeat: no-repeat;
	background-position: -283px -19px;
	content: " ";
	width: 62px;
	height: 62px;
	position: absolute;
	left: 0;
	top: 0px;
	border: none;
	margin-left: -30px;
}
.left-arrow-prefal:hover::before {
	/*margin-left: -5px;*/
}
.right-arrow-prefal::after {
	background-image: url('../../assets/images/svg/prefal_site_pictos.svg');
	background-repeat: no-repeat;
	background-position: -328px -19px;
	content: " ";
	width: 62px;
	height: 62px;
	position: absolute;
	left: 0;
	top: 0px;
	border: none;
}
.right-arrow-prefal:hover::after {
	/*margin-right: -5px;*/
}

.configurateur-icon-top {
	background-image: url('../../assets/images/svg/prefal_site_pictos.svg');
	background-repeat: no-repeat;
	background-position: -489px -19px;
	content: " ";
	width: 64px;
	height: 64px;
	position: absolute;
	left: calc(50% - 31px);
	top: -28px;
	border: none;

}
.configurateur .configurateur-icon-top {
	top: -75px;
}

.configurateur-icon::before {
	background-image: url('../../assets/images/svg/prefal_site_pictos.svg');
	background-repeat: no-repeat;
	background-position: -489px -19px;
	content: " ";
	width: 62px;
	height: 62px;
	position: absolute;
	left: -70px;
	top: -16px;
	border: none;
}
h6.configurateur {
	position: relative;
	display: inline-block;
}
footer .footer-gray {
    background: #fff;
    color: #707173;
}

.arrow-dl::before {
	background-image: url('../../assets/images/svg/prefal_site_pictos.svg');
	background-repeat: no-repeat;
	background-position: -399px -19px;
	content: " ";
	width: 62px;
	height: 62px;
	position: absolute;
	left: -80px;
	top: -12px;
	border: none;
	border-radius: 31px;
}
.arrow-dl.active::before {
	background-color: #fff;
}


.icon-recrutement::before {
	background-image: url('../../assets/images/svg/prefal_site_pictos.svg');
	background-repeat: no-repeat;
	background-position: -1568px -169px;
	width: 65px;
	height: 65px;
	display: block;
	position: relative;
	content: " ";
	top: -1px;
	left: calc(50% - 28px);
	  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.lk-accordion-item.active .icon-recrutement::before {
	  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}


#recrutement-accordion .lk-accordion-icon {
    height: 65px;
}
#recrutement-accordion .lk-accordion-container.icon-arrow .lk-accordion-title h6, .lk-accordion-container.icon-normal .lk-accordion-title h6 {
	left: 90px;
}
#recrutement-accordion .lk-accordion-title, #recrutement-accordion .lk-accordion-content {
	border: none;
}

#recrutement-accordion .lk-accordion-content {
    padding-left: 90px;
    padding-top: 0px;
}
#recrutement-accordion .lk-accordion-content-inner h4 {
	color: #fff;
	text-transform: uppercase;
}


#imageSwap {
    position: relative;
}
#imageSwap img {
    position: absolute;
}

.white-popup {
  position: relative;
  background: #d7db5b;
  padding: 20px;
  width: auto;
  max-width: 90%;
  margin: 20px auto;
}
/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;

  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;

  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

input[type=radio].css-checkbox {
	position:absolute; z-index:-1000; left:-1000px; overflow: hidden; clip: rect(0 0 0 0); height:1px; width:1px; margin:-1px; padding:0; border:0;
}

input[type=radio].css-checkbox + label.css-label {
	padding-left:45px;
	height:32px; 
	display:inline-block;
	line-height:28px;
	background-repeat:no-repeat;
	background-position: 0 0;
	font-size:28px;
	vertical-align:middle;
	cursor:pointer;

}

input[type=radio].css-checkbox:checked + label.css-label {
	background-position: 0 -33px;
}
label.css-label {
	background-image:url('../../assets/images/radio.png');
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.lk-contact-field input, .lk-contact-field textarea {
    width: 100%;
    padding: 15px;
    border-bottom: solid 1px #ddd;
	border-top: none;
	border-left: none;
	border-right: none;
	background: transparent;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #000;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #000;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #000;
}
:-moz-placeholder { /* Firefox 18- */
  color: #000;
}

.border-main, .border-main-hover:hover {
    border-color: #fff;
    border-style: solid;
}


.custom-select {
    display: inline-block;
    max-width: 100%;
    height: 40px;
	padding: 0px 0px 10px 10px;
    line-height: 1.25;
    color: #000;
    vertical-align: middle;
    background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center;
    -webkit-background-size: 8px 10px;
    background-size: 8px 10px;
	border: none;
    border-bottom: 1px solid #fff;
    -moz-appearance: none;
    -webkit-appearance: none;
}
.custom-select {
    background: url('../../assets/images/custom-select.png') right 0.75rem center no-repeat;
}
.custom-select option:selected {
	opacity:0.5; -moz-opacity:0.5; -webkit-opacity:0.5;
	color: #fff;
}

.entry-post-meta span {
    padding-right: 15px;
    word-break: break-word;
}
.entry-post-meta span i {
    color: #444;
    margin-right: 5px;
}
.lk-portfolio-info {
		text-align:center !important;
	}
	.lk-portfolio-info h4 {
		font-size: 14px;
	}
	élément {
}
#conseils {
    position: fixed;
    top: 65%;
    right: -17px;
    z-index: 2;
    width: 180px;
    height: 180px;
    background-color: #0146c5;
	border-radius: 90px;
	color:#fff;
    cursor: pointer;
    text-align: center;
    padding: 24px 10px;
    line-height: 1.2;
}
.lk-partner-item a {
height: 120px;
}
.lk-partner-item {
    min-height: 120px;
}
.nice-bg {
	background-image: linear-gradient(120deg, #000791 0%, #63aef1 100%);
}
.lk-bg-overlay-light {
    background-color: rgba(0, 0, 0, 0.4);
}
.lk-widget-menu-container .lk-menu li.half-size, .lk-widget-archives-container .lk-archives li.half-size {
	width: 100%;
}
.fs-11 {
	font-size: 11px;
}
.gray-style.lk-title-heading .lk-title {
    color: #444;
}
header .menu ul > li > a {
	margin: 0 20px 0px 20px;
}
header .menu ul > li:last-child > a {
    margin-right: 20px;
}
.c-orange, .entry-post-meta span i {
	color: #fe672c;
}
.c-grey {
	color: #707173;
}
.c-mauve {
	color: #c691a3;
}
.c-violet {
	color: #a03bff;
}
.c-vert {
	color: #cfde6d;
}
.c-jaune {
	color: #f5e078;
}
.bg-orange, .bg-menu-home {
	background-color: #fe672c !important;
}
.bg-grey, .bg-menu-produits {
	background-color: #707173 !important;
}
.bg-mauve, .bg-menu-0 {
	background-color: #c691a3 !important;
}
.bg-violet, .bg-menu-1 {
	background-color: #a03bff !important;
}
.bg-vert, .bg-menu-2 {
	background-color: #cfde6d !important;
}
.bg-jaune, .bg-menu-3, .bg-menu-devis {
	background-color: #f5e078 !important;
}
.bc-orange {
	border-color: #fe672c !important;
}
.bc-grey {
	border-color: #707173 !important;
}
.bc-mauve {
	border-color: #c691a3 !important;
}
.bc-violet {
	border-color: #a03bff !important;
}
.bc-vert {
	border-color: #cfde6d !important;
}
.bc-jaune {
	border-color: #f5e078 !important;
}

.bc-mauve::after {
    border-color: transparent transparent transparent #c691a3 !important;
}
.bc-violet::after {
    border-color: transparent transparent transparent #a03bff !important;
}
.bc-vert::after {
    border-color: transparent transparent transparent #cfde6d !important;
}
.bc-jaune::after {
    border-color: transparent transparent transparent #f5e078 !important;
}
.menu-item a.transition {
    color: #fff !important;
	text-shadow: #000 2px 0 3px;
}
.menu-item {
    margin: 0 -2px;
}