/**
* Template Name: Defontaine
* Text Domain: defontaine
* Author: Strat Engine
*/

:root {
	--font-color: #000000;
	--menuhead-color: #171C56;
	--titre-color: #161C55;
	--color-bgfooter: #161C55;
	--color-bgrouge: #FF0000;
}

.rouge {color: var(--color-bgrouge);}
.blanc {color: #fff !important;}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {scroll-behavior: smooth;}

body {
  font-family: "Manrope", sans-serif;
  color: #000;
}

a {
  color: var(--font-color);
}

a:hover {
  color: var(--color-bgrouge);
  text-decoration: none;
}

svg {
    width: 100%;
    height: 100%;
}


h1, h2, h3, h4, h5, h6 {
  font-family: "Manrope", sans-serif;
  font-weight: bold;
}

.h2deco {
	font-size: 35x;
	font-weight: bold;
	padding: 20px 0 20px 50px;
	background: transparent url(assets/img/decotitre.png) no-repeat left center;
  color: var(--titre-color);
}

.h2deco span {
	font-size: 30px;
	/*margin-top: 15px;*/
	color: var(--font-color);
}

h3 {font-weight: bold;}

.modal {
  overflow: visible !important;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -o-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0;
  height: auto;
}

.modal a.close-modal[class*="icon-"] {
  top: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
  color: #fff;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-indent: 0;
  background: rgb(255, 0, 0);
  border: 2px solid #fff;
  -webkit-border-radius:  26px;
  -moz-border-radius:     26px;
  -o-border-radius:       26px;
  -ms-border-radius:      26px;
  -moz-box-shadow:    1px 1px 5px rgba(0,0,0,0.5);
  -webkit-box-shadow: 1px 1px 5px rgba(0,0,0,0.5);
  box-shadow:         1px 1px 5px rgba(0,0,0,0.5);
}



/* breadcrumbs */


.fbc-page .fbc-wrap .fbc-items li:last-child {color: var(--color-bgfooter) !important;font-weight: bold;}
.fbc-page .fbc-wrap .fbc-items li:first-child {padding-left: 0 !important;}
.fbc-page .fbc-wrap .fbc-items li a {color: var(--color-bgfooter) !important;}

.tsh_breadcrumbs {display: inline-block; padding: 0;margin: 5px 0 20px 0;}
.tsh_breadcrumbs li {display: inline-block;}
.tsh_breadcrumbs li:before {content: none !important;}
.tsh_breadcrumbs li:last-child {color: var(--color-bgfooter) !important;font-weight: bold;}
.tsh_breadcrumbs li:first-child {padding-left: 0 !important;}
.tsh_breadcrumbs li, .tsh_breadcrumbs li a {color: var(--color-bgfooter) !important;font-size: 13px;font-family: "Roboto", sans-serif;}


.dropdown-menu {
	background-color: #161c55;
	border: 0;
	border-radius: 0;


}

.dropdown-menu .sub-menu {
    left: 100%;
    position: absolute;
    top: 0;
    visibility: hidden;
    margin-top: -1px;
}

.dropdown-menu li:hover .sub-menu {
    visibility: visible;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.nav-tabs .dropdown-menu, .nav-pills .dropdown-menu, .navbar .dropdown-menu {
    margin-top: 0;
}

.navbar .sub-menu:before {
    border-bottom: 7px solid transparent;
    border-left: none;
    border-right: 7px solid rgba(0, 0, 0, 0.2);
    border-top: 7px solid transparent;
    left: -7px;
    top: 10px;
	border-radius: 0;
}
.navbar .sub-menu:after {
    border-top: 6px solid transparent;
    border-left: none;
    border-right: 6px solid #fff;
    border-bottom: 6px solid transparent;
    left: 10px;
    top: 11px;
    left: -6px;
	border-radius: 0;
}
.menufixed .iconelink .dropmenucss a {
	display: block !important;
}
.menufixed .iconelink .dropmenucss a i {display: inline-block; padding-right: 15px;}




.dropmenucss hr {
    margin-top: 5px;
    margin-bottom: 5px;
    border: 0;
    border-top: 1px solid rgb(255 255 255);
}

table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    min-width: 400px;
}
thead tr {
    background-color: #FF0000;
    color: #ffffff;
    text-align: left;
}
th, td {
    padding: 12px 15px;
}
tbody tr {
    border-bottom: 1px solid #dddddd;
}

tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

tbody tr:last-of-type {
    border-bottom: 2px solid #FF0000;
}
tbody tr.active-row {
    font-weight: bold;
    color: #FF0000;
}

.boutcookie {background-color: #FF0000; color: #FFF;padding: 5px 20px;}
.boutcookie:hover {color: #FFF;}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  display: none;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #1977cc;
  border-top-color: #d1e6f9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #FF0000;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #1c84e3;
  color: #fff;
}

.datepicker-dropdown {
  padding: 20px !important;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #fff;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info a {
  line-height: 1;
  color: #444444;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #1977cc;
}

#topbar .contact-info i {
  color: #1977cc;
  padding-right: 4px;
  margin-left: 15px;
}

#topbar .contact-info i:first-child {
  margin-left: 0;
}

#topbar .social-links a {
  color: #437099;
  padding-left: 15px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #1977cc;
}

#topbar .social-links a:first-child {
  border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.menufixed {
	position: absolute;
	top: 120px;
	width: 100%;
	z-index: 12;
	height: 80px;

}
.menufixed .menurouge{
	background-color: #FF0000;
	display: flex;
	align-items: center;
}

.menufixed .menurouge img.logobmenu {max-width: 120px;display: block;margin-right: 20px;opacity: 0;  transition: .2s ease; }
.menufixed.menufixed-scrolled img.logobmenu {opacity: 1;}

.menufixed .menusup{
	background-color: #4242423d;
}

.menurouge nav a {
	color: #FFF;
}
.menurouge .colmenubord {border-right: 2px solid #b7b7b7 !important; padding-bottom: 10px !important;}

.menurouge .mega-sub-menu:first-of-type {margin-top: 15px !important;}
.menurouge a[aria-expanded="true"]{font-weight: bold !important;}



.zoommegamenu {color: #161c55; font-size: 18px;font-weight: 700; display: inline-block;padding: 30px 0px 30px 60px;transition: .2s ease;background: transparent url('assets/img/pictocroix.png') no-repeat center left;}
.zoommegamenu span {display: block;font-size: 12px;}
.zoommegamenu:hover {color: #161c55;padding: 30px 0px 20px 65px;}

.menufixed.menufixed-scrolled {
	position: fixed;
	top: 0;
	z-index: 500;
}

.aitemegamen {display: inline-block; padding-bottom: 3px;line-height: 100%;}
.mega-menu-wrap .mega-menu > li.mega-menu-item {padding: 15px 0 !important;}

.menufixed .iconelink a {display: inline-block; padding-left: 10px;color: #FFF;}
.iconelink .login img {margin-right: 5px;transform: rotate(-90deg);transform-origin: center;}
.iconelink .menlang {position: relative;}
.iconelink .menlang.dropdown-toggle::after{display: none !important;}
.iconelink .menlang .langselect {
  position: absolute;
  bottom: -12px;
  left: 21px;
  transition: .2s ease;
}

.dropdown-menu.langhome {
  width: 60px !important;
  background-color: #161c5557;
  -webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.25);
  -moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.25);
  box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.25);

}

.dropdown-menu.langhome.show {display: flex;}
.dropdown-menu.langhome .dropdown-item{
  width: 60px !important;
  padding: 0 0 0 10px;
}

.dropdown-item:focus, .dropdown-item:hover {
  background-color: transparent;
}

#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  /* padding: 15px 0; */
  top: 0px;
  box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}

#header.header-scrolled {
  top: 0;
}

#header .headcontent {min-height: 120px;}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: "Manrope", sans-serif;
}

#header .logo a {
  color: #2c4964;
}

#header .logo img {
  width: 300px;
}
/* @media (max-width : 1445px) {
  #header .logo img {width: 220px;}
} */

@media (max-width : 1315px) {
  .menufixed {top:142px}
}

@media (max-width: 992px) {
  #header {
    top: 0;
  }
  #header .logo {
    font-size: 28px;
  }
}
.logomenu .meninline {display:inline-block;margin-left: 20px;}


#main {
	/*padding-top: 90px;*/
}

.downloadhead {margin: 0 15px;}
.downloadhead a img {width: 28px; margin-bottom: 10px;}

.eshophead {position: absolute; top: 30px;left: 1008px;z-index: 9;}
body.lang-en .eshophead {position: absolute; top: 30px;left: 910px;z-index: 9;}

.eshophead a img {
	margin: 0 15px;
	margin-bottom: 20px;
  width: 90px;
}

input.search-query {
	height: 30px;
    padding-left:26px;
	font-size: 13px;
	background-color: #EDEDED;
	border: 1px solid #EDEDED;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	border-radius: 5px;
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
    -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
    -o-transition: border linear 0.2s, box-shadow linear 0.2s;
    transition: border linear 0.2s, box-shadow linear 0.2s;
}

form.form-search {
    position: relative;
    margin-right: 5px;
}

form.form-search:before {
    content:'';
    display: block;
    width: 14px;
    height: 20px;
    background-image: url(assets/img/glyphicons-halflings.png);
    background-position: -48px 0;
    position: absolute;
    top:8px;
    left:8px;
    opacity: .5;
    z-index: 1000;
}
.baseline {
	margin-bottom: 50px;
	text-align: right;
	color: var(--titre-color);
	font-size: 18px;

}
.headsearch {
	align-items: center;
}
.headrs {
	margin: 0 2px;
  height: 32px;
  width: 32px;
  transition: .3s;
  border-radius: 50%;
  display: inline-block;
}

.headrs:hover {background-color: rgb(218, 218, 218); border-radius: 50%;}

.head2 {white-space: no-wrap;}

/*--------------------------------------------------------------
# Content Page
--------------------------------------------------------------*/
.contentpage img {max-width: 100%;}

.contentpage h1 {
	color: var(--titre-color);
    font-size: 60px;
    font-weight: normal;
    padding: 30px 0;
}

.contentpage h2 {
	color: var(--titre-color);
    font-size: 35px;
    font-weight: bold;
    padding: 20px 0 20px 50px;
    background: transparent url(assets/img/decotitre.png) no-repeat left center;
}

.elementor-widget-heading {
    margin-top: -90px;
    padding-top: 90px !important;
}

/* .elementor-widget-heading::before{
  content:'';
  display:block;
  height:200px;
  margin-top:-200px;
  visibility:hidden;
} */

.contentpage h3 {
	color: var(--titre-color);
    font-size: 28px;
    font-weight: bold;
}


.contentpage ul {list-style: none}
.contentpage ul li::before {content: "\25AA"; color: var(--color-bgrouge);display: inline-block; width: 1em;
  margin-left: -1em;}
.contentpage ul.wp-block-social-links li::before {display: none;}

.contentpage ol {list-style: none; counter-reset: li;}
.contentpage ol li {counter-increment: li;}
.contentpage ol li::before {
	content: counter(li);
	color: var(--color-bgrouge);
    display: inline-block;
	width: 1em;
	margin-left: -1.5em;
    margin-right: 0.5em;
	text-align: right;
	direction: rtl;
}

.elementor-button {

    background-color: var(--color-bgrouge) !important;
    color: #fff  !important;
	border-radius: 0  !important;
}

.elementor-image-carousel figure.swiper-slide-inner {height: 250px; width: 300px;}
.elementor-image-carousel figure.swiper-slide-inner img {height: 100%; width: 100%; object-fit: cover;}

.certif .elementor-image-carousel figure.swiper-slide-inner {height: auto; width: 150px;}

.elementor-inner-column ul {padding: 0 35px;}


@media screen and (max-width: 768px) {
  .elementor-image-carousel figure.swiper-slide-inner {height: 250px; width: auto;}
  .certif .elementor-image-carousel figure.swiper-slide-inner {width: auto;}
}

/*--------------------------------------------------------------
# Content Article
--------------------------------------------------------------*/
section.contentart {padding: 0 0 50px 0;}
.contentart img {max-width: 100%;}
.contentart a {
  color: var(--color-bgrouge);
  font-weight: bold;
}

.contentart h1 {
	color: var(--titre-color);
    font-size: 50px;
    font-weight: normal;
    padding: 30px 0;
}

.contentart h2 {
	color: var(--titre-color);
    font-size: 40px;
    font-weight: bold;
    padding: 30px 0 30px 0px;

}

.contentart h3 {
	color: var(--titre-color);
    font-size: 30px;
    font-weight: bold;
}
.contentart img {
  max-width: 100%;
}
/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
input[type="checkbox"]::checked:before{background-color:#FF0000 !important;}

input[type=checkbox], input[type=radio] {
    box-sizing: border-box;
    padding: 0;
	  /*background-color:#FF0000 !important;*/
}

body .gform_wrapper .gform-body button.gform_button_select_files,
body .gform_wrapper .gform_footer input.button, body .gform_wrapper .gform_footer input[type="submit"] {
    --gf-local-bg-color: #eee !important;
    --gf-local-color: #333 !important;
}
body .gform_wrapper .gform-body button.gform_button_select_files:hover,
body .gform_wrapper .gform_footer input.button:hover, body .gform_wrapper .gform_footer input[type="submit"]:hover {
    --gf-local-bg-color: #ddd !important;
}
/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
form input[type="submit"] {
  font-size: 16px;
  border: 0;
  padding: 5px 20px;
  background: var(--color-bgrouge);
  color: #fff;
  transition: 0.3s;

}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */

/*MAX MEGA MENU -*/
li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {padding: 10px 0 0 0 !important;}
#mega-menu-wrap-max_mega_menu_5 #mega-menu-max_mega_menu_5 > li.mega-menu-megamenu > ul.mega-sub-menu {padding: 0px 50px 15px 50px !important;}

.mega-sub-menu img {max-height: 80px; padding-bottom: 15px;width: auto;}

.mega-sub-menu {height: 520px;}


.menuserv a {display: inline-block;margin-right: 15px;min-width: 150px;text-align: center;font-weight: 700;}
.menuserv a img {display: block;margin: auto;margin-bottom: 15px;max-height: 130px !important;}

.megamenuprod .wrapperprod {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 32px;
}
.megamenuprod .wrapperprod .itemprodhome2 {
  min-height: 201px;
}


.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 8px 0 8px 20px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: var(--menuhead-color);
  transition: 0.3s;
  font-size: 14px;
  padding: 5px 2px;

}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  /*border-bottom: 2px solid var(--menuhead-color);*/

}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 20px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #082744;
  border: none;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #1977cc;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Get Startet Button */
.appointment-btn {
  background: transparent;
  color: var(--color-bgfooter);
  border: 2px solid var(--color-bgfooter);
  border-radius: 0px;
  padding: 8px 25px;
  /* white-space: nowrap; */
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  text-transform: uppercase;
}

.itemprodhome2 .appointment-btn {white-space: nowrap;}

.appointment-btn.blanc {
	border: 2px solid #FFF;
	color: #FFF;
}

.appointment-btn:hover {
  background: var(--color-bgfooter);
  color: #fff;
}

/* @media (max-width: 768px) {
  .appointment-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
} */

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #1977cc;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #2c4964;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #1977cc;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(28, 47, 65, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}


.nohero {padding-top: 100px;}

/*--------------------------------------------------------------
# Home
--------------------------------------------------------------*/
#slidehome {
	padding: 0 !important;
	position: relative;


}
.swiperhome {
	background-size: cover;
  background: url(assets/img/homeslide1.jpg) center center;
	height: 600px;
}


.swiperhome .swiper-wrapper {
	position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}
.swiperhome .swiper-slide {
	color: #FFF;
	font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
	padding-left: 80px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.swiperhome .swiper-slide.slide1 {background-image: url(assets/img/homeslide1.webp);}
.swiperhome .swiper-slide.slide2 {background-image: url(assets/img/homeslide2.webp);}
.swiperhome .swiper-slide.slide3 {background-image: url(assets/img/homeslide3.webp);}

.swiperhome .slidehometxt h1, .swiperhome .slidehometxt p {max-width: 60%;}
.swiperhome .slidehometxt span.slidehometxt_title {
  font-family: "Manrope", sans-serif;
    font-weight: bold;
    font-size: 2.5rem;

}
.swiperhome .slide3 .slidehometxt h1, .swiperhome .slide3 .slidehometxt p {max-width: 100%;}
.swiperhome p {font-size: 23px;font-weight: 888;}

.nextprev {
	position: absolute;
    bottom: 200px;
    width: 97px;
    height: 44px;
    left: 70px;
    margin-top: -22px;
    z-index: 10;
}

.swiper-button-prev, .swiper-button-next, .swiper-button-prev2, .swiper-button-next2 {
	width: 36px !important;
	height: 36px !important;
	background-color: #FF0000 !important;
	background-image: none !important;
  color: #fff !important;
}

.swiper-button-prev:after, .swiper-button-next:after {color: #fff; font-size: 24px !important;}

@media screen and (max-width:1080px) {
  .swiperhome .slidehometxt h1, .swiperhome .slidehometxt p {max-width: 100%;}
}

@media screen and (max-width:750px) {
  #slidehome .swiper-button-prev, #slidehome .swiper-button-next {display: none;}
  .swiper-slide .slidelink {display: block;}
  .swiperhome .slidehometxt h1 {font-size: 30px;}
  .swiperhome .slidehometxt h2 {font-size: 30px;}
  .swiperhome .slidehometxt p {font-size: 20px;line-height: 130%;}
  .swiper-slide .divlink {transform: translateY(35px) !important;}
}

/* .swiper-button-prev:after, .swiper-button-next:after {display: none;} */

.menuswiper {
	position: absolute;
    bottom: 50px;
    height: 34px;
	left: 70px;
	display: flex;
	color: #FFF;
		z-index: 9;
}

.swiper-slide .divlink {transform: translateY(100px);}

.swiper-slide .slidelink{
	padding: 0 40px 0 5px;
	margin-right: 3px;
	cursor: pointer;
	border-bottom: 3px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  transition: .5s;
  display: inline-block;
}

.swiper-slide .slidelink:hover{
	border-bottom: 3px solid #fff;
}

.homemarche {
	display: flex;
	flex-wrap: wrap;
}

.homeprod {
	background-color: #e8e8ee;
}

/*.wrapperprod {display: grid;grid-template-columns: 1fr 1fr 1fr 1fr;grid-gap: 20px;}*/
.wrapperprod {display: grid;grid-template-columns: 1fr 1fr 1fr 1fr 1fr;grid-gap: 0px;}
.wrapperprod3 {display: grid;grid-template-columns: 1fr 1fr 1fr;grid-gap: 0px;}

.itemprodhome2 {
  position: relative;
  min-height: 275px;
  background-size: cover;
  background-position: center center;
  /* cursor: pointer; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.itemprodhome2:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin: auto;
  background-color: #1C355E;
  opacity: .5;
  filter: alpha(opacity=0);
  transition: all 0.6s;
}

.itemprodhome2 a.h-100 {z-index:2;}

.itemprodhome2 .tit {
  display: block;
  padding: 0 30px;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  top: 20%;
  color: #FFF;
  opacity: 1;
  transform: translateY(0px);
  transition: all .3s;
}

.itemprodhome2 .btn {
  position: absolute;
  bottom: 30px;
  margin: auto;
  left: 50%;
  transform: translateX(-50%);
  background-color: transparent !important;
  border: 2px solid #fff !important;
  color: #fff !important;
  border-radius: 0% !important ;
}

.itemprodhome2:hover:before{opacity: 0.35;}
.itemprodhome2:hover .tit {transform: translateY(-20px);}
.itemprodhome2:hover .btn {transform: translate(-50%, +10px);}

.itemprodhome2.slewing {background-image: url(assets/img/couronne-orientation-slewing-rings-rollix-defontaine.jpg);}
.itemprodhome2.flanges {background-image: url(assets/img/Flanges-miniature-defontaine-industrie.jpg);}
.itemprodhome2.casing {background-image: url(assets/img/carter-arriel-casings-defontaine-complex.png);}
.itemprodhome2.gears {background-image: url(assets/img/Couronne-demarreur-volants-moteurs-Flywheel-defontaine-industrie.jpg);}
.itemprodhome2.assembly {background-image: url(assets/img/sous-ensemble-mecanique-complex-mechanical-assemblies-miniature.jpg);}

.itemprodhome2.slewing.s1 {background-image: url(assets/img/couronne-billes-pdt.jpg);}
.itemprodhome2.slewing.s2 {background-image: url(assets/img/couronne-billes-legeres-pdt);}
.itemprodhome2.slewing.s3 {background-image: url(assets/img/couronnes-galets-croises-pdt.jpg);}
.itemprodhome2.slewing.s4 {background-image: url(assets/img/couronne-precision-pdt.jpg);}
.itemprodhome2.slewing.s5 {background-image: url(assets/img/couronnes-specifiques-pdt.jpg);}




@media screen and (max-width: 992px){
  .home .wrapperprod, .wrapperprod {grid-template-columns: 1fr 1fr;}
}

@media screen and (max-width: 450px){
  .home .wrapperprod, .wrapperprod, .wrapperprod3 {grid-template-columns: 1fr;}
}

.homeprocess {
	background-color: #f6f7f9;
}
.homeprocess .homeproduit {
	display: flex;
	flex-wrap: wrap;
}
.homeprocess .homeproduit .itemproc {
	flex: 1 0 18%;
	text-align: center;
	font-weight: bold;
	font-size: 18px;
	margin: 5px;
	line-height: 110%;
	color: var(--color-bgfooter);
}
.homeprocess .homeproduit .itemproc img {
	display: block;
	margin: auto;
	margin-bottom: 20px;
	height: 80px;
}

.homeaccom{
	background-image: linear-gradient(to bottom, #030519, #051539, #001e5b, #05267f, #1f2ba2);
	padding: 50px 0;

}
.homeaccom p{
	color: #FFF;
	font-size: 40px;
	text-align: center;
	font-weight: 700;
  margin-bottom: -20px;
}
.homeaccom .appointment-btn{
	color: #FFF;
	border: 0;
	border-bottom: 2px solid #FFF;
	padding: 10px 0;
  font-size: 18px;
  font-weight: 800;
}
.swiperhome2 {overflow: hidden;}

.swiperhome2 .swiper-slide {
 	align-items: center;
	justify-content:center;
	text-align: center;
}

.swiperhome2 .swiper-button-next2, .swiper-button-prev2 {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size)/ 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color,var(--swiper-theme-color));
}
.swiperhome2 .swiper-button-next2 {right: 10px;left: auto;}

#rig, #rigprod {
    margin:0 auto;
    padding:0;
    font-size:0;
    list-style:none;
	padding-top: 20px;
}
#rig li, #rigprod li{
    display: inline-block;


    vertical-align:middle;
    box-sizing:border-box;
    margin:0;
    padding:0;
}
#rig li {width: 16.6666%;}
#rigprod li {width: 20%;}
.rig-cell {
    margin:0 6px 12px 6px;

    display:block;
    position: relative;
    overflow:hidden;
}
#rigprod .rig-cell {margin: 0;}
.rig-img {
    display:block;
    width: 100%;
    height: auto;
    border:none;
    transform:scale(1);
    transition:all .4s;
}

#rig a:hover .rig-img ,
#rigprod a:hover .rig-img {
    transform:scale(1.05);
}
.rig-overlay {
    position: absolute;
    display:block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background-color: #161C55;
    background-size:50px 50px;
    opacity:.5;
    filter:alpha(opacity=0);
    transition:all 0.6s;
}
#rigprod li:hover .rig-overlay, #rig li:hover .rig-overlay {
    opacity:0;
}

.rig-text {
    display:block;
    padding:0 30px;
    box-sizing:border-box;
    position:absolute;
    left:0;
    width:100%;
    text-align:center;
    font-size:13px;
    top:50%;
    color:#FFF;
    opacity:1;
    transform:translateY(-50%);
    transition:all .3s;
    text-shadow: 2px 2px 10px black;
    font-weight: 700;
}
#rig li:hover .rig-text {
    opacity:0.9;
    text-decoration: underline;
}

#rigprod li:hover .rig-text {
    transform:translateY(-10px);
    opacity:0.9;
}
#rigprod li:hover button {
    transform:translate(-50%, +10px);
}

#rigprod .rig-text {top: 20%;}
#rigprod button {

	position: absolute;
    bottom: 30px;
    margin: auto;
    left: 50%;
	transform: translateX(-50%);

}

@media (max-width: 9000px) {
    #rig li {
        width:16.66666%;
    }
}

@media (max-width: 1200px) {
    #rig li {
        width:25%;
    }
}

@media (max-width: 768px) {
    #rig li {
        width:50%;
    }
    .vision2 .nav-tabs .nav-link {
      width: 100% !important;
    }
    #footer .newsletter-footer {width:100% !important;}
}
@media (max-width: 350px) {
    #rig li {
        width:100%;
    }
}
.vision {padding-bottom: 0;}
.vision .container {height: 160px;}
.vision .visionbg {
	height: 480px;
	background: #FFF url(assets/img/Developpement-durable-visions-Defontaine-Group.jpg) center;
	background-size: cover;
	padding-bottom: 0;

}

.vision2 {
	background-color: rgba(22,28,85,0.1);
	overflow: visible;
}
.vision2 .container {
	background-color: #FFF;
	margin-top: -180px;
	padding: 35px 50px 80px 50px;
}

#tabhomevision {margin-bottom: 30px; justify-content: space-between;}


.vision2 .nav-tabs {border: 0;}
.vision2 .nav-tabs .nav-link {
    margin-bottom: -1px;
    border: 0;
	background-color: #ABABBE;
	border-radius: 0;
	color: #FFF;
  width: 24%;

}
.vision2 .nav-tabs .nav-item.show .nav-link,
.vision2 .nav-tabs .nav-link.active {
    color: #FFF;
    background-color: #FF0000;
    border: 0;
}

.vision2 .tab-pane > div {font-weight: 777;margin-bottom: 20px;}


.services {padding: 0;}
.services .homeservices {
	background-image: url('assets/img/homeservices.webp');
	background-size: cover;
	min-height: 500px;
}
.services .homeservicescontent {padding: 20px 50px;color: #FFF;}

.homeservicetab {border: 0 !important;}


.services .homeservicescontent a {
  /* padding-right: 20px; */
  color: #FFF;
  opacity: .5;
  padding-bottom: 10px;
  border-bottom: 3px solid #FFF;
  line-height: 48px;}
.services .homeservicescontent li a:hover {opacity: 1;}

a.homers {
  height: 80px;
  width: 80px;
  margin: 0 10px 0 0;
  transition: .3s;
  border-radius: 50%;
}

.homers:hover {background-color: rgb(218, 218, 218); border-radius: 50%;}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 600px;
  background-size: cover !important;
  position: relative;
}
#hero:before {
	position: absolute;
	content:"";
	width: 100%;
	height: 100%;
	top:0;
    left:0;
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#161c55+0,7db9e8+100&1+0,0+100 */
background: -moz-linear-gradient(left,  rgba(22,28,85,1) 0%, rgba(125,185,232,0) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left,  rgba(22,28,85,1) 0%,rgba(125,185,232,0) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right,  rgba(22,28,85,1) 0%,rgba(125,185,232,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#161c55', endColorstr='#007db9e8',GradientType=1 ); /* IE6-9 */

}

#hero .container {
  position: relative;
}

#hero h1 {
	margin: 0;
	font-size: 48px;
	font-weight: 800;
	line-height: 56px;
	text-transform: uppercase;
	color: #FFF;
	text-shadow: 3px 3px 6px rgb(0 0 0 / 50%);
}

#hero h2 {
  color: #FFF;
  margin: 10px 0 0 0;
  font-size: 24px;
  font-weight: 800;
  max-width: 700px;
}
#hero h3 {
  color: #FFF;
  margin: 10px 0 0 0;
  font-size: 18px;
  font-weight: 800;
  max-width: 700px;
}
#hero .btn-get-started {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 35px;
  margin-top: 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #1977cc;
}

#hero .btn-get-started:hover {
  background: #3291e6;
}

#hero .logohero {
  width: 180px;
  padding-bottom: 20px;
  margin-top: 60px;
}

@media (min-width:1250px) {
  .services .homeservicescontent .tab-width {width: 80%;}
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #hero {
    margin-bottom: 0;
    height: 100vh;
  }
  #hero .container {
    padding: 20px;
    padding-bottom: 0;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: auto;
  }
}
#encartcont {
  display: none;
  position: absolute;
  right: 0;
  background-color: #FFF;
  z-index: 5;
  padding: 30px;
  max-width: 250px;
  text-align: center;
  color: var(--color-bgfooter);
  bottom: 8%;
}
#encartcont .titreenc{
  font-size: 30px;
  font-weight: bold;
  line-height: 110%;

  padding: 20px;
}
#encartcont .txtenc{
  font-size: 16px;
}
#encartcont img{
  padding: 20px;
}

#encartcont .btnenc a.appointment-btn {border-radius: 30px !important;font-size: 12px;}
#encartcont.sticky {
 position: fixed;
 top: 90px;
 right: 0;
 bottom: auto;
}
@media (min-width: 1500px) {
  #encartcont {display: block;}
}


.sidebar-menu-interne .elementor-widget-container {padding: 0 !important;}
#zonemenufixed{z-index: 2}

#zonemenufixed.sticky {
  position: fixed;
  top: 100px;
  bottom: auto;
  /* max-width: 250px; */
  max-width: 25%;
 }
 @media (max-width: 992px) {
  #zonemenufixed{display: none;}
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 40px 0;
  overflow: hidden;
}
section#hero {
	padding-top: 0;
}

section.contentpage {padding: 0;margin-bottom: 50px}
section.contentpage section {padding: 0;}
.elementor-section {padding: 0;}

.section-bg {
  background-color: #f1f7fd;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #2c4964;
}

.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #1977cc;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

@media screen and (max-width:580px) {
  section#hero {padding-top: 60px;}
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f1f7fd;
  min-height: 40px;
  margin-top: 120px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 63px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Template Produit
--------------------------------------------------------------*/

.page-template-page-produits .homeproduit .itemprodhome {
	flex: 1 0 20%;
	margin: 20px;
}


@media (max-width: 992px) {
	.page-template-page-produits .homeproduit .itemprodhome {
	flex: 1 0 40%;
	margin: 10px;
}
}


section.prodrecherche {
	min-height: 400px;
	background: url("assets/img/defontaine-equipementierPrecision.jpg") center center no-repeat;
	background-size: cover;
	overflow: visible;
}
section.prodrecherche.ill1 {background: url("assets/img/double-cta-rollix-rt.jpg") bottom center no-repeat; background-size: cover;}

section.prodrecherche.illnew {background: url("assets/img/defontaine-couronnes-2022.jpg") top center no-repeat; background-size: cover;}
/* section.prodrecherche.ill3 {background: url("assets/img/Defontaine-double-CTA-Contact.jpg") top center no-repeat;} */
/* section.prodrecherche.ill4 {background: url("assets/img/developpement-durable.jpg") top center no-repeat;} */


section.prodrecherche .card {
  background-color: #fff;
	border:0;
  border-radius: 0;
  height: 100%;

}

section.prodrecherche .card-title {
	font-size: 40px;
	padding: 20px 35px;
	color: var(--titre-color);
}

section.prodrecherche .card .card-body{
	min-height: 245px;
}
.prodrecherche .encart {transform: translateY(+220px);}
.prodrecherche .encart .row div[class^="col-"]{margin-bottom: 20px;}


section.prodrecherche .card-footer {
  line-height: 50px;
  padding: .75rem 1.25rem;
  background-color: #FFF;
  min-height: 100PX !important;
  border-top: 1px solid rgba(0,0,0,.125);
  display: flex;
  /* align-content: center; */
  align-items: center;
}
section.prodrecherche .card-footer a {
font-size: 14px;color: #161c55;position: relative; letter-spacing: 1px;border-bottom: 3px solid #161c55;
padding-bottom: 10px;
line-height: 160%;
display: inline-block;
    text-align: left;
}



span.ctadownload.model5 {
  font-size: 14px;
  color: #161c55;
  position: relative;
  letter-spacing: 1px;
 border-bottom: 0;
  padding-bottom: 10px;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 3px;
  line-height: 160%;
}

/*
section.prodrecherche .card-footer a:after {
	content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    height: 3px;
    width: 100%;
    background-color: var(--titre-color);
    z-index: 2;
}
*/

section.prodrecherchegris {background: #DDD; height: 200px;}

.ha-testimonial--bubble .ha-testimonial__content {
  box-shadow: none !important;
  color: var(--color-bgrouge);
  font-size: 28px;
  font-weight: 700;
  background: transparent url(assets/img/guillemets.png) no-repeat left top;
  padding-top: 80px !important;
}
.ha-testimonial__reviewer-name, .ha-testimonial__reviewer-title {color: var(--titre-color) !important; font-weight: 700 !important; margin-bottom: 0!important;}

@media screen and (max-width:1300px) {
  section.prodrecherche .card-title {font-size: 35px;}
}

@media screen and (max-width:1000px) {
  section.prodrecherche .card-title {font-size: 30px;}
}


/*--------------------------------------------------------------
# Template Produit ROLLIX RT
--------------------------------------------------------------*/

.homeaccom.pink {
  background: rgb(230,0,169);
  background: linear-gradient(180deg, rgba(230,0,169,1) 0%, rgba(252,5,40,1) 100%);
}

.homeaccom.blue {background: #04123A;}
.homeaccom.pink .appointment-btn:hover {color: #161C55; border-bottom: 2px solid #161C55; background: transparent;}

.title-white h2, .title-white h3 {background: none; color:#fff; font-weight: 800; padding: 20px 0;}

.title-white h2 {font-size: 65px;}
.title-white h3 {font-size: 45px;}
h4 {color: #161C55; font-size: 30px;}

.page-template-page-produits-RT #hero {padding-top: 100px; background-position: right top !important;}
.page-template-page-produits-RT #hero::before {}
.page-template-page-produits-RT #hero h1 {text-transform: none !important;}
.page-template-page-produits-RT #hero h2 {font-weight: 600 !important;}


.page-template-page-produits-RT h1:after, .title-white h2:after {
  content: "";
  height: 10px;
  width: 130px;
  border-radius: 33px;
  background: linear-gradient(90deg, rgba(230,0,169,1) 0%, rgba(252,5,40,1) 100%);
  position: absolute;
  bottom: -30px;
  left: 0;
  z-index: 1;
}

.page-template-page-produits-RT h1:after {bottom: -38px;}

.page-template-page-produits-RT #hero h2 {margin-top:70px;}

.pink-round {
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(230,0,169,1) 0%, rgba(252,5,40,1) 100%);
  height: 200px;
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 20px 15px;
  padding: 10px;
}

.pink-round span {display: block; margin-top: 10px;}

.engagement .pink-round {
  height: 150px;
  width: 150px;
  margin : -185px auto 0;
  text-align: center;
  font-weight: 700;
}
.engagement .pink-round p {transform: translateY(20%); text-transform: none;}

.engagement .pink-round p span {font-size: 30px; font-weight: 900; display: inline;}

.overflow-visible {overflow: visible;}

/* POP UP ET BANDEAU ROLLIX RT  */
#bandeau-rt .title-white h2 {font-size: 50px;}
#bandeau-rt .title-white h2:after, #popRT h2:after {left: 50% !important; transform: translateX(-50%) !important;}

#popRT {padding: 50px 100px; display: flex; flex-direction: column; justify-content: center;}
#popRT .title-white h2 {font-size: 40px;}
#popRT p {text-transform: uppercase; font-size: 20px; line-height: 35px; padding: 80px 0 40px 0;}

.pink-btn a {border-radius: 30px !important; background: linear-gradient(180deg, rgba(230,0,169,1) 0%, rgba(252,5,40,1) 100%) !important; text-transform: uppercase; padding: 15px 60px; color: #fff !important; transition: all .3s;}
.pink-btn a:hover {color: #161C55 !important;}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: #f1f7fd;
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
}

.counts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #1977cc;
  padding: 12px;
  color: #fff;
  border-radius: 50px;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #082744;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}



/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #1977cc;
  float: left;
  width: 44px;
  height: 44px;
  background: #d6e9fa;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2c4964;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #4b7dab;
}

.contact .info .email, .contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #1977cc;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #1977cc;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #1c84e3;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Page contact
--------------------------------------------------------------*/
.repere {cursor: pointer;}
/*.tooltipster-sidetip.tooltipster-noir .tooltipster-box{border-radius:0;border:1px solid #000;background:#000 !important;padding: 10px;}
.tooltipster-sidetip.tooltipster-noir .tooltipster-content{color:#FFF !important;}
.tooltipster-sidetip.tooltipster-noir .tooltipster-arrow{height:11px;margin-left:-11px;width:22px}
.tooltipster-sidetip.tooltipster-noir.tooltipster-left .tooltipster-arrow,.tooltipster-sidetip.tooltipster-noir.tooltipster-right .tooltipster-arrow{height:22px;margin-left:0;margin-top:-11px;width:11px}
.tooltipster-sidetip.tooltipster-noir .tooltipster-arrow-background{border:11px solid transparent}
.tooltipster-sidetip.tooltipster-noir.tooltipster-bottom .tooltipster-arrow-background{border-bottom-color:#000 !important;top:4px}
.tooltipster-sidetip.tooltipster-noir.tooltipster-left .tooltipster-arrow-background{border-left-color:#000 !important;left:-4px}
.tooltipster-sidetip.tooltipster-noir.tooltipster-right .tooltipster-arrow-background{border-right-color:#000 !important;left:4px}
.tooltipster-sidetip.tooltipster-noir.tooltipster-top .tooltipster-arrow-background{border-top-color:#000 !important;top:-4px}
.tooltipster-sidetip.tooltipster-noir .tooltipster-arrow-border{border-width:11px}
.tooltipster-sidetip.tooltipster-noir.tooltipster-bottom .tooltipster-arrow-uncropped{top:-11px}
.tooltipster-sidetip.tooltipster-noir.tooltipster-right .tooltipster-arrow-uncropped{left:-11px}*/



/*--------------------------------------------------------------
# Page Groupe
--------------------------------------------------------------*/
#menupagegroup {
    z-index: 5;
    background: #E7E7E7;
    color: white;
    border-right: none;
    padding: 0.5em 0.5em 0.5em 2.5em;
	list-style: none;
	/* padding: 25px; */
	max-width:  400px;


}
#menupagegroup li {	border-bottom: 2px solid var(--color-bgfooter);	    padding-bottom: 5px;margin-bottom: 30px; width: 90%;transition: all .3s;}
.contentpage #menupagegroup li::before {	content: "";}
#menupagegroup a {
	color: var(--color-bgfooter);
  font-weight: 700;
	text-transform: uppercase;
	padding-bottom: 5px;
  line-height: 110%;
}
#menupagegroup li:hover {transform:translateX(10px);}


/*--------------------------------------------------------------
MENU SIDEBAR SERVICES
--------------------------------------------------------------*/
#menuside { background: #E7E7E7;padding: 30px 15px 15px 15px;}
#menupagegroup.sticky { position: fixed;top: 130px;}
#contentopp { padding-left: 30px;}

.page-template-page-services-sidebar #contentopp {padding-left: 0;}
.page-template-page-services-sidebar .tsh_breadcrumbs {padding-left: 30px;}

/* PAGE SIDEBAR SUR GRANDS ECRANS >992PX */
.page-template-page-services-sidebar .elementor-widget-text-editor,
.page-template-page-services-sidebar .elementor-widget-heading,
.page-template-page-services-sidebar .elementor-widget-image-carousel,
.page-template-page-services-sidebar .elementor-widget-html {padding: 0 15px 0px 20px;}

/* PAGE SIDEBAR EN RESPONSIVE */
@media screen and (max-width: 992px) {
.page-template-page-services-sidebar .elementor-widget-text-editor,
.page-template-page-services-sidebar .elementor-widget-heading,
.page-template-page-services-sidebar .elementor-widget-image-carousel,
.page-template-page-services-sidebar .elementor-widget-html {padding: 0;}

.page-template-page-services-sidebar #contentopp {padding: 20px;}
}

/*--------------------------------------------------------------
# Page Blog
--------------------------------------------------------------*/
.blogwrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: minmax(150px, auto);
}
@media screen and (max-width: 992px){
  .blogwrapper {grid-template-columns: 1fr 1fr;}
}

@media screen and (max-width: 550px){
  .blogwrapper {grid-template-columns: 1fr;}
}



.blogwrapper .gridart {
  margin: 10px 15px;
  border: 1px solid #f6f6f6;
}

.terms a {
  display: inline-block;
  padding: 5px 15px;
  color: #555;
  margin-right: 5px;
  margin-bottom: 5px;
  border: 1px solid #d4d4d4;
  text-decoration: none;
  font-weight: 100;
  font-size: 11px;
}
.listcat a {
    display: inline-block;
    padding: 5px 15px;
    color: #555;
    margin-right: 5px;
    margin-bottom: 5px;
    border: 1px solid #d4d4d4;
    text-decoration: none;
    font-weight: 100;
    font-size: 10px;
}
.gridcont {
  padding: 15px;
}
.gridcont .titgridblog{
  font-size: 18px;
  font-weight: bold;

}
.gridcont .txtgridblog{
  font-size: 13px;
}
.gridart .dategridblog {
  color: #555;
  font-size: 12px;
  padding-bottom: 10px;
}

.gridcont .appointment-btn, .pt-cv-ifield .appointment-btn {
  background: var(--color-bgrouge);
  color: #FFF;
  border: 0;
  border-radius: 0px;
  padding: 3px 15px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 12px;
  display: inline-block;
  margin: 10px 0;
}
.gridcont .appointment-btn:hover, .pt-cv-ifield .appointment-btn:hover {
  background: #FFF;
  color: var(--color-bgrouge);
}

/* Sidebar */
.listact{
  padding: 0;
}
.cat-item {
  color: #d1d1d1;
  font-size: 12px;
}
.cat-item a{
  color: var(	--color-bgfooter);
  font-size: 18px;
}
.wp-pagenavi span.current {
  font-weight: bold;
  color: #FFF;
  border-color: var(--color-bgrouge) !important;
  background-color: var(--color-bgrouge) !important;
}


.wp-pagenavi a, .wp-pagenavi span {
  padding: 8px 8px !important;

}
.listcatmen{
  padding-left: 15px;
  margin: 10px 0;
}
.listcatmen .appointment-btn {
  background: var(--color-bgrouge);
  color: #FFF;
  border: 0;
  border-radius: 0px;
  padding: 8px 15px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 12px;
  display: inline-block;
  margin: 10px 10px 10px 0;

}
.listcatmen .appointment-btn.active:hover, .listcatmen .appointment-btn.active {
  background: #FFF;
  color: var(--color-bgrouge);
  border: 1px solid var(--color-bgrouge);
  transition: 0.3s;

}

.blogpagi {margin: 0 16px;}
.blogpagi span,  .blogpagi a {display: inline-block; padding: 5px 10px; background-color: #FFF; margin: 0 5px; color: #FF0000;font-weight: normal;border: 1px solid #FF0000;}
.blogpagi span.current {border: 1px solid #FF0000;background-color: #FF0000;color: #FFF;}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #FFFFFF;
  font-size: 14px;
  background-color: var(--color-bgfooter);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #FFFFFF;
}

#footer .footer-top .footer-contact a {
  color: #FFFFFF;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-contact a:hover {
  text-decoration: none;
  color: var(--color-bgrouge);
}

#footer .footer-top .footer-title {
  font-size: 16px;
  font-weight: bold;
  color: #FFFFFF;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #FFFFFF;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #FFFFFF;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: var(--color-bgrouge);
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #FFFFFF;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  position: relative;
  border-radius: 50px;
  text-align: left;

}

#footer .footer-newsletter form input[type="email"] {
	border: 0;
	color: #FFF;
	padding: 4px 8px;
	width: calc(100% - 120px);
	border: 1px solid #FFFFFF;
	background-color: var(--color-bgfooter);
	border-radius: 5px;
	height: 40px;
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--color-bgrouge);
  color: #fff;
  transition: 0.3s;

}

#footer .credits {
  padding-top: 5px;
  font-size: 15px;
  color: #fff;
}
#footer .credits a {
  color: #fff;
}

#footer .credits a:hover {color: #DDD;}
#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #1977cc;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #1c84e3;
  color: #fff;
  text-decoration: none;
}

.foot2 {padding-bottom: 50px;}

#footer .newsletter-footer {padding-top:7px;width:50%}
