/*********************************
			FONTS
*******************************/
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Prata&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&display=swap');
.fullsite {
    position: relative;
    overflow: hidden;
}
/************** General *******************/
body {
    background: #fff;
    color: #5f6163;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 26px;
	font-weight: 400;
}
a {
    color: #3fc3ee;
	text-decoration:underline;
	-webkit-transition: all .5s;
    transition: all .5s;
	outline: none !important;
}
a:active, a:hover, a:focus {
    color: #3fc3ee;
    text-decoration: none;
}
 
.image-right {
    float: right;
    margin: 0 0 10px 15px;
}
.image-left {
    float: left;
    margin: 0 15px 10px 0;
}
 .h1, .h2, .h3, h1, h2, h3 {
    margin-top: 30px;
 }
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Prata', serif;
    line-height: 1.2em;
    font-weight: 400;
}
h1, .h1{
    font-size:32px;
    color: #004357;
}
h2, .h2 {
    font-size: 24px;
    color: #004357;
}
h3, .h3{
    font-size:22px;	
	color:#3fc3ee;
}
h4, .h4{
    font-size:20px;    
	color: #004357;
}
h5, .h5{
    font-size:18px;	
	color:#3fc3ee;
}
h6, .h6{
    font-size:17px;    
	color: #004357;
}
.container-fluid {
    max-width: 1790px;
}
.container {
    max-width: 1270px;
	    width: auto;
}
h3 strong, h2 strong, h4 strong, h5 strong, h5 strong {
    font-weight: 400;
}
/*--------------------------------------------------
# top-bar
--------------------------------------------------*/
.top-bar {
    background: #004357;
    color: #fff;
    min-height: 50px;
    padding: 7px 0;
    font-size: 15px;
    top: 0;
    transform: translateY(0);
    width: 100%;
    z-index: 999;
}
.top-bar .top-blocks {
    display: grid;
    grid-template-columns: repeat(2,auto);
    justify-content: space-between;
    grid-gap: 20px;
    align-items: center;
	
}
.top-bar .top-blocks .bloc-infos {
    display: flex;
}
.top-bar .top-blocks .bloc-infos .adr-top {
    padding-right: 36px;
    margin-right: 29px;
    position: relative;
}
.top-bar .top-blocks .bloc-infos .adr-top:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 12px;
    width: 1px;
    background: #fff;
}
.top-bar .top-blocks .bloc-infos i, .top-bar .top-blocks .mail-top i {
    font-size: 14px;
    color: #3fc3ee;
    padding-right: 14px;
}
.top-bar .top-blocks .bloc-infos .box-opening {
    display: flex;
    align-items: center;
    gap: 11px;
}
.top-bar .top-blocks .bloc-infos .box-opening i {
    padding: 0;
}
.top-bar .top-blocks .bloc-contact {
    display: flex;
    align-items: center;
	    position: relative;
}	
.top-bar .top-blocks .bloc-contact .networks_linking a.networks_twitter, .top-bar .top-blocks .bloc-contact .networks_linking a.networks_youtube {
    display: none;
}
.top-bar .top-blocks .bloc-contact .networks_linking a {
    width: auto;
    height: auto;
    background: none;
    color: #fff;
    font-size: 15px;
    line-height: 1em;
    float: left;
    margin: 0 11px 0 0;
    border-radius: 0;
}
.top-bar .top-blocks .bloc-contact .networks_linking a:hover {
    color: #3fc3ee;
    background: none;
}
.top-bar .top-blocks .bloc-contact .mail-top a {
    color: #fff;
    transition: all .4s;
}
.top-bar .top-blocks .bloc-contact .mail-top a:hover {
    color: #3fc3ee;
	text-decoration:none;
}
.top-bar .top-blocks .bloc-contact .mail-top {
    margin: 0 23px;
    padding: 0 22px;
    position: relative;
}
.top-bar .top-blocks .bloc-contact .mail-top:after {
    right: 0;
}
.top-bar .top-blocks .bloc-contact .mail-top:before {
    left: 0;
}
 .top-bar .top-blocks .bloc-contact .mail-top:after {
    content: "";
    position: absolute;
    top: 2px;
    bottom: 0;
    height: 12px;
    width: 1px;
    background: #fff;
    margin: auto;
}
/******************/
.top-bar .top-blocks .cta-top p {
    margin: 0;
}
.top-bar .top-blocks .cta-top a {
    font-size: 18px;
    font-weight: 700;
    background: #3fc3ee;
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 12px 36px;
    border-radius: 40px;
    transition: all .4s;
    height: auto;
    line-height: initial;
    border: none;
}
.top-bar .top-blocks .cta-top a:hover {
    background: #fff;
    color: #004357;
}
/************/
.search-popup.active .searchForm {
    transform: scale(1);
}

.search-popup .searchForm {
    transform: scale(.9);
    transition: transform .6s;
}
header.top .SearchButton a i.fa.fa-times {
    display: none;
}
header.top .SearchButton a i.fa.fa-search {
    display: block;
	    line-height: 36px;
}
.search-popup {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0,0,0,.85);
    opacity: 0;
    z-index: 100;
    transition: opacity .6s;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.search-button i {
    font-size: 17px;
    color: #004357;
    text-decoration: none;
    width: 45px;
    height: 45px;
    border: 1px solid #3fc3ee;
    text-align: center;
    border-radius: 50%;
    transition: all .4s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.search-button i.fas:hover {
    color: #3fc3ee;
	border-color: #004357;
    cursor: pointer;
}
.search-popup.active {
    opacity: 1;
    pointer-events: all;
}
.search-active .nav-shop .search-popup {
    opacity: 1;
    pointer-events: all;
}
.nav-shop .search-popup .searchForm {
    transform: scale(.9);
    transition: transform .6s;
}
.search-active .nav-shop .search-popup .searchForm {
    transform: scale(1);
}
header.top .SearchButton a i.fa.fa-search:before {
    margin-left: 2px;
}
.search-popup .searchForm #searchcatalog {
    position: relative;
}
.search-popup .searchForm #searchcatalog label {
    display: block;
    text-align: center;
    font-size: 1.2em;
    font-weight: normal;
}
header.top input#tags {
    background: none;
    width: 450px;
    padding: 5px 40px 5px 5px;
    font-size: 1.4em;
    line-height: 40px;
    border: 0;
    display: block;
    border-radius: 0;
    border-bottom: 1px solid #999;
    transition: border-bottom-color .6s;
	    color: #fff;
}
header.top input#tags:focus {
    border-bottom-color: #fff;
}
.nav-shop .search-popup .searchForm #searchcatalog .container-Search::after {
    content: '\f002';
    font-size: 24px;
    line-height: 50px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    bottom: 2px;
    width: 36px;
    display: block;
    -webkit-text-stroke: 1px #ffffff;
    -webkit-text-fill-color: transparent;
    text-align: center;
    z-index: 2;
    pointer-events: none;
}
.search-popup .search-popup-close {
    position: absolute;
    right: 50px;
    top: 50px;
    color: #fff;
    font-size: 2em;
    line-height: 1em;
    transition: color .6s, transform .6s;
    cursor: pointer;
}
.nav-shop .search-popup .search-popup-close:hover {
    color: #ffa400;
    transform: rotate(90deg);
}

header.top .searchForm.active {
    bottom: 0;
    padding: 5px 0;
    opacity: 1;
}
header.top .searchForm input#BtnSearch {
background: none;
    border: 0;
    padding: 0;
    font-size: 0em;
    width: 36px;
    height: 50px;
    display: block;
    position: absolute;
    right: 0;
    bottom: 2px;
    z-index: 1;
}
header.top .SearchButton a.active i.fa.fa-search {
    display: none;
}
header.top .SearchButton a.active i.fa.fa-times {
    display: block;
	    line-height: 36px;
}
header.top .searchForm::after {
    content: '\f002';
    font-size: 24px;
    line-height: 50px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    bottom: 2px;
    width: 36px;
    display: block;
    -webkit-text-stroke: 1px #ffffff;
    -webkit-text-fill-color: transparent;
    text-align: center;
    z-index: 2;
    pointer-events: none;
}
/*--------------------------------------------------
# Header
--------------------------------------------------*/
header.top {
    background: #fff;
    position: relative;
}
header.top .logo {
    float: left;
    padding: 36px 0 33px;
    margin-right: 20px;
}
header.top .logo img {
    max-width: 100%;
}
header.top .bloc-right {
    float: right;
    display: flex;
    align-items: center;
	    position: relative;
}
header.top .bloc-right .cta-top a {
    font-size: 18px;
    font-weight: 700;
    background: #3fc3ee;
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 12px 36px;
    border-radius: 40px;
    transition: all .4s;
	height: auto;
    line-height: initial;
	    border: none;
}
header.top .bloc-right .cta-top p {
    margin: 0;
}
header.top .bloc-right .cta-top a:hover {
    background: #004357;
    color: #fff;
}
/*********** sticky nav **************/
.top-bar.sticky-appear {
    transform: translateY(0);
    position: fixed;
}
header.top.sticky.sticky-appear {
    transform: translateY(60px);
}
header.top.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 0 20px rgb(0 0 0 / 20%);
    transform: translateY(-100%);
    transition: transform .6s;
}
header.top.sticky.sticky-appear .logo {
display: none;
}
header.top.sticky.sticky-appear .cta-top {
    display: none;
}
header.top.sticky.sticky-appear .bloc-right {
    float: none;
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
}
header.top.sticky.sticky-appear #navigation .sf-menu a {
    padding: 35px 20px;
}
header.top.sticky.sticky-appear .sf-arrows .sf-with-ul:after {
    bottom: 14px;
}
/* ---------nav mobile----------- */
nav.mobile-nav {
    display: none;
transition: all .4s;
position: relative;
-webkit-transition: all .4s;
transition: all .4s;
line-height: 1;
}
nav.mobile-nav a {
	font-size: 24px;
	text-decoration: none;
	color: #fff;
	line-height: 1;
	border: none;
	padding: 10px 10px;
	display: inline-block;
	border-radius: 50%;
	width: 45px;
	height: 45px;
	background: #3fc3ee;
	text-align: center;
}
nav.mobile-nav a:hover{
color: #fff;
background: #004356;
}

/*--------------------------------------------------
# Banner
--------------------------------------------------*/
section.banner {
    position: relative;
    height: 750px;
	z-index: 1;
}
section.banner .diy-slideshow {
   position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	z-index: 0;
}
.diy-slideshow figure:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../../images/new-images/bg-slide.png) no-repeat top center;
    background-size: cover;
}
/************ news slider ****************/
section.banner figure.Item .slideBackground {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
	background-size: cover;
}
section.banner figure.Item {
    height: 750px !important;
    position: relative;
}
section.banner #slider .slick-prev, section.banner #slider .slick-next {
    width: 74px !important;
    height: 74px !important;
    background: rgb(63 195 238 / 60%)!important;
    opacity: 1 !important;
    border-radius: 50% !important;
    text-align: center !important;
    line-height: 43px !important;
    font-size: 31px;
    z-index: 2;
}
section.banner #slider .slick-prev {
    left: 100px !important;
}
section.banner #slider .slick-next {
    right: 100px !important;
}
section.banner .slick-prev:before, section.banner .slick-next:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    text-align: center;
    font-size: 1em;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    line-height: 42px;
}
section.banner .slick-prev:before {
    content: "\f053" !important;
	margin-left: -2px;
}
section.banner .slick-next:before {
    content: "\f054" !important;
	    margin-left: 2px;
}
section.banner figcaption {
    position: relative;
    z-index: 2;
    font-size: 19px;
    color: #fff;
    font-weight: 600;
    text-shadow: 0 0 5px #000;
}
section.banner figcaption .btn-cta {
    display: grid;
    grid-gap: 18px;
    grid-template-columns: auto auto;
    justify-content: left;
    margin: 40px 0 0;
}
section.banner figcaption h3 {
    font-size: 60px;
    color: #fff;
    line-height: 1.2em;
    text-transform: none;
    margin: 13px 0 20px;
    font-family: 'Prata', serif;
    text-align: left;
    width: 100%;
    display: block;
	margin: 0 0 20px;
}
section.banner figcaption .btn-cta a {
    font-size: 18px;
    font-weight: 700;
    background: #004357;
    text-decoration: none;
    display: inline-block;
    float: left;
    color: #fff;
    padding: 14px 47px;
    border-radius: 30px;
    transition: all .4s;
    text-shadow: none;
}
section.banner .btn-cta.btn-cta2 a {
    background: #3fc3ee !important;
}
section.banner .btn-cta.btn-cta2 a:hover {
    background: #004357 !important;
}
section.banner figcaption .btn-cta a:hover {
    background: #3fc3ee;
    color: #fff;
}
section.banner figcaption .btn-cta > p:last-of-type a {
    background: #3fc3ee;
}
section.banner figcaption .btn-cta > p:last-of-type a:hover {
    background: #004357;
}

/******* animation *************/
.animate.clip_ttb {
    clip-path: inset(0 0 100% 0);
    transition: clip-path 800ms ease-out;
}
.animate.clip_rtl {
    clip-path: inset(0 0 0 100%);
    transition: clip-path 800ms ease-out;
}
.animate.clip_rtl.play {
    clip-path: inset(-1px -1px -1px -1px);
}

.animate.delay-1500 {
    transition-delay: 1250ms;
}
.animate.delay-500 {
    transition-delay: 500ms;
}
.animate.delay-250 {
    transition-delay: 250ms;
}
.animate.clip_ttb.play {
    clip-path: inset(-1px -1px -1px -1px);
}
.animate.clip_rtl.play {
    clip-path: inset(-1px -1px -1px -1px);
}
.animate.clip_ltr.play {
    clip-path: inset(-1px -1px -1px -1px);
}
.animate.clip_ltr {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 800ms ease-out;
}
  @-webkit-keyframes slideInLeft {
  0% {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  visibility: visible;
  }
  100% {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  }
  }
  @keyframes slideInLeft {
  0% {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  visibility: visible;
  }
  100% {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  }
  } 
/********** cta ***********/
section.banner .container {
position: absolute;
    top: 42%;
    z-index: 2;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}
section.banner .box-overlay {
    color: #fff;
    font-size: 16px;
    text-align: left;
    line-height: 26px;
    font-weight: 700;
	    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
section.banner .box-overlay p {
    margin: 0;
	position: relative;
}
section.banner .box-overlay p:first-of-type:before {
    content: "";
    position: relative;
    display: inline-block;
    width: 50px;
    height: 2px;
    background: #004357;
    margin-right: 20px;
    margin-bottom: 4px;
}
/*section.banner .box-overlay h2 {
font-size: 60px;
    color: #fff;
    line-height: 1.2em;
    text-transform: none;
    margin: 13px 0 20px;
}*/
section.banner .diy-slideshow figure figcaption {
    font-size: 60px;
    color: #fff;
    line-height: 1.2em;
    text-transform: none;
    margin: 13px 0 20px;
    font-family: 'Prata', serif;
    text-align: left;
    max-width: 1270px;
    padding: 0 15px;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    display: block;
    bottom: auto;
	letter-spacing: 0;
    top: 200px;
}
.pageTemplate section.banner .diy-slideshow figure figcaption {
    display: none;
}
section.banner .box-overlay .btn-cta a:first-of-type {
    margin-right: 18px;
}
section.banner .box-overlay .btn-cta a {
    font-size: 18px;
    font-weight: 700;
    background: #004357;
    text-decoration: none;
    display: inline-block;
    float: left;
    color: #fff;
    padding: 14px 47px;
    border-radius: 30px;
    transition: all .4s;
}
section.banner .box-overlay .btn-cta a:hover {
    background: #3fc3ee;
    color: #fff;
}
.diy-slideshow .next, .diy-slideshow .prev {
    width: 74px !important;
    height: 74px !important;
    background: rgb(63 195 238 / 60%)!important;
    opacity: 1 !important;
    border-radius: 50% !important;
    text-align: center !important;
    line-height: 43px !important;
    font-size: 31px;
}
.diy-slideshow .next {
    right: 100px !important;
}
.diy-slideshow .prev {
    left: 100px !important;
}
.diy-slideshow .next:hover, .diy-slideshow .prev:hover {
    background: rgb(63 195 238 / 80%) !important;
}
section.banner .diy-slideshow figure figcaption small {
    font-size: 20px;
    display: block;
    line-height: 1.3em;
}

/***************/
section.banner .cta-slide {
position: absolute;
    right: 0;
    top: 50%;
    z-index: 100;
    background: rgba(255,255,255,0.6);
    padding: 50px 15px;
    transform: translateY(-50%);
}	
.pageTemplate section.banner .cta-slide, .marquesTemplate section.banner .cta-slide, .blogTemplate section.banner .cta-slide {
    bottom: 0;
    top: 0;
    padding: 35px 15px;
    transform: translateY(0%);
}
section.banner .cta-slide .tel, section.banner .cta-slide .email, section.banner .cta-slide .language, section.banner .cta-slide .opening {
    position: relative;
    margin-bottom: 50px;
}
section.banner .cta-slide i {
    position: relative;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #fff;
    border: 1px solid rgba(0,0,0,.2);
    cursor: pointer;
    z-index: 10;
    transition: all .6s;
	font-size: 20px;
    color: #004357;
}
section.banner .cta-slide .language i:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}
section.banner .cta-slide .language.active-nl i:before {
	background: url(../../images/new-images/nl-flag.png) no-repeat center;
}
section.banner .cta-slide .language.active-fr i:before {
	background: url(../../images/new-images/fr-flag.png) no-repeat center;
}

section.banner .cta-slide .language i {
    font-size: 0;
}
section.banner .cta-slide i:hover {
    background: #3fc3ee;
    border-color: #3fc3ee;
}
section.banner .cta-slide .language .link-language a span {
    font-size: 0;
    line-height: 0;
}
section.banner .cta-slide .language .link-language a span#lang-nl:before {
    content: 'Nederlands';
	    font-size: 16px;
}
section.banner .cta-slide .language .link-language a span#lang-fr::before {
    content: "Français";
	    font-size: 16px;
}
section.banner .cta-slide .opening .bx-open > div {
    float: left;
    display: inline-block;
    margin: 0 10px 0 0;
}
section.banner .cta-slide .language {
    margin: 0;
}
section.banner .cta-slide .tel span.phone, section.banner .cta-slide .tel span.phone-responsive, section.banner .cta-slide .language .link-language, section.banner .cta-slide .opening .bx-open, section.banner .cta-slide .email a {
position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    line-height: 50px;
    background: #fff;
    width: max-content;
    font-size: 15px;
    padding: 0 20px;
    border: 1px solid rgba(0,0,0,.2);
    border-left: 0;
    border-radius: 100px 0 0 100px;
    z-index: 5;
    opacity: 0;
    transition: all .6s;
    pointer-events: none;
}
section.banner .cta-slide .tel:hover span.phone, section.banner .cta-slide .language:hover .link-language, section.banner .cta-slide .opening:hover .bx-open, section.banner .cta-slide .email:hover a {
    right: 50px;
    opacity: 1;
	    pointer-events: all;
}
section.banner .cta-slide .language .link-language a {
    color: #004256;
    text-decoration: none;
    display: inline-block;
    margin: 0 2px;
}
section.banner .cta-slide .language .link-language a:hover, section.banner .cta-slide .language .link-language a.selected {
    color: #3fc3ee;
}
/*--------------------------------------------------
# section Counter 
--------------------------------------------------*/
.sectionCounter {
    position: relative;
	z-index: 2;
}
.sectionCounter .counter-grid {
    margin-top: -166px;
    background: #e7e7e8;
    padding: 2px;
    grid-gap: 2px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
	text-align: center;
	    box-shadow: 0 0 10px rgb(0 0 0 / 6%);
}
.sectionCounter .counter-grid .box {
    background: #fff;
    padding: 64px 10px 45px;
}
.sectionCounter .titre {
    font-weight: 400;
    text-transform: none;
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 0px;
    font-family: 'Prata', sans-serif;
    color: #004357;
}
.sectionCounter .numeros {
    font-size: 44px;
    font-weight: 400;
    font-family: 'Prata', serif;
    line-height: 1;
    margin-bottom: 13px;
    color: #3fc3ee;
}
.sectionCounter .icocont {
    height: 86px;
    margin: 0 0 36px;
    width: 100%;
    vertical-align: bottom;
    display: grid;
    align-items: end;
    text-align: center;
}
.sectionCounter .icocont img {
    display: table;
    margin: 0 auto;
}
/*--------------------------------------------------
# Home page 2eme partie -> home content
--------------------------------------------------*/
section.home_2 {
    position: relative;
    background: #fff;
    padding: 55px 0 40px;
}
.home-content {
    display: grid;
    grid-template-columns: auto 557px;
    grid-gap: 78px;
}
.home-content header.page-title h1 {
    font-size: 38px;
    color: #004357;
    line-height: 1.2em;
}
.home-content header.page-title {
    padding: 50px 0 10px;
}
.home-content .photo-home {
    position: relative;
    margin: 30px 30px 0 0;
}
.home-content .photo-home:before {
content: "";
    position: absolute;
    top: -30px;
    right: -30px;
    background: url(../../images/new-images/motif-experiences.jpg) repeat center;
    bottom: 30px;
    left: 30px;
    z-index: -1;
}
.home-content .photo-home img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
/*********/
.home-content .photo-home .box-exp p {
    margin: 0;
}
.home-content .photo-home .box-exp h6 {
    font-size: 24px;
    color: #fff;
    margin: 0;
}
.home-content .photo-home .box-exp {
    position: absolute;
    font-size: 16px;
    color: #fff;
    background: #004357;
    border-left: 6px solid #3fc3ee;
    bottom: 59px;
    left: 49px;
    line-height: 1em;
    padding: 27px 44px 27px 36px;
}
/********/
.home-content .readmore a {
    font-size: 16px;
    color: #3fc3ee;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid #3fc3ee;
    line-height: 1.6em;
    display: inline-block;
    position: relative;
	    transition: all .4s;
}
.home-content .readmore a:after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-size: 11px;
    font-weight: 700;
    margin-left: 6px;
    transition: all .4s;
}
.home-content .readmore a:hover:after {
    margin-left: 12px;
    color: #004357;
}
.home-content .readmore a:hover {
    color: #004357;
    border-color: #004357;
}
/********* points forts ************/
section.home_2 .points-forts {
    border-top: 1px solid rgb(144 147 149 / 20%);
    margin: 18px 0 55px;
    display: grid;
    grid-template-columns: repeat(3,auto);
    align-items: center;
}
section.home_2 .points-forts .bx.box02 {
    border-left: 1px solid rgb(144 147 149 / 20%);
    border-right: 1px solid rgb(144 147 149 / 20%);
}
section.home_2 .points-forts .bx p {
    margin: 0;
}
section.home_2 .points-forts .box01 {
    padding-left: 0;
}
section.home_2 .points-forts .bx {
    display: grid;
    grid-template-columns: repeat(2,auto);
    align-items: center;
    font-size: 17px;
    color: #2b343b;
    line-height: 23px;
    font-weight: 700;
    padding: 16px 26px;
}
section.home_2 .points-forts .box01 {
    padding-left: 0;
}
section.home_2 .points-forts .bx img {
    margin-right: 14px;
}
section.home_2 .points-forts .box03 {
    padding-right: 10px;
}
/*--------------------------------------------------
# Home page 3eme partie -> Marques
--------------------------------------------------*/
.box-brands {
    position: relative;
    background: #f8f9fa;
    text-align: center;
    font-size: 16px;
    color: #5f6163;
    padding: 67px 0 170px;
}
.box-brands h5 {
    margin: 0 0 0;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    color: #3fc3ee;
    position: relative;
}
.box-brands h5:after, .box-brands h5:before {
    content: "";
    position: relative;
    display: inline-block;
    width: 30px;
    height: 2px;
    background: #3fc3ee;
    margin: 0 12px 4px;
}
.box-brands h2 {
    font-size: 38px;
    color: #004357;
    margin: 15px 0 30px;
}
.box-brands .brand {
    margin: 0 25px;
    position: relative;
    background: #fff;
    color: #86898c;
    text-align: left;
}
.box-brands .brand img {
    height: 240px;
    width: 100%;
    object-fit: cover;
	    transition: all .4s;
}
.box-brands .brand .logo-brand img {
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
    left: 0;
}
.box-brands .brand .logo-brand {
    width: 85px;
    height: 85px;
    background: #004357;
    border-radius: 50%;
    float: right;
    margin-top: -43px;
    position: relative;
    z-index: 1;
    margin-right: 30px;
    text-align: center;
}
.box-brands .brand h2 {
    font-size: 25px;
    margin: 0 0 5px;
    color: #004357;
	    padding: 44px 30px 0;
}
.box-brands .brand p {
    padding: 0 30px;
}
.box-brands .brand .link a {
    position: absolute;
    font-size: 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.box-brands .brand .btn-brand {
    font-size: 16px;
    color: #2b343b;
    font-weight: 700;
    padding: 0 30px 40px;
    position: relative;
	transition:all .4s;
}
.box-brands .brand .btn-brand:after {
    content: "";
    position: absolute;
    left: 30px;
    width: 0;
    height: 2px;
    background: #3fc3ee;
    bottom: 36px;
    transition: all .4s;
}
.box-brands .brand:hover .btn-brand {
    color: #3fc3ee;
}
.box-brands .brand:hover .btn-brand:after {
    width: 55px;
}
.box-brands .brand2 .logo-brand {
	background: #045655;
}
.box-brands .brand3 .logo-brand {
	background: #fa9e1f;
}
.box-brands .brand4 .logo-brand {
    background: #fff;
    box-shadow: 0 0 5px rgb(0 0 0 / 20%);
}
.box-brands .brand5 .logo-brand {
	background: #1a496c;
}
.box-brands .brand6 .logo-brand {
    background: #fff;
    box-shadow: 0 0 5px rgb(0 0 0 / 20%);
}
.box-brands .brand > div:first-of-type {
    position: relative;
    overflow: hidden;
}
.box-brands .brand:hover > div:first-of-type img {
    transform: scale(1.2);
}
/***** arrows *****/
.box-brands .slick-prev:before {
    content: "\f053";
	    margin-left: -1px;
    margin-top: 1px;
}
.box-brands .slick-next:before {
    content: "\f054";
	    margin-left: 2px;
    margin-top: 1px;
}

.box-brands .slick-prev, .box-brands .slick-next {
    top: auto;
    bottom: -92px;
    left: 50%;
    transform: translateX(-50%);
    width: 47px;
    height: 47px;
    border: 3px solid #003646;
    border-radius: 50%;
}
.box-brands .slick-prev:before, .box-brands .slick-next:before {
    font-family: FontAwesome;
    color: #003646;
    font-size: 19px !important;
    opacity: 1 !important;
	    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.box-brands .slick-prev {
    margin-left: -35px;
}
.box-brands .slick-next {
    right: auto;
    margin-left: 35px;
}
.box-brands .slick-prev:hover, .box-brands .slick-next:hover {
    border: 3px solid #3fc3ee;
}
.box-brands .slick-prev:hover:before, .box-brands .slick-next:hover:before {
    color: #3fc3ee;
}
/*--------------------------------------------------
# Home page 4eme partie -> Formations
--------------------------------------------------*/
.formations {
    position: relative;
}
.formations .photo-formation {
    position: absolute;
    left: 0;
    top: -60px;
    bottom: 60px;
    width: 48%;
	    z-index: 1;
}
.formations .photo-formation img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.formations:before {
    content: "";
    position: absolute;
    left: 40%;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../../images/new-images/bg-formations.jpg) no-repeat center;
    background-size: cover;
}
.formations:after {
    content: "";
    position: absolute;
    left: 40%;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgb(0 54 70 / 94%);
    background-size: cover;
}
.formations .bloc-right {
    width: 46%;
    float: right;
    position: relative;
    z-index: 1;
    color: #fff;
	    padding: 85px 0;
}
.formations .bloc-right h5 {
    margin: 0 0 0;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    color: #3fc3ee;
    position: relative;
}
.formations .bloc-right h5:before {
    content: "";
    position: relative;
    display: inline-block;
    margin-right: 13px;
    width: 50px;
    height: 2px;
    background: #3fc3ee;
    margin-bottom: 4px;
}
.formations .bloc-right h2 {
    color: #fff;
    font-size: 38px;
    margin: 15px 0 10px;
}
.formations .bloc-right .bx1 {
    margin-top: 40px;
}
.formations .bloc-right .bx {
    position: relative;
    padding-left: 115px;
}
.formations .bloc-right .bx a {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    outline: none;
    font-size: 0;
}
.formations .bloc-right .bx p {
    margin: 0;
}
.formations .bloc-right .bx2 {
    margin: 25px 0;
    padding: 23px 0 20px 115px;
    border-top: 1px solid rgb(255 255 255 / 20%);
    border-bottom: 1px solid rgb(255 255 255 / 20%);
}
.formations .bloc-right .bx h3 {
    font-size: 20px;
    color: #fff;
    margin: 0 0 5px;
    transition: all .4s;
}
.formations .bloc-right .bx:hover h3 {
    color: #3fc3ee;
}
.formations .bloc-right .bx:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 74px;
    height: 74px;
    border: 2px solid #fff;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    transition: all .4s;
}
.formations .bloc-right .bx2:before {
    top: 18px;
}
.formations .bloc-right .bx:hover:before {
    border-color:  #3fc3ee;
}
/***/
.formations .bloc-right .bx1:before {
    background-image: url(../../images/new-images/cms.png);
}
.formations .bloc-right .bx2:before {
    background-image: url(../../images/new-images/gmb.png);
}
.formations .bloc-right .bx3:before {
    background-image: url(../../images/new-images/fb.png);
}
/***/
.formations .bloc-right .bx:hover:before{
-webkit-animation: rotate-vert-center 0.5s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
	        animation: rotate-vert-center 0.5s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}
.formations .bloc-right .bx1:hover:before {
    background-image: url(../../images/new-images/cms-h.png);
}
.formations .bloc-right .bx2:hover:before {
    background-image: url(../../images/new-images/gmb-h.png);
}
.formations .bloc-right .bx3:hover:before {
    background-image: url(../../images/new-images/fb-h.png);
}
/**
 * ----------------------------------------
 * animation rotate-vert-center
 * ----------------------------------------
 */
@-webkit-keyframes rotate-vert-center {
  0% {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}
@keyframes rotate-vert-center {
  0% {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}
/*--------------------------------------------------
# Home page 5eme partie -> Sponsoring
--------------------------------------------------*/
.sponsoring-part {
    position: relative;
    background: #fff;
    padding: 52px 0 59px;
}
.sponsoring-part .sponsoring-grid {
    display: grid;
    grid-template-columns: auto 518px;
    align-items: center;
    grid-gap: 146px;
}
.sponsoring-part .sponsoring-grid .bloc-left h4 {
    color: #3fc3ee;
    font-weight: 700;
    font-size: 15px;
    display: block;
    font-family: 'Lato', sans-serif;
    position: relative;
	    margin: 0;
}
.sponsoring-part .sponsoring-grid .bloc-left h4:before {
    content: "";
    position: relative;
    display: inline-block;
    margin-right: 13px;
    width: 50px;
    height: 2px;
    background: #3fc3ee;
    margin-bottom: 4px;
}
.sponsoring-part .sponsoring-grid .bloc-left h2 {
    font-size: 38px;
    color: #004357;
    line-height: 1.2em;
    margin: 15px 0 15px;
}
a.readmore {
    font-size: 16px;
    color: #3fc3ee;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid #3fc3ee;
    line-height: 1.6em;
    display: inline-block;
    position: relative;
    transition: all .4s;
}
a.readmore:after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-size: 11px;
    font-weight: 700;
    margin-left: 6px;
    transition: all .4s;
}
a.readmore:hover {
    color: #003646;
}
a.readmore:hover:after {
    margin-left: 12px;
}
.sponsoring-part .sponsoring-grid .sponsorisons {
    margin: 20px 0 0;
    display: grid;
    grid-template-columns: repeat(3,1fr);
}
.sponsoring-part .sponsoring-grid .sponsorisons a {
    position: relative;
    overflow: hidden;
    display: block;
}
.sponsoring-part .sponsoring-grid .sponsorisons a img {
    max-width: 100%;
    width: 100%;
    height: auto;
	    object-fit: cover;
	transition:all .4s
}
.sponsoring-part .sponsoring-grid .sponsorisons a:hover img {
    transform: scale(1.3);
}
.sponsoring-part .sponsoring-grid .bloc-left {
    padding: 70px 0;
}
.sponsoring-part .sponsoring-grid .bloc-right {
    position: relative;
	height: 100%;
}
.sponsoring-part .sponsoring-grid .bloc-right img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
/****/
.sponsoring-part .sponsoring-grid .bloc-right .box-rech-sponsor h6 {
    font-size: 24px;
    color: #fff;
    margin: 0;
	transition:all .4s;
}
.sponsoring-part .sponsoring-grid .bloc-right .box-rech-sponsor:hover h6 {
    color: #3fc3ee;
}
.sponsoring-part .sponsoring-grid .bloc-right .box-rech-sponsor {
    position: absolute;
    bottom: 0;
    background: #003646;
    padding: 35px 34px 35px 110px;
}
.sponsoring-part .sponsoring-grid .bloc-right .box-rech-sponsor:before {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid #3fc3ee;
    background: url(../../images/new-images/icon-sponsoring.png) no-repeat center;
    border-radius: 50%;
    left: 33px;
}
.sponsoring-part .sponsoring-grid .bloc-right .box-rech-sponsor:after {
    content: '';
    position: absolute;
    height: 0;
    left: 76px;
    width: 0;
    border: 27px solid transparent;
    border-bottom-color: #fff;
    border-bottom-color: #003646;
    top: -54px;
    margin: 0;
}
.sponsoring-part .sponsoring-grid .bloc-right .box-rech-sponsor a {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}
/**
 * ----------------------------------------
 * animation rotate-diagonal-2
 * ----------------------------------------
 */
@-webkit-keyframes rotate-diagonal-2 {
  0% {
    -webkit-transform: rotate3d(-1, 1, 0, 0deg);
            transform: rotate3d(-1, 1, 0, 0deg);
  }
  50% {
    -webkit-transform: rotate3d(-1, 1, 0, 180deg);
            transform: rotate3d(-1, 1, 0, 180deg);
  }
  100% {
    -webkit-transform: rotate3d(-1, 1, 0, 360deg);
            transform: rotate3d(-1, 1, 0, 360deg);
  }
}
@keyframes rotate-diagonal-2 {
  0% {
    -webkit-transform: rotate3d(-1, 1, 0, 0deg);
            transform: rotate3d(-1, 1, 0, 0deg);
  }
  50% {
    -webkit-transform: rotate3d(-1, 1, 0, 180deg);
            transform: rotate3d(-1, 1, 0, 180deg);
  }
  100% {
    -webkit-transform: rotate3d(-1, 1, 0, 360deg);
            transform: rotate3d(-1, 1, 0, 360deg);
  }
}
.sponsoring-part .sponsoring-grid .bloc-right .box-rech-sponsor:hover:before {
-webkit-animation: rotate-diagonal-2 0.4s linear both;
	        animation: rotate-diagonal-2 0.4s linear both;
}
/*--------------------------------------------------
# Home page 6eme partie -> NOS ACTUALITÉS
--------------------------------------------------*/
section.home_6 {
    position: relative;
    padding: 60px 0 156px;
    background: #014357;
    color: #fff;
    text-align: center;
}
.modules_actualites h5 {
    margin: 0 0 0;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    color: #3fc3ee;
    position: relative;
}
.modules_actualites h5:before, .modules_actualites h5:after {
    content: "";
    position: relative;
    display: inline-block;
    width: 30px;
    height: 2px;
    background: #3fc3ee;
    margin: 0 12px 4px;
}
.modules_actualites h2 {
    font-size: 38px;
    color: #fff;
    margin: 15px 0 20px;
}
.modules_actualites > div > p {
    padding: 0 16% 0;
}
div#blogHome {
    margin: 50px 0 0;
}
section.modules_actualites div#blogHome figure.Item {
    margin: 0 25px;
    background: #fff;
    padding: 0 0 35px;
    position: relative;
}
section.modules_actualites div#blogHome figure.Item:hover h3 {
     color: #333;
}
section.modules_actualites div#blogHome figure.Item:hover figcaption h3 span.subtitle {
    color: #3fc3ee;
}
section.modules_actualites div#blogHome figure.Item .photo {
    height: 278px;
    width: 100%;
    border-radius: 0;
    overflow: hidden;
}
section.modules_actualites div#blogHome figure.Item .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	    transition: all .4s;
}
section.modules_actualites div#blogHome figure.Item:hover .photo img {
    transform: scale(1.3);
}
section.modules_actualites div#blogHome figure.Item .photo.nophoto {
    background-image: url(/media/images/logo_clickplus.png);
    background-position: center;
    background-color: #d2d2d2;
    transition: all .4s;
    background-repeat: no-repeat;
    opacity: 0.65;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
}
section.modules_actualites div#blogHome figure.Item figcaption {
    margin-top: 17px;
    font-size: 16px;
    color: #5f6163;
    line-height: 26px;
    text-align: left;
    padding: 15px 32px 0;
}
section.modules_actualites div#blogHome figure.Item figcaption .date {
    font-size: 16px;
    color:#5f6163;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
    padding-left: 23px;
    position: relative;
	    margin: 20px 0 0;
}
section.modules_actualites div#blogHome figure.Item figcaption .adr-news {
    border-top: 1px solid rgb(134 137 140 / 20%);
    margin: 13px 0 0;
    padding: 11px 0 0;
    display:none;
}

section.modules_actualites div#blogHome figure.Item figcaption .date:before {
    content: "\f073";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    font-size: 17px;
    color: #3fc3ee;
}
section.modules_actualites div#blogHome figure.Item figcaption h3 {
      color: #004357;
    font-size: 24px;
    margin: 11px 0;
    font-family: 'Prata', serif;
    font-weight: 400;
    text-transform: none;
}
section.modules_actualites div#blogHome figure.Item figcaption h3 span.subtitle {
    display: block;
    font-size: 0.8em;
        color: #3fc3ee;
}
section.modules_actualites div#blogHome figure.Item figcaption  span.button {
    background: #3fc3ee;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 18px;
    padding: 12px 34px;
    -webkit-transition: all .6s;
    transition: all .6s;
    display: inline-block;
    margin-top: 15px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none !important;
    font-family: 'Lato', sans-serif;
}
section.modules_actualites div#blogHome figure.Item figcaption a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: all;
}
section.modules_actualites div#blogHome figure.Item h3 span.news-item-sub-title {
    font-size: 18px;
    display: block;
    font-weight: 400;
    color: #656565;
}
section.modules_actualites div#blogHome figure.Item figcaption  span.button:hover{
	background: #3fc3ee;
}
section.modules_actualites div#blogHome figure.Item:hover span.button{
	background: #3fc3ee;
}
/***** arrows *****/
section.modules_actualites .slick-prev:before {
    content: "\f053";
	    margin-left: -1px;
}
section.modules_actualites .slick-next:before {
    content: "\f054";
	    margin-left: 2px;
}
section.modules_actualites .slick-prev, section.modules_actualites .slick-next {
    top: auto;
    bottom: -92px;
    left: 50%;
    transform: translateX(-50%);
    width: 47px;
    height: 47px;
    border: 3px solid #fff;
    border-radius: 50%;
	
}
section.modules_actualites .slick-prev:before, section.modules_actualites .slick-next:before {
    font-family: FontAwesome;
    color: #fff;
    font-size: 19px !important;
    opacity: 1 !important;
	    position: absolute;
    left: 50%;
    transform: translate(-50%,-50%);
    top: 50%;
}
section.modules_actualites .slick-prev {
    margin-left: -35px;
}
section.modules_actualites .slick-next {
    right: auto;
    margin-left: 35px;
}
section.modules_actualites .slick-prev:hover, section.modules_actualites .slick-next:hover {
    border: 3px solid #3fc3ee;
}
section.modules_actualites .slick-prev:hover:before, section.modules_actualites .slick-next:hover:before {
    color: #3fc3ee;
}
/*--------------------------------------------------
# Home page 7eme partie -> TÉMOIGNAGES
--------------------------------------------------*/
section.home_7 {
    position: relative;
    background: #3fc3ee url(../../images/new-images/bg-avis.jpg) no-repeat center fixed;
    text-align: left;
    background-size: cover;
}
section.home_7 .container {
    position: relative;
    z-index: 1;
}
section.home_7:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
	z-index: 0;
    background: rgb(63 195 238 / 94%);
}
.modules_avis .avis-img {
    float: left;
    width: 442px;
    height: 100%;
}
.modules_avis .avis-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.modules_avis article {
    float: right;
    width: 55%;
    padding: 75px 0 80px;
}
.modules_avis article h5 {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    display: block;
    font-family: 'Lato', sans-serif;
    position: relative;
	    margin: 0;
}
.modules_avis article h2 {
    font-size: 38px;
    color: #004357;
    line-height: 1.2em;
    margin: 20px 0 35px;
}
.modules_avis article h5:before {
    content: "";
    position: relative;
    display: inline-block;
    margin-right: 13px;
    width: 50px;
    height: 2px;
    background: #fff;
    margin-bottom: 4px;
}

section.modules_avis .avis .guestbook-form,
section.modules_avis .avis #Guestbook .guestbook-messages .gb-score,
section.modules_avis .avis #Guestbook .guestbook-messages .gb-count{
	display:none
}
section.modules_avis .avis #Guestbook .guestbook-messages {
	margin-top: 0
}
section.modules_avis .guestbook-messages .gb-content .gb-entry .gb-info .gb-author-name {
    order: 1;
}
section.modules_avis .avis #Guestbook .guestbook-messages .gb-content .gb-entry .gb-info .gb-date-time {
	padding: 10px 0 0 0;
    float: left;
    clear: both;
    font-family: 'Lato', serif !important;
    font-size: 16px !important;
}

section.modules_avis .avis #Guestbook .guestbook-messages .gb-content .gb-entry .gb-info .gb-author-name a, section.modules_avis .avis #Guestbook .guestbook-messages .gb-content .gb-entry .gb-info .gb-date-time {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    font-family: 'Prata', serif;
    text-decoration: none !important;
}
section.modules_avis .avis #Guestbook .guestbook-messages .gb-content .gb-entry .gb-info {
    text-align: left;
    margin: 0 0 17px;
    color: #fff;
    font-size: 16px;
    line-height: 23px;
	order: 2;
}
section.modules_avis .guestbook-messages .gb-content .gb-entry .gb-info .gb-date-time {
     display: block;
}
section.modules_avis .avis #Guestbook .guestbook-messages .gb-content .gb-entry .gb-info .gb-date-time .gb-date>i, section.modules_avis .avis #Guestbook .guestbook-messages .gb-content .gb-entry .gb-info .gb-date-time .gb-time>i {
	display: none
}

section.modules_avis .avis #Guestbook .guestbook-messages .gb-content .gb-entry .gb-info .gb-author-name a {
	vertical-align: top
}
section.modules_avis .avis #Guestbook .guestbook-messages .gb-content .gb-entry .gb-info .gb-date-time .gb-time {
	display: none;
}
section.modules_avis .avis #Guestbook .guestbook-messages .gb-entry-score {
    padding: 0;
    width: auto;
    position: absolute;
    top: 0;
    left: 0;
    /* -webkit-transform: translateX(-50%); */
    transform: translateX(-7%);
    vertical-align: middle;
    display: none;
}
section.modules_avis .avis #Guestbook .guestbook-messages .gb-entry-score>strong {
	display: none
}
section.modules_avis .avis #Guestbook .guestbook-messages .gb-entry-score .fullStar, section.modules_avis .avis #Guestbook .guestbook-messages .gb-entry-score .emptyStar {
    font-size: 19px;
    color: #3fc3ee;
    margin: 0 0 0 10px;
}
section.modules_avis .avis #Guestbook .guestbook-messages .gb-content .gb-entry {
    padding: 0;
    margin: 0;
    border: none;
    position: relative;
    background: none;
}
section.modules_avis .guestbook-messages .gb-pagination {
    display: none;
}
section.modules_avis .avis #Guestbook .guestbook-messages .gb-entry-score .emptyStar{
	opacity:0.45;
}
section.modules_avis .avis #Guestbook .guestbook-messages .gb-entry-score .emptyStar .fa-star-o:before {
    content: "\f005";
}
section.modules_avis .avis #Guestbook .guestbook-messages .gb-content .gb-entry {
    padding: 38px 10px 0;
    margin: 0;
    border: none;
    background: none;
    position: relative;
}
section.modules_avis .avis #Guestbook .guestbook-messages .gb-content .gb-entry .gb-message {
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    padding: 0 0 28px;
    text-align: left;
}
section.modules_avis .avis #Guestbook .guestbook-messages .gb-content .gb-entry > div {
    display: grid;
}
section.modules_avis .avis #Guestbook .slick-slider {
	margin-bottom: 55px;
}
.modules_avis .avis {
    background: rgb(0 67 87 / 20%);
    padding: 39px 63px 5px 100px;
    position: relative;
}
.modules_avis .avis:before {
    content: "";
    position: absolute;
    left: 35px;
    top: 43px;
    height: 32px;
    width: 34px;
    background: url(../../images/new-images/quotes.png) no-repeat center;
}
section.modules_avis .avis #Guestbook .slick-dots {
    /*bottom: 8px;*/
    bottom: -16px;
    margin: 0;
    text-align: right;
}
section.modules_avis .avis #Guestbook .slick-dots li {
	background: none;
	padding: 0;
	background-image: none;
	margin: 0 7px;
	height: 10px;
	width: 10px
}
section.modules_avis .avis #Guestbook .slick-dots li button {
	height: 10px;
	width: 10px
}
section.modules_avis .avis #Guestbook .slick-dots li button:before {
    content: "";
    font-size: 10px;
    color: transparent;
    opacity: 1;
    height: 10px;
    width: 10px;
    background: none;
    border: 1px solid #fff;
    border-radius: 50%;
}
section.modules_avis .avis #Guestbook .slick-dots li.slick-active button:before {
	color: #fff;
	background: #fff;
	opacity: 1
}
/*--------------------------------------------------
# Home page 8eme partie -> Partenaires
--------------------------------------------------*/
section.home_8 {
    position: relative;
    background: #fff;
    padding: 55px 0 60px;
    text-align: center;
}
.partenaires h2:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 50px;
    height: 2px;
    background: #3fc3ee;
}
.partenaires h2 {
    font-size: 38px;
    color: #004357;
    margin: 0 0 36px;
    padding: 0 0 15px;
    position: relative;
}
.partenaires .logos-grid {
    display: grid;
    grid-template-columns: repeat(4,auto);
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
    align-items: center;
}
.partenaires .logos-grid img {
    filter: grayscale(1);
    transition: all .4s;
    max-height: 47px;
    width: auto;
    object-fit: cover;
}
.partenaires .logos-grid img:hover {
    filter: grayscale(0);
}
/*--------------------------------------------------
# Home page 9eme partie -> Consultations ?
--------------------------------------------------*/
section.home_9 {
    position: relative;
    background: #004357;
    color: #fff;
    padding: 39px 0;
}
.consultations .open-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2,auto);
    justify-content: space-between;
    grid-gap: 20px;
    align-items: center;
}
.consultations .open-grid .open {
    display: flex;
    align-items: center;
    gap: 12px;
}
.consultations .open-grid .contact-bx a {
    font-size: 18px;
    font-weight: 400;
    background: none;
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 12px 36px;
    border-radius: 40px;
    transition: all .4s;
    height: auto;
    line-height: initial;
    border: 2px solid #3fc3ee;
	    position: relative;
}
.consultations .open-grid .contact-bx a:hover {
    font-size: 18px;
    font-weight: 400;
    background: none;
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 12px 36px;
    border-radius: 40px;
    transition: all .4s;
    height: auto;
    line-height: initial;
    border: 2px solid #3fc3ee;
	z-index: 1;
}
.consultations .open-grid .contact-bx a:hover:before {
    right: -3px;
}
.contact-bx a:before {
    content: '';
    position: absolute;
    z-index: -1;
    left: -1px;
    top: 0px;
    bottom: -1px;
    right: 100%;
    display: inline-block;
    background: #3fc3ee;
    transition: all .4s;
    border-radius: 40px;
}
/*--------------------------------------------------
# Generale Content
--------------------------------------------------*/
header.page-title span.subtitle {
    color: #3fc3ee;
    font-weight: 700;
    font-size: 15px;
    display: block;
    font-family: 'Lato', sans-serif;
    position: relative;
}
header.page-title span.subtitle:before {
    content: "";
    position: relative;
    display: inline-block;
    margin-right: 13px;
    width: 50px;
    height: 2px;
    background: #3fc3ee;
    margin-bottom: 4px;
}
hr {
    border-top: 1px solid #d1d1d1;
}
section.section-content {
    padding: 30px 0 40px;
	}
header.page-title {
	padding: 10px 0 20px;
}
header.page-title h1 {
	position: relative;
	margin: 0;
    padding-bottom: 0;
}

article.content {
	position: relative;

}
article.content p {
    margin-bottom: 15px;
}
article.content ul {
    padding-left: 10px;
}#site-map .site-map-box ul {
    padding-left: 1.5em;
}.site-map-box-menu.site-map-box-menu-main-menu.site-map-box a {
    text-decoration: none;
    color: #222;
    font-size: 18px;
}
#site-map .site-map-box ul strong a {
    font-size: 20px;
}
article.content ul li {
        list-style: none;
    padding-left: 20px;
    position: relative;
}
article.content ul li:not(.contact-field-option):before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    background: #3fc3ee;
    border-radius: 50%;
}
.page-sitemap .site-map-menu li {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.25em;
    padding: 10px 0;
}.page-sitemap .site-map-menu li a {
    color: #525050;
    opacity: 1;
}#site-map .site-map-box ul ul {
    margin: 0;
}.site-map-box-menu.site-map-box-menu-main-menu.site-map-box a:hover {
    color: #faac32;
}
article.content ul ul li {
    background: url(../images/list-icon02.png) no-repeat 0 5px;
    padding-left: 16px;
}
article.content .table-style {
	position: relative;
}
article.content .table-style th {
	background: #eee;
}
article.content .table-style th,
article.content .table-style td {
	border: 1px solid #ccc;
	padding: 2px 5px;
}
.globule-block-content .row {
    margin: 0;
}
section.section-content article.content img {
    max-width: 100%;
    height: auto;
}
article.content img.logo-Landbouw {
    border: 1px solid #ccc;
    margin: 5px 2px;
}
.block-boxes .page4:hover .text-box, .block-boxes .page5:hover .text-box, .block-boxes .page6:hover .text-box {
       background: #faac32;
}.content__text .row {
    margin: 0;
}div#content .row {
    margin: 0;
}
/*--------------------------------------------------
# page Nos marques
--------------------------------------------------*/
.marquesTemplate section.banner {
    height: 420px;
}
.marquesTemplate section.banner .diy-slideshow figure:before {
    background: rgb(0 67 87 / 60%);
}
.marquesTemplate section.banner .container {
    top: 50%;
    transform: translateY(-50%);
	text-align: center;
}
.box-breadcrumbs .breadcrumbs {
    margin: 10px 0 0;
    position: relative;
	    color: #3fc3ee;
}
.box-breadcrumbs .breadcrumbs i {
    margin: 0px 5px 0;
    line-height: 1em;
}
.box-breadcrumbs .breadcrumbs a:first-of-type {
    position: relative;
}
.box-breadcrumbs .breadcrumbs a:first-of-type:before {
    font-family: FontAwesome;
    position: relative;
    left: 0;
    font-size: 20px;
    color: #3fc3ee;
    content: "\f015";
    margin-right: 12px;
}
.box-breadcrumbs .breadcrumbs a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}
.box-breadcrumbs .breadcrumbs a:hover {
    color: #3fc3ee;
}

/************ Content ****************/
section.marques-content {
    padding: 62px 0;
    position: relative;
}
section.marques-content .merken-grid {
    display: grid;
    grid-template-columns: 20% 80%;
}
section.marques-content .merken-grid {
    display: grid;
    grid-template-columns: 360px auto;
    grid-gap: 78px;
}
section.marques-content:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: calc(((100% - 1240px) / 2) + 360px);
    background: #f8f9fa;
}
section.marques-content .merken-grid .sidebar {
    z-index: 1;
	    padding: 0 70px 0 0;
}
section.marques-content .merken-grid .sidebar ul.menu-merken {
    list-style: none;
    padding: 0;
    margin: 0;
}
section.marques-content .merken-grid .sidebar ul.menu-merken li {
    border-bottom: 1px solid #e1e3e4;
}
section.marques-content .merken-grid .sidebar ul.menu-merken li a {
    font-size: 16px;
    font-weight: 700;
    color: #2b343b;
    text-decoration: none;
    padding: 17px 40px 17px 30px;
    background: #fff;
    width: 100%;
    display: block;
    transition: all .4s;
	z-index: 1;
	    position: relative;
}
section.marques-content .merken-grid .sidebar ul.menu-merken li a:before {
    content: '';
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    display: inline-block;
    background: #3fc3ee;
    transition: width .4s;
}
section.marques-content .merken-grid .sidebar ul.menu-merken li a:hover:before, section.marques-content .merken-grid .sidebar ul.menu-merken li.selected a:before {
    width: 100%;
}
section.marques-content .merken-grid .sidebar ul.menu-merken li a:hover, section.marques-content .merken-grid .sidebar ul.menu-merken li.selected a {
    color: #fff;
}
section.marques-content .merken-grid .sidebar ul.menu-merken li a:after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-size: 12px;
    font-weight: 700;
    margin-left: 6px;
    transition: all .4s;
    position: absolute;
    right: 30px;
}
/********** news ***********/
section.marques-content .merken-grid .sidebar .news-sidebar {
    margin: 55px 0;
}
section.marques-content .merken-grid .sidebar h5 {
    font-size: 20px;
    margin: 0 0 25px;
    color: #004357;
    padding: 0 0 17px;
    border-bottom: 1px solid rgb(134 137 140 / 20%);
    position: relative;
}
section.marques-content .merken-grid .sidebar h5:after {
    content: "";
    position: absolute;
    left: 0;
    width: 53px;
    height: 3px;
    background: #3fc3ee;
    bottom: -2px;
}

section.marques-content .merken-grid .sidebar .news-sidebar div#news-footer figure.Item.box h3 {
    color: #2b343b;
}
section.marques-content .merken-grid .sidebar .news-sidebar div#news-footer figure.Item.box:hover h3 {
    color: #3fc3ee;
}
section.marques-content .merken-grid .sidebar div#news-footer figure.Item.box:not(:last-child) {
    border-bottom: 1px solid rgb(134 137 140 / 20%);
}
.pub-marq section.marques-content .merken-grid .partenaires-sidebar img {
    filter: grayscale(0);
}
.pub-marq section.marques-content .merken-grid .partenaires-sidebar img:hover {
    filter: grayscale(1);
}
/******* contact ************/
section.marques-content .merken-grid .sidebar .contact-sidebar i {
    width: 30px;
    font-size: 14px;
    color: #3fc3ee;
}
section.marques-content .merken-grid .sidebar .contact-sidebar {
    white-space: nowrap;
}
section.marques-content .merken-grid .sidebar .contact-sidebar p {
    margin: 0 0 5px;
}
section.marques-content .merken-grid .sidebar .contact-sidebar .open-hours {
    padding-left: 30px;
    position: relative;
	    color: #2b343b;
}
section.marques-content .merken-grid .sidebar .contact-sidebar .open-hours i {
    position: absolute;
    left: 0;
    top: 7px;
}
section.marques-content .merken-grid .sidebar .contact-sidebar a {
    color: #2b343b;
}
/*********** Partenaires **********/
section.marques-content .merken-grid .partenaires-sidebar {
    padding-left: 0;
    margin: 60px 0 0;
}
section.marques-content .merken-grid .partenaires-sidebar img {
    filter: grayscale(0);
    transition: all .4s;
	    max-width: 100%;
}
section.marques-content .merken-grid .partenaires-sidebar img:hover {
    filter: grayscale(1);
}
section.marques-content .merken-grid .partenaires-sidebar .slick-dots li button {
    display: none;
}
section.marques-content .merken-grid .partenaires-sidebar .slick-dots li {
    width: 8px;
    height: 8px;
    background: rgb(63 195 238 / 70%);
    border-radius: 50%;
        margin: 0 2px;
}
section.marques-content .merken-grid .partenaires-sidebar .slick-dots li.slick-active, section.marques-content .merken-grid .partenaires-sidebar .slick-dots li:hover {
    background: rgb(63 195 238 / 100%);
}
section.marques-content .merken-grid .partenaires-sidebar .slick-dots {
    bottom: -60px;
    text-align: center;
}
.row.bloc-print-none div#ContainerBlockSocial > span {
    display: none;
}
section.modules.modules-intern h2 {
    border: none !important;
    margin: 0 0 20px !important;
    padding: 0 !important;
}
/******** General content ************/
article.content img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}
.marques-content .image-marque {
    margin: 0 0 25px;
}
.marques-content header.page-title {
    padding: 0 0 15px;
}
.marques-content header.page-title h1 {
    font-size: 32px;
    color: #2b343b;
}
.marques-content .image-marque img {
    max-height: 300px;
    width: 100%;
    object-fit: cover;
    height: 100%;
}
.marques-content header.page-title h1 span.subtitle, .page-content header.page-title h1 span.subtitle {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.1em;
}
.marques-content .mk-employees.mk-shortcode.three-column.classic-style img.img-responsive {
    height: 300px;
}
/*.marques-content header.page-title h1 span.subtitle:before {
    display: none;
}*/
.marques-content h2 {
    border-top: 1px solid rgb(134 137 140 / 20%);
    margin: 25px 0 0;
    padding: 25px 0 0;
}
/*--------------------------------------------------
# page Blog
--------------------------------------------------*/
.blogTemplate section.banner {
    height: 420px;
}
.blogTemplate section.banner .diy-slideshow figure:before {
    background: rgb(0 67 87 / 90%);
}
.blogTemplate section.banner .container {
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}
.blogTemplate section.banner .container h3 {
    color: #fff;
    font-size: 60px;
    margin: 0 0 0;
}
section.blog-content::before {
    left: auto;
    right: 0;
}
.sponsorTemplate section.marques-content:before{
    display:none;
}
section.blog-content .blog-grid {
    grid-template-columns: auto 360px;
	    position: relative;
		grid-gap:50px;
}
.sponsorTemplate section.blog-content .blog-grid {
    display: block;
}
section.blog-content .blog-grid .sidebar {
    order: 2;
    padding: 0 85px 0 35px;
}

section.blog-content .blog-grid .blog-content {
    order: 1;
}
section.blog-content .blog-grid .categories-sidebar figure.Item.box .photo img {
    width: 100%;
    height: 412px;
    object-fit: cover;
	    transition: all .8s;
}
section.blog-content .blog-grid .categories-sidebar figure.Item.box {
    background: #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / 6%);
    margin: 0 0 47px;
	position: relative;
}
section.blog-content .blog-grid .categories-sidebar figure.Item.box:hover .photo img {
    transform: scale(1.5);
}
section.blog-content .blog-grid .categories-sidebar figure.Item.box figcaption {
    padding: 30px 50px 40px;
}
section.blog-content .blog-grid .categories-sidebar figure.Item.box .date {
    float: left;
    font-size: 15px;
    color: #86898c;
    position: relative;
	    padding-left: 22px;
}
section.blog-content .blog-grid .categories-sidebar figure.Item.box .adr-news i {
    font-size: 16px;
    color: #3fc3ee;
    margin: 0 7px 0 0;
}
section.blog-content .blog-grid .categories-sidebar figure.Item.box .adr-news {
    float: right;
    position: relative;
    padding-left: 22px;
}
section.blog-content .blog-grid .categories-sidebar figure.Item.box .date:before {
    content: "\f073";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    font-size: 17px;
    color: #3fc3ee;
}
section.blog-content .blog-grid .categories-sidebar figure.Item.box .top-news {
    display: table;
    width: 100%;
    border-bottom: 1px solid rgb(134 137 140 / 20%);
    padding: 0 0 12px;
}
section.blog-content .blog-grid .categories-sidebar figure.Item.box h3 {
    font-size: 26px;
    color: #3fc3ee;
    margin: 20px 0 15px;
}
section.blog-content .blog-grid .categories-sidebar figure.Item.box h3 span.subtitle {
    font-size: 18px;
    display: block;
}
section.blog-content .blog-grid .categories-sidebar figure.Item.box a {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    outline: none;
}
section.blog-content .blog-grid .categories-sidebar figure.Item.box .photo {
    overflow: hidden;
    position: relative;
}
/*******/
section.blog-content .blog-grid .sidebar .signature {
    text-align: center;
}
section.blog-content .blog-grid .sidebar .signature .image-blog {
    border: 6px solid #fff;
    border-radius: 50%;
}
section.blog-content .blog-grid .sidebar .signature h5:after {
    display: none;
}
section.blog-content .blog-grid .sidebar .signature h5 {
    font-size: 24px;
    color: #004357;
    margin: 24px 0 15px;
    padding: 0;
    border: none;
}
section.blog-content .blog-grid .sidebar .signature img.signature {
    margin: 5px 0 45px;
}
.sponsorTemplate .categories-sidebar {
    margin-top: 30px;
}

/*********/
section.blog-content .blog-grid .sidebar .searchForm {
    width: 100%;
	position: relative;
}
section.blog-content .blog-grid .sidebar .searchForm input#tags {
    height: 46px;
    border: none;
    width: 100%;
    padding: 10px 40px 10px 20px;
}
section.blog-content .blog-grid .sidebar .searchForm input#BtnSearch {
    width: 16px;
    height: 16px;
    position: absolute;
    right: 20px;
    background: url(../../images/new-images/search2.png) no-repeat center;
    top: 16px;
}
section.blog-content .blog-grid .sidebar .searchForm label.labrel-search {
    display: none;
}
section.blog-content .blog-grid .sidebar .searchForm input#tags::placeholder {
    color: #222;
}
section.blog-content .merken-grid .partenaires-sidebar {
    padding-left: 0;
}
/*************/
.categories-sidebar [class*="holder"] a {
    width: 47px;
    height: 47px;
    border: 3px solid #004357;
    display: table;
    color: #004357;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    margin: 0 2px;
    border-radius: 50%;
    line-height: 37px;
    position: relative;
    padding: 1px 0 0;
}
.categories-sidebar [class*="holder"] > span {
    line-height: 37px;
}
.categories-sidebar [class*="holder"] {
    text-align: center;
	    display: flex;
    justify-content: center;
}
.categories-sidebar [class*="holder"] a.jp-current, .categories-sidebar [class*="holder"] a:hover {
    border-color: #3fc3ee;
    background: #3fc3ee;
    color: #fff;
}
.categories-sidebar [class*="holder"] a.jp-previous:before {
content: "\f053";
font-family: FontAwesome;
position: absolute;
left: 0;
font-size: 16px;
color: #004357;
top: 0;
right: 0;
    line-height: 41px;
}

.categories-sidebar [class*="holder"] a.jp-next:before {
content: "\f054";
font-family: FontAwesome;
position: absolute;
left: 0;
font-size: 16px;
color: #004357;
top: 0;
right: 0;
    line-height: 41px;
}
.categories-sidebar [class*="holder"] a.jp-previous, .categories-sidebar [class*="holder"] a.jp-next {
    font-size: 0;
}
/**********/
.categories-sidebar ul.etabs li {
     float: left;
    display: inline-block;
    margin: 0 5px 0 0;
}
.categories-sidebar ul.etabs {
    list-style: none;
    padding: 0;
	    display: table;
    margin: 0 0 20px;
}
.categories-sidebar ul.etabs li a {
    background: #004357;
    color: #fff;
    padding: 7px 10px 10px;
    text-decoration: none;
    border-radius: 6px;
    transition: all .4s;
}
.categories-sidebar ul.etabs li a:hover, .categories-sidebar ul.etabs li a.active {
    background: #3fc3ee;
}
/*--------------------------------------------------
# page press-kit
--------------------------------------------------*/
.press-kit {
    background: #eee;
    padding: 30px;
}
/*--------------------------------------------------
# page Sponsoring
--------------------------------------------------*/
article.content #New-Sponsoring {
    margin-top: 30px;
}
article.content #New-Sponsoring figure.Item {
    position: relative;
    display: grid;
grid-template-columns: .5fr 30px 1fr;
    grid-template-rows: 20px 1fr 20px;
    margin-bottom: 30px;
}
article.content #New-Sponsoring figure.Item .photo {
    grid-column: 1 / 3;
    grid-row: 1 / 4;
    position: relative;
box-shadow: 0px 0px 7px rgb(0 0 0 / 10%);
    transition: box-shadow .4s;
	    overflow: hidden;
}
article.content #New-Sponsoring figure.Item:hover .photo {
    /*box-shadow: 20px -20px 0px rgba(255,255,255,.05);*/
}
article.content #New-Sponsoring figure.Item .photo.nophoto {
    background: #003646 url(../images/logo-proximedia-footer.png) no-repeat center;
    box-shadow: 0px 0px 0px rgb(255 255 255 / 10%);
}
article.content #New-Sponsoring figure.Item:hover .photo img {
    transform: scale(1.3);
}
article.content #New-Sponsoring figure.Item .photo img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    object-fit: cover;
    height: 100%;
    width: 100%;
    display: block;
	    transition: all .4s;
}
article.content #New-Sponsoring figure.Item figcaption {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
    z-index: 5;
	background: #eee;
    padding: 50px 50px;
}
article.content #New-Sponsoring figure.Item figcaption h3 {
margin: 0 0 15px;
    color: #003646;
}
article.content #New-Sponsoring figure.Item figcaption a.button {
    color: #004357;
    border: 1px solid #004357;
    display: table;
    margin: 40px 0 0;
    font-weight: 300;
    text-decoration: none;
    font-size: 15px;
    text-transform: uppercase;
    padding: 10px 35px;
    transition: all .4s;
    z-index: 1;
}
article.content #New-Sponsoring figure.Item figcaption a.button::before {
content: '';
    position: absolute;
    left: 0;
    right: 0;
    transition: all .4s;
    top: 0;
    bottom: 0;
}
article.content #New-Sponsoring figure.Item figcaption a.button:hover {
	color:#fff;
	border-color:#3fc3ee;
	background: #3fc3ee;
}
/*--------------------------------------------------
# page Detail Blog
--------------------------------------------------*/
section.modules {
    padding: 50px 80px;
    background-size: cover;
    color: #777;
    overflow: hidden;
}
section.modules.modules-intern {
    padding: 0;
    background: none;
}
section.modules h2 {
    text-align: center;
    padding-bottom: 50px;
    color: #fff;
    text-transform: uppercase;
    font-size: 50px;
}
section.modules.modules-intern h2 {
    text-align: left;
    padding-bottom: 0;
    color: #004457;
    font-size: 22px;
    text-transform: initial;
}

article #AllNews .NewsItem,
article #NewsItems .NewsItem,
article .NewsMasonry .NewsItem {
    background: #f2f2f2;
    color: #777;
    padding: 10px;
    margin: 10px;
    width: 45%;
    float: left;
}
section.modules article .NewsMasonry .NewsItem {
    width: 31.5%;
    position: relative;
    min-height: 300px;
    padding: 0;
    overflow: hidden;
}
section.modules article .NewsMasonry .NewsItem .photo {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}
section.modules article .NewsMasonry .NewsItem .newsInfo {
    padding: 15px;
}
section.modules article .NewsMasonry .NewsItem .newsInfo .date {
    color: #5faac8;
    position: relative;
    padding-bottom: 5px;
}
section.modules article .NewsMasonry .NewsItem .newsInfo .date::after {
    content:"";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 1px;
    background: #5faac8;
}
section.modules article .NewsMasonry .NewsItem .newsInfo .date i {
    margin-right: 5px;
}
section.modules article .NewsMasonry .NewsItem .newsInfo h5.news-title {
    margin: 15px 0;
    font-size: 18px;
    line-height: 23px;
}
section.modules.modules-intern article .NewsMasonry .NewsItem .newsInfo h5.news-title {
    min-height: 70px;
}
section.modules article .NewsMasonry .NewsItem .newsInfo h5.news-title span.subtitle {
    font-weight: normal;
    font-size: 16px;
}
section.modules article .NewsMasonry .NewsItem .newsInfo p {
    color: #333;
}
section.modules article .NewsMasonry .NewsItem .newsInfo span.readmore {
    background: #004457;
    color: #fff;
    padding: 6px 15px;
    display: inline-block;
    transition: all .6s;
}
section.modules article .NewsMasonry .NewsItem:hover .newsInfo span.readmore {
    background: #5faac8;
    box-shadow: 0 5px 20px rgba(0,0,0,.25);
}
section.modules article .NewsMasonry .NewsItem a.linkNews {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
}
/***********/
article.content #ContainerBlockSocial a.at300b:before {
    opacity: 0;
}
article.content #ContainerBlockSocial a.at300b span {
    background: none;
    background: #004457;
    color: #fff;
    text-align: center;
    transition: all .6s;
}
article.content #ContainerBlockSocial a.at300b span:hover {
    background: #5faac8;
}
article.content #ContainerBlockSocial a.at300b span.at15t_email:before {
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900;
	content: '\f0e0';
}
article.content #ContainerBlockSocial a.at300b span.at15t_facebook:before {
    font-family: "Font Awesome 5 Brands"; 
    font-weight: 400;
	content: '\f39e';
}
article.content #ContainerBlockSocial a.at300b span.at15t_twitter:before {
    font-family: "Font Awesome 5 Brands"; 
    font-weight: 400;
	content: '\f099';
}
article.content #ContainerBlockSocial a.at300b span.at15t_linkedin:before {
    font-family: "Font Awesome 5 Brands"; 
    font-weight: 400;
	content: '\f0e1';
}
article.content #ContainerBlockSocial a.at300b span.at15t_pinterest_share:before {
    font-family: "Font Awesome 5 Brands"; 
    font-weight: 400;
	content: '\f231';
}
/*--------------------------------------------------
# page Contact
--------------------------------------------------*/
.contactTemplate section.banner {
    height: 420px;
	
}
.contactTemplate section.banner .diy-slideshow figure:before {
    background: rgb(0 67 87 / 90%);
}
.contactTemplate section.banner .container {
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}
.contactTemplate section.banner .container h3,
.devis-template section.banner .container h3{
    color: #fff;
    font-size: 60px;
    margin: 0 0 0;
}
section.contact-content:before {
	display:none;
}
section.contact-content .contact-grid .sidebar h5 {
    font-size: 32px;
}
section.contact-content .contact-grid .sidebar .social-sidebar {
    margin-top: 45px;
}
section.contact-content .contact-grid .sidebar .social-sidebar .networks_linking a {
    width: 38px;
    height: 38px;
    line-height: 38px;
    background: #004357!important;
    color: #fff !important;
}
section.contact-content .contact-grid .sidebar .social-sidebar .networks_linking a:hover {
    background: #3fc3ee!important;
    color: #fff !important;
}
/************** FAQs ******************/
section.faqs-contact {
    position: relative;
   /*padding: 55px 0;
    background: #f8f9fa;*/
}
section.faqs-contact h2:after {
    content: "";
    position: relative;
    display: block;
    width: 54px;
    height: 3px;
    background: #3fc3ee;
    margin: 15px auto 0;
}
section.faqs-contact h2 {
    font-size: 32px;
    text-align: center;
    margin: 0 0 32px;
    position: relative;
    color: #004357;
}
/*** Accordeon ***/
div#news-faqs figure.Item.box {
    border-bottom: 1px solid rgb(134 137 140 / 40%);
	    cursor: pointer;
}
div#news-faqs .box_acc h3 {
    background: #e4e4e4;
    display: block;
    color: #2b343b;
    margin: 0;
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    padding: 22px 63px 22px 50px;
    position: relative;
    transition: all .4s;
}
div#news-faqs .box_acc h3:after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-size: 16px;
    right: 50px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 20px;
    transition: all .4s;
}
div#news-faqs .box_acc.opendiv h3:after {
    content: "\f077";
}
div#news-faqs .box_acc:hover h3, div#news-faqs .box_acc.opendiv h3 {
    color: #fff;
	background:#3fc3ee;
}
div#news-faqs figure.Item.box .show_me_acc p:last-of-type {
    margin: 0;
}
div#news-faqs figure.Item.box .show_me_acc {
    background:#f1f1f1;
    padding: 25px 50px;
}
/************* Maps **************/
section.maps-contact {
    height: 400px;
    position: relative;
}
section.maps-contact .box_googlemapsv2 iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
/*--------------------------------------------------
# Default pages
--------------------------------------------------*/
.pageTemplate section.banner {
    height: 420px;
	    z-index: 1;
}
.pageTemplate section.banner .diy-slideshow figure:before {
    background: rgb(0 67 87 / 60%);
}
.pageTemplate section.banner .container {
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}
.pageTemplate section.banner .container h3 {
    color: #fff;
    font-size: 60px;
    margin: 0 0 0;
}
section.page-content {
    padding: 62px 0;
    position: relative;
}
/* Subpages training */
section.content .tab-content {
    background: #eee;
    padding: 20px;
    border: 1px solid;
    border-color: #eee #dee2e6 #dee2e6 #dee2e6;
}
.nav-tabs a.nav-link {
    text-decoration: none;
}
.fade.show {
    opacity: 1 !important;
}
div#nav-tab {
     display: flex;
    margin: 20px 0 0;
}
div#nav-tab a {
    background: #004357;
    color: #fff;
    font-weight: 700;
    margin: 0 5px 0 0;
    border-radius: 5px 5px 0 0;
    padding: 5px 10px;
}
div#nav-tab a:hover, div#nav-tab a.active {
    background: #3fc3ee;
    color: #fff;
}
.tab-content>.tab-pane {
    background: #f4f4f4;
    padding: 20px;
    border: 1px solid;
    border-color: #eee #dee2e6 #dee2e6 #dee2e6;
}
.pageTemplate article.content h2 {
    /*border-top: 1px solid rgb(134 137 140 / 20%);*/
    /*margin: 45px 0 10px;*/
    margin: 25px 0 10px;
    padding: 25px 0 0;
}
.lin-rdv a {
    font-size: 18px;
    font-weight: 400;
    background: none;
    color: #3fc3ee;
    text-decoration: none;
    display: table;
    padding: 16px 36px;
    border-radius: 40px;
    transition: all .4s;
    height: auto;
    margin: 20px 0 0;
    line-height: initial;
    position: relative;
    border: 2px solid #3fc3ee;
}
.lin-rdv a:hover {
	color:#fff;
    border: 2px solid #004357;
}
.lin-rdv a:before {
    content: '';
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0px;
    bottom: -1px;
    right: 100%;
    display: inline-block;
     background: #004357;
    transition: all .4s;
    border-radius: 40px;
}
.lin-rdv a:hover:before {
    right: 0;
}
/**************************
		News Bio
************************/
section.home-news.page-news {
    background: none;
    padding: 0;
}
section.home-news #Bio {
    display: grid;
    grid-gap: 50px;
    width: 100%;
    position: relative;
    padding: 50px 0;
}
section.home-news #Bio:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    width: 2px;
    top: 0;
    bottom: 0;
    background: #004357;
    margin: auto;
}

section.home-news #Bio figure.Item figcaption a.website-part {
    text-align: right;
    width: 100%;
    display: table;
    margin: 0 0 10px;
    text-transform: uppercase;
    font-weight: 700;
}
section.home-news #Bio figure.Item figcaption a.website-part:hover {
	color: #222;
}

section.home-news #Bio figure.Item .photo {
    position: relative;
    height: 100%;
}
section.home-news #Bio figure.Item .photo img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    object-fit: cover;
    height: 100%;
    width: 100%;
    display: block;
}
section.home-news #Bio > figure:nth-child(5) > div > img {
    max-height: 460px;
}
section.home-news #Bio figure.Item figcaption {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
}
section.home-news #Bio figure.Item .date {
    color: rgb(0 67 87 / 20%);
    font-size: 90px;
    font-weight: 700;
    position: relative;
    line-height: 1.2em;
    margin: 0 0 10px;
    position: absolute;
    top: -80px;
    font-family: 'Lato', sans-serif;
    left: 20px;
}
section.home-news #Bio figure.Item .date:before {
    content: "";
    position: absolute;
    left: -85px;
    width: 65px;
    height: 2px;
    background: #004357;
    top: 67px;
}
section.home-news #Bio figure.Item .date:after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: #004357;
    border-radius: 50%;
    left: -89px;
    top: 64px;
}
section.home-news #Bio figure.Item:nth-child(even) figcaption {
    text-align: right;
}
section.home-news #Bio figure.Item:nth-child(even) .date {
    text-align: right;
	    right: 20px;
}
section.home-news #Bio figure.Item:nth-child(even) .date:before {
    left: auto;
    right: -85px;
}
section.home-news #Bio figure.Item:nth-child(even) .date:after {
    left: auto;
    right: -89px;
}

section.home-news #Bio figure.Item figcaption p {
    margin: 0;
}
section.home-news #Bio figure.Item a.button {
    font-size: 0;
    line-height: 0;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    outline: none;
    z-index: 10;
}
section.home-news #Bio figure.Item {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 130px;
}
section.home-news #Bio figure.Item:last-child figcaption {
    padding-bottom: 30px;
}
section.home-news #Bio figure.Item .photo.nophoto {
    background: #f4f4f4;
    padding: 20px;
}
section.home-news #Bio figure.Item .photo.nophoto img {
    object-fit: scale-down;
}
section.home-news #Bio figure.Item:nth-child(odd) figcaption {
    grid-column: 2 / 2;
}
/***********/
section.home-news #Bio .bloc2 {
    margin-top: 330px;
}
header.page-title.title-partners {
    float: right;
    width: 50%;
    margin-bottom: -130px !important;
}
#footerSlideContainer {
    display: none;
}
/****************/
.pageTemplate article.content .col-form.form-avis h2 {
    border: none;
    margin: 0 0 10px;
    padding: 0;
}
.col-form.form-avis {
    margin-top: -79px;
}
/*--------------------------------------------------
# page Struture
--------------------------------------------------*/
.mk-employees.mk-shortcode.three-column.classic-style {
    margin-bottom: 30px;
	    display: table;
    width: 100%;
        margin-top: 35px;
}
.mk-employees.mk-shortcode.three-column.classic-style img.img-responsive {
    width: 100%;
    height: 390px;
    object-fit: cover;
}
.mk-employees.mk-shortcode.three-column.classic-style ul.mk-employeee-networks {
    list-style: none;
    position: absolute;
    bottom: -150px;
    margin-top: -20px;
    text-align: center;
    left: 50px;
    z-index: 1;
    transition: .5s ease;
    right: 50px;
    background: #3fc3ee;
    padding: 5px 10px;
}
.mk-employees.mk-shortcode.three-column.classic-style ul.mk-employeee-networks li:before {
    display: none;
}
.mk-employees.mk-shortcode.three-column.classic-style ul.mk-employeee-networks li {
    display: inline-block;
    margin: 0 auto;
    background: none;
    padding: 0;
}
.mk-employees.mk-shortcode.three-column.classic-style ul.mk-employeee-networks a {
    position: relative;
    font-size: 0;
    margin: 0 3px;
    display: inline-block;
    width: 30px;
    height: auto;
}
.mk-employees.mk-shortcode.three-column.classic-style ul.mk-employeee-networks a.mail-team:before {
content: "\f0e0";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    font-size: 22px;
    color: #004357;
    width: auto;
    height: auto;
    border-radius: 50%;
    line-height: initial;
    transition: all .4s;
}
.mk-employees.mk-shortcode.three-column.classic-style ul.mk-employeee-networks a.linkedin-team:before {
    content: "\f0e1";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    font-size: 22px;
    color: #004357;
    width: auto;
    height: auto;
    border-radius: 50%;
    line-height: initial;
    transition: all .4s;
}
.mk-employee-item > div:first-of-type {
    position: relative;
	overflow: hidden;
}	
.mk-employee-item > div > a:first-of-type:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    /*background: rgb(0 0 0 / 20%);*/
    transition: all .4s;
}
.mk-employee-item:hover > div:first-of-type a:after {
    background: rgb(0 0 0 / 30%);
}
.team-info-wrapper {
    text-align: center;
    margin: 10px 0 0;
}
.team-info-wrapper span.team-member-name {
    font-weight: 700;
    display: block;
    font-size: 1.1em;
	    color: #004357;
}
.mk-employee-item {
    display: table;
}
article.content .logo-brands {
    max-width: 70%;
    margin: 0 auto;
}
.mk-employees.mk-shortcode.three-column.classic-style ul.mk-employeee-networks a.linkedin-team:hover:before, 
.mk-employees.mk-shortcode.three-column.classic-style ul.mk-employeee-networks a.mail-team:hover:before {
	color: #fff;
	border-color:#fff;
}
.mk-employees.mk-shortcode.three-column.classic-style .mk-employee-item:hover ul.mk-employeee-networks {
    bottom: 10px;
}
/*******/
.logo-brands a img {
    transition: all .4s;
}
.logo-brands a:hover img {
    transform: scale(1.2);
}
/*--------------------------------------------------
# Generale Content - module news
--------------------------------------------------*/
article.content div#blogPage{
	position: relative;
}
article.content figure.news-item {
    border-top: 1px solid #ccc;
    position: relative;
    opacity: 1;
    height: 100%;
    overflow: hidden;
    -webkit-transition: opacity .4s, height .4s;
    transition: opacity .4s, height .4s;
    background: #efefef9e;
}
article.content figure.news-item .news-item-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-gap: 15px;
    padding: 10px;
    margin-bottom: 0;
}
article.content figure.news-item .news-item-wrapper .photo {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}
article.content figure.news-item .news-item-wrapper .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
article.content figure.news-item .news-item-wrapper figcaption {
    position: relative;
    padding-bottom: 64px;
}
article.content figure.news-item .news-item-wrapper figcaption h3 {
    font-size: 18px;
    margin: 7px 0 5px;
    font-weight: 600;
    color: #faac32;
}
article.content figure.news-item .news-item-wrapper figcaption .date {
    font-size: 16px;
    margin: 0 0 5px;
    font-weight: 600;
    color: #882a14;
}
article.content figure.news-item .news-item-wrapper figcaption p.button {
    background: #e59a02;
    color: #fff;
    padding: 8px 15px;
    transition: all .6s;
    display: inline-block;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    position: absolute;
    bottom: 0;
    -webkit-transition: background .4s;
    transition: background .4s;
}
article.content figure.news-item .news-item-wrapper a {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
#news-categories .news-category-list.active {
    text-decoration: none;
    background-color: #eee;
}

#news-categories .news-category-list {
    background: none;
    padding: 5px 10px;
    line-height: 1.2em;
    border-radius: 3px;
    display: inline-block;
    transition: background-color .4s;
}#news-categories {
    text-align: center;
    margin-bottom: 20px;
}
article.content figure.news-item:hover {
    background: #faac320a;
}
article.content figure.news-item:hover .news-item-wrapper figcaption p.button {
    background: #3fc3ee;
}

article.content figure.news-item .news-item-wrapper.nophoto {
    grid-template-columns: 1fr;
    height: auto;
}
/* ---------------- */
article.content .datenew {
    margin-bottom: 30px;
}
.NewsItemBackground {
    position: absolute;
    height: 100%;
    background: no-repeat center;
    background-size: cover;
    width: 100%;
}
.NewsItemBackground:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
}
article.content a.back {
    background: #004357;
    color: #fff;
    padding: 8px 15px 10px;
    text-decoration: none;
    transition: background .6s;
}
article.content a.back:hover {
    background: #3fc3ee;
    text-decoration: none;
}
article.content .backNews {
    text-align: right;
}
article.content div#ContainerBlockSocial p {
    margin: 0;
    display: none;
}
/*****/
.marketing .marketing-slider .date {
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: 100px;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    font-size: 16px;
    z-index: 5;
}
.marketing .marketing-slider .date .day, .marketing .marketing-slider .date .year {
    display: block;
    text-align: center;
    background: #5faac8;
    color: #fff;
    padding: 5px 0;
}
.marketing .marketing-slider .date .month {
    display: block;
    text-align: center;
    background: #004457;
    color: #fff;
    padding: 5px 0;
}
.pageTemplate section.banner section.marketing .container {
    top: 0;
    transform: translateY(0%);
    height: 100%;
}
section.marketing a.print {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: #fff;
    color: #333;
    padding: 10px 20px;
    cursor: pointer;
    box-shadow: 0 5px 30px rgb(0 0 0 / 25%);
    transition: all .6s;
    z-index: 100;
}
section.marketing a.print:hover {
    background: #004457;
    color: #fff;
}
/***********/
.devis-template .merken-grid .sidebar {
    display: none;
}
.devis-template .merken-grid {
    display: block !important;
}
.devis-template section.marques-content:before{
	display:none
}
.devis-template .marques-content .image-marque {
    display: none;
}
/*--------------------------------------------------
# Generale - module newsfeed - page blog
--------------------------------------------------*/
article.content #news-items > .news-item {
    border-top: 1px solid #ccc;
    -webkit-transition: opacity .4s, height .4s;
    transition: opacity .4s, height .4s;
}
article.content #news-items > .news-item .news-item-wrapper{
	padding: 10px;
    margin-bottom: 0;
}
article.content #news-items > .news-item .news-item-wrapper .news-item-content {
    position: relative;
    padding-bottom: 64px;
}
article.content #news-items > .news-item .news-item-wrapper h3.news-item-title {
    font-size: 18px;
    font-family: 'Raleway';
    margin: 7px 0 5px;
    font-weight: 600;
    color: #faac32;
}
article.content #news-items > .news-item .news-item-wrapper h5.news-item-date{
	font-size: 16px;
    font-family: 'Raleway';
    margin: 0 0 5px;
    font-weight: 600;
    color: #827575;
}
.lang-fr article.content #news-items > .news-item .news-item-wrapper .news-item-content::after {
    content: "Lire plus";
}
.lang-nl article.content #news-items > .news-item .news-item-wrapper .news-item-content::after {
    content: "Lees meer";
}
article.content #news-items > .news-item .news-item-wrapper .news-item-content::after {
    background: #827574;
    color: #fff;
    padding: 8px 15px;
    -webkit-transition: background .4s;
    transition: background .4s;
	display: inline-block;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 14px;
	font-weight: 600;
	    margin-bottom: 15px;
    position: absolute;
    bottom: 0;
}

article.content #news-items > .news-item:hover{
    background: #efefef;
}
article.content #news-items > .news-item:hover .news-item-wrapper .news-item-content::after {
    background: #3fc3ee;
}
/* ----------------------------------------------
 * Generated by Animista on 2021-8-11 11:8:51
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation rotate-center
 * ----------------------------------------
 */
@-webkit-keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

section.home_1 .solutionBox-container:not(:hover)> .solutionBox:first-child .solutionBox-txt, section.home_1 .solutionBox:hover .solutionBox-txt{
    background-color: #3fc3ee;
    color: #fff;
}


section.home_1 .solutionBox-container:not(:hover)>.solutionBox:first-child h2, section.home_1 .solutionBox:hover h2{
    color: #3fc3ee;
}
section.home_1 .solutionBox-container:not(:hover)> .solutionBox:first-child .solutionBox-icon, section.home_1 .solutionBox:hover .solutionBox-icon {
-webkit-animation: rotate-center 0.6s ease-in-out both;
	        animation: rotate-center 0.6s ease-in-out both;
}


/*--------------------------------------------------
# Footer
--------------------------------------------------*/
footer.bottom {
    position: relative;
    background: #003646;
    color: #fff;
    padding: 90px 0;
}
footer.bottom .footer1 {
    padding: 126px 0 86px;
    line-height: 1.8;
}
footer.bottom h4 {
    color: #3fc3ee;
    margin: 0 0 6px;
    padding: 0 0 13px 0;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Prata', serif;
}
footer.bottom .footer-wrapper {
    display: grid;
    grid-template-columns: repeat(4,auto);
    justify-content: space-between;
	grid-gap: 30px;
}
footer.bottom .footer-wrapper .footer-left img {
    max-width: 100%;
    margin: 0 0 25px;
}
footer.bottom .footer-wrapper .bloc-contact {
    border-top: 1px solid rgb(255 255 255 / 20%);
    margin: 15px 0 0;
    padding: 20px 0 0;
}
footer.bottom .footer-wrapper .bloc-contact i {
min-width: 26px;
font-size: 14px;
color: #3fc3ee;
}
footer.bottom .footer-wrapper .bloc-contact p {
    margin: 0;
}
footer.bottom .bloc-contact a{
	color :#fff;
}
footer.bottom .bloc-contact a:hover{
	color: #3fc3ee;
}
span.phone-responsive {
    display: none;
}
.footer-left {
    max-width: 310px;
}
/***** networks *********/
footer .networks_linking {
    margin: 35px 0 0;
}
footer .networks_linking a {
    width: 38px;
    height: 38px;
    line-height: 36px;
    background: #004357 !important;
    color: rgb(255 255 255 / 40%) !important;
}
footer .networks_linking a:hover {
    background: #3fc3ee!important;
    color: #fff !important;
}
footer .networks_linking a i {
    color: rgb(255 255 255 / 40%) !important;
}
/***** Marques *********/
footer.bottom h5 {
    font-size: 20px;
    color: #fff;
    margin: 0 0 10px;
}
footer ul.marques-nav {
    padding: 0;
    list-style: none;
}
footer ul.marques-nav li {
    position: relative;
    padding-left: 20px;
}
footer ul.marques-nav li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    bottom: 0;
    margin: auto;
    width: 6px;
    height: 6px;
    background: #3fc3ee;
    border-radius: 50%;
}
footer ul.marques-nav li a {
    color: #fff;
    text-decoration: none;
}
footer ul.marques-nav li a:hover {
    color: #3fc3ee;
}
/******** News footer *********/
footer div#news-footer {
    margin-top: 22px;
}
div#news-footer .photo img {
    width: 74px;
    height: 74px;
    object-fit: cover;
}
div#news-footer figure.Item.box {
    display: grid;
    grid-template-columns: 74px auto;
    grid-gap: 25px;
    align-items: center;
	    position: relative;
}
div#news-footer figure.Item.box h3 {
    font-size: 16px;
    color: #ffffff;
    margin: 5px 0 0;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
	transition:all .4s;
}
div#news-footer figure.Item.box:not(:last-child) {
    padding: 0 0 17px;
    margin: 0 0 17px;
    border-bottom: 1px solid rgb(255 255 255 / 20%);
}
div#news-footer figure.Item.box .date {
    color: #86898c;
    position: relative;
    padding-left: 23px;
}
div#news-footer figure.Item.box .date:before {
    content: "\f073";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    font-size: 17px;
    color: #3fc3ee;
}
div#news-footer figure.Item.box a {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    outline: none;
}
div#news-footer figure.Item.box:hover h3 {
    color: #3fc3ee;
}
/****** Newsletter *************/
.newsletter-footer {
    background: #004357;
    padding: 30px 28px 35px;
    text-align: center;
    color: #fff;
	max-width: 266px;
}
.newsletter-footer h2 {
    color: #fff;
    font-size: 30px;
    margin: 0 0 10px;
}
/************/
section.footer-small {
    background: #001e27;
    color: #fff;
    padding: 20px 0;
}
section.footer-small p {
    margin: 0;
}
section.footer-small a {
    color: #3fc3ee;
}
section.footer-small .small-links {
    float: right;
}
/* ************* */
div.cc-cookies {
    width: 100%;
}
.cc-cookies a.cc-cookie-accept, 
.cc-cookies-error a.cc-cookie-accept, 
.cc-cookies a.cc-cookie-decline, 
.cc-cookies-error a.cc-cookie-decline, 
.cc-cookies a.cc-cookie-reset {
	background: #faac32 !important;
	color: #fff !important;
	margin: 0 10px;
}
.cc-cookies a:hover.cc-cookie-accept, 
.cc-cookies-error a:hover.cc-cookie-accept, 
.cc-cookies a:hover.cc-cookie-decline, 
.cc-cookies-error a:hover.cc-cookie-decline, 
.cc-cookies a:hover.cc-cookie-reset {
	background: #333 !important;
	color: #fff !important;
}

.formError,
.formError *,
#fancybox-wrap,
#fancybox-wrap * {
    box-sizing: content-box;
}
div#_atssh {
    bottom: 0;
}
.mm-menu.mm-offcanvas.mm-current nav.mobile-nav {
    display: none;
}
.mm-panels>.mm-panel>.mm-listview a {
    font-size: 17px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
}
.mm-menu .mm-listview>li .mm-arrow:after, .mm-menu .mm-listview>li .mm-next:after {
    border-color: rgb(255 255 255 / 30%) !important;
}
.mm-menu .mm-navbar a, .mm-menu .mm-navbar>* {
    color: rgb(255 255 255 / 70%)!important;
}
.mm-menu .mm-btn:after, .mm-menu .mm-btn:before {
    border-color: rgb(255 255 255 / 50%)!important;
}
.mm-listview .mm-next:before {
    background: #fff !important;
}
.mm-panels>.mm-panel>.mm-listview li:hover, .mm-panels>.mm-panel>.mm-listview li.selected {
    background: #3fc3ee;
}
.mm-menu {
    background: #303030 !important;
    border-color: rgb(255 255 255 / 10%)!important;
    color: #ffffff!important;
}
.mm-listview>li:not(.mm-divider):after {
    background: #ccc!important;
}
#scrollUp {
    bottom: 30px;
    right: 15px;
    padding: 5px;
    background: #faac32;
    color: #fff;
    text-decoration: none;
    border-radius: 0;
    width: 38px;
    height: 38px;
    text-align: center;
	    z-index: 299 !important;
}
#scrollUp:hover {
	background: #000;
}
#scrollUp .fa {
    font-size: 28px;
    line-height: 1;
}


a.zoom:hover img {
    opacity: 0.7;
	-webkit-transition: all .5s;
    transition: all .5s;
}

/*--------------------------------------------------
# page contact
--------------------------------------------------*/
.page-contact header.page-title h1 {
    text-align: center;
}
.page-contact header.page-title h1:after {
    left: 50%;
    margin-left: -72.5px;
}

.page-contact article.content p.slogan {
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    color: #827575;
    line-height: 1.8;
}
.page-contact article.content .blocks {
    margin-top: 50px;
}

.page-contact .c-formulaire {
    font-weight: 500;
    font-size: 14px;
    margin-left: -20px;
}
.page-contact .c-formulaire h5 {
    font-weight: 600;
    font-family: 'Raleway';
    font-size: 18px;
    color: #827575;
    margin: 0 0 8px 0;
}

.page-contact .box-contact {
    margin-right: 50px;
    font-size: 14px;
}
.page-contact .box-contact .c-icon {
    padding-left: 52px;
    margin-bottom: 20px;
    position: relative;
}
.page-contact .box-contact .c-icon:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 38px;
    height: 38px;
}
.page-contact .box-contact .c-adr:before{
	background:url(../images/icon-c-adr.png) no-repeat center;
}
.page-contact .box-contact .c-phone:before{
	background:url(../images/icon-c-tel.png) no-repeat center;
}
.page-contact .box-contact .c-mail:before{
	background:url(../images/icon-c-mail.png) no-repeat center;
}
.page-contact .box-contact .c-horaires:before{
	background:url(../images/icon-c-horaires.png) no-repeat center;
}

.page-contact .box-contact span.titre {
	text-transform:uppercase;
	font-size:17px;
	font-weight:700;
	margin-bottom:8px;
}
.page-contact .box-contact .c-phone {
    font-weight: 600;
    font-size: 17px;
    white-space: nowrap;
}
.page-contact .box-contact .c-phone span.number-responsive {
    display: none;
}

.page-contact .box-contact .c-horaires .openingLine {
    margin-bottom: 2px;
}
.page-contact .box-contact .c-horaires .openingLine span.openingDay {
    width: 110px;
    display: inline-block;
    position: relative;
    line-height: 20px;
}
.page-contact .box-contact .c-horaires .openingLine .openingTime {
    position: relative;
    padding-left: 10px;
    display: inline-block;
}

section.googlemaps {
    position: relative;
    overflow: hidden;
    height: 400px;
}
section.googlemaps .box_googlemapsv2 {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    height: auto!important;
    width: auto!important;
}.block-boxes.block1.klanten .page7, .block-boxes.block1.klanten .page8, .block-boxes.block1.klanten .page9, .block-boxes.block1.klanten .page10, .block-boxes.block1.klanten .page11, .block-boxes.block1.klanten .page12, .block-boxes.block1.klanten .page13, .block-boxes.block1.klanten .page14, .block-boxes.block1.klanten .page15 {
    position: relative;
    width: 400px;
    height: 300px;
}.block-boxes.block1.klanten .text-box {
    background: none;
    text-align: left;
    padding: 0 21px 0;
    bottom: 35px;
}.block-boxes.block1.klanten .img-box:after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    margin: 0;
    background: rgb(94 79 79 / 27%);
    width: 100%;
    height: 100%;
    z-index: 0;
}.block-boxes .page5:hover .img-box:after, .block-boxes .page4:hover .img-box:after, .block-boxes .page6:hover .img-box:after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    margin: 0;
    background: rgb(94 79 79 / 62%);
    width: 100%;
    height: 100%;
}.block-boxes.block1.klanten .page1:hover .img-box:after, .block-boxes.block1.klanten .page2:hover .img-box:after, .block-boxes.block1.klanten .page3:hover .img-box:after,.block-boxes.block1.klanten .page4:hover .img-box:after,.block-boxes.block1.klanten .page5:hover .img-box:after, .block-boxes.block1.klanten .page6:hover .img-box:after, .block-boxes.block1.klanten .page7:hover .img-box:after, .block-boxes.block1.klanten .page8:hover .img-box:after, .block-boxes.block1.klanten .page9:hover .img-box:after, .block-boxes.block1.klanten .page10:hover .img-box:after, .block-boxes.block1.klanten .page11:hover .img-box:after, .block-boxes.block1.klanten .page12:hover .img-box:after, .block-boxes.block1.klanten .page13:hover .img-box:after, .block-boxes.block1.klanten .page14:hover .img-box:after, .block-boxes.block1.klanten .page15:hover .img-box:after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    margin: 0;
    background: rgb(237 109 9 / 49%);
    width: 100%;
    height: 100%;
}.block-boxes.block1.klanten h4 {
    text-shadow: 1px 0 0px #3fc3eea6;
}
section.googlemaps .box_googlemapsv2 iframe {
    margin: 0!important;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    pointer-events: none;
}
section.googlemaps .link label.modal-label {
    font-size: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 10;
}
section.googlemaps:hover .box_googlemapsv2 {
        -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: 2000ms;
    transition: 2000ms;
}
/* ---- */
.site-overlay {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3);
	opacity: 0;
	transform: translate3d(100%,0,0);
	transition: opacity 0.4s, transform 0s 0.4s;
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

/* Close Button */
.close-button {
	width: 1.5em;
	height: 1.5em;
	position: absolute;
	right: 1em;
	top: 1em;
	overflow: hidden;
	text-indent: 1em;
	font-size: 0.75em;
	border: none;
	background: transparent;
	color: transparent;
}
.close-button::before,
.close-button::after {
	content: '';
	position: absolute;
	width: 3px;
	height: 100%;
	top: 0;
	left: 50%;
	background: #3fc3ee;
	transition: background .4s;
}
.close-button::before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.close-button::after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.close-button:hover::before,
.close-button:hover::after {
	background: #fff;
}

/* Menu */
.menu-wrap {
	position: fixed;
	overflow: auto;
	top: 0;
	left: 0;
	z-index: 1001;
	width: 300px;
	height: 100%;
	background: #303030;
	box-shadow: 0 0 20px rgba(0,0,0,.8);
	padding: 40px 20px 20px;
	transform: translateX(-100vw);
	transition: transform 0.4s;
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

.mobile-menu {
	transform: translateX(500px);
}
.mobile-menu > ul {
	display: block;
	transform: translateX(-1000px);
}
.mobile-menu,
.mobile-menu > ul {
	transition: transform 0s 0.4s;
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}
.mobile-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 18px;
	line-height: 1.5em;
}
.mobile-menu ul ul {
	background: rgba(0,0,0,.15);
	font-size: 16px;
	margin-top: 5px;
	margin-bottom: -5px;
	border-top: 2px solid rgba(255,255,255,.2);
}
.mobile-menu li:first-child {
	border-top: none;
}
.mobile-menu li {
	padding: 2px 0;
	border-top: 2px solid rgba(255,255,255,.2);
}
.mobile-menu li li {
	position: relative;
	border-top: 2px solid rgba(255,255,255,.2);
}
.mobile-menu li li::before {
	content: '\f105';
	font-family: 'FontAwesome';
	position: absolute;
	color: rgba(255,255,255,.5);
	z-index: 5;
	left: 10px;
}
.mobile-menu a {
	padding: 0 5px;
	display: block;
	color: #fff;
	text-decoration: none;
	transition: color .4s, background .4s;
	font-size: 15px;
}
.mobile-menu a:hover,
.mobile-menu .selected>a,
.mobile-menu .active>a {
	color: rgba(255,255,255,.8);
	background: #3fc3ee;
}
.mobile-menu li li a {
	padding-left: 25px;
	text-transform: none;
}


/* Shown menu */
.show-menu .menu-wrap {
	transform: translate3d(0,0,0);
	transition: transform 0.8s;
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}
.show-menu .mobile-menu,
.show-menu .mobile-menu ul {
	transform: translate3d(0,0,0);
	transition: transform 0.8s;
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}
.show-menu .mobile-menu ul {
	transition-duration: 0.9s;
}
.show-menu .site-overlay {
	opacity: 1;
	transition: opacity 0.8s;
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transform: translate3d(0,0,0);
}
/*** ESSENTIAL STYLES ***/
#navigation .sf-menu, #navigation .sf-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
}
#navigation .sf-menu {
    display: inline-block;
    vertical-align: top;
}
#navigation .sf-menu li {
	position: relative;
}
#navigation .sf-menu ul {
	position: absolute;
	display: none;
	top: 100%;
	left: 0;
	z-index: 99;
}

#navigation .sf-menu li:hover > ul,
#navigation .sf-menu li.sfHover > ul {
	display: block;
}

#navigation .sf-menu a {
	display: block;
	position: relative;
}
#navigation .sf-menu ul ul {
	top: 0;
	left: 100%;
}
/*** DEMO SKIN ***/
#navigation .sf-menu a {
    text-decoration: none;
    color: #004357;
    padding: 61px 20px 57px;
    font-size: 17px;
    line-height: 22px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    text-transform: none;
    position: relative;
    -webkit-transition: .3s all ease;
    transition: .3s all ease;
}
.is-sticky #navigation .sf-menu>li>a {
    padding-top: 20px;
    padding-bottom: 20px;
}
#navigation .sf-menu > li {
	float: left;
	margin:0;
}
#navigation .sf-menu li {
	white-space: nowrap;
}
#navigation .sf-menu > li:first-child {
	margin-left:0;
}
#navigation .sf-menu li a:hover, #navigation .sf-menu li.sfHover > a,
#navigation .sf-menu li.selected > a, #navigation .sf-menu li.active > a {
	color: #3fc3ee;
}

#navigation .sf-menu li ul {
    background: none;
    padding: 0;
    min-width: 100%;
    margin-top: -3px;
    border-top: 3px solid #3fc3ee;
}
.is-sticky #navigation .sf-menu li ul {
	background: rgba(45,14,14,.67);
}
#navigation .sf-menu li ul li {
	margin-top: 1px;
}
#navigation .sf-menu li ul li:first-child {
	margin-top: 0;
}
.menu-top {
    display: block;
    float: right;
}
#navigation .sf-menu li ul a {
    text-align: left;
    color: #004357;
    padding: 3px 20px !important;
    font-weight: 700;
    line-height: 28px;
    background: #f8f9fa;
    font-size: 15px;
    text-transform: none;
}
#navigation .sf-menu ul li a:hover, #navigation .sf-menu ul li.sfHover > a,
#navigation .sf-menu ul li.selected > a, #navigation .sf-menu ul li.active > a {
	color: #fff;
	background:#3fc3ee;
}
.sf-arrows .sf-with-ul:after {
position: absolute;
    bottom: 36px;
    left: 50%;
    content: '\f107';
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    transform: translateX(-50%);
}
.sf-arrows > li > .sf-with-ul:focus:after,
.sf-arrows > li:hover > .sf-with-ul:after,
.sf-arrows > .sfHover > .sf-with-ul:after {
	border-top-color: #3fc3ee;
}

@keyframes slide-in {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@-webkit-keyframes fadeOut {
    0% { opacity: 1;}
    99% { opacity: 0.01;width: 100%; height: 100%;}
    100% { opacity: 0;width: 0; height: 0;}
}  
@keyframes fadeOut {
    0% { opacity: 1;}
    99% { opacity: 0.01;width: 100%; height: 100%;}
    100% { opacity: 0;width: 0; height: 0;}
}
.box-breadcrumbs img {
  max-width: 100%;
}


.networks_linking a i {
    font-weight: 100;
}

/********************************
			Responsive
********************************/

@media only screen and (max-width : 1640px) {

}
@media only screen and (max-width : 1550px) {
	
}
@media only screen and (max-width : 1400px) {
    header.top.sticky.sticky-appear {
        transform: translateY(96px);
    }
    
/*header.top .logo {
  float: none;
  padding: 20px 0;
  margin-right: 0;
  text-align: center;
}
header.top .bloc-right {
  float: none;
  display: grid;
  grid-template-columns: repeat(2,auto);
  justify-content: space-between;
  align-items: center;
}
#navigation .sf-menu a {
  padding: 35px 9px;
  font-size: 16px;
}
.sf-arrows .sf-with-ul::after {
  bottom: 12px;
}
header.top.sticky.sticky-appear #navigation .sf-menu a {
  padding: 28px 20px;
}*/
#navigation .sf-menu a {
  padding: 61px 8px 57px;
}
/*header.top .bloc-right #navigation {
  margin-right: 20px;
}*/
/*****/
.sectionCounter .counter-grid {
  margin-top: -66px;
}
section.banner .cta-slide {
  
  padding: 20px 15px;
}
section.banner .cta-slide .tel, section.banner .cta-slide .language, section.banner .cta-slide .opening {
  /*margin-bottom: 10px;*/
}
section.banner .diy-slideshow figure figcaption {
  font-size: 40px;
  max-width: 900px;}
 section.banner figcaption h3{
	 font-size: 40px;
 }
  .diy-slideshow .prev, section.banner #slider .slick-prev {
  left: 20px !important;
}
.diy-slideshow .next, section.banner #slider .slick-next {
  right: 100px !important;
}
/*****/
.top-bar .top-blocks {
display: block;
}
.top-bar .top-blocks .bloc-contact {
  margin-top: 10px;
  justify-content: space-between;
}
.top-bar .top-blocks .bloc-infos {
  justify-content: space-between;
}
.top-bar .top-blocks .bloc-infos .adr-top, .top-bar .top-blocks .bloc-contact .mail-top {
  padding: 0;
  margin: 0;
}
.top-bar .top-blocks .bloc-infos .adr-top::after, .top-bar .top-blocks .bloc-contact .mail-top::before, .top-bar .top-blocks .bloc-contact .mail-top::after {
  display: none;
}
.container-fluid {
  max-width: 1200px;
}
section.banner .container {
    max-width: 900px;
}
}
@media only screen and (max-width : 1199px) {
header.top .bloc-right .cta-top a {
  font-size: 16px;
  padding: 12px 16px;
}
#navigation .sf-menu a {
  padding: 20px 12px;
}
.sf-arrows .sf-with-ul::after {
  bottom: 0;
}
header.top.sticky.sticky-appear #navigation .sf-menu a {
  padding: 28px 11px;
}
.container-fluid {
  max-width: 992px;
}
.top-bar .top-blocks .bloc-contact .mail-top {
  margin-left: 15px;
}
.top-bar .top-blocks .cta-top a {
  display: table;
  margin: 0 auto;
}
header.top .logo {
padding: 10px 0;
float: none;
text-align: center;
margin-right: 0;
}
header.top .bloc-right {
  float: none;
  justify-content: space-between;
}
/*****/
.home-content {
  grid-template-columns: auto 350px;
  grid-gap: 30px;
}
.sponsoring-part .sponsoring-grid {
  grid-gap: 40px;
  grid-template-columns: auto 350px;
}
/*******/
section.modules_actualites div#blogHome figure.Item {
  margin: 0 5px;
}
/*******/
.modules_avis .avis-img {
  float: none;
  width: auto;
height: 500px;
max-width: 100%;
  margin: 0 auto;
}
.modules_avis article {
  width: 100%;
}
/**/
.consultations .open-grid {
  display: block;
}
.consultations .open-grid .contact-bx a {
  display: table;
  margin: 20px 0 0;
  padding: 12px 16px;
}
/*******/
footer.bottom .footer-wrapper {
  grid-template-columns: repeat(3,auto);
  justify-content: space-around;
}
footer .footer-right {
  grid-column: 1 / 4;
}
.newsletter-footer {
  display: table;
  margin: 30px auto 0;
}
article.content .logo-brands {
    max-width: 100%;
}
/**/
.diy-slideshow .next, .diy-slideshow .prev, section.banner #slider .slick-next, section.banner #slider .slick-prev {
  display: none !important;
}
/***/
section.marques-content::before {
  width: 375px;
}

}
@media only screen and (max-width : 1040px) {
    section.home-news #Bio figure.Item .date {
        font-size: 84px;
    }
}


@media only screen and (max-width : 991px) {
    header.top.sticky.sticky-appear {
    transform: translateY(60px);
}
    
.mk-employees.mk-shortcode.three-column.classic-style {
    margin-left: auto;
    margin-right: auto;
}
    
#navigation .sf-menu {
  display: none;
}
header.top .bloc-right .SearchButton {
    position: relative;
    z-index: 11;
}
nav.mobile-nav {
  display: inline-block;
  margin: 10px 0;
}
header.top .bloc-right {
  margin: 0 8px 20px;
}
/****/
.top-bar .top-blocks .bloc-infos, .top-bar .top-blocks .bloc-contact, .top-bar .top-blocks .bloc-infos .box-opening {
  display: block;
  text-align: center;
}
.top-bar .top-blocks .bloc-infos i, .top-bar .top-blocks .mail-top i, .top-bar .top-blocks .bloc-infos .box-opening i {
  display: table;
  margin: 0 auto 2px;
  padding: 0;
}
.top-bar .top-blocks .bloc-contact .mail-top {
  margin-left: 0;
}
.networks_linking {
  display: table;
  margin: 0 auto 10px;
}
.top-bar .top-blocks .bloc-contact .networks_linking a {
  margin: 0 5px;
}
header.top .searchForm {
  top: -50px;
}
/******/
.sectionCounter .numeros {
  font-size: 34px;
}
.sectionCounter .titre {
  font-size: 20px;
}
section.home-news #Bio {
    grid-gap: 100px;
}
/******/
.home-content {
  grid-template-columns: auto;
  grid-gap: 30px;
}
.box-brands .brand {
  margin: 0 10px;
}
.partenaires .logos-grid {
    grid-template-columns: repeat(2,auto);
    grid-gap: 20px;
}
.col-form.form-avis {
    margin-top: 40px;
}
.mk-employee-item > div:first-of-type > a {
    display: block;
    z-index: 1;
    position: relative;
}
/*******/
.formations .bloc-right {
  width: 100%;
  float: none;
}
.formations .photo-formation {
  position: relative;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
  height: 350px;
}
.formations::after, .formations::before {
  left: 0;
}
/*********/
.sponsoring-part .sponsoring-grid {
  grid-template-columns: auto;
}
/********/
footer.bottom {
  padding: 40px 0;
}
footer .footer-right {
  grid-column: 1 / 1;
}
footer.bottom .footer-wrapper {
  grid-template-columns: repeat(1,auto);
  text-align: center;
  justify-content: center;
  gap: 20px;
}
.footer-left {
    margin: 0 auto;
}
footer.bottom .footer-wrapper .bloc-contact i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
/*    margin: 5px 0 0;*/
}
footer .networks_linking {
  margin: 15px auto;
}
footer ul.marques-nav {
  display: table;
  text-align: left;
  margin: 0 auto 20px;
}
footer div#news-footer {
  display: table;
  margin: 20px auto 0;
  text-align: left;
}
/******/
article.content img {
  /*display: table;
  margin: 20px auto !important;
  float: none !important;*/
}
/*******/
section.home-news #Bio figure.Item {
    grid-template-columns: repeat(1,1fr);
    grid-gap: 100px;
}
section.home-news #Bio figure.Item:nth-child(even) figcaption {
    order: 2;
}
section.home-news #Bio figure.Item .photo {
    height: 350px;
}
section.home-news #Bio:before {
	display:none;
}
section.home-news #Bio figure.Item:nth-child(even) .date {
    text-align: left;
}
section.home-news #Bio figure.Item .date:before, section.home-news #Bio figure.Item .date:after{
	display:none;
}
section.home-news #Bio figure.Item:nth-child(2n+1) figcaption {
  grid-column: 1 / 1;
}
section.home-news #Bio figure.Item:nth-child(2n) figcaption {
  text-align: left;
}
/******/
section.marques-content .merken-grid {
  grid-template-columns: auto;
  grid-gap: 30px;
  
}
section.marques-content .merken-grid .partenaires-sidebar{
    width: calc(100vw - 70px);
}
section.marques-content::before {
  display:none
}
section.marques-content .merken-grid .sidebar {
padding: 20px 20px 40px;
position: relative;
margin: 0 0 20px;
order: 2;
}
section.marques-content .merken-grid .marques-content {
  order: 1;
}
section.marques-content .merken-grid .sidebar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: #f8f9fa;
}
section.marques-content .merken-grid .sidebar .contact-sidebar {
  white-space: normal;
  position: relative;
}
article.content #New-Sponsoring figure.Item .photo img {
  margin: 0 !important;
}
/*****/
section.blog-content .blog-grid .blog-content {
  order: 1;
  margin: 30px 0 0;
}
section.blog-content .blog-grid .sidebar .signature {
  position: relative;
}
section.blog-content .blog-grid .categories-sidebar figure.Item.box figcaption {
  padding: 30px 20px 40px;
}
section.modules article .NewsMasonry .NewsItem {
  width: 30.5%;
}
section.marques-content .merken-grid .partenaires-sidebar img {
    max-width: 350px;
}
.top-bar .top-blocks .bloc-contact .mail-top, .top-bar .top-blocks .bloc-contact .networks_linking, .top-bar .top-blocks .bloc-infos {
    display: none;
}
.top-bar .top-blocks .bloc-contact {
    margin-top: 0;
}
header.top .bloc-right nav#navigation {
    order: 2;
    /*margin-left: 20px;*/
}
section.blog-content .blog-grid {
    display: flex;
    flex-direction: column;
}
section.marques-content .merken-grid .partenaires-sidebar img{
    margin:0 auto;
}
.top-bar .top-blocks .cta-top a {
    padding: 12px 16px
}

}

@media only screen and (max-width : 768px) {
    
iframe{
    max-width:100%;
}
    
.sponsoring-part .sponsoring-grid .sponsorisons {
    margin: 90px auto 0;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    width: 80%;
    gap: 30px;
}  

footer.bottom .footer-wrapper .bloc-contact p {
    margin: 0 0 20px;
}

    
section.banner .box-overlay h2 {
  font-size: 36px;
}
section.banner figcaption {
    padding-right: 90px;
}
section.banner figcaption h3 {
    font-size: 30px;
}
section.banner figcaption .btn-cta {
    grid-gap: 0;
    grid-template-columns: auto;
    justify-content: left;
    margin: 40px 0 0;
}
.sectionCounter .counter-grid {
  grid-template-columns: repeat(4,1fr);
}
.sectionCounter .icocont img {
  max-width: 60%;
}
.sectionCounter .numeros {
  font-size: 25px;
}
.sectionCounter .titre {
  font-size: 19px;
}
.lin-rdv a {
    display: table;
    margin: 30px auto 0;
}
/****/
section.home_2 .points-forts {
  grid-template-columns: repeat(1,auto);
}
section.home_2 .points-forts .bx {
  padding: 16px 0;
  grid-template-columns: 70px auto;
}
section.home_2 .points-forts .bx.box02 {
  border-left: none;
  border-right: none;
}
/******/
.box-brands .brand {
  margin: 0;
}
/***/
section.modules_actualites div#blogHome figure.Item {
  margin: 0;
}
/****/
.modules_avis article h2 {
  font-size: 28px;
}
/*****/
.partenaires .logos-grid {
  grid-template-columns: repeat(1,auto);
  justify-content: center;
  grid-gap: 20px;
}
/*******/
.consultations .open-grid .open {
  display: block;
  text-align: center;
}
.consultations .open-grid .contact-bx a {
  margin: 20px auto 0;
}
.pageTemplate section.banner .container h3 {
  font-size: 30px;
}
.mk-employee-item {
  margin: 0 auto;
}
.mk-employees.mk-shortcode.three-column.classic-style {
  margin-right: 0;
  margin-left: 0;
}
/******/
article.content #New-Sponsoring figure.Item {
  display: block;
}
article.content #New-Sponsoring figure.Item .photo {
  height: 250px;
}
article.content #New-Sponsoring figure.Item figcaption {
  padding: 50px 20px;
}
section.modules article .NewsMasonry .NewsItem {
  width: 45%;
}
/****/
div#news-faqs .box_acc h3 {
  padding: 22px 13px;
}
div#news-faqs figure.Item.box .show_me_acc {
  padding: 25px 13px;
}
div#news-faqs .box_acc h3::after {
  right: 10px;
}
section.footer-small {
  text-align: center;
}
section.footer-small .small-links {
  float: none;
}
span.phone {
    display: none;
}
span.phone-responsive {
    display: inline;
}
section.banner .cta-slide .tel:hover span.phone-responsive {
    right: 50px;
    opacity: 1;
}
section.home_2 .points-forts .bx p br {
  display: none;
}
section.home_2 .points-forts .bx {
  padding: 8px 0;
}
section.home_2 .points-forts {
  margin: 18px 0 15px;
}
.formations .bloc-right .bx {
  padding-left: 0;
  text-align: center;
}
.formations .bloc-right .bx2 {
  padding: 23px 0 20px 0;
}
.formations {
  text-align: center;
}
.formations .bloc-right .bx::before {
  position: relative;
  display: block;
  margin: 0 auto 20px;
  top: 0;
}
div#news-footer figure.Item.box {
  grid-template-columns: 104px auto;
}
div#news-footer .photo img {
  width: 104px;
  height: 104px;
}
header.top input#tags, .searchForm {
    width: 280px !important;
}
section.banner .container {
  top: 47%;
}
}
@media only screen and (max-width : 530px) {
    
    .marques-content img {
        clear: both !important;
        margin: 0 auto !important;
        width: 70% !important;
        float: none !important;
        display: block;
    }
    
    
    section.modules_avis .avis #Guestbook .slick-dots {
        bottom: -50px;
    }
section.banner .cta-slide .opening .bx-open {
  white-space: break-spaces;
  line-height: 20px;
  padding: 2px 20px 0;
}
.sponsoring-part .sponsoring-grid .sponsorisons {
    grid-template-columns: repeat(1,1fr);
} 
}
@media only screen and (max-width : 481px) {
section.banner .box-overlay h2 {
  font-size: 24px;
}
section.banner .cta-slide .opening .bx-open {
  padding: 2px 10px;
  padding: 2px 0px 0 9px;
  font-size: 14px;
}
section.banner .container .box-breadcrumbs {
  padding-right: 70px;
}
section.marques-content .merken-grid .partenaires-sidebar img {
    max-width: 100%;
}
section.banner .box-overlay .btn-cta a {
    margin: 0 0 10px;
    padding: 14px 27px;
}
section.home-news #Bio figure.Item .date {
    top: -40px;
    left: 15px;
	    font-size: 54px;
}
section.footer-small .small-links span.sep {
    display: block;
    height: 0;
    font-size: 0;
}
/*****/
.sectionCounter .counter-grid {
  grid-template-columns: repeat(2,1fr);
}
/****/
.home-content header.page-title h1 {
  font-size: 28px;
}
.sectionCounter .counter-grid .box {
  padding: 24px 10px 25px;
}
/*****/
section.banner .diy-slideshow figure figcaption {
    font-size: 27px;
        padding-right: 90px;
}
section.banner figcaption .btn-cta a {
    padding: 14px 23px;
}
/**/
.sponsoring-part .sponsoring-grid .sponsorisons {
  grid-template-columns: repeat(1,1fr);
}
.sponsoring-part .sponsoring-grid .bloc-right .box-rech-sponsor {
  padding: 35px 34px 35px 80px;
}
.sponsoring-part .sponsoring-grid .bloc-right .box-rech-sponsor::before {
  left: 10px;
  top: 30px;
}
.sponsoring-part .sponsoring-grid .bloc-right .box-rech-sponsor h6 {
  font-size: 20px;
}
/****/
.modules_avis .avis {
  padding: 39px 15px;
}
div#nav-tab a {
  padding: 5px 6px;
}
/***/
.categories-sidebar ul.etabs li {
  margin: 17px 5px 0 0;
}
section.blog-content .blog-grid .categories-sidebar figure.Item.box .date {
  float: none;
}
section.blog-content .blog-grid .categories-sidebar figure.Item.box .adr-news {
  float: none;
  padding-left: 0;
}
section.modules article .NewsMasonry .NewsItem {
  width: 100%;
}
article #AllNews .NewsItem, article #NewsItems .NewsItem, article .NewsMasonry .NewsItem {
  margin: 10px 0;
}
section.contact-content .contact-grid .sidebar h5 {
  font-size: 22px;
}
.blogTemplate section.banner .container h3 {
    font-size: 36px;
}
.logo-brands p {
  display: grid;
  grid-template-columns: auto auto;
}
section.banner .container {
  top: 51%;
}
section.banner .box-overlay .btn-cta a {
  float: none;
}
}  

@-moz-document url-prefix()
{
       .box-brands .slick-next:before, .box-brands .slick-prev:before { {
 margin-top: 0px; !important;
}
}
@-moz-document url-prefix()
{
       .categories-sidebar [class*="holder"] a.jp-previous:before, .categories-sidebar [class*="holder"] a.jp-next:before {
top: 4px !important;
}
}