/**
* Importing necessary  Styles.
**/
@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');
@import url('../fonts/circular-std/css/circular-std.css');
/*----bootstrap css ----- */
@import url('../library/bootstrap/css/bootstrap.min.css');
/*------- menu ------*/
@import url('../library/mega-menu/assets/css/menu.css');
/*----font awesome -------*/
@import url('../fonts/font-awesome/css/font-awesome.min.css');
/*----owl-carousel css----*/
@import url('../library/owl-carousel/owl.carousel.css');
@import url('../library/owl-carousel/owl.theme.css');
@import url('../library/owl-carousel/animate.css');
/*-------- AOS css ------*/
@import url('../library/aos-next/dist/aos.css');
/*----------- Fancybox css -------*/
@import url('../library/fancybox/dist/jquery.fancybox.min.css');
/*------------- Map -------------*/
@import url('../library/sanzzy-map/dist/snazzy-info-window.min.css');
/*----Flaticon-------*/
@import url('../fonts/icon/font/flaticon.css');

/*----COOKIE-------*/
@import url('../library/easycookie/css/easycookie-1.1.min.css');

/*--------- Jquery ui ---------*/
@import url('../library/jquery-ui/jquery-ui.min.css');
/*--------- Select js ---------*/
@import url('../library/selectize.js/selectize.css');
/*--------- Tabs ---------*/
@import url('../library/tabs/tabs.css');

@font-face {
  font-family: "feather";
  src: url("../fonts/feather.eot?t=1525787366991"); /* IE9*/
  src: url("../fonts/feather.eot?t=1525787366991#iefix") format("embedded-opentype"), url("../fonts/feather.woff?t=1525787366991") format("woff"), url("../fonts/feather.ttf?t=1525787366991") format("truetype"), url("../fonts/feather.svg?t=1525787366991#feather") format("svg"); /* iOS 4.1- */
}

.feather {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "feather" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/*** 


/*** 

====================================================================
  Loading Transition
====================================================================

 ***/
/* Preloader */
.ctn-preloader {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -ms-flexbox;
  height: 100%;
  justify-content: center;
  -webkit-justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
  font-family: 'CircularStd-book';
}
.ctn-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}
/* Spinner cargando */
.ctn-preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(38, 180, 242, 0.25);
  border-top-color: #3f9bca; 
  height: 170px;
  margin: 0 auto 45px auto;
  width: 170px;
}
/* Texto cargando */
.ctn-preloader .animation-preloader .txt-loading {
  text-align: center;
  user-select: none;
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
  animation: letters-loading 4s infinite;
  color: #3f9bca;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  top:0;
  line-height: 70px;
  position: absolute;
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: 15px;
  display: inline-block;
  color: rgba(38, 180, 242, 0.25);
  position: relative;
  font-size: 70px;
  line-height: 70px;
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {animation-delay: 0.2s;}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {animation-delay: 0.4s;}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {animation-delay: 0.6s;}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {animation-delay: 0.8s;}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before { animation-delay: 1s;}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before { animation-delay: 1.2s;}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before { animation-delay: 1.4s;}
.ctn-preloader .loader-section {
  background-color: #ffffff;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}
.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
/* Animation preloader */
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@media screen and (max-width: 767px) {
  .ctn-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
}
@media screen and (max-width: 500px) {
  .ctn-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }
  .ctn-preloader .animation-preloader .txt-loading .letters-loading {font-size: 40px; letter-spacing: 10px;}
}

/*==================== Click Top ====================*/
.scroll-top {
  width:50px;
  height:50px;
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 99;
  text-align: center;
  color: #fff;
  font-size: 22px;
  display: none;
  cursor: pointer;
  border-radius: 3px;
  background-color: #3f9bca;
  box-shadow: 0px 0px 23px 0px rgba(27,27,27,0.4);
}



/*______________________ Global style ___________________*/

@font-face {
  font-family: 'font-awesome';
  src: url('../fonts/font-awesome/fonts/fontawesome-webfont.ttf');
  src: url('../fonts/font-awesome/fonts/fontawesome-webfont.eot'), /* IE9 Compat Modes */
       url('../fonts/font-awesome/fonts/fontawesome-webfont.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/font-awesome/fonts/fontawesome-webfont.woff') format('woff'), /* Pretty Modern Browsers */
       url('../fonts/font-awesome/fonts/fontawesome-webfont.svg') format('svg'); /* Legacy iOS */
 }
 body {
  font-family: 'Poppins', sans-serif;
  font-weight: normal;
  color:#828282;
  font-size: 18px;
  position: relative;
  top:0 !important;
 }

 .main-page-wrapper {overflow-x:hidden;}
 h1,h2,h3,h4,h5,h6,p,ul { margin:0;padding: 0;}
 .h1,h1,.h2,h2,.h3,h3,.h4,h4,.h5,h5,.h6,h6 {color: #29343a; font-weight: normal; font-family: 'CircularStdbld', sans-serif;}
 .h1,h1 {font-size: 60px;}
 .h2,h2 {font-size: 42px;}
 .h3,h3 {font-size: 26px;}
 .h4,h4 {font-size: 22px;}
 .h5,h5 {font-size: 22px;}
 .h6,h6 {font-size: 18px;}
 p {line-height: 28px;}
 ul {list-style-type: none;}
 body a {text-decoration: none; display: inline-block; }
 body p a, body p a:hover  { color:#3f9bca!important; }
 ul.text-list a { color:#3f9bca!important; }
 a:hover,a:focus,a:visited {text-decoration: none; outline: none;}
 img {max-width: 100%; display: block;}
 button {border:none;outline: none;box-shadow: none;display: block; padding: 0;cursor: pointer;background: transparent;}
 button:focus {outline: none;}
 input,textarea {outline: none; box-shadow: none;transition: all 0.3s ease-in-out;}
.grey-container { background-color: #f3f4f5;}

ul.text-list {margin: 20px 20px;}
ul.text-list li {margin-bottom: 10px;}
ul.text-list li i {margin-right: 8px; color:#3f9bca; }


 /*----------- Prefix -----------*/
 .page { padding-top: 100px;}
 .fancybox-active.compensate-for-scrollbar {margin-right: 0px;}
 .full-width-container {padding-left: 60px;padding-right: 60px;}
 .demo-container-900 {max-width: 900px;margin: 0 auto;}
 .demo-container-1100 {max-width: 1100px;margin: 0 auto;}
 .p0 {padding: 0 !important;}
 .pt-15 {padding-top: 15px;}
 .pt-50 {padding-top: 50px;}
 .pt-90 {padding-top: 90px;}
 .pt-150 {padding-top: 150px;}
 .pb-30 {padding-bottom: 30px;}
 .pb-70 {padding-bottom: 70px;}
 .pb-100 {padding-bottom: 100px;}
 .pb-150 {padding-bottom: 150px;}
 .pb-200 {padding-bottom: 200px;}
 .mt-70 {margin-top: 70px;}
 .mt-95 {margin-top: 95px;}
 .mt-150 {margin-top: 150px;}
 .mt-200 {margin-top: 200px;}
 .mb-80 {margin-bottom: 80px;}
 .mb-150 {margin-bottom: 150px;}
 .mb-170 {margin-bottom: 170px;}
 .mb-200 {margin-bottom: 200px;}
 .m0 {margin: 0 !important;}
 .row.gutter-80 {margin: 0 -40px;}
 .row.gutter-80 [class*="col-"] {padding: 0 40px;}
 .row.gutter-50 {margin: 0 -25px;}
 .row.gutter-50 [class*="col-"] {padding: 0 25px;}

 /*----------------- Theme button ------------------*/
 .ph-btn {margin-right: 15px;}
body .th-button-one {
  text-align: center;
  font-size: 18px;
  color: #fff;
  background-color: #3f9bca;
  line-height: 50px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 10px 25px 0px rgba(123,147,171,0.15);
  border-radius: 3px;
  transition: all .4s ease-in-out;
  font-family: 'CircularStd-book';
}

body .th-button-one:hover {color: #3f9bca; background-color: #fff; box-shadow: 0px 13px 28px 0px rgba(123,147,171, 0.25);}

body .th-button-one .icon-right {vertical-align: -1px;margin-left: 5px;}
body .th-button-one .icon-left {vertical-align: -1px;margin-right: 5px;}

body .th-button-two {
  color: #27282c;
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
  text-transform: capitalize;
  font-family: 'Poppins', sans-serif;
  transition: all .4s ease-in-out;
}
body .th-button-two span:before {
  position: relative;
  top: 5px;
  font-size: 26px;
  line-height: 14px;
  display: inline-block;
  padding-left: 10px;
}
body .th-button-two span.icon-left:before { padding-left: 0; padding-right: 10px; }
body .th-button-two:hover{
  color: #3f9bca;
}




body .white-shdw-button {
  text-transform: capitalize;
  line-height: 55px;
  display: inline-block;
  text-align: center;
  font-size: 20px;
  box-shadow: 0px 0px 10px 0px rgba(44,57,59,0.15);
  border-radius: 3px;
  padding: 0 20px;
  background: #fff;
  font-family: 'CircularStd-book';
  color: #3f9bca;
  transition: all .4s ease-in-out;
}
body .white-shdw-button .icon-right {
  font-size: 25px;
  vertical-align: middle;
  margin-left: 10px;
  color: #3f9bca;
}
body .white-shdw-button:hover {background-color: #3f9bca; color: #fff !important; box-shadow: 0px 0px 2px 0px rgba(44,57,59,0.25);}
body .white-shdw-button:hover .icon-right {color: #fff !important}

body .white-button {
  text-transform: none;
  line-height: 55px;
  display: inline-block;
  text-align: center;
  font-size: 18px;
  border-radius: 3px;
  padding: 0 20px;
  background: #fff;
  font-family: 'CircularStd-book';
  color: #3f9bca;
  border: 1px solid #fff;
  transition: all .4s ease-in-out;
}
body .white-button .icon {
  font-size: 25px;
  vertical-align: middle;
  margin-left: 10px;
}
body .white-button:hover {color: #fff; border: 1px solid #fff; background: #3f9bca;}


/* Waze (officiel) */
.btn-waze {
  background-color: #05C8F7; /* Cyan vif Waze */
  color: #FFFFFF;
}
.btn-waze:hover {
  background-color: #056A82; /* Accent sombre Waze */
  color: #FFFFFF;
}

/* Google Maps (officiel) */
.btn-maps {
  background-color: #4285F4; /* Google Blue */
  color: #FFFFFF;
}
.btn-maps:hover {
  background-color: #3367D6; /* Bleu plus sombre pour le hover */
  color: #FFFFFF;
}

.directions-buttons {
  margin-top: 1em;
  text-align: center;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8em;
}



/*----------------------- Main Menu --------------------*/

.theme-main-menu {
  position: absolute;
  top:0;
  width: 100%;
  height: 96px;
  left:0;
  z-index: 99;
  /*padding: 33px 0 10px 0;*/
  background: #fff;
  box-shadow: 0px 13px 35px -12px rgba(35,35,35,0.15);
}

#mega-menu-holder {position: static; margin-top: 31px;}

.theme-menu-one .logo {
  position: absolute;
  top:20px;
  left:35px;
  z-index: 3;
}
.theme-menu-one .logo a {display: block;}
.theme-menu-one .navbar-nav .nav-item .nav-link {color: #353535; font-size: 22px; font-family: 'CircularStd-book'; text-transform: none;}
.theme-menu-one .navbar-nav .nav-item .dropdown-toggle span {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .100em;
  content: "";
  border-top: .20em solid;
  border-right: .20em solid transparent;
  border-bottom: 0;
  border-left: .20em solid transparent;
}
.theme-menu-one .navbar-nav .nav-item.active .nav-link, .theme-menu-one .navbar-nav .nav-item .nav-link:hover {color: #3f9bca;}
.theme-menu-one .navbar .dropdown-menu .dropdown-item {
  font-size: 18px;
  line-height: 45px;
  text-transform: none;
  color: 
  #4B4C51;
  padding: 0 0 0 25px;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.theme-menu-one .navbar .large .dropdown-menu {
  min-width: 350px;
}
.theme-menu-one .navbar .dropdown-item:focus, .theme-menu-one .navbar .dropdown-item:hover, .theme-menu-one .navbar .dropdown-submenu.dropdown:hover > .dropdown-item {color: #3f9bca;}
.theme-menu-one .navbar-nav .nav-item:first-child .nav-link {margin-left: 0;}

.theme-menu-one .header-right-widget {
  position: absolute;
  top:0px;
  right: 60px;
  z-index: 1;
  font-family: 'CircularStd-book';
  height: 96px;
}

.theme-menu-one .header-right-widget>ul>li {display: inline-block; vertical-align: middle;}

.theme-menu-one .header-right-widget .language-switcher { margin-right: 0;}
.theme-menu-one .header-right-widget .language-switcher button {
  background: transparent;
  height: 96px;
  text-transform: none;
  color: #313131;
  border-left:1px solid #ececec;
  border-right:1px solid #ececec;  
  font-size: 16px;
  padding:0 10px 0 10px;
  margin:0 10px 0 10px;
  text-transform: capitalize;
  
}
.theme-menu-one .header-right-widget .language-switcher .dropdown-menu {
  top:-15px !important;
  min-width: 200px;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 25px 50px 0px rgba(213, 216, 223, 0.5);
  border: 1px solid #f8f8f8;
  border-radius: 0;
}
.theme-menu-one .header-right-widget .language-switcher .dropdown-menu ul li a {
  display: block;
  padding: 0 15px;
  font-size: 15px;
  color: #767a89;
  line-height: 35px;
  text-transform: uppercase;
}
.skiptranslate {display: none !important;}
.theme-menu-one .header-right-widget .language-switcher .dropdown-menu ul li a:hover {padding-left: 20px;}
.theme-menu-one .header-right-widget .language-switcher .dropdown-toggle::after {color: #233D63;}
.theme-menu-one .header-right-widget .call-us {font-size: 22px;color: #3f9bca;}
.theme-menu-one .header-right-widget .call-us a {font-size: 22px;margin-left: 10px; color: #3f9bca;}


/*================= Sticky Menu ===============*/
@-webkit-keyframes menu_sticky {
  0%   {margin-top:-120px;opacity: 0;}
  50%  {margin-top: -64px;opacity: 0;}
  100% {margin-top: 0;opacity: 1;}
}
@keyframes menu_sticky {
  0%   {margin-top:-120px;opacity: 0;}
  50%  {margin-top: -64px;opacity: 0;}
  100% {margin-top: 0;opacity: 1;}
}
.theme-main-menu.fixed {
  position: fixed !important;
  background: #fff;
  box-shadow: 0px 13px 35px -12px rgba(35,35,35,0.15);
  animation: menu_sticky  0.60s ease-in-out;
}

/*.theme-menu-one.fixed .navbar-nav .nav-item .nav-link,
.theme-menu-one.fixed {padding: 20px 0 0;}
.theme-menu-one.fixed .logo {width: 70px;}
.theme-menu-one.fixed .header-right-widget {top:7px;}*/


/*================= SLIDE SHOW ===============*/
.slidecontainer { border-radius: 0 0 100% 100%;
  display: block;
  overflow: hidden;
  margin: 0 -380px;
  padding: 0 380px;
  transform: translateZ(0);
  text-align: center; }

  .slide .img-container {     
    background-position:50%;
    background-repeat:no-repeat;
    background-size:cover; 
    height: 663px;
    min-height: 663px;
    width: 100%; }

    .slide .img-container-s3 {     
      background-position: 70%;
}

  .modal-texte .slide { margin: 0; } 
  .slide { margin: 96px 0 0; 
   }

.slide .carousel-caption {
    position: absolute;
    right: 15%;
    top: 130px;
    bottom: initial;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #758086; }

.slide .carousel-caption p { font-family: 'Poppins', sans-serif; font-size: 22px; margin-bottom: 45px;}
.slide .carousel-caption h1 { font-family: 'CircularStdbld', sans-serif; margin-bottom: 20px; line-height: 1em;}

.slide .carousel-item-2 .carousel-caption h1 { color: #fff; text-shadow: 1px 1px 2px rgba(0,0,0,1); }
.slide .carousel-item-2 .carousel-caption p { color: #fff; text-shadow: 1px 1px 1px rgba(0,0,0,1); }


.carousel-control-prev-icon {background-image: none;}
.carousel-control-next-icon {background-image: none;}
.carousel-control-prev .fa, .carousel-control-next .fa {color: #9ca09d; font-size: 6em;}
.carousel-control-next, .carousel-control-prev { opacity: 0;}
.carousel-control-next:focus, .carousel-control-prev:focus { opacity: inherit;}

/*================= SERVICES HOME ===============*/

.service-home { padding: 238px 0 140px 0; margin-top: -138px; }
.service-home h2 { font-family: 'CircularStdbld', sans-serif; margin-bottom: 85px; line-height: 1em; }
.service-home .service-item a { position: relative;
  display: block;
  background: #ffffff;
  border-top: 4px solid #3f9bca;
  -webkit-box-shadow: 0px 6px 10px 3px #e8e8e8;
  box-shadow: 0px 6px 10px 3px #e8e8e8;
  transition: all 300ms ease;
  min-height: 380px; }

  body.en .service-home .service-item a, body.nl .service-home .service-item a { min-height: 400px;}

  .service-home .service-item a:hover { transform: translateY(-10px);   -webkit-box-shadow: none; box-shadow: 0px 6px 10px 3px none; }
  .service-home .service-item a:hover h3 { color: #3f9bca;}

  .service-home .service-item .inner { padding: 65px 30px 65px; }
  .service-home .service-item h3 { margin-bottom: 35px; }
  .service-home .service-item a p { font-size: 15px; color: #828282; line-height: 1.3em; margin-bottom: 32px;  }
  .service-home .service-item .icon-holder {width: 108px; margin: 0 auto;}


  /*================= SINGLE BLOG POST ===============*/
  
.news-grid {
    background: #ffffff;
    padding-top: 110px;
    padding-bottom: 50px;
}
.news-grid h2 { margin-bottom: 85px; line-height: 1em; }

.single-blog-post .img-holder {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 241px;
    height: 241px;
}

.single-blog-post .img-holder a {
  display: block;
}

.single-blog-post .img-holder img {
    width: 100%;
    transform: scale(1.01);
    transition: all 700ms ease;
}
.single-blog-post:hover .img-holder img {
    transform:scale(1.2);	
}

.single-blog-post .text-holder {
    position: relative;
    display: block;
    padding-top: 20px;
}

.single-blog-post .meta-box {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 30px;
    margin-top: 0px;
    margin-bottom: 10px;
}
.single-blog-post .meta-box .meta-info {
    position: relative;
    display: block;
    overflow: hidden;
}
.single-blog-post .meta-box .meta-info li {
    position: relative;
    display: inline-block;
    float: left;
    line-height: 20px;
    padding-right: 16px;
    margin-right: 14px;
    font-size: 16px;
}

.single-blog-post .meta-box .meta-info li span { color: #3f9bca; }

.single-blog-post .meta-box .meta-info li:last-child{
    padding-right: 0;
    margin-right: 0;
}
.single-blog-post .meta-box .meta-info li:last-child:before{
    display: none;
}

.single-blog-post .text-holder .blog-title {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 1.2em;
    height:50px;
    min-height: 50px;
}
.single-blog-post .text-holder .blog-title a{
    color: #29343a;
    transition: all 500ms ease;
}
.single-blog-post .text-holder .blog-title a:hover{
    color: #3f9bca;
}

.single-blog-post .text-holder .text{
    display: block;
    margin-top: 12px;
}
.single-blog-post .text-holder .text p{
    margin: 0 0 26px;
    font-size: 16px;
    line-height: 1.2em;    
}


/*================= THUMB SECTION ===============*/
.linebrd { border-top: 1px solid #f4f5f6;}
.thumb-grid { padding: 120px 0 160px 0;}
.thumb-grid h2 { font-family: 'CircularStdbld', sans-serif; margin-bottom: 110px; line-height: 1em; }
.intro { margin-bottom: 70px; }
.intro p { margin-bottom: 20px; text-align: center; font-size: 18px; }

.single-thumb { margin-bottom: 70px;}
.gallery .single-thumb { margin-bottom: 30px;}
.single-thumb .img-holder {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 241px;
  height: 241px;
}

.thgrid2 .single-thumb .img-holder, .service-home .single-thumb .img-holder {
  min-height: 373px;
  height: 373px;
}

.single-thumb .img-holder img {
  width: 100%;
  transform: scale(1.01);
  transition: all 700ms ease;
}
.single-thumb:hover .img-holder img {
  transform:scale(1.2);	
}
.single-thumb a { display:block;}
.single-thumb .text-holder {
  position: relative;
  display: block;
  padding-top: 20px;
}

.single-thumb .text-holder .thumb-title {
  position: relative;
  display: block;
  font-size: 25px;
  line-height: 1.2em;
  text-align: center;
}
.single-thumb a .text-holder .thumb-title {
  color: #29343a;
  transition: all 500ms ease;
}
.single-thumb a:hover .text-holder .thumb-title {
  color: #3f9bca;
}

/*================= THUMB EQUIPE ===============*/

.thumb-equipe { padding: 120px 0 160px 0;}
.thumb-equipe h2 { font-family: 'CircularStdbld', sans-serif; margin-bottom: 110px; line-height: 1em; }

.equipe-box:hover .frame .caption {
	opacity: 1;
  cursor: pointer;  
}
.equipe-box .frame {
	float: left;
  overflow: hidden;
	position: relative;
  width: 100%;
  height: auto;
}
.equipe-box .frame .caption {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	background-color: rgba(63,155,202,1);
	opacity: 0;
  transition: all .8s ease-in-out;
}
.equipe-box .frame .caption .holder {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 100%;
	height: 85%;
	padding: 0 30px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
  overflow: hidden;
}
.equipe-box .frame .caption p {
	color:#fff;
	text-align: center;
  margin-bottom: 15px;
  line-height: 1.1em;
  overflow-wrap: break-word;
  word-wrap: break-word;
  font-size: 13px;

}

.equipe-box .text-box {
	float: left;
	width: 100%;
  padding: 0;
  margin: 33px 0 78px 0;
}

.equipe-box .text-box h3 {
	text-align: center;
  width: 100%;
  border-right: 4px solid #3f9bca;
  border-left: 4px solid #3f9bca;
  line-height: 17px;
  font-size: 22px;
  margin: 0;
}
.equipe-box .text-box .fct {
  font-family: 'CircularStd-book', sans-serif;
	text-align: center;
  width: 100%;
  font-size: 16px;
  margin-top: 15px;
}

/*================= NEWS LIST ===============*/

.news-grid-list { padding: 120px 0 160px 0;}
.news-grid-list h2 { font-family: 'CircularStdbld', sans-serif; margin-bottom: 110px; line-height: 1em; }

/*================= CONTACT ===============*/

.contact-address { padding: 120px 0 160px 0;}
.contact-address h2 { font-family: 'CircularStdbld', sans-serif; margin-bottom: 90px; line-height: 1em; }
.contact-address .intro { margin-bottom: 80px; }
.contact-address .intro p { margin-bottom: 30px; text-align: center; font-size: 18px; }


.contact-address .address-block {padding-top: 40px; text-align: center;}
.contact-address .address-block .icon-box {display: inline-block;height: 70px;}
.contact-address .address-block h5 {font-size: 26px;padding: 18px 0 20px;}
.contact-address .address-block h6 {font-family: 'Poppins', sans-serif;  font-size: 18px; font-weight: bold; color:#919191; padding: 0px 0 3px;}
.contact-address .address-block p, .contact-address .address-block p a.tel  {color: #919191; text-decoration: none;}
.contact-address .address-block p a {color: #3f9bca; text-decoration: underline;}
.contact-address .address-block ul li {display: inline-block;margin: 10px 8px 0;}
.contact-address .address-block ul li a {font-size: 20px; color: #3f9bca; text-decoration: underline;}

.appointment-block p { font-size: 17px; margin-bottom: 20px;}
/*.appointment-block iframe { border: 1px solid #999;}*/
.appointment-block iframe { margin: 0 auto; width: 180px; overflow: hidden;}

#google-map {height: 500px;}
.map-canvas {height: 100%;}
/*================= URGENCE ===============*/
.urgence { padding: 120px 0 60px 0;}
.urgence p { margin-bottom: 25px;}
.urgence h2 { font-family: 'CircularStdbld', sans-serif; margin-bottom: 90px; line-height: 1em; }
.urgence h3 { font-family: 'CircularStdbld', sans-serif; margin-bottom: 40px; margin-top: 40px; line-height: 1.2em; font-size: 25px; }
.urgence h4 { font-family: 'CircularStdbld', sans-serif; margin-bottom: 25px; line-height: 1.2em; font-size: 18px; }
a.tel-text, a.tel-text:hover { color: #828282;}
.faq-urg {margin: 60px 0;}
.faq-urg .faq-panel .panel .panel-heading .panel-title a {background-color: #f3f4f5;}
.img-urg {width: 50%; margin: 0 auto 50px auto;}


/*================= NEWS DETAIL ===============*/
.news-detail { padding: 120px 0 160px 0; }
.news-detail p { margin-bottom: 25px;}
.news-detail h2 { font-family: 'CircularStdbld', sans-serif; margin-bottom: 90px; line-height: 1em; }
.news-detail h3 { font-family: 'CircularStdbld', sans-serif; margin-bottom: 40px; margin-top: 40px; line-height: 1.2em; font-size: 25px; }
.news-detail h3:before { 
  content: '';
  display: inline-block;
  padding-right: 10px;
  height: 25px;
  border-left: 5px solid#3f9bca; }
.news-detail h4 { font-family: 'CircularStdbld', sans-serif; margin-bottom: 25px; line-height: 1.2em; font-size: 18px; }
.user-tools { margin:100px 0 0 0; background-color: #f6f6f6;}
.user-tools .inner { padding: 20px;}
.user-tools .left { float:left;}
.user-tools .right { float:right;}
.user-tools .left a { margin-right: 15px; line-height: 4em;}
.download {margin: 25px 0; border:1px solid #c0c0c0; }
.download .inner {padding: 15px;}
.download h5 { font-family: 'CircularStdbld', sans-serif; margin-bottom: 12px; line-height: 1.2em; font-size: 18px; color: #29343a; }
.download ul li { display: inline; margin-right: 15px; font-size: 16px; }
.download ul li a { color: #3f9bca; }
.download ul li a i { margin: 0 8px 10px 0; }

/*================= MODAL BOX ===============*/
.gallery .fancybox-content {border-top: none;}
.fancybox-content {border-top: 4px solid #3f9bca;}
.modal-texte h3 { width: 100%; text-align: center; font-family: 'CircularStdbld', sans-serif; margin: 40px 40px; line-height: 1em; }
.modal-texte h6 { margin-bottom: 40px; line-height: 1em; }
.modal-texte .text-holder p { margin-bottom: 25px; }


/*================= FAQ SECTION ===============*/
.faq { padding: 120px 0 60px 0;}
.faq h2 { font-family: 'CircularStdbld', sans-serif; margin-bottom: 110px; line-height: 1em; }
.faq h3 { font-family: 'CircularStdbld', sans-serif; margin-bottom: 60px; line-height: 1em; }
.faq-urgence .faq-tab-wrapper-two { margin-bottom: 60px;}


.faq-tab-wrapper-two .faq-panel .panel .panel-heading .panel-title a {
  display: block;
  padding: 22px 40px 22px 22px;
  font-size: 22px;
  color: #3f9bca;
  position: relative;
}
.faq-tab-wrapper-two .faq-panel .panel {margin-bottom: 20px;border:1px solid rgba(21,21,21,0.06);}
.faq-tab-wrapper-two .faq-panel .panel-body {
  border-top:1px solid rgba(21,21,21,0.06);
  padding: 35px 40px 10px 22px;
  background-color: #fff;
}
.faq-tab-wrapper-two .faq-panel .panel-body p {padding-bottom: 25px;}
.faq-tab-wrapper-two .faq-panel .panel .panel-heading {  background-color: #fff;}
.faq-tab-wrapper-two .faq-panel .panel .panel-heading .panel-title a:before {
  content: '';
  font-family: 'font-awesome';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 25px;
  color: #29343a;
}
.faq-tab-wrapper-two .faq-panel .panel .panel-heading.active-panel .panel-title a:before {content: ''; color: #3f9bca; }

/*================= CALL TO ACT ===============*/
.call-to-act  { padding: 40px 40px; background-color: #3f9bca; }
.call-to-act p { font-family: 'CircularStdblck'; font-size: 22px; color:#fff; line-height: 55px;  }
.call-to-act a { float: right; }

/*================= FOOTER ===============*/

.theme-footer {background: #1b2328;padding-top: 90px; font-family: 'CircularStd-book'; }
.theme-footer .row [class*="col-"] {padding-bottom: 0px;}
.theme-footer .title {font-size: 24px;color:#fff;padding-bottom: 25px; font-family: 'CircularStdmed'; }
.theme-footer .footer-list ul li a {
  line-height: 48px;
  font-size: 20px;
  color: #939596;
  transition: all .4s ease-in-out;
}
.theme-footer .footer-list ul li a:hover {color: #fff;}

.theme-footer .footer-list-horaire .rdv { color: #3f9bca; font-size: 18px; margin-bottom: 15px; display: block; }

.theme-footer .footer-list-horaire h6 {
  font-size: 14px;
  color: #fff;
  border-bottom: 1px solid #545a5e;
  padding-bottom: 5px;
  margin-bottom: 15px;
  font-family: 'poppins';
  font-weight: lighter;
}
.theme-footer .footer-list-horaire ul li {
  line-height: 28px;
  font-size: 15px;
  color: #3f9bca;
}
.theme-footer .footer-list-horaire ul li span {
  font-family: 'CircularStdmed';
  color: #fff;
}

.theme-footer .adress {color: #fff; font-size: 20px; margin-bottom: 25px;}
.theme-footer .email {color: #939596; font-size: 20px; font-family: 'CircularStdmed'; transition: all .4s ease-in-out;}
.theme-footer .email:hover {color: #fff;}
.theme-footer .phone {font-size: 20px;margin: 15px 0 25px; font-family: 'CircularStdmed'; color: #3f9bca; transition: all .4s ease-in-out;}
.theme-footer .phone:hover {color: #fff;}
.theme-footer .social-icon li {display: inline-block;margin-right: 10px;}
.theme-footer .social-icon li a {
  transition: all .4s ease-in-out;
  width: 40px;
  height: 40px;
  border: 1px solid #dcdcdc;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #dbdbdb;
}
.theme-footer .social-icon li a:hover {color: #fff;}

.theme-footer .bottom-footer {
  border-top: 1px solid #545a5e;
  padding: 35px 0;
}
.theme-footer .bottom-footer p {float: left; color: rgba(255,255,255,1);}
.theme-footer .bottom-footer ul {float: right;}
.theme-footer .bottom-footer ul li {display: inline-block; color:#fff;}
.theme-footer .bottom-footer ul li a {
  transition: all .4s ease-in-out;
  line-height: 28px;
  color: #939596;
  margin-left: 15px;
}
.theme-footer .bottom-footer ul li:first-child a { margin-left: 5px; }
.theme-footer .bottom-footer ul li a:hover { color: #fff; }

.theme-footer .middle-footer {
  border-top: 1px solid #545a5e;
  margin-top: 45px;
  padding: 35px 0;
}

.theme-footer .middle-footer .inline-items .ico img { max-width: 44px; display: inline-block; }
.theme-footer .middle-footer .inline-items .text { margin-left: 8px;  color: #fff; font-size: 16px;}

.theme-footer .middle-footer .ico-text { text-align: center;}
.theme-footer .middle-footer .ico-text .wrapper img { max-width: 50px; margin: 0 auto 8px auto;}
.theme-footer .middle-footer .ico-text .wrapper span { color: #fff; font-size: 16px;}



/*COOKIE*/
#easyCookie {padding: 20px 20px; border: 0;}
#easyCookie .ec-btns > a {font-size: 14px; background: #3f9bca;}
body.nl #easyCookie.ec-double-btn .ec-btns {width: 300px;}
body.nl #easyCookie .ec-btns > a {width: 135px;}
#easyCookie.ec-black {background: #29343a;}

/*FORM*/
.form {margin: 0 0 60px 0;}

.form .mb-30px { margin-bottom: 30px; }
.form .border-color-white { border-color: var(--white) !important;}
.form .box-shadow-double-large, .form .box-shadow-double-large-hover:hover {
  -webkit-box-shadow: 0 0 45px rgba(0, 0, 0, 0.09);
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.09);
  -webkit-transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
}
.form .terms-condition-box .box { font-size: 14px; }

:root {
  --base-color: #2946f3;
  --white: #ffffff;
  --black: #000000;
  --red: #dc3131;
  --light-red: #feedec;
  --green: #2ebb79;
  --crusoe-green: #d39121;
  --yellow: #ffea23;
  --dark-gray: #232323;
  --medium-gray: #717580;
  --extra-medium-gray: #e4e4e4;
  --light-gray: #a8a8a8;
  --very-light-gray: #f7f7f7;
  --light-medium-gray: #eaeaeb;
  --charcoal-blue: #202329;
  --slate-blue: #262b35;
  --medium-slate-blue: #374162;
  --extra-medium-slate-blue: #23262d;
  --dark-slate-blue: #1f232c;
  --extra-dark-slate-blue: #121418;
  --extra-very-slate-blue: #161620;
  --tussock-yellow: #BC8947;
  --aluminium-grey:#80858F;
  --solitude-blue:#f0f4fd;
  --golden-yellow:#fd961e;
  --selago:#eaedff;
  --white-ice:#d8f5ef;
  --cornflower-blue:#445fed;
  --jade:#00AF6B;
  --orange: #ef991f;
  --majorelle-blue: #724ade;
  --light-majorelle-blue: #f2edfe;
  --spring-wood: #f9f6f3;
  --tropical-blue: #1ea3b1;
  --camarone: #20642b;
  --seal-brown: #0e0708;
  --Wasabi: #8ea63a;
}

/* Input */
input, select, textarea, .form-control, .form-select {
  padding: 12px 25px;
  width: 100%;
  max-width: 100%;
  resize: none;
  outline: none;
  font-size: 16px;
  border: 1px solid #e4e4e4;
  color: var(--medium-gray);
  line-height: 30px;
  word-break: normal;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 4px !important;
}
.form-select {
  color: var(--medium-gray);
}
.form-select:focus {
  border-color: #dfdfdf;
}
input:focus, select:focus, textarea:focus, .form-control:focus {
  border: 1px solid #c2c2c2 !important;
  box-shadow: none !important;
  color: var(--medium-gray);
}
::-webkit-input-placeholder {
  color: var(--medium-gray) !important;
  text-overflow: ellipsis;
}
::-moz-placeholder {
  color: var(--medium-gray) !important;
  text-overflow: ellipsis;
  opacity: 1;
}
:-ms-input-placeholder {
  color: var(--medium-gray) !important;
  text-overflow: ellipsis;
  opacity: 1;
}
.placeholder-light::-webkit-input-placeholder {
  color: var(--white) !important;
  text-overflow: ellipsis;
}
.placeholder-light::-moz-placeholder {
  color: var(--white) !important;
  text-overflow: ellipsis;
  opacity: 1;
}
.placeholder-light:-ms-input-placeholder {
  color: var(--white) !important;
  text-overflow: ellipsis;
  opacity: 1;
}

/* Select */
.select {
  position: relative;

}
select {  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: none; }

  .select:after {
  content: "\e842";
  font-family: feather !important;
  right: 20px;
  top: 50%;
  height: 34px;
  position: absolute;
  pointer-events: none;
  font-size: 22px;
  margin-top: -15px;
}
/* Date icon */
.date-time {
  position: relative;
}
.date-icon {
  position: relative;
}
.date-icon input[type=date]::-webkit-inner-spin-button,
.date-icon input[type=date]::-webkit-calendar-picker-indicator {
  -webkit-appearance: none;
  opacity: 0;
  -moz-appearance: none;
  appearance: none;
}
.date-icon:after {
  content: "\e83a";
  font-family: feather !important;
  right: 28px;
  top: 50%;
  height: 34px;
  position: absolute;
  pointer-events: none;
  font-size: 22px;
  margin-top: -15px;
}
.date-icon input[type=date]::-webkit-date-and-time-value {
  text-align: left !important;
}
/* Mozilla firefox */
@-moz-document url-prefix() {
  .date-icon:after {
    display: none;
  }
}

/* Input size */
.input-small,
.textarea-small,
.select-small {
  padding: 7px 15px;
  font-size: 12px;
}
.input-medium,
.textarea-medium,
.select-medium {
  padding: 14px 28px;
}
.input-large {
  padding: 16px 32px;
}
.form-control.is-invalid:focus {
  box-shadow: none;
}

/*RESET*/
:focus-visible {
  outline: none;
}
[class*=line-icon], [class*=" line-icon"], [class*=bi-], [class*=feather], [class*=ti-] {
  display: inline-block;
}
.form-control, .form-control.is-invalid, .was-validated .form-control:invalid {
  background-position: right 20px center !important;
  height:auto;
}
.form-control.is-invalid, .was-validated .form-control:invalid {
  border-color: #dc3545 !important;
}
.g-recaptcha.is-invalid iframe {
  border: 1px solid #dc3545 !important;
}

/* Alert box */
.alert-success {
  background-color: #f1fbec;
  color: #54b783;
  border-color: #cce8b3;
  padding: 10px 20px 10px 20px;
}
.alert {
  padding: 20px 25px 20px 30px;
  margin-bottom: 30px;
  line-height: 22px;
  position: relative;
  z-index: 1;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.alert.alert-success {
  background-color: #f1fbec;
  color: #54b783;
  border-color: #cce8b3;
}
.alert.alert-info {
  background-color: #ebf5f9;
  color: #4278bb;
  border-color: #bce8f1;
}
.alert.alert-warning {
  background-color: #fcf8e3;
  color: #e2ad4b;
  border-color: #faebcc;
}
.alert.alert-danger {
  background-color: #fbf1f1;
  color: #e65656;
  border-color: #efe1e3;
}
.alert strong {
  font-weight: 500;
}
@keyframes hvr-icon-push {
  50% {
    -webkit-trasfrom: scale(0.5);
    trasfrom: scale(0.5);
  }
}
.alert .close {
  opacity: 1;
  font-size: 16px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.34);
  text-shadow: none;
  float: right;
}
.alert .close i {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.alert .close:hover i {
  -webkit-animation-name: hvr-icon-push;
  animation-name: hvr-icon-push;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.alert .close:not(:disabled), .alert .close:not(.disabled):focus, .alert .close:not(.disabled):hover {
  opacity: 1;
}



/* Contact form */
.select-style select {
  background-image: url("../images/contact-form-down-arrow.jpg");
  background-repeat: no-repeat;
  background-position: top 25px right 30px;
  cursor: pointer;
  -webkit-appearance: none;
  background-color: transparent;
}
.terms-condition-box label {
  display: block;
}
.terms-condition-box input[type=checkbox] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 4px;
  left: 0;
}
.terms-condition-box input[type=checkbox]:checked + .box:after {
  display: block;
}
.terms-condition-box input[type=checkbox].is-invalid + .box:before {
  border-color: #dc3545;
}
.terms-condition-box .box {
  position: relative;
  padding-left: 30px;
  padding-top: 4px;
  cursor: pointer;
  display: inline-block;
}
.terms-condition-box .box:before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 1px solid var(--medium-gray);
  position: absolute;
  top: 5px;
  left: 0;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.terms-condition-box .box:after {
  position: absolute;
  left: 7px;
  top: 9px;
  content: "";
  width: 6px;
  height: 10px;
  display: none;
  border: solid var(--dark-gray);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*CABINET ET EQUIPE*/
.cab-equipe { padding: 120px 0 160px 0;}
.cab-equipe h2 { font-family: 'CircularStdbld', sans-serif; margin-bottom: 90px; line-height: 1em; }
.cab-equipe-sct-2 .intro { margin-bottom: 0px;}
.cab-equipe .content ul { list-style: disc; margin-bottom: 30px;}
.cab-equipe .content ul li { margin-bottom: 10px;}
.cab-equipe .content p { margin-bottom: 20px;}


/*upload*/
.contact-upload {
    padding: 120px 0 160px 0;
}

.contact-upload h2 {
    font-family: 'CircularStdbld', sans-serif;
    margin-bottom: 90px;
    line-height: 1em;
}

.contact-upload h4 {

    margin-bottom: 20px;
    line-height: 1em;
}

.contact-upload .text-wrapper ul { list-style: disc; margin-bottom: 30px; padding-left: 60px; }
.contact-upload .text-wrapper ul li { margin-bottom: 10px;}


.contact-upload  .text-wrapper .section-photos { padding: 0 0 90px 0; }