/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/


/*COLORS ROOT*/
:root {
	--light: #F7F6E0;
	--orange: #D47211;
	--soft-green: #618a35;
	--green: #335425;
	--dark: #282f1d;
	--red: #d41111;
	--radius: 7px;
	--row: 140px;
	--grid: 5vw;
	--size: 19px;
	--transition: .3s;
}
.light {
    background: var(--light);
}
.orange {
	background: var(--dark);
}
.soft-green {
    background: var(--soft-green);
}
.green {
    background: var(--green);
}
.dark {
    background: var(--dark);
}
.soft-green *:not(.btn-text *), .green *:not(.btn-text *), .dark *:not(.btn-text *) {
    color: var(--light);
}
.dark .btn-text * {
    color: var(--dark);
}


/*Animation : Fade in*/
@-webkit-keyframes fadein {
    100% {
 opacity:1;
}
}
@keyframes fadein {
    100% {
 opacity:1;
}
}
@-webkit-keyframes slideup {
    100% {
transform: translate3d(0, 0, 0);
opacity:1;
}
}
@keyframes slideup {
    100% {
transform: translate3d(0, 0, 0);
opacity:1;
}
}
/*Animation : Fade out*/
@-webkit-keyframes fadeout {
    100% {
 opacity:0;
}
}
@keyframes fadeout {
    100% {
 opacity:0;
}
}
.fader {
	opacity: 0;
	transform: translate3d(0, 10px, 0);
	transition: opacity 0.25s ease-out, transform 0.25s ease-out;
	will-change: opacity, transform;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
.fader.in-view {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}
.split-word {
	display: inline-block;
}


/*LOADER/SPLASH/TIMEOUT*/
.splash.timeout {
    pointer-events: none;
	opacity: 0;
}
.splash {
    position: fixed;
	top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    -webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
    transform: scale(1);
    opacity: 1;
    pointer-events: initial;
}
.splash img {
    width: 110px;
	opacity:0;
 	animation: slideup 0.5s ease both;
    animation-delay: 0.15s;
	transform: translate3d(0, 10px, 0);
	transition: opacity 0.25s ease-out, transform 0.25s ease-out;
	will-change: opacity, transform;
	backface-visibility: hidden;
}
body:not(.home) .splash img {
    display:none;
}


/*FONTS*/
html *, .mobmenu-content * {
    font-family: "Inter", serif!important;
}
h1, h2, h1 *:not(span), h2 *, h3, h3 *, h4, h4 * {
	font-family: "larken" !important;
}
.fa-classic, .fa-light, .fa-regular, .fa-solid, .fa-thin, .fal, .far, .fas, .fat {
    font-family: "Font Awesome 6 Pro"!important;
}
.fa-sharp {
    font-family: "Font Awesome 6 Sharp"!important;
}
.fa-brands, .fab {
    font-family: "Font Awesome 6 Brands"!important;
}
.dashicons, .dashicons-before:before {
    font-family: dashicons !important;
}


/*HEADER SCROLL DOWN/UP*/
#masthead {
    position: fixed;
    height: 110px;
    background: transparent;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: all .5s ease;
}
#masthead.hide {
    top: -111px;
}


/*HEADER*/
.nav-float-right #site-navigation {
    height: 60px;
    display: flex;
    margin-left: auto;
    background: var(--light);
    border-radius: var(--radius);
    padding: 0 5px 0 20px;
    box-shadow: 0 0 100px #282f1d3b;
}
.site-logo {
    display: inline-flex;
    max-width: 100%;
    width: 325px;
    height: 80px;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    transition: width .5s cubic-bezier(.76, 0, .24, 1) .25s;
    align-items: center;
}
body.scrolled .site-logo, body:not(.home) .site-logo {
	width: 60px;
}
.site-header .header-image {
	width: 325px;
	padding: 0;
	max-width: none;
	display: block;
	transition: var(--transition);
}
.main-navigation .main-nav ul ul li:not([class*="current-menu-"]):hover > a, .main-navigation .main-nav ul ul li:not([class*="current-menu-"]):focus > a, .main-navigation .main-nav ul ul li.sfHover:not([class*="current-menu-"]) > a {
    background-color: transparent;
}
body .main-navigation .main-nav ul ul li[class*="current-menu-"] > a , .main-navigation .main-nav ul ul li.current-page-ancestor > a {
    color: white;
    background-color: transparent;
}
.menu-item-has-children .dropdown-menu-toggle {
    padding-left: 6px;
    padding-right: 10px;
    margin-top: -2px;
}
.menu-item-has-children .dropdown-menu-toggle .gp-icon svg {
    top: 0.225em;
    transition: var(--transition);
    width: auto;
}
.main-navigation .main-nav ul li {
    transition: var(--transition);
    height: auto;
    display: flex;
    align-items: center;
    margin: 0;
	padding:0;
}
.main-navigation .main-nav ul li.button {
    margin-left: 10px;
}
.main-navigation .main-nav ul li a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    margin: 0;
    padding: 0 20px;
    border-radius: 50px;
    transition: var(--transition);
    line-height: 1;
    color: var(--green);
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.main-navigation .main-nav ul li.button a {
    background: var(--soft-green);
    border-radius: var(--radius);
    color: var(--light);
	font-weight:500;
}
.main-navigation .main-nav ul li:hover > a, .main-navigation .main-nav ul li:focus > a, .main-navigation .main-nav ul li.sfHover > a, .main-navigation .menu-bar-item:hover > a, .main-navigation .menu-bar-item.sfHover > a, .menu-toggle, .main-navigation .menu-bar-items, .main-navigation .main-nav ul li[class*="current-menu-"]:not(.button) > a:hover, .main-navigation .main-nav ul li[class*="current-menu-"].sfHover > a {
    color: var(--dark);
}
.main-navigation .main-nav ul li[class*="current-menu-"] > a:hover, .menu-item-has-children > a.is-ancestor, body.page-template-subservice-template #primary-menu > ul > .current-page-ancestor > a, .main-navigation .main-nav ul li:not([class*="current-menu-"]):hover > a, .main-navigation .main-nav ul li:not([class*="current-menu-"]):focus > a, .main-navigation .main-nav ul li.sfHover:not([class*="current-menu-"]) > a, .main-navigation .menu-bar-item:hover > a, .main-navigation .menu-bar-item.sfHover > a, .main-navigation .main-nav ul li.current_page_parent:hover > a, .main-navigation .main-nav ul li[class*="current-menu-"]:not(.button) > a, .main-navigation .main-nav ul li.current-page-ancestor:not([class*="current-menu-"]):hover > a {
    color: var(--orange);
    background-color: var(--light);
}
.main-navigation .main-nav ul li[class*="current-menu-"] > a:after, .main-navigation .main-nav ul li.current-page-ancestor > a:after  {
    content: "•";
    font-size: var(--size);
    font-family: auto;
    position: absolute;
    top: 5px;
    right: 12px;
    color: var(--orange);
}
.main-navigation .main-nav ul li[class*="current-menu-"]:not(.button) > a {
    color: var(--green);
	background:transparent;
}
.main-navigation .main-nav ul li.button:hover > a {
    background: var(--green);
    color: var(--light);
}
.main-navigation ul ul {
    background: var(--dark);
    min-width: max-content;
    width: fit-content;
    padding: 14px 30px;
    border: 0;
    box-shadow: none;
    border-radius: 25px;
    top: 39px;
    transition: opacity 350ms linear;
}
.main-navigation .main-nav ul ul li {
    height: auto;
    margin: 0;
}
.main-navigation:not(.toggled) ul li.sfHover>ul, .main-navigation:not(.toggled) ul li:hover>ul {
    left: 0;
}
.main-navigation .main-nav ul ul li a {
    font-size: 14px;
    margin: 0;
    color: var(--light);
    padding: 5px 0;
    font-weight: 300;
    letter-spacing: 0;
}
.main-navigation .main-nav ul ul li:hover a {
    background:transparent!important;
	color: white!important;
}
.lang, .gtranslate_wrapper {
    display: flex;
    align-items: center;
}
body a.glink.gt-current-lang {
    display:none;
}
.gtranslate_wrapper a {
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    background: transparent;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.gtranslate_wrapper a:hover {
    background: hsl(0deg 0% 100% / 35%);
    color: var(--dark);
}
.main-navigation .main-nav ul ul li:not([class*="current-menu-"]):hover > a, .main-navigation .main-nav ul ul li:not([class*="current-menu-"]):focus > a, .main-navigation .main-nav ul ul li.sfHover:not([class*="current-menu-"]) > a {
    background-color: transparent;
}
header .inside-header {
    padding-left: var(--grid);
    padding-right: var(--grid);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    transition: var(--transition);
    height: 130px;
}
.nav-float-right .header-widget {
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
    gap: 5px;
    margin-left: 5px;
}
.nav-float-right .widget ul li {
    margin-bottom: 0;
}
a.generate-back-to-top {
    display:none;
}
.center {
    text-align:center;
}


/*GÉNÉRAL*/
html {
    -webkit-text-size-adjust: 100%!important; /* Prevent font scaling in landscape while allowing user zoom */
	overflow-x:hidden!important;
}
body, p, input, select, textarea {
    font-size: var(--size);
    font-weight: 400;
}
.dark p, .green p {
    font-weight: 300;
}
b, strong {
    font-weight: 600;
}
.page-header, .sidebar .widget, .site-main>* {
    margin-bottom: 0;
}
body:not(.single-post) .featured-image {
    display: none !important;
}
body {
    color: var(--dark);
    overflow-x: hidden !important;
    line-height: 1.3;
    letter-spacing: -0.5px;
    background: white;
}
body.post-type-archive-ressources, body.search, body.archive, body.single-ressources, .light {
    background: var(--light);
}
a, button, input {
    transition: var(--transition);
}
a {
    color: var(--dark);
    text-decoration: none;
}
a:focus, a:active {
    color: var(--dark);
}
p a:hover, a:hover {
    color: var(--light);
}
body .vc_row {
    margin-left: 0;
    margin-right: 0;
    max-width: 100vw;
}
.entry-content:not(:first-child), .entry-summary:not(:first-child), .page-content:not(:first-child) {
    margin-top: 0;
}
.separate-containers .comments-area, .separate-containers .inside-article, .separate-containers .page-header, .separate-containers .paging-navigation {
    padding: 0;
    background-color: transparent;
}
.separate-containers .site-main {
    margin: 0;
}
body .grid-container {
    max-width: 100%;
}
/*Button*/
a.button, body .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern {
	display: inline-flex !important;
	align-items: center;
	gap: 3px;
	overflow: hidden;
	padding:0;
	background:transparent!important;
}
a.button .btn-text, body .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern .btn-text, body .gform_wrapper .gform_footer input.button .btn-text, body .gform_wrapper .gform_footer input.button {
	border: 0;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	margin: 0;
	padding: 0 20px;
	background: var(--light);
	color: var(--green);
	border-radius: var(--radius);
	height: 50px;
	line-height: 1;
	letter-spacing: 0.25px;
	display: inline-flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}
.white a.button .btn-text, .light a.button .btn-text, body .dark-btn.vc_do_btn .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern .btn-text {
	background: var(--dark);
	color: var(--light);
}
body .gform_wrapper .gform_footer input.button {
	background: var(--green);
	color: white;
}
body .gform_wrapper .gform_footer input.button:hover {
	background: var(--soft-green);
	color: white;
}
a.button .btn-text-inner, body .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern .btn-text-inner {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}
a.button .btn-text-line, body .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern .btn-text-line {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	transition: transform var(--transition) ease, opacity var(--transition) ease;
}
a.button .btn-text-line.is-first, body .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern .btn-text-line.is-first {
	position: relative;
	transform: translateY(0);
	opacity: 1;
}
a.button .btn-text-line.is-second, body .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern .btn-text-line.is-second {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(calc(100% + 18px)) translateY(-50%);
	opacity: 0;
}
a.button .btn-arrow, body .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern .btn-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	border-radius: var(--radius);
	color: var(--light);
	background: var(--soft-green);
	height: 50px;
	width: 50px;
	flex: 0 0 50px;
}
body .green.vc_btn3-inline .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern .btn-arrow {
	background: var(--green);
}
a.button .btn-arrow i, body .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern .btn-arrow i {
	font-family: "Font Awesome 6 Sharp" !important;
	font-style: normal;
	font-weight: 300;
	font-size: 13px;
	display: inline-block;
	transform: rotate(0deg);
	transition: var(--transition);
	line-height: 1;
}
a.button:hover .btn-arrow i, body .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:hover .btn-arrow i {
	transform: rotate(-45deg);
}
a.button:hover .btn-text-line.is-first, body .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:hover .btn-text-line.is-first {
	transform: translateY(calc(-100% - 18px));
	opacity: 0;
}
a.button:hover .btn-text-line.is-second, body .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:hover .btn-text-line.is-second {
	transform: translateY(-50%);
	opacity: 1;
}
a.button:hover, body .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:hover, body .vc_btn3-container.light .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:hover {
	background: var(--green);
	color: white;
	border-color: var(--green);
}
.vc_btn3-container {
	background: transparent !important;
}
.vc_btn3.vc_btn3-size-md {
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
}
/***/
h1, h2, h3, h4, h5, h6 {
    font-size: 80px;
    margin-bottom: 0;
    line-height: 1.0;
    text-transform: none;
    color: var(--dark);
	font-display:auto;
	font-style:normal;
	font-stretch:normal;
	font-weight:500;
}
h2 {
    font-size: 80px;
    letter-spacing: -0.02em;
}
h2 em {
    letter-spacing: -2.5px;
}
h3 {
    font-size: 62px;
}
.lg h4 {
    font-size: 50px;
}
h4 {
    font-size: 38px;
    line-height: 1.15;
}
h4 em {
    font-style: normal;
    color: var(--soft-green)!important;
}
h5 {
    font-size: 33px;
	font-weight: 300;
    letter-spacing: 1px;
}
h6, .top-banner h1 {
    font-size: 14px;
    line-height: 1.3;
    text-transform: uppercase;
    font-weight: 400;
    padding-bottom: 12px;
    font-family: "Inter", serif !important;
    text-indent: 0px;
    letter-spacing: 0;
}
h1, h2, h3, h4, h5, h6, p {
    margin:0;
}
.green h1, .green h2, .green h3, .green h4, .dark h1, .dark h2, .dark h3, .dark h4 {
    font-weight: 400;
}
.vc_col-has-fill>.vc_column-inner, .vc_row-has-fill+.vc_row-full-width+.vc_row>.vc_column_container>.vc_column-inner, .vc_row-has-fill+.vc_row>.vc_column_container>.vc_column-inner, .vc_row-has-fill>.vc_column_container>.vc_column-inner {
    padding-top: 0!important;
}
.wpb_button, .wpb_content_element, ul.wpb_thumbnails-fluid>li {
    margin-bottom: 0!important;
}
body .vc_btn3-container {
    margin-bottom: 0;
}
body .vc_btn3-container.vc_btn3-inline {
    padding-top: 50px;
}
body .vc_column_container>.vc_column-inner {
    padding-left: 0;
	padding-right: 0;
}
body .grid, .footer-widgets-container, .inside-site-info {
	padding-left: var(--grid);
	padding-right: var(--grid);
}
body.tax-ressources_category article .inside-article .entry-header {
    padding: 0;
}
.wrap {
    padding: var(--row) var(--grid);
}
.main-row, .footer-widgets-container, .row {
    padding-top: var(--row);
	padding-bottom: var(--row);
}
.grid-left, body .inside-article .entry-header, .about-split .wrap {
    padding-left: var(--grid);
}
.grid-right, .about-split .wrap {
    padding-right: var(--grid);
}
.radius-bottom {
	border-radius: 0 0 25px 25px;
}


/*ACCUEIL*/
/*Home - Banner*/
.home-banner {
    height: auto;
    display: flex;
    background-size: cover;
    background-position: center;
	position:relative;
}
.home-banner-top h2 {
    margin-bottom: -10px!important;
	font-weight:400;
}
.home-banner h2 * {
    color: var(--light);
}
.home-banner-top {
    height: 100vh;
    display: flex;
    align-items: flex-end;
}
.home-banner-top .vc_column-inner > .wpb_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 75px;
}
.line {
	height: 1px;
	width: 100%;
	background: var(--dark);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 2s ease;
	will-change: transform;
}
.soft-green .line, .green .line, .dark .line .line, .home .line {
    background: var(--light);
}
.line.in-view {
	transform: scaleX(1);
}
.home-banner-bottom *:not(.btn-text *) {
    color: var(--light);
}
.home-banner-bottom {
    height: auto;
    display: flex;
	padding-bottom: var(--row);
}
.home-banner-bottom p {
    padding-top: 20px;
	max-width:60%;
}
.home-banner-bottom h3 {
    padding-bottom:20px;
	font-weight:400;
}
.home-banner > .wpb_column {
	position:relative;
	z-index:9;
}
/*Home - About*/
.approche:before, .approche:after {
    display:none!important;
}
.home .approche {
    padding-bottom: var(--row);
}
.approche {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}
.approche .vc_col-sm-3 {
    border-right: 1px solid;
    padding-right: 50px;
	width:100%;
}
.approche .vc_col-sm-3:last-child {
    border-right: 0;
    padding-right: 0;
}
.approche h4 {
    padding-bottom: 40px;
}
.approche h4 br {
    display:none;
}
@media only screen and (min-width: 1700px) {
.approche h4 br {
    display:block;
}
}
.expertise {
	padding-top: var(--row);
    display: flex;
    align-items: flex-end;
}
.services-listing * {
    transition: var(--transition);
}
.services-listing.title a {
    display: flex;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid white;
    margin-bottom: 15px!important;
    padding-bottom: 15px;
    align-items: center;
}
.services-listing.title .service-item:last-child a {
    margin-bottom: 0!important;
	border:0;
	padding-bottom:0;
}
.services-listing.title a:hover * {
    color: var(--orange);
}
.services-listing i {
    font-size: 20px;
    font-weight: 300;
    transform: rotate(0deg);
}
.services-listing a:hover i {
    transform: rotate(-45deg);
}
/*Home - Projet*/
.projet {
    background-repeat: no-repeat;
    background-size:25vw;
    background-position: 60vw -25px;
}
.projet h6 {
	padding-bottom: var(--row);
}
.projet p {
    max-width: 40%;
    padding-top: 25px;
}
/*Home - Gallery/Quote*/
.home-quote img {
    width: 70px;
    margin-bottom: 200px;
}
.home-quote {
    height: 120vh;
    border-radius: 0 0 25px 25px;
}


/*PAGE*/
.page-description, .service-description, .page-top {
	padding-top: 0;
}
.page-description h4, .service-description h4 {
	max-width:75%;
}
body.home .inside-article .entry-header {
    display: none;
}
body .inside-article .entry-header {
    height: 80vh;
    background-size: cover;
    background-position: center bottom;
    background-image: url(/wp-content/uploads/gradient-scaled.jpg);
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding-bottom: 10vh;
}
body .inside-article .entry-header h1 {
    max-width:50%;
}


/*À PROPOS*/
#membres {
    margin: 0 -5vw;
}
.membre-slide {
    padding: 0 4vw;
}
.membre-slide img {
    width: 17vw;
	opacity:0.8;
}
.page-id-38437 .dre p, .page-id-38437 .staff h4 {
  max-width: none; /* ou max-width: 100%; selon ton besoin */
}
.staff {
    margin-top: 70px;
}
.staff .wpb_single_image img {
    max-width: 500px;
    border-radius: 15px;
    margin-bottom: 35px;
}


/*POLITIQUE*/
.page-id-43447 .banner-overlay {
    background: var(--dark);
}
body .cky-notice-des a.cky-policy, body .cky-notice-des button.cky-policy, body .cky-dma-content-wrapper a.cky-policy, body .cky-dma-content-wrapper button.cky-policy {
display: inline-block;
}
.politique {
     padding-bottom:50px;
}
.politique h4 {
    padding: 32px 0 22px;
}
.politique p {
    padding-bottom:20px;
}
.politique ul {
    margin-bottom: 20px;
}


/*TOP BANNER*/
.top-banner {
    position;relative;
}
.top-banner, .banner-overlay {
    height: 75vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-bottom: 10vh;
    width: 100vw;
}
.banner-overlay {
    position: absolute;
    top: 0;
    background: linear-gradient(0deg, var(--dark), transparent);
}
.banner-overlay.logo {
    position: absolute;
    top: 0;
    background: linear-gradient(-54deg, transparent 65%, var(--light));
    width: 100%;
    opacity: 1;
}
.top-banner h1 {
    color: var(--light);
	text-indent: 2px;
}
.top-banner h2 {
    font-weight:400;
	max-width: 50%;
    min-width: 1000px;
    color: var(--light);
}


/*SERVICE PAGE*/
.services-listing.full .service-item {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding-bottom: 75px;
    border-bottom: 1px solid;
    margin-bottom: 25px;
}
.services-listing .service-item:last-child {
    padding-bottom: 0;
	margin-bottom:0;
	border:0;
}
.services-listing .service-item .left, .services-listing .service-item .right {
	width: 50%;
}
.services-listing.full h5 {
    font-weight: 400;
    letter-spacing: 0.5px;
    padding-bottom: 20px;
}
.services-listing.full p em {
    font-style: normal;
    color: var(--soft-green);
}
.services-listing.full p {
    font-size: 1.25em;
    line-height: 1.4;
}


/*SUBSERVICE PAGE*/
.page-template-service-template-php .site-content {
	display:block;
}
.others .services-listing {
	padding-top:50px;
}
.others .services-listing .service-item.current {
    display:none;
}
.others .services-listing.title a {
    border-color: var(--dark);
}
.others h5 {
    font-weight: 400;
    letter-spacing: 0.5px;
}
.subservice-content h3, .page-id-38437 .entry-content h3 {
	padding-bottom:25px;
}
.subservice-content h4 {
    padding-top: 15px;
	padding-bottom:15px;
}
.subservice-content h4 em {
    width: 35px;
    display: flex;
    color: var(--orange) !important;
    border-radius: 99px;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    height: 35px;
    text-indent: -2px;
    font-weight: 100;
    border: 1px solid;
    padding: 5px;
    margin-bottom: 2px !important;
}
.subservice-content p, .subservice-content ul {
    max-width:80%;
	padding-bottom:15px;
}
.subservice-content ul {
    margin: 0 0 0 2em;
}
.subservice-content ul li {
    margin-bottom:10px;
}
.subservice-subtitle, .page-id-38437 .entry-content p {
	padding-bottom:15px;
}
.page-id-38437 .entry-content p:last-of-type {
	padding-bottom:0;
}
body .subservice-content .vc_btn3-container.vc_btn3-inline {
    padding-top: 35px;
}
.subservice-content .gallery, .page-id-38437 .entry-content .gallery {
    margin-bottom: 0;
    background: linear-gradient(0deg, var(--light) 50%, transparent) 50%;
}
.subservice-content .gallery .wpb_single_image {
	width:50%;
	float: left;
}
.gallery .wpb_wrapper {
    display:flex;
}
.gallery .wpb_single_image:first-child img {
    border-radius: 25px 0 0 25px;
}
.gallery .wpb_single_image:last-child img {
    border-radius: 0 25px 25px 0;
}
.gallery .wpb_wrapper img {
    aspect-ratio: 1.15 / 1;
    object-fit: cover;
}


/*À PROPOS*/
.page-id-38437 .entry-content h3 {
    padding-bottom: 40px;
}
.about-split .vc_col-has-fill>div {
	background-size:cover;
	background-position:center;
}
.about-split.proprio .vc_col-has-fill>div {
    border-radius: 25px 0 0 25px;
}
.about-split.team .vc_col-has-fill>div {
    border-radius: 0 25px 25px 0;
}
.residus * {
    font-weight: 400;
}
.residus i  {
    font-size: 100px;
    font-weight: 500;
}


/*RÉALISATIONS*/
.avant-apres h4 {
    padding-bottom: 20px;
}
.avant-apres h6 {
    font-weight: 500;
}
.avant-apres .line {
	margin-bottom: var(--grid);
}
.projets .vc_column-inner>.wpb_wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    row-gap: 50px;
}
body .twentytwenty-overlay:hover {
    background: #282f1d61;
}
body .twentytwenty-horizontal .twentytwenty-before-label:before, body .twentytwenty-horizontal .twentytwenty-after-label:before {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--soft-green);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
.bafg-twentytwenty-container img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius);
}
body .bafg-slider-info {
    text-align: center;
}
body .bafg-slider-info .bafg-slider-title {
    font-size: 25px!important;
    margin-bottom: 5px;
    text-align: center;
}
body .bafg-slider-description {
    font-size: 17px;
}
.realisation-galerie {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
	margin-top: var(--grid);
}
.realisation-galerie .gallery-slide {
    display: block;
}
.realisation-galerie .gallery-single-photo {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius);
	aspect-ratio: 12 / 9;
	object-fit: cover;
}


/*POPUP LIGHTGALLERY*/
body .lg-outer {
    z-index: 9999;
}
body .lg-outer .lg-img-wrap {
    padding: 0;
}
body #lg-download {
    display: none;
}
body .lg-toolbar {
    background-color: transparent;
}
body #lg-counter {
    color: var(--light);
    display: inline-block;
    font-size: 17px;
    padding-left: 28px;
    padding-top: 16px;
    vertical-align: middle;
}
body .lg-toolbar .lg-icon.lg-close {
    line-height: 1;
    font-size: 35px;
    color: var(--light);
    right: 30px;
    top: 15px;
    width: 35px;
    left: auto;
    position: absolute;
    padding: 0;
    transform: rotate(0deg);
	transition:.3s;
}
body .lg-toolbar .lg-icon.lg-close:hover {
    transform: rotate(90deg);
}
body .lg-toolbar {
    opacity: 1 !important;
    height: auto !important;
    transform: none !important;
}
body .lg-outer .lg-video-cont {
    max-width: 1500px!important;
    padding: 0!important;
}
body .lg-outer .lg-video .lg-object {
    width: 75% !important;
    height: 75% !important;
    top: 12.5%;
    left: 12.5%;
}
body .lg-backdrop.in {
    opacity: 1;
    z-index: 9999;
    background-color: var(--green);
}
body .lg-sub-html {
    display: none;
}
body .lg-actions .lg-next, body .lg-actions .lg-prev {
    background-color: transparent;
    color: var(--light);
    font-size: 24px;
}
body .lg-hide-items .lg-prev, body .lg-hide-items .lg-next {
    opacity: 1!important;
    transform: none!important;
}


/*PREFOOTER*/
.prefooter {
	position: relative;
	height: 120vh;
	border-radius: 0 0 25px 25px;
	overflow: hidden;
    margin-bottom: -25px;
}
.prefooter-inner {
	position: relative;
	width: 100%;
	height: 100%;
	max-width: 100%;
	margin: 0 auto;
}
.prefooter-logo {
	position: relative;
}
.prefooter-logo img {
	width: 65px;
}
.prefooter-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 900px;
	max-width: calc(100% - 80px);
	text-align: center;
	z-index: 3;
}
.prefooter-text h4 {
	margin: 0;
}
.prefooter-photo {
	position: absolute;
	z-index: 2;
	will-change: transform;
}
.prefooter-photo img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius);
}
.prefooter-photo-1 {
    top: 20%;
    left: 4vw;
    width: 31vw;
}
.prefooter-photo-1 img {
    aspect-ratio: 1.2 / 1;
    object-fit: cover;
    object-position: center;
}
.prefooter-photo-2 {
    top: 10%;
    right: -3vw;
    width: 28vw;
}
.prefooter-photo-3 {
    top: 66%;
    left: 40vw;
    width: 22vw;
}
/*Home Carrière*/
.carrieres-inner {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    padding-top: 25px;
}
.carrieres-left h3 {
	margin: 0 0 35px;
}
.carrieres-right p {
	padding: 0 5% 20px 0;
}
.carrieres-right p:last-child {
	padding-bottom:0;
}


/*FOOTER*/
.site-footer {
    width:100%;
	float:left;
}
body .inside-footer-widgets>div {
    flex: none;
}
.site-footer p, .contact p, figcaption, .site-footer a {
    font-size: var(--size);
    display: inline-block;
}
.footer-widgets, .site-info {
    color: var(--green);
    background: var(--light);
}
.home .footer-widgets {
    border-radius: 25px 25px 0 0;
}
.site-footer, .site-footer a, body .footer-bar .widget_nav_menu .current-menu-item a {
    color: var(--green);
}
.site-footer a:hover {
    color:var(--orange);
}
.site-footer .footer-widgets-container .inside-footer-widgets {
    margin-left: 0;
	gap:35px;
}
body:not(.home) .site-footer .footer-widgets-container .inside-footer-widgets {
    padding-top: 25px;
}
.site-footer .footer-widgets-container .inner-padding {
    padding: 0;
}
.footer-widget-1 {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-widget-1 img {
    width: 50px;
}
.footer-widget-1 h4 {
    color: var(--green);
	padding-bottom: 42px;
}
.footer-widget-2, .footer-widget-3 {
    border-top: 1px solid;
    padding-top: 28px;
    width: calc(32% - 35px);
}
.site-footer .email p, .site-footer .tel p {
    font-weight: 600;
    font-size: 1.1em;
}
.footer-widget-3 {
    width: calc(18% - 35px);
}
.footer-widgets .widget ul li {
    margin-bottom: 10px;
}
.coordo .col {
    margin-bottom: 20px!important;
    display: block;
}
.coordo .col:last-child, #page-content .coordo .col:last-child {
    margin-bottom: 0px !important;
}
.socials {
    display:flex;
	gap:10px;
}
.socials a {
    color: var(--light);
    margin-right: 0;
    background: var(--green);
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 21px;
}
.ite-footer .socials a i.fa-facebook-f {
    text-indent: -2px;
    font-size: 19px;
}
.socials a:hover {
	background: var(--orange);
	color: var(--light);
}
.footer-widgets .widget {
    margin-bottom: 0;
}
.site-footer .copyright-bar {
    display:none;
}
.inside-site-info {
    padding-bottom: 50px;
    padding-top: 0;
}
.footer-bar {
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: space-between;
}
.footer-bar *, .footer-bar p, .footer-bar a {
    text-transform: uppercase;
    font-size: 12px;
	font-weight:500;
    letter-spacing: 0.15px;
}
.footer-bar-active .footer-bar .widget {
    min-width: 250px;
}
.footer-bar aside:first-child {
    text-align:left;
}
.footer-bar aside:nth-child(2) {
    text-align:center;
}
.footer-bar aside:last-child {
    text-align:right;
}
body .footer-bar .widget_nav_menu>div>ul {
    justify-content: center;
}


/*GFORM*/
.gform_ajax_spinner {
    display:none!important;
}
.gform-body {
    max-width: 1000px;
    width: 100%;
    margin: 0;
}
body .gform_confirmation_message {
    color: var(--dark);
    padding: 25px 40px;
    max-width: fit-content;
    margin: 45px 0 0;
    background: var(--light);
    text-align: left;
    border-radius: var(--radius);
    font-weight: 500;
}
body .gform_confirmation_message::before {
    content: "\f1d8";
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    font-size: 35px;
    margin-bottom: 10px;
    line-height: 1;
    color: var(--soft-green);
    display: block;
}
body .gform_wrapper ul.gform_fields li.gfield {
    padding-right: 0;
}
body .gform_wrapper.gravity-theme .gform_drop_instructions {
    display: block;
    margin-bottom: 0;
    font-size: 16px;
    padding-right: 4px;
    line-height: 1;
}
body .gform_button_select_files {
    position: relative;
    line-height: 1;
    padding: 0;
    color: var(--soft-green);
    text-decoration: underline;
    background: transparent;
    font-size: 16px;
    min-height: auto;
}
body .gform_button_select_files, body .gform_wrapper.gravity-theme .gform_drop_instructions {
	padding-top:40px;
}
body .gform_button_select_files:hover {
    background: transparent;
	color: var(--green);
}
body .gform_button_select_files:focus {
    background: transparent;
	color: var(--soft-green);
}
body .gform_wrapper.gravity-theme .gform_drop_area:before {
    font-weight: 300;
    font-family: "Font Awesome 6 Pro" !important;
    content: "\f0ee";
    position: absolute;
    font-size: 32px;
    color: var(--soft-green);
    margin-top: -40px;
}
body .gform_wrapper.gravity-theme .gform_drop_area {
    background: #bacba129;
    border: 1px dashed #a0a796;
    border-radius: var(--radius);
    margin-bottom: 0;
    padding: 25px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    margin-bottom: 8px;
}
body .gform_wrapper.gravity-theme .ginput_preview {
    margin: 0;
    line-height: 1;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
    min-height: 20px;
}
body .gfield_fileupload_progress.gfield_fileupload_progress_complete {
	display:none;
}
body .gfield_fileupload_progress {
	padding-right:6px;
}
body .gform_wrapper.gravity-theme .gform_delete_file {
    padding: 0;
    margin: 0;
    line-height: 1;
    height: auto;
}
body .gform_wrapper.gravity-theme .gform_delete_file .dashicons {
    display: flex;
    justify-content: center;
}
body .gform_wrapper.gravity-theme .gform_delete_file .dashicons-trash:before {
    font-family: "Font Awesome 6 Pro" !important;
    content: "\58";
    color: var(--red);
    font-weight: 900;
    font-size: 13px;
    line-height: 1;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
body .gform_wrapper.gravity-theme .gfield_validation_message {
    background: transparent !important;
    border: 0 !important;
    margin-top: 0 !important;
    padding: 5px 0 0 !important;
    font-size: 13px !important;
    letter-spacing: 0 !important;
    font-weight: 500;
    color: var(--red) !important;
    text-align: center;
}
body .gform_wrapper.gravity-theme .gfield_error [aria-invalid=true] {
    -webkit-box-shadow: inset 0px 0px 0px 1px var(--red);
    -moz-box-shadow: inset 0px 0px 0px 1px var(--red);
    box-shadow: inset 0px 0px 0px 1px var(--red);
    border: 0;
}
body .gform_wrapper .field_sublabel_above .ginput_complex.ginput_container label, body .gform_wrapper .field_sublabel_above div[class*=gfield_time_].ginput_container label {
    margin: 0;
}
body .gform_wrapper .top_label li.gfield.gf_left_half .ginput_container:not(.gfield_time_hour):not(.gfield_time_minute):not(.gfield_time_ampm):not(.ginput_container_date):not(.ginput_quantity):not(.datepicker):not(.gfield_signature_container), body .gform_wrapper .top_label li.gfield.gf_right_half .ginput_container:not(.gfield_time_hour):not(.gfield_time_minute):not(.gfield_time_ampm):not(.ginput_container_date):not(.ginput_quantity):not(.datepicker):not(.gfield_signature_container) {
    margin: 5px 0 0 0;
}
body .gform_wrapper .top_label .calcul .gfield_label {
    margin-bottom: 0;
    margin-top: 8px;
    padding-right: 10px;
    letter-spacing: 2px;
}
body .gform_wrapper .gform_footer {
    margin: 0;
}
.ginput_container.ginput_container_fileupload span.gfield_description.gform_fileupload_rules, .spacer.gfield, .gform_required_legend, body .gform_wrapper.gravity-theme .gfield_required{
    display: none;
}
body textarea {
  resize: none;
}
.gform_required_legend, .gform_wrapper .gform_validation_errors, .gform_wrapper.gravity-theme .description, .gform_wrapper .gform_validation_errors, .gform_wrapper.gravity-theme .gsection_description, .gform_wrapper.gravity-theme .instruction {
    display: none!important;
}
body .gform-loader {
	display:none!important;
}
.gform_wrapper.gravity-theme .gfield_error .gfield_repeater_cell label, .gform_wrapper.gravity-theme .gfield_error label, .gform_wrapper.gravity-theme .gfield_error legend, .gform_wrapper.gravity-theme .gfield_validation_message, .gform_wrapper.gravity-theme .validation_message, .gform_wrapper.gravity-theme [aria-invalid=true]+label, .gform_wrapper.gravity-theme label+[aria-invalid=true] {
    color: var(--dark)!important;
}
body .gform_wrapper.gravity-theme .gfield textarea.medium {
    height: 200px !important;
    border: 0;
    padding: 15px 25px !important;
}
body .gform_wrapper.gravity-theme input[type=color], body .gform_wrapper.gravity-theme input[type=date], body .gform_wrapper.gravity-theme input[type=datetime-local], body .gform_wrapper.gravity-theme input[type=datetime], body .gform_wrapper.gravity-theme input[type=email], body .gform_wrapper.gravity-theme input[type=month], body .gform_wrapper.gravity-theme input[type=number], body .gform_wrapper.gravity-theme input[type=password], body .gform_wrapper.gravity-theme input[type=search], body .gform_wrapper.gravity-theme input[type=tel], body .gform_wrapper.gravity-theme input[type=text], body .gform_wrapper.gravity-theme input[type=time], body .gform_wrapper.gravity-theme input[type=url], body .gform_wrapper.gravity-theme input[type=week], body .gform_wrapper.gravity-theme select, body .gform_wrapper.gravity-theme textarea {
    margin-bottom: 0;
    margin-top: 0;
    padding: 0 25px;
    height: 60px;
	line-height:1;
    color: var(--dark);
    background: var(--light);
    border: 0;
    border-radius: var(--radius);
    font-weight: 400;
    min-height: 40px;
    transition: var(--transition);
    font-size: var(--size);
	-webkit-box-shadow: inset 0px 0px 0px 0px var(--dark);
    -moz-box-shadow: inset 0px 0px 0px 0px var(--dark);
    box-shadow: inset 0px 0px 0px 0px var(--dark);
}
body .gform_wrapper.gravity-theme .gfield select {
    background: url(/wp-content/uploads/arrow.svg) no-repeat var(--light);
    background-size: 20px;
    background-position: calc(100% - 25px);
    padding-right: 0;
    padding-left: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 60px;
	padding: 0 25px;
    text-align: left;
	-webkit-box-shadow: inset 0px 0px 0px 0px var(--dark);
    -moz-box-shadow: inset 0px 0px 0px 0px var(--dark);
    box-shadow: inset 0px 0px 0px 0px var(--dark);
}
body .gform_wrapper.gravity-theme .gfield select option {
    font-weight:400;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="tel"]:focus, input[type="number"]:focus, textarea:focus, select:focus {
    color: var(--dark);
    background-color: var(--light) !important;
    border: 0;
    outline: none !important;
    -webkit-box-shadow: inset 0px 0px 0px 1px var(--dark)!important;
    -moz-box-shadow: inset 0px 0px 0px 1px var(--dark)!important;
    box-shadow: inset 0px 0px 0px 1px var(--dark)!important;
}
body .gform_wrapper.gravity-theme #field_7_3 .gfield_validation_message {
    text-align: left;
}
body .gform_wrapper.gravity-theme .gfield.gfield--width-full.gfield--type-checkbox,
body .gform_wrapper.gravity-theme .gfield.gfield--type-radio {
    margin-top: 8px;
}
body .gfield_checkbox .gchoice,
body .gfield_radio .gchoice {
    position: relative;
    margin-bottom: 1px;
}
body .gfield_checkbox .gchoice:last-child,
body .gfield_radio .gchoice:last-child {
    margin-bottom: 0;
}
body .gfield_checkbox .gfield-choice-input,
body .gfield_radio .gfield-choice-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
body .gform_wrapper.gravity-theme .gfield_checkbox .gfield-choice-input + label,
body .gform_wrapper.gravity-theme .gfield_radio .gfield-choice-input + label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    cursor: pointer;
    line-height: 1.4;
    font-size: var(--size);
}
body .gfield_checkbox .gform-field-label::before,
body .gfield_radio .gform-field-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    border: 1px solid var(--dark);
    border-radius: 50%;
    background: transparent;
    box-sizing: border-box;
    transition: all 0.2s ease;
}
body .gfield_checkbox .gform-field-label::after,
body .gfield_radio .gform-field-label::after {
    content: "\f00c";
    font-family: "Font Awesome 6 Pro" !important;
    font-weight: 900;
    position: absolute;
    left: 2px;
    top: 4px;
    font-size: 18px;
    line-height: 1;
    color: #fff;
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.2s ease;
}
body .gfield_checkbox .gfield-choice-input:checked + .gform-field-label::before,
body .gfield_radio .gfield-choice-input:checked + .gform-field-label::before {
    background: var(--soft-green);
    border-color: var(--soft-green);
}
body .gfield_checkbox .gfield-choice-input:checked + .gform-field-label::after,
body .gfield_radio .gfield-choice-input:checked + .gform-field-label::after {
    opacity: 1;
}
body .gform_wrapper.gravity-theme .gform_footer, body .gform_wrapper.gravity-theme .gform_page_footer {
    margin: 0 !important;
    padding: 40px 0 0;
}
body .gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) fieldset:not([style*="display:none"]):not(.ginput_full), body .gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) span:not([style*="display:none"]):not(.ginput_full) {
    padding-right: 5px;
}
body .gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) fieldset:not([style*="display:none"]):not(.ginput_full)~span:not(.ginput_full), body .gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) span:not([style*="display:none"]):not(.ginput_full)~span:not(.ginput_full) {
    padding-left: 5px;
}
body .gform_wrapper {
    padding-top: 60px;
}
body .gform_wrapper.gravity-theme .gform_fields {
    grid-row-gap: 20px;
    grid-column-gap: 20px;
}
body .gf_browser_ie.gform_wrapper.gravity-theme .gform_fields {
    display: grid;
    overflow: auto;
}
body .gf_browser_ie.gform_wrapper.gravity-theme .gform_fields .gfield {
    border-width: 0;
}
body .gf_browser_ie.gform_wrapper.gravity-theme .gform_fields .gfield.gfield--width-half {
    width: 100%;
}
body .gform_wrapper .top_label .gfield_label {
  color: var(--dark);
  font-size: 14px;
  text-transform: uppercase;
  font-weight:400;
  margin:0;
  margin-bottom:10px;
}
::placeholder {
  color: #a0a796;
  font-weight:400;
}
::-ms-input-placeholder {
  color: #a0a796;
  font-weight:400;
}
input:-webkit-autofill, input:-webkit-autofill:focus, input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 50px var(--light) inset!important;
}
body .gform_wrapper.gravity-theme .gfield--type-captcha img {
    max-width: 110px;
}
body .gform_wrapper.gravity-theme .gfield--type-captcha .gfield_validation_message, body .gform_wrapper.gravity-theme .gfield.gfield--width-full.calcul .gfield_validation_message {
    padding-left: 15px !important;
    max-width: 50%;
    padding-top: 11px !important;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


/*CONTACT*/
body .wpb_gmaps_widget .wpb_wrapper {
    background-color: transparent;
    padding: 0;
}
.coordo a h3 {
	transition:var(--transition);
}
.coordo a:hover h3 {
    color: var(--light);
}
.coordo .data {
	font-weight:400;
}
.coordo.tags {
    display: flex;
	gap:15px;
}
.coordo.tags .col {
    display: flex;
    gap: 15px;
    padding: 30px;
    border-radius: var(--radius);
    background: var(--light);
    margin: 0 !important;
    align-items: center;
}
.coordo.tags .col *:not(i) {
    color: var(--dark);
}
.coordo.tags .col i {
    color: var(--dark);
    background: var(--soft-green);
    color: var(--light);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
	transition: var(--transition);
}
.coordo.tags a:hover .col i {
    background: var(--orange);
}
.soumission h3 {
    padding-bottom: 35px;
}
.soumission h4 {
    max-width:1300px;
}


/*CARRIERES*/
.carrieres-listing {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
}
.carrieres-listing .poste {
    padding: 50px;
    background: var(--light);
    border-radius: var(--radius);
}
.carrieres-listing .poste .btn-text {
    background: var(--dark);
}
.carrieres-listing .poste .btn-text * {
    color: var(--light)!important;
}
.carrieres-listing .poste *:not(.btn-arrow i):not(.city *):not(.city) {
    color: var(--dark);
}
.carrieres-listing a.button {
    min-width: 200px;
    text-transform: uppercase;
    display: flex;
    justify-content: flex-end;
}
.poste-min {
    display: flex;
    gap: 100px;
    justify-content: space-between;
    align-items: flex-end;
}
.poste h4 {
    padding: 5px 0 30px;
	  line-height:1.1;
}
.poste.aucun h4 {
    padding: 0;
}
.poste .more-details {
    display: flex;
    gap: 8px;
    align-content: center;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    font-weight: 600;
    font-size: 17px;
}
.poste .more-details i {
    transform: rotate(0deg);
    transition: .3s;
    font-size: 0.95em;
}
.poste .more-details:hover i {
    transform: rotate(90deg);
}
.poste.open .more-details i {
    transform: rotate(0deg);
}
.poste.open .more-details:hover i {
    transform: rotate(0deg);
}
.poste-details {
    padding-top: 50px;
}
.poste-details-row {
    display: flex;
    gap: 50px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid;
}
.poste-details-row strong {
    min-width: 200px;
    width: 200px;
}
p.extra {
    display: block;
    border-top: 1px solid var(--border);
    padding-top: 25px;
    margin-top: 5px;
    padding-bottom: 25px;
}
.poste .city {
    color: var(--soft-green);
    flex: 1;
    text-transform: uppercase;
    font-size: 14px;
    padding-top: 0;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.poste .city i {
    color: var(--soft-green);
    padding-right: 5px;
    font-size: 15px;
    font-weight: 900;
    position: relative;
    top: 0;
}
.poste .desire {
    padding: 20px 0 15px;
}


/*TESTI*/
.home-testi .buttons {
    text-align: center;
}
body .home-testi .buttons .vc_btn3-container.vc_btn3-inline {
    padding-top: 80px;
    margin: 0 6px;
}
.page-id-43500 #prefooter {
    background: var(--dark);
}



/******************************/
/******************************/
/*RESPONSIVE*/
/******************************/
/******************************/


@media only screen and (max-width: 1440px) {
:root {
    --row: 120px;
    --grid: 6vw;
    --size: 18px;
}
.site-header .header-image, .site-logo {
    width: 300px;
}
.splash img {
    width: 90px;
}
h2 {
    font-size: 75px;
}
h3 {
    font-size: 55px;
}
h4 {
    font-size: 32px;
}
h5 {
    font-size: 30px;
}
.services-listing.full p {
    font-size: 1.2em;
}
.approche .vc_col-sm-3 {
    padding-right: 35px;
}
.approche {
    gap: 35px;
}
.approche h4 {
    padding-bottom: 35px;
}
body .bafg-slider-info .bafg-slider-title {
    font-size: 23px !important;
}
body .bafg-slider-description {
    font-size: 16px;
}
.subservice-content h4 em {
    width: 32px;
    font-size: 22px;
    height: 32px;
}
.top-banner h2 {
	max-width: 950px;
	min-width: 100%;
}
.page-description h4, .service-description h4 {
    max-width: 85%;
}
.soumission h4 {
    max-width: 1100px;
}
}


@media only screen and (max-width: 1200px) {
:root {
    --grid: 5vw;
}
/*FULLSCREEN MENU/HEADER*/
body .mobmenu-content .widget.widget_media_image {
    bottom: 10vh;
    right: 3.5vw;
    filter: invert(1) brightness(2);
}
.mobmenu-right-panel .mob-cancel-button {
    display: block !important;
}
.rightmbottom .gtranslate_wrapper {
	justify-content: center;
	margin-bottom: 50px;
	margin-top: 25px;
}
.rightmbottom .gtranslate_wrapper a {
	padding: 0;
	background: transparent;
	height: auto;
	width: auto;
	color: white;
	outline: none;
	font-size: 19px;
    font-weight: 200;
}
.menu-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.menu-contact i {
    color: white;
    font-weight: 300;
    font-size: 16px;
    padding-bottom: 3px;
    display: block;
    padding-top: 15px;
}
.menu-contact i.fa-inbox {
    padding-bottom: 0px;
}
body .site-branding {
    display: block!important;
    padding-left: 36px;
}
.main-title a, .main-title a:hover, .logo-type {
    font-size: 40px;
}
body.mob-menu-overlay, body.mob-menu-slideout, body.mob-menu-slideout-over, body.mob-menu-slideout-top {
    padding-top: 0!important;
}
body .site-header {
    background: transparent;
    height: 80px;
    width: 100%;
    z-index: 999;
    mix-blend-mode: initial;
    position: fixed;
    transition: .35s;
    display: flex!important;
    left: 0;
}
body #mobmenuright li.menu-soumission a, body #mobmenuright li.menu-soumission a:hover {
    margin-left: 0;
    background: white!important;
    color: var(--dark)!important;
    margin: 0 auto;
    box-shadow: 0 0 0 2px white;
}
body.scrolled.password-protected .site-header {
    background: transparent;
}
html.mob-menu-no-scroll {
    overflow: auto;
}
body .mobmenu-right-alignment.show-panel {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}
body .mobmenu-right-alignment {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
}
body .mobmenu-content li a {
	padding: 0;
	color: var(--light);
	text-align: center;
	letter-spacing: 0;
	font-size:15px;
}
body .mobmenu-content li a.button {
	padding: 0;
	margin: 5px 0 30px;
}
body .mobmenu-content li .socials {
	margin-top: 20px;
	justify-content: center;
}
body .mobmenu-content li .socials a {
	color: var(--dark);
	background: var(--light);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 21px;
}
body .mobmenu-content li .socials a .fa-instagram{
    position: relative;
    left: 1px;
}
body .mob-menu-header-holder {
	top: 0;
	right: 0;
	display: block;
	z-index: 9999;
	position: fixed;
	right: var(--grid);
	width: 55px;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
}
body .mobmenul-container, body .mobmenur-container {
    position: relative;
    top: 0;
    margin: 0!important;
    right: auto;
    display: flex;
    align-items: center;
}
body.mob-menu-slideout-over .mobmenu-right-alignment {
	right: 0;
	height: 100%;
	background: var(--dark);
	width: 100%;
	transition: transform .8s cubic-bezier(.76,0,.24,1) var(--transition);
	left: 0;
}
body.show-nav-right.mob-menu-slideout-over .mobmenu-right-alignment {
	transition: transform .8s cubic-bezier(.76,0,.24,1);
}
body .mobmenur-container i {
	transition: var(--transition);
	background: var(--soft-green);
	padding: 0;
	border-radius: 50px;
	width: 55px;
	height: 55px;
	line-height: 55px;
	text-align: center;
}
body.show-nav-right .mobmenu-overlay {
    background: transparent;
}
body .mob-icon-menu:before {
	font-weight: 300;
	font-family: "Font Awesome 6 Sharp" !important;
	content: "\f0c9";
	content: "\f7a4";
	position: relative;
	font-size: 32px;
	color: var(--light);
	width: auto;
	margin: 0;
	text-align: right;
	opacity: 1;
	transition: var(--transition);
	top: 2px;
	left: 0;
	line-height: 1;
	padding: 0;
	margin: 0;
}
body .mob-icon-cancel-1:before {
	font-weight: 300;
	font-family: "Font Awesome 6 Sharp" !important;
	content: "\f00d";
	position: relative;
	color: var(--light);
	font-size: 38px;
	width: auto;
	margin: 0;
	text-align: right;
	opacity: 1;
	transition: var(--transition);
	background: transparent;
	border-radius: 50px;
	width: 55px;
	height: 55px;
	text-align: center;
	line-height: 56px;
}
body .mobmenu-right-panel li, body .rightmbottom, body .rightmtop {
	padding-left: 0;
	padding-right: 0;
}
body .mobmenu-right-panel .mobmenu-right-bt, .mobmenu-right-panel .mobmenu-right-bt {
	right: var(--grid);
	top: 17px;
}
body .mobmenu-content #mobmenuright > li > a:hover, body .mobmenu-content #mobmenuright li:hover, body .mobmenu-content #mobmenuright li:hover {
    background: transparent;
}
body #mobmenuright li.current-menu-item a:hover {
    padding-right: 0;
}
body .mobmenu-content>div {
    width:100%;
}
body #mobmenuright li a {
	line-height: 1;
	display: block;
	text-decoration: none;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0;
	font-size: 20px;
	color: var(--light) !important;
	transition: var(--transition);
	text-align: center;
	margin: 25px auto;
	max-width: fit-content;
	padding-left: 2vw;
	position: relative;
	z-index: 999;
	padding: 0;
}
body #mobmenuright li a:hover, body #mobmenuright li.current-menu-item a:hover {
    color: var(--light)!important;
}
body #mobmenuright li i, body .show-nav-right .mob-expand-submenu i {
	color: var(--light) !important;
	transition:var(--transition);
	font-size: 13px;
	position: absolute;
	top: 8px;
	margin-left: 6px;
}
body #mobmenuright li.current-menu-item a, body #mobmenuright li.current-menu-item a:hover {
	color: var(--light) !important;
}
body .mobmenu-content {
    margin-top: 0;
    z-index: 1;
    height: 100%;
    overflow: auto;
    display: flex;
	padding-top:0;
	padding-bottom:0;
    align-items: center;
    align-content: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
	animation: fadeout 1s ease both;
}
body .mobmenu-content p {
	font-size: 16px;
	font-weight: 300 !important;
}
.mobmenu-content .coordo .col {
    margin-bottom: 12px !important;
}
.mobmenu-content .coordo .col.hours {
    display: none;
}
.mobmenu-content .coordo {
    width: fit-content;
    margin: 0 auto;
}
body.show-nav-right .mobmenu-content {
	opacity:0;
	animation: fadein 1s ease both;
    animation-delay: 0.5s;
}
body .mobmenu-content .rightmtop, body .mobmenu-content .rightmtop li, body .mobmenu-content .rightmtop li a {
    padding: 0;
    margin: 0;
}
body .mobmenu-content .rightmtop {
	position: fixed;
	top: 32px;
	left: var(--grid);
}
body .rightmbottom, .mobmenu-content .widget {
	margin: 0 auto;
	width: fit-content;
	padding: 0;
}
.widget ul li {
    margin-bottom: 0;
}
body .mobmenu-content li#nav_menu-2 li:first-child a {
    margin-top:0;
}
body .mobmenu-content .widget {
    padding-bottom: 0px;
    padding: 0;
}
.container.grid-container {
    padding-left: 0;
}
.nav-float-right #site-navigation {
    display: none;
}
.nav-align-center .main-nav>ul {
    width: 100px;
    margin-right: 60px;
}
.has-inline-mobile-toggle .mobile-menu-control-wrapper {
    display: none!important;
}
.nav-float-right .header-widget {
    display: none;
}
#masthead, header .inside-header, .site-logo, body .mobmenul-container, body .mobmenur-container, body .mob-menu-header-holder {
    height: 90px;
}
body .rightmtop img {
	width: 75px;
}
/****/
.home-banner-top .vc_column-inner > .wpb_wrapper {
    align-items: flex-start;
    flex-direction: column;
}
.footer-widget-1 {
    width: 42%;
}
.footer-widget-2 {
    width: calc(38% - 35px);
}
.footer-widget-3 {
    width: calc(20% - 35px);
}
.footer-widget-1 h4 br {
    display:none;
}
}


@media only screen and (max-width: 1024px) {
.top-banner, .banner-overlay {
    height: 45vh;
    padding-bottom: 75px;
}
.top-banner h2 {
	max-width: 750px;
}
.coordo.tags {
    flex-direction: column;
    align-items: flex-start;
}
.coordo.tags .col {
    padding: 25px;
    align-items: center;
}
.home-banner-top {
    height: 85vh;
}
.home-banner-bottom .tag {
	padding: 75px 0;
}
.home-banner-bottom p {
    max-width: 80%;
}
.approche {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}
.approche .vc_col-sm-3:nth-child(even) {
    border-right: 0;
}
.prefooter {
    height: 75vh;
}
.prefooter-photo-1 {
    width: 35vw;
}
.prefooter-photo-2 {
    width: 30vw;
}
.prefooter-photo-3 {
    top: 66%;
    left: 27vw;
    width: 45vw;
}
.realisation-galerie {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.realisation-galerie .gallery-slide:last-child {
	display:none;
}
.about-split .vc_col-sm-3\/5 {
	width: 55%;
}
.about-split .vc_col-sm-2\/5 {
	width: 45%;
}
.services-listing.full p {
	font-size: 1em;
}
.subservice-content p, .subservice-content ul {
    max-width: 100%;
}
}


@media only screen and (max-width: 820px) {
:root {
    --row: 110px;
    --grid: 5vw;
    --size: 17px;
}
.site-header .header-image, .site-logo {
    width: 300px;
}
.splash img {
    width: 80px;
}
h2 {
    font-size: 70px;
}
h3 {
    font-size: 45px;
}
h4 {
    font-size: 28px;
}
h5 {
    font-size: 25px;
}
.page-description h4, .service-description h4 {
	max-width: 100%;
}
.lg h4 {
    font-size: 40px;
}
.footer-widget-1 h4 {
    max-width: 500px;
}
body .inside-footer-widgets {
	flex-wrap: wrap;
}
body .inside-footer-widgets > div:first-child {
	flex: 0 0 100%;
	width: 100%;
}
body .inside-footer-widgets > div:not(:first-child) {
	flex: 1 1 0;
}
.footer-bar {
    flex-direction: column;
	gap:10px;
    align-items: flex-start;
}
.footer-bar aside {
    text-align:left!important;
}
body .footer-bar .widget_nav_menu>div>ul {
    justify-content: flex-start;
}
.site-footer .footer-widgets-container .inside-footer-widgets {
    gap: 50px;
}
.footer-widget-2, .footer-widget-3 {
    padding-top: 20px;
}
.top-banner, .banner-overlay {
	height: 600px;
}
}


@media only screen and (max-width: 768px) {
.home-banner-top {
	height: 80vh;
}
.expertise {
    align-items: flex-start;
    flex-direction: column;
    gap:0;
}
.expertise .services-listing {
	padding-top: 75px;
}
.carrieres-inner {
    display: flex;
    flex-direction: column;
}
body .inside-footer-widgets > div:not(:first-child) {
	width: 100%;
}
body .inside-footer-widgets>div:not(:last-child) {
	margin-bottom: 0;
}
body .footer-bar .widget_nav_menu li:last-child {
	margin: 0;
}
.approche {
	display: flex;
	flex-direction: column;
	gap:35px;
}
.approche .vc_col-sm-3 {
	padding-right: 0;
	padding-bottom: 35px;
    border-right:0;
	border-bottom: 1px solid;
}
.approche .vc_col-sm-3:last-child {
	border-bottom: 0;
}
.projets .vc_column-inner>.wpb_wrapper {
    grid-template-columns: repeat(2, 1fr);
}
.about-split {
    display: flex;
    flex-direction: column;
}
.about-split .vc_col-sm-3\/5, .about-split .vc_col-sm-2\/5 {
	width: 100%;
}
.about-split .vc_col-sm-2\/5 {
    height: 75vw;
	padding: 0 var(--grid) var(--row);
}
.about-split .vc_col-sm-3\/5 {
    padding-bottom: 50px;
}
.about-split .vc_col-has-fill>div {
    border-radius: var(--radius)!important;
}
.about-split.team .vc_col-has-fill>div {
	background-position: bottom;
	background-size: 135%;
}
.about-split.team {
    flex-direction: column-reverse;
}
.residus .row .main-row, .footer-widgets-container, .row {
    padding-bottom: 75px;
}
.prefooter-logo img {
    width: 55px;
}
.projet p {
    max-width: 90%;
}
body .footer-bar-active .footer-bar {
	margin-bottom: 0;
}
.lg h4 br {
	display:none;
}
}

	
@media only screen and (max-width: 641px) {
:root {
    --row: 90px;
    --grid: 5vw;
    --size: 16px;
}
body .rightmtop img {
	width: 41px;
}
body .mobmenu-content .rightmtop {
	top: 22px;
}
body .mob-icon-cancel-1:before {
	font-size: 35px;
	width: 50px;
	height: 50px;
	line-height: 57px;
}
body #mobmenuright li a {
	margin: 22px auto;
	font-size: 17px;
	letter-spacing: 0.5px;
}
body .mobmenu-content p {
	font-size: 14px;
}
body .mobmenu-content li a.button {
	margin: 5px 0 25px;
}
body .mobmenu-content li .socials a {
	font-size: 19px;
}
.socials a {
    width: 32px;
    height: 32px;
    font-size: 19px;
}
.home-banner {
    background-position: 40% center;
	overflow:hidden;
}
.home-banner.vc_row:before {
	content: "";
	display: block;
	position: absolute;
	background: linear-gradient(0deg, transparent, #000000ad 70%, transparent);
	height: 100%;
	width: 100vw;
	left: 0;
	top: 150px;
}
.home-banner-top {
	height: 660px;
}
.home-banner-bottom .tag {
	padding: 50px 0 15px;
}
.home-banner-bottom h3 {
    padding-bottom: 10px;
}
body .vc_btn3-container.vc_btn3-inline {
    padding-top: 40px;
}
a.button .btn-text, body .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern .btn-text, body .gform_wrapper .gform_footer input.button .btn-text, body .gform_wrapper .gform_footer input.button {
    font-size: 13px;
    padding: 0 18px;
    height: 45px;
}
a.button .btn-arrow, body .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern .btn-arrow {
    height: 45px;
    width: 45px;
    flex: 0 0 45px;
}
body .mob-menu-header-holder {
	width: 50px;
}
body.scrolled .site-logo, body:not(.home) .site-logo {
    width: 45px;
}
body .mobmenur-container i {
	width: 50px;
	height: 50px;
	line-height: 50px;
}
.site-header .header-image, .site-logo {
    width: 250px;
}
.splash img {
    width: 60px;
}
.top-banner, .banner-overlay {
	height: 450px;
	padding-bottom: 50px;
}
.top-banner h2 {
	font-size: 42px;
}
h2 {
    font-size: 50px;
}
h2 br, h3 br, h4 br, h5 br {
	display:none;
}
h3 {
    font-size: 38px;
}
h4 {
    font-size: 24px;
}
h5 {
    font-size: 21px;
    letter-spacing: 0;
}
.services-listing.full h5 {
    letter-spacing: 0;
}
.services-listing i {
    font-size: 17px;
}
.lg h4 {
    font-size: 32px;
}
.approche {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
}
.approche .vc_col-sm-3 {
    border-right: 0;
    border-bottom: 1px solid;
	padding-bottom:50px;
}
.approche .vc_col-sm-3:last-child {
    border:0;
	padding:0;
}
.realisations-grid {
	grid-template-columns: 1fr;
}
h6, .top-banner h1 {
    font-size: 13px;
    padding-bottom: 10px;
}
.approche .vc_col-sm-3 {
	padding-bottom: 50px;
}
.approche {
	gap: 25px;
}
.approche h4 {
	padding-bottom: 25px;
}
.prefooter {
	height: 800px;
}
.prefooter-logo img {
	width: 45px;
	position: relative;
	z-index: 3;
}
.prefooter-text {
    max-width: 90%;
}
.prefooter-photo-1 {
	width: 45vw;
	top: 32%;
}
.prefooter-photo-2 {
	width: 43vw;
	top: 5%;
}
.prefooter-photo-3 {
	top: 70%;
	left: 18vw;
	width: 65vw;
}
body .footer-bar-active .footer-bar {
	gap: 5px;
}
.footer-bar *, .footer-bar p, .footer-bar a {
    font-size: 11px;
}
.projet {
    background-size: 35vw;
}
.home-banner-bottom p {
	max-width: 100%;
}
.services-expertise h3 {
    padding-right: 12vw;
}
.services-listing.full .service-item {
    gap: 20px;
    flex-direction: column;
    padding-bottom: 50px;
}
.services-listing .service-item .left, .services-listing .service-item .right {
    width: 100%;
}
.projets .vc_column-inner>.wpb_wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    row-gap: 35px;
}
.avant-apres .line {
    margin-bottom: 50px;
}
.realisation-galerie {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 15px;
    margin-top: 50px;
}
.residus i {
    font-size: 75px;
}
.residus .row {
	padding-bottom: 50px;
}
.poste-min {
    gap: 25px;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}
.poste h4 {
    padding: 5px 0 20px;
}
.carrieres-listing a.button {
    min-width: 100%;
    justify-content: flex-start;
}
.carrieres-listing .poste {
    padding: 35px;
}
.poste .more-details {
    font-weight: 500;
    font-size: 16px;
}
.poste .more-details i {
    position: relative;
    top: 1px;
}
.poste .city {
    font-size: 12px;
	font-weight:700;
	letter-spacing: 0;
}
.poste .city i {
    font-size: 14px;
}
.poste-details-row {
    gap: 5px;
    flex-direction: column;
}
.poste-details-row strong {
    min-width: 100%;
    width: 100%;
}
.poste-details {
    padding-top: 35px;
}
.coordo.tags .col {
	padding: 15px 20px;
}
.coordo.tags .col i {
    width: 45px;
    height: 45px;
}
body .gform_wrapper.gravity-theme input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
	line-height: 1;
	min-height: auto;
}
body .gform_wrapper.gravity-theme .gfield select, body .gform_wrapper.gravity-theme input[type=color], body .gform_wrapper.gravity-theme input[type=date], body .gform_wrapper.gravity-theme input[type=datetime-local], body .gform_wrapper.gravity-theme input[type=datetime], body .gform_wrapper.gravity-theme input[type=email], body .gform_wrapper.gravity-theme input[type=month], body .gform_wrapper.gravity-theme input[type=number], body .gform_wrapper.gravity-theme input[type=password], body .gform_wrapper.gravity-theme input[type=search], body .gform_wrapper.gravity-theme input[type=tel], body .gform_wrapper.gravity-theme input[type=text], body .gform_wrapper.gravity-theme input[type=time], body .gform_wrapper.gravity-theme input[type=url], body .gform_wrapper.gravity-theme input[type=week], body .gform_wrapper.gravity-theme select, body .gform_wrapper.gravity-theme textarea {
	padding: 0 20px;
	height: 55px;
}
body .gform_wrapper.gravity-theme .gform_fields {
    grid-row-gap: 18px;
    grid-column-gap: 18px;
}
body .gform_wrapper.gravity-theme .gfield select {
    background-size: 18px;
	background-position: calc(100% - 15px);
}
body .gfield_checkbox .gform-field-label::before, body .gfield_radio .gform-field-label::before {
    top: 0px;
}
body .gfield_checkbox .gform-field-label::after, body .gfield_radio .gform-field-label::after {
    top: 2px;
}
body .gform_wrapper.gravity-theme .gform_drop_area {
    flex-direction: column;
    height: 180px;
}
body .gform_button_select_files {
    padding-top: 4px;
	font-size: 14px;
}
body .gform_wrapper.gravity-theme .gform_drop_instructions {
    padding-top: 25px;
    font-size: 14px;
}
body .gform_wrapper.gravity-theme .gform_drop_area:before {
    font-size: 25px;
    margin-top: -45px;
}
.footer-widget-1 h4 {
    padding-bottom: 15px;
}
.gform_wrapper.gravity-theme .ginput_complex span.address_zip {
	margin-bottom: 0;
}
body .gform_wrapper.gravity-theme .gfield.gfield--width-full.gfield--type-checkbox, body .gform_wrapper.gravity-theme .gfield.gfield--type-radio, body .gform_wrapper.gravity-theme .gform_drop_area {
    margin-top: 3px;
}
body .mobmenu-content li .socials a .fa-instagram {
	left: 0;
}
}