/*==========================================
	GENERAL
==========================================*/
.admin-bar .main-header {top: 32px;}
@media (max-width: 782px) {.admin-bar .main-header {top: 46px;}}
::placeholder {color: inherit;opacity: 0.6;}
/*.post-content {margin-bottom:50px;}*/
/*.main-content {min-height:600px;}*/
.small-content {min-height:400px;}
.medium-content {min-height:600px;}
.large-content {min-height:800px;}
.section-padding {padding: 50px 0;}

/*==========================================
	MAIN MENU
==========================================*/
.main-header {}
.main-header .header-top {padding:15px 0;}
/*
.main-header .logo img,
.main-menu ul {
	-webkit-transition: all .5s ease;
	-moz-transition: all .5 ease;
	-ms-transition: all .5 ease;
	-o-transition: all .5 ease;
	transition: all .5 ease;
}
*/
.main-header .logo img, .footer-logo {height:55px;}

.main-menu ul.desktop-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
	margin: 0;
	padding: 0;
  font-size: 16px;
}
/*
.nav-scroll {
	position: fixed;
	top: -100px;
	left: 0;
	width: 100%;
	-webkit-transition: -webkit-transform .5s;
	transition: -webkit-transform .5s;
	transition: transform .5s;
	transition: transform .5s, -webkit-transform .5s;
	-webkit-transform: translateY(100px);
	transform: translateY(100px);
	box-shadow: 0px 7px 18px rgba(24, 16, 16, 0.0509803922);
}
.main-header.nav-scroll {}
.main-header.nav-scroll .logo img {height:50px;}
.main-header.nav-scroll .main-menu ul.desktop-menu {gap: 40px;}
*/

/*==========================================
	MEGA MENU
==========================================*/
.main-menu ul li.mega-menu {
	list-style-type: none;
	white-space: nowrap;
  display: flex;
  align-items: center;
}

.main-menu ul li.mega-menu a {
  color: var(--wp--preset--color--white);
  padding: 15px 0;
  display: block;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
  font-weight: 700;
}
.main-menu ul li.mega-menu:hover > a {color: var(--wp--preset--color--primary);}


.main-menu ul li.mega-menu .mega-menu__wrapper {
  width: 100%;
  position: absolute;
	z-index: 99999;
  left: 0;
  top: 100%;
  background: var(--wp--preset--color--black);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  pointer-events: none;
}

.main-menu ul li.mega-menu .mega-menu__wrapper ul.sub-menu li a {padding: 15px; border-radius: 10px; text-transform: capitalize; display: block; width: 100%;  height: 100%;
  -webkit-transition: all .5s ease;
	-moz-transition: all .5 ease;
	-ms-transition: all .5 ease;
	-o-transition: all .5 ease;
	transition: all .5 ease;
}
.main-menu ul li.mega-menu .mega-menu__wrapper ul.sub-menu li:hover > a {color: var(--wp--preset--color--white);	background-color: rgba(255,255,255,0.15);}

.main-menu ul li.mega-menu:hover > .mega-menu__wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.main-menu ul li.mega-menu .mega-menu__wrapper ul.sub-menu li {border-bottom: none;}

.main-menu ul li.mega-menu .mega-menu__wrapper .sub-menu.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 30px 0;
}
.menu-card__image {/*height: 150px;*/ margin-bottom: 15px;}
.menu-card__title {font-weight: 700; white-space: normal;}

@media (max-width: 768px) {
	.mega-menu__wrapper {
	  position: static;
	  opacity: 1;
	  visibility: visible;
	  transform: none;
	  pointer-events: auto;
	}

	.sub-menu.mega-grid {
	  display: block;
	}

	.menu-card {
	  flex-direction: row;
	  gap: 12px;
	  align-items: center;
	}

	.menu-card__image {
	  width: 60px;
	  flex-shrink: 0;
	}
}




/*====================================================================
00. HEADROOM LIKE
====================================================================*/
.main-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6 ease;
    -ms-transition: all .6 ease;
    -o-transition: all .6 ease;
    transition: all .6 ease;
}
/* Après scroll */
.header-scrolled{box-shadow: 0 10px 30px rgba(0,0,0,.09);}
/* Caché */
.header-hidden{
    transform:translateY(-110%);
}




/*==========================================
	FOOTER
==========================================*/
footer {}
.footer-top {padding: 100px 0 0;}
.footer-column {margin-bottom: 30px;}
.footer-column .footer-title {color: var(--wp--preset--color--white); font-size: 18px; margin-bottom: 20px;}
.footer-column p {color: var(--wp--preset--color--white);}
.footer-contact ul li {margin-bottom: 10px!important;}
.footer-menu-nav ul li + li {margin-top: 15px;}
.footer-menu-nav ul li a, .footer-contact a {color: var(--wp--preset--color--white); position: relative;}
.footer-menu-nav ul li a:hover, .footer-contact a:hover {color: var(--wp--preset--color--secondary);}
.footer-menu-nav ul li a::before {
	position: absolute;
	content: "\f061";
	font-family: "Font Awesome 6 Pro";
	font-size: 14px;
	left: 0px;
	top: 0px;
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	color: var(--wp--preset--color--secondary);
}
.footer-menu-nav ul li a:hover {padding-left: 20px;}
.footer-menu-nav ul li a:hover::before {opacity: 1;}
/*
.footer-social-list ul.social-list li {font-size: 22px; margin-right: 20px;}
.footer-social-list ul.social-list li:last-child {margin-right: 0;}
.footer-social-list ul.social-list li a:hover {color: var(--wp--preset--color--primary);}
*/
.footer-bottom {}
.footer-bottom-container {padding: 30px 0; margin-top: 0px; border-top: 1px solid rgba(var(--white-rgb), .20);}
.footer-bottom-copyright, .footer-bottom-copyright a {color: var(--wp--preset--color--white); font-size: 13px;}
.footer-bottom-copyright a:hover {color: var(--wp--preset--color--secondary);}

.footer-column .footer-title {
	position: relative;
	padding-bottom: 15px;
	/*margin-bottom: 25px;*/
}
.footer-column .footer-title::after {
	position: absolute;
	content: '';
	left: 0px;
	bottom: 0px;
	width: 40px;
	height: 2px;
	background-color: var(--wp--preset--color--white);
}
.footer-column .footer-socials {gap: 20px;}
.footer-logo {}

.footer-socials ul {flex-wrap: wrap; gap: 20px;}
.footer-socials li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	line-height: 1;
	font-size: 18px;
	color: var(--wp--preset--color--white);
	border: 1px solid var(--wp--preset--color--white);
	border-radius: 10px;
}
.footer-socials li a:hover {border-color: var(--wp--preset--color--primary);	background: var(--wp--preset--color--primary);	color: var(--wp--preset--color--white);}
/*
.footer-menu-nav-horizontal ul {font-size: 15px; gap: 25px;}
.footer-menu-nav-horizontal ul li, .footer-menu-nav-horizontal ul li a {color: var(--wp--preset--color--white); position: relative;}
.footer-menu-nav-horizontal ul li a:hover {color: var(--wp--preset--color--primary);}
.footer-menu-nav-horizontal ul li::after {content: '-';	position: absolute;	right: -18px;	bottom: 0px;}
.footer-menu-nav-horizontal ul li:last-child::after {content: none;}
*/

/*-------------------------------------
SCROLL TO TOP
--------------------------------------*/
.scroll_top {
  width: 40px;
  height: 40px;
  position: fixed;
  font-size: 0;
  z-index: 9999;
  right: 10px;
  bottom: 32px;
  background: var(--wp--preset--color--primary);
  visibility: hidden;
  opacity: 0;
  color: var(--wp--preset--color--white);
	-webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.scroll_top.visible {
  visibility: visible;
  opacity: 1;
}

.scroll_top:before {
  content: "\f106";
	font-family: "Font Awesome 6 Pro";
  font-size: 14px;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: block;
  color: var(--wp--preset--color--white);
}

.scroll_top:hover {
  background-color: var(--wp--preset--color--secondary);
}



/*==========================================
	SHARE
==========================================*/
.post-share {margin-top: 25px;}
.post-share h6 {margin: 0 0 15px 0;}
.sharebtn {}
.sharebtn ul {display: flex;gap: 0 20px; padding-left: 0 !important; margin: 15px 0 !important;}
.sharebtn ul li {}
.sharebtn ul li a {font-size: 18px; color: var(--wp--preset--color--black);}
.sharebtn ul li a:hover {color: var(--wp--preset--color--primary);}
.sharebtn ul li i {}


/*==========================================
	HOME BANER
==========================================*/
.home .banner-image, .home-slide {height: 70vh;}
.banner-image .slide-content {
  position: absolute;
  /*top: 50%;*/
	bottom: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform: translate(-50%, 50%);
  width: 100%;
  padding: 50px 0;
	z-index: 1;
}
.banner-image .slide-content .slide-contents {gap: 30px;}
.banner-image .slide-content .slide-contents .slide-title {font-size: 80px; line-height: 1.2em; text-transform: uppercase;}
.banner-image .slide-content .slide-contents .slide-desc {font-size: 18px; line-height: 1.6em; max-width: 50%; }
.banner-image .slide-content .slide-contents .intro_shadow_word  {
	font-size: 400px;
	/*left: 0;*/
	line-height: 1;
	opacity: 0.05;
	opacity: 0.1;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	word-break: initial;
	z-index: -1;
}
.slide-link {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}





/*==========================================
0. PAGE BANNER
==========================================*/
.page-banner {
	height: 250px;
	padding: 25px 0;
	background: linear-gradient(180deg, rgba(32, 40, 45, 0.1) 0%, rgba(255, 255, 255, 0.1) 95%);
	background: linear-gradient(180deg, rgba(32, 40, 45, 0.1) 0%, rgba(255, 255, 255, 0.1) 50%);
	background: var(--wp--preset--color--black);
	/*
	border-bottom: 1px solid rgba(32, 40, 45, 0.1);
  box-shadow: 0px 7px 18px rgba(24, 16, 16, 0.0509803922);
	*/
}
.page-banner h1 {color: var(--wp--preset--color--white);}


/*==========================================================
0. BREADCRUMBS
==========================================================*/
#breadcrumbs, #breadcrumbs span {padding: 0; margin: 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: start; position: relative; z-index: 99;
/*text-transform: uppercase;*/font-family: var(--font-family-text); font-size: var(--font-size15); line-height: 1;}
#breadcrumbs {margin-top: 15px;}
#breadcrumbs a {color: var(--wp--preset--color--white);}
#breadcrumbs a:hover {color: var(--wp--preset--color--secondary);}
#breadcrumbs span {margin: 0 5px;}
#breadcrumbs span:first-child {margin-left: 0;}
#breadcrumbs span.breadcrumb_last {margin: 0 5px; margin-right: 0; color: var(--wp--preset--color--secondary);}
#breadcrumbs span.breadcrumb_last span {margin: 0 5px; margin-right: 0;}
#breadcrumbs span i {font-size: var(--font-size14); margin: 0 5px; margin-top: 2px;}

#breadcrumbs span i.breadcrumb-separator {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: 2px solid var(--wp--preset--color--white);
	/*color: var(--wp--preset--color--white);*/
}

/*==========================================
	PAGINATION
==========================================*/
.page-numbers {list-style: none; margin: 0; margin-bottom: 0px; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; margin-top: 25px;}
.page-numbers li {padding: 0 5px 5px;}
.page-numbers li:first-child {padding-left: 0;}
.page-numbers li:last-child {padding-right: 0;}
.page-numbers li a, .page-numbers li span {
	display: block;
	background-color: transparent;
	color:  var(--wp--preset--color--primary);
	width: 40px;
	height: 40px;
	line-height: 40px;
	border: 1px solid  var(--wp--preset--color--primary);
  border-radius: 20px;
	text-align: center;
	font-size: 16px;
  margin: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.page-numbers li a:hover, .page-numbers li span.current {background-color: var(--wp--preset--color--secondary); border-color: var(--wp--preset--color--secondary);	color: var(--wp--preset--color--white);}

@media only screen and (min-width: 1200px) and (max-width: 1599px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .page-numbers li a, .page-numbers li span {
    width: 38px;
    height: 38px;
    line-height: 38px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .page-numbers li a, .page-numbers li span {
    width: 34px;
    height: 34px;
    line-height: 34px;
    font-size: 15px;
  }
}








/*==========================================
	THEME BTN
==========================================*/
.wp-block-button .wp-element-button.youtube-btn {
	color: var(--wp--preset--color--white);
	border: 2px solid #CE201F;
	background-color: #CE201F!important;
}


/*==========================================
	CONFIANCE HOME
==========================================*/
.home-trust__slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
  height: 100px;
  padding: 0 20px;
}
.home-trust__slide img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  object-fit: contain;
  margin: auto;
}
.home-trust__slide {width: 220px;}
.home-trust__slide img {
  filter: grayscale(100%);
  opacity: .65;
  transition: .3s ease;
}
.home-trust__slide:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}
.home-trust {position: relative; overflow: hidden;}

.home-trust::before,
.home-trust::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.home-trust::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.home-trust::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}




/*==========================================
	CONFIANCE PAGE
==========================================*/
.trust-logos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  align-items: center;
}

.trust-logos__item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.trust-logos__item img {
    max-width: 100%;
    width: auto;
    max-height: 90px;
    object-fit: contain;
    display: block;
    transition: transform .3s ease, opacity .3s ease;
}

.trust-logos__item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .trust-logos {
        padding: 60px 20px;
    }

    .trust-logos__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .trust-logos__item img {
        max-height: 70px;
    }
}

@media (max-width: 480px) {
    .trust-logos__grid {
        grid-template-columns: 1fr;
    }

    .trust-logos__item img {
        max-height: 60px;
    }
}


/*==========================================
	FAQ
==========================================*/
.faq-section .questions {margin-right: -15px;  margin-left: -15px;}
.faq-item {
    position: relative;
    padding: 15px;
    transition: background-color .25s ease;
}

.faq-item::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 0;
    height: 1px;
    background: #e5e5e5;
    transition: all .25s ease;
}



.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    list-style: none;
    font-weight: 700;
		font-size: 18px;
    transition: color .25s ease;
}

.faq-question:hover {
    color: var(--wp--preset--color--primary);
}

.faq-item[open] .faq-question {
    color: var(--wp--preset--color--primary);
}
.faq-item[open] .faq-question::after {
    color: var(--wp--preset--color--primary);
    content: "−";
}
.faq-item[open] {background: #fafafa;}
.faq-item[open]::after {left: 0; right: 0;}
/* Supprime le marqueur natif */

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::marker {
    content: "";
}

/* Icône */

.faq-question::after {
    content: "+";
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 300;
    transition: transform .25s ease;
}

.faq-item[open] .faq-question::after {
    content: "−";
}

/* Animation */

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .35s ease;
}

.faq-item[open] .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
    padding-bottom: 1.5rem;
}

/* Marges du contenu */

.faq-answer-inner > *:first-child {
    margin-top: 0;
}

.faq-answer-inner > *:last-child {
    margin-bottom: 0;
}



/*==========================================================
0. TEMOIGNAGES
==========================================================*/
.home-client_slider .slick-track {
  display: flex;
}

.home-client_slider .slick-slide {
  height: auto;
  display: flex;
}

.home-client_slider .slick-slide > div {
  display: flex;
  width: 100%;
}

.home-client_slider .testimonial-content {
  width: 100%;
  display: flex;
  flex-direction: column;
}
/*
.temoignages-home-owl.owl-carousel .owl-stage {
	display: flex;
}
.temoignages-home-owl.owl-carousel .owl-stage .owl-item {
	display: flex;
	flex: 1 0 auto;
	margin-bottom: 30px;
}
.col-eq-height {
	display: flex;
	flex-grow: 1;
}
*/
.home-client_slider .testimonial-info-box {
  padding: 30px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
  margin:2%;
}
.home-client_slider .testimonial-info-box h5 {
	margin-bottom: 10px;
	font-weight: 600;
	font-size: 18px;
}
.home-client_slider .testimonial-info-box h6 {
	margin-bottom: 10px;
	font-size: 18px;
	text-transform: uppercase;
}
.home-client_slider .testimonial {display: block;}
.home-client_slider .testimonial-info-box i {
	display: inline-block;
	-webkit-transition: all 0.9s;
	transition: all 0.9s;
	font-size: 24px;
	margin: 0px 10px;
}

.home-client_slider .testimonial-info-box p {
  display: inline;
	margin-bottom: 0;
	line-height: 1.2em;
}


/*==========================================
	UNDERLINE TITLE
==========================================*/
/*
.underline-title {
	position: relative;
	padding-bottom: 15px;
}
.underline-title::after {
	position: absolute;
	content: '';
	left: 0px;
	bottom: 0px;
	width: 100px;
	height: 4px;
	background-color: var(--wp--preset--color--secondary);
}
.text-center.underline-title::after {
	left: 50%;
	transform: translateX(-50%);
}
*/



/*==========================================
	HOME BLOG
==========================================*/
/*
.featured-post, .posts-grid {
	justify-content: space-between;
}

@media (max-width: 992px) {
	.posts-grid {gap: 30px;}
}

.meta-info ul li:not(:last-child)::after {
	content: '|';
	margin: 0 5px;
}
*/



/*==========================================
	PAGES
==========================================*/
/*
.child-page .inner-box {
	background-color: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--white);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 180px;
}
*/


/*==========================================
	ACTU/BLOG
==========================================*/
.blog-box {margin-bottom:30px;}
.blog-box, .blog-box .item {height:100%;}
.blog-box .single-blog-img {height:200px;}
.blog-box h2:hover {color: var(--wp--preset--color--primary);}
.blog-box .post-date {position: absolute;	right: 0;	bottom: 0; z-index: 1; padding: 5px 10px;  background: var(--wp--preset--color--primary);  color: var(--wp--preset--color--white);}
.blog-box .more {position: absolute;left: 25px;	bottom: 15px;}
.blog-box .more i {font-size: 12px;}
.blog-box .more:hover i {margin-left: 10px;}
.blog-box .more a:hover {text-decoration: none;}

/*-----single-----*/
.news2 .meta-info {padding: 8px 29px 6px;}

.widget .widget-title h6 {
	border: 2px solid var(--wp--preset--color--primary);
	font-weight: 400;
	display: inline-block;
	padding: 6px 18px;
  border-radius: 10px;
}
.widget ul {list-style-type: none; padding: 0;}
.widget ul.widget-list li {border-bottom: 1px solid var(--wp--preset--color--title-color); padding-top: 17px; padding-bottom: 16px; }
.widget ul.widget-list li > a::before {
	color: var(--wp--preset--color--title-color);
	content: "\f054";
	font-family: var(--fa-style-family,"Font Awesome 6 Pro");
	font-size: 10px;
	padding-right: 10px;
	position: relative;
	top: -1px;
}
.widget ul.widget-list li a:hover {color: var(--wp--preset--color--secondary);}

.widget ul.recent {margin-top:25px;}
.widget ul.recent a:hover {color: var(--wp--preset--color--secondary);}
.widget ul li.media {align-items: center;	display: flex; margin-bottom: 30px!important;}
.widget ul li.media .single-blog-img {height: 100px; flex: 0 0 100px;}
/*
.actus

.widget-title {
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 25px;
}
.widget-title::after {
	position: absolute;
	content: '';
	left: 0px;
	bottom: 0px;
	width: 40px;
	height: 1px;
	background-color: var(--wp--preset--color--white);
}

.widget ul li a {color: var(--wp--preset--color--white);}
.widget ul li a:hover {color: var(--wp--preset--color--secondary);}

.widget ul.recent {}
.widget ul.recent li {border-bottom: 1px solid var(--wp--preset--color--white); padding-bottom: 15px; margin-bottom: 15px;}
.widget ul.recent li .single-blog-img {height: 100px;flex: 0 0 100px;}

.posts_navigation a {color: var(--wp--preset--color--primary);}
.posts_navigation a:hover {color: var(--wp--preset--color--secondary);}
*/

/*==========================================
	404
==========================================*/
.page_404 .header-404 {font-size: 140px;color: var(--wp--preset--color--primary);}
.page_404 .header-404 img {height:100px;}




/*==========================================
	FORMS
==========================================*/
input[type="text"], input[type="email"], input[type="number"], input[type="search"], input[type="password"], input[type="tel"], input[type="date"], input[type="time"], textarea, select {
	font-size: 15px;
	font-weight: 400;
	border-radius: 10px;
	padding: 12px 20px;
	color: var(--text-color);
	margin-bottom: 0;
	box-shadow: none;
	width: 100%;
	min-height: 50px;
	border: 1px solid rgba(32, 40, 45, 0.2);
  margin-bottom: 10px;
}
input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="tel"]:focus, textarea:focus {
	border-color: var(--title-color);
	color: var(--title-color);
}

input [type="submit"], input.wpcf7-submit {
	color: var(--wp--preset--color--white);
	border: 2px solid var(--wp--preset--color--primary);
	background-color: var(--wp--preset--color--primary);
	border-radius: 10px;
	box-shadow: none;
	text-decoration: none;
	display: inline-block;
	position: relative;
	z-index: 1;
	font-size: 15px;
	line-height: 1.2;
	font-weight: 600;
	text-align: center;
	padding: 15px 30px;
	margin: 15px 0;
	letter-spacing: 0;
	text-transform: uppercase;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

input [type="submit"]:hover, input.wpcf7-submit:hover {
	color: var(--wp--preset--color--title-color);
	border: 2px solid var(--wp--preset--color--white);
	background-color: var(--wp--preset--color--white);
}


.wpcf7 {
	background-color: var(--wp--preset--color--title-color);
	padding: 50px;
	border-radius: 10px;
}

.wpcf7 label {
	display: flex;
	flex-direction: column;
	color: var(--wp--preset--color--white);
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 0;
}

.wpcf7 p {
	color: var(--wp--preset--color--white);
	font-size: 16px;
	margin-bottom: 15px;
}
.wpcf7 p a {color: var(--wp--preset--color--primary); text-decoration: underline;}
.wpcf7 p a:hover {color: var(--wp--preset--color--white)!important;}
.wpcf7-form-control-wrap {
	position: relative;
	margin: 15px 0;
}
.wpcf7-acceptance .wpcf7-list-item {display: inline-block;	margin: 0;}
.wpcf7-acceptance .wpcf7-list-item input {height: 18px;	width: 18px;	margin: 0px 5px 0 0;}




/*==========================================
	CONTACT
==========================================*/
.contact-area {}
.contact-area .icon-styled {width: 20px;}
.contact-area .contact-item i {font-size: 26px;}
.contact-area .contact-item a {color: var(--wp--preset--color--text-color);}
.contact-area .contact-item a:hover {color: var(--wp--preset--color--primary);}
.contact-socials li a {color: var(--wp--preset--color--text-color);  border: 1px solid var(--wp--preset--color--text-color);}

.contact-obligatoire {color: var(--wp--preset--color--white);}

.contact-forms .wpcf7 {position: relative; overflow: hidden; z-index: 1;
  background-image: url(https://dev.table-de-soudure.com/wp-content/themes/jps-2026/images/slides/01.jpg);
}
.contact-forms .wpcf7::before {
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	background: rgba(0,0,0,.5);
	background-color: #303849;
	z-index: -1;
}
.contact-forms .wpcf7::before {opacity: 0.6;}
.contact-forms .demo {padding: 25px;}


/*==========================================
	PRODUCT FILTERS
==========================================*/
.product-filters {gap:15px;}
button {
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--primary);
  border-radius: 10px;
  border: 1px solid var(--wp--preset--color--primary);
  font-size: 15px;
  font-weight: 400;
  padding: 6px 12px;
}
button.active, button:hover {background: var(--wp--preset--color--primary); color: var(--wp--preset--color--white);}












/*==============================================================================================================
 XX. RESPONSIVE
==============================================================================================================*/
/*==========================================================
0. BOOTSTRAP 5 Grid
==========================================================*/
/*
Extra small <576px = xs
Small ≥576px = sm
Medium ≥768px = md
Large ≥992px = lg
X-Large ≥1200px = xl
XX-Large ≥1400px = xxl
*/
@media (min-width: 1600px) {}
@media (min-width: 1400px) {}
@media (min-width: 1200px) {}
@media (min-width: 992px) {}
@media (min-width: 768px) {}
@media (min-width: 576px) {}


@media (max-width: 1600px) {}
@media (max-width: 1400px) {}
@media (max-width: 1300px) {}
@media (max-width: 1200px) {
  .home .banner-image, .home-slide {height: 50vh;}
}

/*Menu break*/
@media (max-width: 992px) {}
@media (max-width: 991px) {
.section-padding {padding: 25px 0;}
.small-content {min-height:200px;}
.medium-content {min-height:400px;}
.large-content {min-height:600px;}

.footer-top {padding: 50px 0 0;}
/*
.footer-menu-nav-horizontal ul {flex-direction: column; gap: 10px;}
.footer-menu-nav-horizontal ul li::after {content: none;}
*/
.page_404 .header-404 {font-size: 100px;}
.page_404 .header-404 img {height:70px;}


.home .banner-image, .home-slide {height: auto;}
.home-slide .slide-content {padding: 25px; height: auto;}
.home-slide .slide-content .slide-contents {gap: 15px;}
.banner-image .slide-content .slide-contents .slide-title {font-size: 48px;}
.home-slide .slide-content .slide-contents .slide-desc {font-size: 16px;}
.banner-image .slide-content .slide-contents .intro_shadow_word  {font-size: 250px;}
.home-youtube-text {margin-bottom: 25px;}
/*
.home-ref-slide .slide-content .slide-contents .slide-title {font-size: 28px;	line-height: 1.2em;}
*/
.blog-box {margin-bottom:0;}
.blog-box, .blog-box .item {height:auto;}
.wpcf7 {padding: 15px;}



}
@media (max-width: 768px) {
	/*
	.recherche .searchandfilter ul {flex-direction: column;}
	.searchandfilter select.sf-input-select {width: 90%;}
	*/
}
@media (max-width: 767px) {
  .home-slide img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
}
@media (max-width: 650px) {}
@media (max-width: 575px) {
.footer-bottom-container {margin-top: 30px;flex-direction: column;}
.footer-menu-nav ul {display: none;}
.footer-title.mobile-expand,
.footer-title.mobile-expand.toggle.active::before {cursor: pointer;}
.footer-title.mobile-expand.toggle::before {
	color: #fff;
	content: "\f056";
	font-family: "FontAwesome";
	font-size: 22px;
	padding: 0;
	position: absolute;
	top: 1px;
	right: 15px;
}
.footer-title.mobile-expand.toggle.active::before {
	content: "\f055";
	font-family: "FontAwesome";
}

}
@media (max-width: 400px) {}
@media (max-width: 360px) {}
