/*	Theme Name:  Landing Page
	Theme URI: https://club-hpv.fr
	Description: Landing Page
	Version: 1
	Author: A l'Encre bleue
	Author URI: https://alencrebleue.com
*/

/*------------------------------------*\
    VARIABLES
\*------------------------------------*/

:root {
  /* couleurs */
  --primary: #2B523F;
  --secondary: #FAFAFA;
  --tertiary: #FAF8F8;
  --black: #3B3939;
  --white: #FFFFFF;
  /* couleurs des textes */
  --font-color: var(--black);
  /* couleurs du fond de la page */
  --body-color: var(--white);
  /* radius des boutons */
  --radius: 70px;
  /* radius des champs des formulaires */
  --form: 4px;
  /* police */
  --font-family: 'Lato';
  --font-title: 'Playfair Display';
  /* icone réseaux sociaux */
  --fb: url(/wp-content/themes/landingPage/images/facebook.png);
  --insta: url(/wp-content/themes/landingPage/images/insta.png);
  --link: url(/wp-content/themes/landingPage/images/linkedin.png);
}

/*------------------------------------*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: var(--font-family);
  font-style: normal;
  color: var(--font-color);
}

body {
  background: var(--body-color);
  overflow-x: hidden;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul {
  list-style-type: none;
}

img {
  width: auto;
  display: block;
  max-width: 100%;
  height: auto;
}

body {
  -webkit-font-smoothing: antialiased;
}

blockquote {
  box-shadow: 0 3px 6px #00000029;
  padding: 0.25rem 1.5rem;
  background: rgb(237 201 161 / 40%);
  border-left: 5px solid var(--secondary);
  margin: 1.5rem 0;
  font-weight: 600;
}

/*------------------------------------*\
    MARGE SUR MENU ADMIN (lorsque le menu est en fixe, il est caché en partie)
\*------------------------------------*/
.logged-in.admin-bar header {
  margin-top: 32px;
}

.logged-in.admin-bar #wpadminbar {
  z-index: 999999;
}

/*------------------------------------*\
    LA GRID
\*------------------------------------*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.container {
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.row>* {
  float: left;
  width: 100%;
}

.row::after {
  content: "";
  display: block;
  clear: both;
}

@media screen and (min-width:1200px) {
  .container {
    max-width: 1140px;
  }
}

@media screen and (min-width:481px) and (max-width:1199px) {
  .container {
    max-width: 95%;
  }
}

@media screen and (max-width:480px) {
  .container {
    max-width: 92%;
  }
}

@media screen and (min-width:800px) {
  .row>* {
    padding-left: .9375rem;
    padding-right: .9375rem;
  }
}

/* Typographie */
h1 {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 50px;
  line-height: 110%;
  margin-bottom: 2rem;
}

h2 {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 38px;
  line-height: 140%;
  margin-bottom: 2.5rem;
}

h3 {
  font-weight: 800;
  font-size: 20px;
  line-height: 140%;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

h4 {
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  color: var(--primary);
}

p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
}

.grp-btn .btn:first-child {
  margin-right: 1rem;
}

.btn,
.btn-sec {
  display: inline-block;
  font-weight: 700;
  background: var(--primary);
  padding: 11px 24px;
  width: max-content;
  height: max-content;
  transition: background-color 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), color 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  position: relative;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--primary);
}

.btn-sec {
  background-color: transparent;
  border: 1px solid var(--primary);
}

.btn:before,
.btn-sec:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--tertiary);
  z-index: 1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  border-radius: var(--radius);
}

.btn-sec:before {
  background: var(--primary);
}

.btn span,
.btn-sec span {
  position: relative;
  z-index: 2;
  color: var(--tertiary);
}

.btn-sec span {
  color: var(--primary);
}

.btn:hover {
  background: var(--tertiary);
}

.btn-sec:hover {
  background: var(--primary);
}

.btn:hover:before {
  transform: scaleX(1);
}

.btn:hover span {
  position: relative;
  z-index: 3;
  color: var(--primary);
}

.btn-sec:hover span {
  color: var(--secondary);
}

/*------------------------------------*\
    MAIN
\*------------------------------------*/
/* global box-sizing */

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

a:hover {
  color: var(--primary);
}

a:focus {
  outline: 0;
}

a:hover,
a:active {
  outline: 0;
}

input:focus {
  outline: 0;
}

:focus {
  outline: none;
}

/* IMG POUR WISIWYG */
img.size-auto,
img.size-full,
img.size-large,
img.size-medium,
.attachment img,
.widget-container img {
  max-width: 100%;
  height: auto;
}

.alignleft,
img.alignleft {
  display: inline;
  float: left;
  margin-right: 24px;
  margin-top: 4px;
}

.alignright,
img.alignright {
  display: inline;
  float: right;
  margin-left: 24px;
  margin-top: 4px;
}

.aligncenter,
img.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

img.alignleft,
img.alignright,
img.aligncenter {
  margin-bottom: 12px;
}

hr {
  border: none;
}

hr.small {
  margin: 0.5rem 0;
}

hr.medium {
  margin: 1rem 0;
}

hr.large {
  margin: 2rem 0;
}

/* =====================================
             MENU
=======================================*/
/* Styles généraux pour les icônes */

#top.current {
  overflow: hidden;
}

#top.highlight {
  overflow: hidden;
  position: initial;
}

header {
  width: 100%;
  top: 0;
  z-index: 11;
  position: fixed;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

header.hidden {
  transform: translateY(-102px);
}

#menu-aeb .contain {
  width: 90%;
  max-width: 1140px;
  margin: auto;
  display: flex;
  padding: 10px 0;
  position: relative;
  justify-content: space-between;
  align-items: center;
}

#menu-aeb .center {
  justify-content: center;
}

.logohead {
  max-width: initial;
  height: 60px;
}

.btn-nav {
  margin-left: 40px
}

@media only screen and (min-width: 1200px) {
  .mara {
    display: flex;
  }

  header.hidden {
    transform: translateY(-102px);
  }

  .content_aeb {
    margin-top: 100px;
  }

  header #menumara .wrap-nav {
    display: flex;
  }

  header #menumara {
    align-self: center;
  }

  #menu-aeb {
    background: var(--secondary);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
  }

  .dropdown-content {
    display: none;
  }

  #menumara .wrap-nav li {
    align-self: center;
    padding-left: 40px;
  }

  #menumara .wrap-nav .dropdownli {
    padding-left: 0px;
  }

  #menumara .menu-contact,
  #menumara .menu-demo {
    display: none;
  }

  .logo-site {
    padding: 10px 0;
  }

  .logo-site a {
    align-self: center;
  }

  .dropdown,
  .wrap-nav li a,
  .itemnolink {
    color: var(--font-color);
    cursor: pointer;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
  }

  .dropdown .itemnolink {
    padding-bottom: 2rem;
    padding-left: 30px;
    padding-right: 16px;
  }

  .wrap-nav a.btn {
    padding: 0.5rem;
    margin-left: 0.5rem;
  }

  .dropdown {
    position: relative;
  }

  .dropdown:after,
  .dropdownsub:after {
    content: url(/wp-content/themes/Template/images/puce-menu.svg);
    position: absolute;
    right: 0px;
    top: 0;
  }

  .dropdownsub:after {
    right: 8px;
    top: 6px;
    transform: rotate(270deg);
  }

  .dropdownsub {
    padding: 0.5rem 1rem;
  }

  .dropdownli:hover .dropdown-content1,
  .dropdownsub:hover .dropdown-content2 {
    display: grid;
    position: absolute;
    top: 3rem;
    left: 1rem;
    width: 100%;
    background: var(--black);
    border-top: 5px solid var(--primary);
    box-shadow: 0 3px 6px #00000029;
  }

  .dropdownsub:hover .dropdown-content2 {
    top: 0px;
    left: 132px;
  }

  .dropdown:hover .dropdown-content a,
  .dropdown:hover .dropdown-content span {
    font-weight: 400;
    font-size: 15px;
    padding: 0.5rem 1rem;
    color: var(--primary);
  }

  .dropdown:hover .dropdown-content a {
    color: var(--white);
  }

  .dropdown:hover .dropdown-content span {
    padding: 0;
  }

  .dropdown .dropdown-content a:hover {
    color: var(--primary);
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1240px) {
  .wrap-nav li {
    padding-left: 2rem;
  }
}

@media only screen and (max-width: 1199px) {
  .btn-nav {
    margin-left: 0rem;
  }

  #menu-aeb .contain {
    padding: 20px 0;
  }

  .logo-site {
    margin: auto;
  }

  .content_aeb {
    margin-top: 100px;
  }

  .menu {
    display: none;
    position: fixed;
    height: 100%;
    top: 0;
  }

  .menu.active {
    display: block;
    right: 0%;
    left: inherit;
    margin-top: 100px;
  }

  .menu .wrap {
    height: 100%;
    position: relative;
    text-align: left;
    overflow: scroll;
    padding-bottom: 5rem;
    background: var(--black);
  }

  .menu .wrap .mara {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .menu .wrap .wrap-nav {
    margin: 4rem auto 0;
  }

  .menu .wrap .wrap-nav {
    width: max-content;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
    max-height: 420px;
    align-items: center;
  }

  .menu .wrap ul li {
    position: relative;
    padding: 0.5rem 0 .25rem;
  }

  .menu .dropdown-content1 {
    display: none;
  }

  .menu .dropdown-content2 {
    display: none;
  }

  .menu .activeli .dropdown-content1 {
    display: block;
  }

  .menu .activesub .dropdown-content2 {
    display: block;
  }

  .menu .wrap ul li a,
  .menu .wrap ul li span,
  .menu .wrap ul .dropdown {
    color: var(--white);
    text-transform: uppercase;
    font-size: 20px;
    line-height: 25px;
    font-weight: 700;
  }

  .hamburger {
    cursor: pointer;
    display: inline-flex;
    overflow: hidden;
    align-self: center;
  }

  .hamburger__container {
    width: 55px;
    height: 42px;
    position: relative;
  }

  .hamburger:hover .hamburger__inner {
    transform: translate(-51px, 50%);
    opacity: 0;
  }

  .hamburger:hover .hamburger__inner::before,
  .hamburger:hover .hamburger__inner::after {
    transform: translate(102px, 0);
    opacity: 0;
  }

  .hamburger.is-active .hamburger__inner {
    display: none;
  }

  .hamburger__inner {
    background-color: var(--primary);
    border-radius: 20px;
    position: absolute;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.4s;
    top: 50%;
    transform: translate(0, -50%);
    opacity: 1;
  }

  .hamburger__inner::before,
  .hamburger__inner::after {
    background-color: var(--primary);
    border-radius: 20px;
    position: absolute;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.4s;
    content: "";
    opacity: 1;
  }

  .hamburger__inner::before {
    top: -12px;
  }

  .hamburger__inner::after {
    top: 12px;
  }

  .hamburger:hover .hamburger__hidden {
    opacity: 1;
    transform: translate(0, -50%);
  }

  .hamburger:hover .hamburger__hidden::before,
  .hamburger:hover .hamburger__hidden::after {
    opacity: 1;
    transform: translate(0, 0);
  }

  .hamburger.is-active .hamburger__hidden {
    opacity: 1;
    transform: rotate(45deg);
  }

  .hamburger.is-active .hamburger__hidden::before {
    transform: translate(0, 12px) rotate(90deg);
    transform-origin: center;
  }

  .hamburger.is-active .hamburger__hidden::after {
    transform-origin: center;
    transform: translate(0, -12px) rotate(0);
    opacity: 0;
  }

  .hamburger__hidden {
    opacity: 0;
    background-color: var(--primary);
    border-radius: 20px;
    position: absolute;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.4s;
    top: 50%;
    transform: translate(51px, -50%);
  }

  .hamburger__hidden::before,
  .hamburger__hidden::after {
    background-color: var(--primary);
    border-radius: 20px;
    position: absolute;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.4s;
    content: "";
    transform: translate(102px, 0);
  }

  .hamburger__hidden::before {
    top: -12px;
  }

  .hamburger__hidden::after {
    top: 12px;
  }

  #entete .nav-site {
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
  }

  .nav-site {
    display: inline-flex;
    align-self: center;
    position: absolute;
    left: 0;
  }

  /* Ajout Toggle sur le menu burger pour les liens en sous menu */
  .dropdown-content {
    display: block;
    padding-top: 0.25rem;
  }

  .dropdown-content.dropdown-content1 {
    padding-left: 1rem;
  }

  .dropdown-content.dropdown-content2 {
    padding-left: 1rem;
  }

  .dropdown span {
    position: relative;
    padding: 0 0.5rem 0 0;
  }

  .dropdown span:before {
    content: ' ';
    transform: rotate(45deg);
    position: absolute;
    right: -0.2rem;
    top: 0.55rem;
    margin: 0;
    height: 3px;
    width: 10px;
    border-radius: 10px;
    background: var(--primary);
  }

  .dropdown span:after {
    content: ' ';
    transform: rotate(-45deg);
    position: absolute;
    right: -0.5rem;
    top: 0.55rem;
    margin: 0;
    height: 3px;
    width: 10px;
    border-radius: 10px;
    background: var(--primary);
  }

  .dropdown>div>a:after {
    display: none;
  }

  .menu .dropdown .dropdown-content a {
    display: block;
    text-align: left;
    text-transform: initial;
    color: var(--white);
    font-size: 17px;
    font-weight: 400;
    line-height: 28px;
    position: relative;
  }

  header {
    position: fixed;
  }

  .hamburger__inner,
  .hamburger__hidden,
  .hamburger__hidden::before,
  .hamburger__hidden::after {
    width: 35px;
    height: 5px;
  }

  .hamburger__inner::before {
    width: 27px;
    height: 5px;
  }

  .hamburger__inner::after {
    width: 18px;
    height: 5px;
  }

  .menu.active {
    width: 100%;
  }

  .nav-site {
    width: 40px;
  }

  #menu-aeb {
    position: fixed;
    z-index: 99;
    width: 100%;
    background: var(--secondary);
    box-shadow: 0 3px 6px #00000029;
  }

  .menu .wrap .resoc {
    display: block;
    margin: auto;
    width: max-content;
  }
}

@media screen and (max-width:800px) {
  .content_aeb {
    margin-top: 100px;
  }
}

@media screen and (max-width:480px) {
  #menu-aeb .btn-nav {
    width: max-content;
  }
}

/* =========================
      FIN MENU 
===========================*/

/* RESPONSIVE */
@media only screen and (min-width: 801px) {
  .bloc-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .bloc-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .bloc-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3%;
    flex: 0 0 33.3%;
    max-width: 33.3%;
  }

  .bloc-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .bloc-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }

  .bloc-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66%;
    flex: 0 0 16.66%;
    max-width: 16.66%;
  }

  .bloc-2-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66%;
    flex: 0 0 66.66%;
    max-width: 66.66%;
  }

  .bloc-3-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .bloc-2-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%;
  }

  .bloc-3-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%;
  }

  .bloc-4-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%;
  }
}

/*------------------------------------*\
    MISC
\*------------------------------------*/
::selection {
  background: #424242;
  color: var(--white);
  text-shadow: none;
}

::-webkit-selection {
  background: #424242;
  color: var(--white);
  text-shadow: none;
}

::-moz-selection {
  background: #424242;
  color: var(--white);
  text-shadow: none;
}

/*------------------------------------*\
    PERSONNALISATION LANDING PAGE
\*------------------------------------*/

/* POUR TOUS LE SITE */

section {
  padding: 4rem 0;
}

section:last-child {
  padding-top: 0;
}

@media screen and (min-width:801px) and (max-width:1024px) {
  h1 {
    font-size: 40px;
  }
}

@media screen and (max-width: 800px) {
  section {
    padding: 2rem 0;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }
}

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

  .btn,
  .btn-sec {
    width: 100%;
    text-align: center;
  }
}

/* HEADER */

.mara a:hover {
  color: var(--primary);
}

@media screen and (max-width:480px) {
  #menu-aeb .loghead {
    width: 85%;
    margin-left: 3rem;
  }
}

@media screen and (min-width:801px) and (max-width:1024px) {}

@media screen and (min-width:481px) and (max-width:800px) {}

@media screen and (max-width:480px) {}

/* MAIN */

main {
  margin-top: 130px;
}

main section:first-child {
  padding-top: 0;
}

/* HERO */

#hero {
  position: relative;
  padding: 0;
}

#hero.hero1 {
  padding: 10rem 0;
}

#hero.hero2 {
  padding: 7rem 0;
}

#hero.hero3 {
  padding: 4rem 0;
}

#hero .bloc-2:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#hero .bloc-2:first-child p {
  margin-bottom: 2rem;
}

#hero img {
  object-fit: cover;
}

.bloc-form {
  background-color: var(--white);
  padding: 60px 50px;
  width: 465px;
}

#gform_1 #gform_fields_1 {
  grid-row-gap: 16px;
}

#gform_1>div.gform_footer.before {
  display: flex;
  justify-content: flex-end;
  position: relative;
  margin-top: 1rem;
}

.gform_title {
  font-size: 20px;
  font-family: var(--font-family);
}

#gform_1 #input_1_11_3,
#gform_1 #input_1_11_6,
#gform_1 #input_1_5,
#gform_1 #input_1_6 {
  border-color: var(--primary);
  border-radius: var(--form);
}

#gform_1 #input_1_11_3::placeholder,
#gform_1 #input_1_11_6::placeholder,
#gform_1 #input_1_5::placeholder,
#gform_1 #input_1_6::placeholder,
#gform_1 .gform-field-label--type-inline {
  font-weight: 500;
  color: var(--black);
}

#gform_1 .gform-field-label--type-inline {
  color: var(--font-color);
}

#gform_1 .gfield-choice-input {
  border-radius: 5px;
  border-width: 3px;
  border-color: var(--primary);
}

.gform-theme--framework a {
  text-decoration: underline;
}

.gform-theme--framework a:hover {
  color: var(--primary);
}

#gform_1 #gform_submit_button_1 {
  font-size: 16px;
  font-weight: 700;
  background-color: var(--primary);
  color: var(--tertiary);
  border-radius: var(--radius);
  box-shadow: none;
  transition: background-color 0.3s ease;
}

#gform_1 #gform_submit_button_1:hover {
  background-color: var(--tertiary);
  border-color: var(--primary);
  color: var(--primary);
}

#gform_1_validation_container {
  display: none;
}

.gform-theme--framework .gform-field-label>.gfield_required {
  display: none !important;
}

.gform-body .gform_fields .gfield_validation_message {
  font-weight: 600;
}

#obligatoire {
  font-size: 14px;
  font-style: italic;
}

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

  #hero.hero1,
  #hero.hero2 {
    background-size: auto 100% !important;
  }
}

@media screen and (min-width:1025px) and (max-width:1199px) {
  #hero.hero1 {
    padding: 4rem 0;
  }
}

@media screen and (min-width:801px) and (max-width:1024px) {
  #hero.hero1 {
    padding: 2rem 0;
  }

  #hero.hero2 {
    padding: 3rem 0;
  }

  #hero .bloc-form {
    padding: 40px 30px;
  }

  #hero .gform_title {
    margin-bottom: 1.5rem;
  }
}

@media screen and (min-width:481px) and (max-width:800px) {
  .bloc-form {
    padding: 20px 40px;
  }
}

@media screen and (max-width:480px) {
  #hero.hero2 .imgfull {
    height: 460px;
  }

  .bloc-form {
    padding: 10px 10px;
  }

  #hero .btn {
    margin-bottom: 1rem;
  }
}

@media screen and (min-width:1024px) {
  #hero .bloc-2:first-child {
    padding-right: 3rem;
  }
}

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

  #hero.hero1 {
    padding: 0 0 2rem;
  }

  #hero.hero2 {
    padding: 0;
  }

  #hero.hero3 {
    padding: 1rem 0 2rem;
  }

  #hero.hero1 .container {
    margin-top: 2rem;
  }

  #gform_1 .gform_footer {
    float: right;
  }

  #hero.hero3 .bloc-2:first-child {
    order: 2;
    margin-top: 1rem;
  }

  #hero.her3 .bloc-2:last-child {
    order: 1;
  }

  #hero .bloc-2:last-child {
    display: flex;
    justify-content: center;
  }

  #hero {
    background: none !important;
  }

  #hero .imgfull {
    width: 100%;
  }

  #hero.hero2 .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .bloc-form {
    width: max-content;
  }

  #hero.hero2 .bloc-2:first-child {
    display: none;
  }

  #hero .gform-theme--foundation .gform-grid-col {
    inline-size: 50%;
  }

  .gform_title {
    margin-bottom: 1rem;
  }
}

@media screen and (min-width:801px) {
  #hero .bloc-2:last-child {
    display: flex;
    justify-content: right;
  }

  #hero .imgfull {
    display: none;
  }
}

/* AVANTAGE */

#avantage {
  background-color: var(--secondary);
}

#avantage .bloc-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#avantage .bloc-4 img {
  margin-bottom: 1rem;
  width: 35px;
  height: 35px;
}

@media screen and (max-width:800px) {
  #avantage .bloc-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    margin: 1rem 0;
  }
}

/* PRODUIT */

#produit-service .bloc-1 {
  text-align: center;
}

#produit-service h2 {
  margin-bottom: 0.5rem;
}

#produit-service .row {
  justify-content: center;
}

#produit-service .bloc-2 {
  margin-top: 2rem;
}

#produit-service .bloc-3 {
  margin-top: 2rem;
}

#produit-service .bloc-2 img {
  width: 100%;
}

#produit-service .bloc-3 img {
  width: 360px;
  height: 360px;
  object-fit: cover;
}

#produit-service h3 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.montant {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  margin-bottom: 0.5rem;
}

.prix {
  font-size: 20px;
  font-weight: 800;
  line-height: 140%
}

.reduction {
  margin-left: 1rem;
  text-decoration: line-through;
}

#produit-service a {
  margin-top: 1rem;
}

@media screen and (max-width:800px) {
  #produit-service .bloc-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* PRESENTATION */

#presentation img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

#presentation h2 {
  margin-bottom: 1.5rem;
}

#presentation a {
  margin-top: 1rem;
}

@media screen and (max-width:1024px) {
  #presentation .bloc-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  #presentation .bloc-2:last-child {
    margin-top: 2rem;
  }
}

@media screen and (min-width: 1024px) {

  .droite .bloc-2:first-child {
    order: 2;
  }

  .droite .bloc-2:last-child {
    order: 1;
  }
}

@media screen and (min-width:801px) and (max-width:1024px) {
  #presentation {
    padding: 0 0 4rem;
  }
}

@media screen and (max-width:800px) {
  #presentation {
    padding: 0 0 2rem;
  }
}

/* CLIENT */

#client {
  background-color: var(--secondary);
}

#client .bloc-1 {
  text-align: center;
}

.bloc-carou img {
  height: 48px;
  object-fit: contain;
}

/* FORM CONV */

#formulaire {
  padding: 0;
}

#titre-form {
  background-color: var(--body-color);
  padding-top: 4rem;
  padding-bottom: 0;
}

#titre-form .bloc-1 {
  text-align: center;
}

#titre-form h2 {
  margin-bottom: 1.5rem;
}

#form-conv {
  padding-top: 0;
  position: relative;
}

#form-conv .container {
  position: relative;
}

#form-conv.position,
#form-conv.fond {
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin: 0 0 4rem;
}

.img-fond {
  width: 100%;
  height: -webkit-fill-available;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

#form-conv.fond {
  background-color: var(--secondary);
}

#form-conv .bg {
  background-color: var(--primary);
  padding: 2rem;
}

#form-conv .row {
  justify-content: center;
}

#form-conv .bloc-form-conv {
  background-color: var(--tertiary);
  padding: 60px 50px;
  width: 750px
}

#form-conv .bg .bloc-3 {
  padding-left: 0;
  padding-right: 2rem;
}

#form-conv .bloc-2-3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--tertiary);
  padding: 2rem;
}

#form-conv .bloc-3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#form-conv .img-respon {
  display: none;
}

.shadow {
  box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.1);
}

#gform_5 #gform_fields_5,
#gform_6 #gform_fields_6,
#gform_7 #gform_fields_7,
#gform_8 #gform_fields_8 {
  grid-row-gap: 16px;
}

#gform_5 #input_5_1_3,
#gform_5 #input_5_1_6,
#gform_5 #input_5_3,
#gform_5 #input_5_4,
#gform_5 #input_5_10,
#gform_6 #input_6_1_3,
#gform_6 #input_6_1_6,
#gform_6 #input_6_3,
#gform_6 #input_6_4,
#gform_6 #input_6_10,
#gform_7 #input_7_1_3,
#gform_7 #input_7_1_6,
#gform_7 #input_7_3,
#gform_7 #input_7_4,
#gform_7 #input_7_10,
#gform_8 #input_8_1_3,
#gform_8 #input_8_1_6,
#gform_8 #input_8_3,
#gform_8 #input_8_4,
#gform_8 #input_8_10 {
  border-color: var(--primary);
  border-radius: var(--form);
}

#gform_5 #input_5_1_3::placeholder,
#gform_5 #input_5_1_6::placeholder,
#gform_5 #input_5_3::placeholder,
#gform_5 #input_5_4::placeholder,
#gform_5 #input_5_10::placeholder,
#gform_5 .gform-field-label--type-inline,
#gform_6 #input_6_1_3::placeholder,
#gform_6 #input_6_1_6::placeholder,
#gform_6 #input_6_3::placeholder,
#gform_6 #input_6_4::placeholder,
#gform_6 #input_6_10::placeholder,
#gform_6 .gform-field-label--type-inline,
#gform_7 #input_7_1_3::placeholder,
#gform_7 #input_7_1_6::placeholder,
#gform_7 #input_7_3::placeholder,
#gform_7 #input_7_4::placeholder,
#gform_7 #input_7_10::placeholder,
#gform_7 .gform-field-label--type-inline,
#gform_8 #input_8_1_3::placeholder,
#gform_8 #input_8_1_6::placeholder,
#gform_8 #input_8_3::placeholder,
#gform_8 #input_8_4::placeholder,
#gform_8 #input_8_10::placeholder,
#gform_8 .gform-field-label--type-inline {
  font-weight: 500;
  color: var(--black);
}

#gform_5 .gform-field-label--type-inline,
#gform_6 .gform-field-label--type-inline,
#gform_7 .gform-field-label--type-inline,
#gform_8 .gform-field-label--type-inline {
  color: var(--font-color);
}

#gform_5 .gfield-choice-input,
#gform_6 .gfield-choice-input,
#gform_7 .gfield-choice-input,
#gform_8 .gfield-choice-input {
  border-radius: 5px;
  border-width: 3px;
  border-color: var(--primary);
}

#gform_5>div.gform_footer.before,
#gform_6>div.gform_footer.before,
#gform_7>div.gform_footer.before,
#gform_8>div.gform_footer.before {
  display: flex;
  justify-content: flex-end;
  position: relative;
  margin-top: 1rem;
}

#gform_5 #gform_submit_button_5,
#gform_6 #gform_submit_button_6,
#gform_7 #gform_submit_button_7,
#gform_8 #gform_submit_button_8 {
  font-size: 16px;
  font-weight: 700;
  background-color: var(--primary);
  color: var(--tertiary);
  border-radius: var(--radius);
  box-shadow: none;
  transition: background-color 0.3s ease;
}

#gform_5 #gform_submit_button_5:hover,
#gform_6 #gform_submit_button_6:hover,
#gform_7 #gform_submit_button_7:hover,
#gform_8 #gform_submit_button_8:hover {
  background-color: var(--tertiary);
  border-color: var(--primary);
  color: var(--primary);
}

main .gform_footer {
  justify-content: flex-end;
}

@media screen and (max-width:800px) {
  #titre-form {
    padding-top: 2rem;
  }

  #form-conv {
    padding: 0;
  }

  #form-conv .img-respon {
    display: block;
  }

  #form-conv .img-defaut {
    display: none;
  }

  #form-conv .gform-theme--foundation .gform-grid-col {
    inline-size: 50%;
  }

  #form-conv .bg .bloc-3 {
    padding: 0;
  }

  #form-conv .bloc-2-3 {
    padding: 1rem;
  }

  #form-conv.fond,
  #form-conv.position {
    margin: 0 0 2rem;
  }
}

@media screen and (min-width:481px) and (max-width:800px) {
  #form-conv .bloc-3 {
    margin-bottom: 2rem;
  }

  #form-conv .bg {
    padding: 2rem;
  }

  #form-conv.fond .bloc-form-conv {
    padding: 40px 30px;
  }
}

@media screen and (max-width:480px) {
  #form-conv .bloc-3 {
    margin-bottom: 1rem;
  }

  #form-conv .bg {
    padding: 1rem;
  }

  #form-conv .bloc-form-conv,
  #form-conv.fond .bloc-form-conv {
    padding: 40px 20px;
  }
}

/* AVIS */

#avis .bloc-1 {
  text-align: center;
}

#avis .bloc-avis {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  padding: 0 0.5rem;
}

#avis .slick-slide img {
  padding: 0;
  width: auto;
}

#avis .bloc-avis img {
  margin-bottom: 1rem;
}

#avis .bloc-avis p {
  text-align: center;
}

/* FOOTER */

footer {
  background-color: var(--secondary);
  padding: 1.5rem 0 0.5rem;
}

footer .bloc-1 {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

footer .bloc-2 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}

footer .verti {
  align-items: normal;
}

footer img {
  max-height: 40px;
}

.saut {
  display: none;
}

footer p {
  font-size: 15px;
  text-align: center;
}

footer .verti p {
  margin-bottom: 1rem;
}

footer .bloc-res {
  padding: 0 1.5rem;
}

footer .bloc-2:last-child p a:nth-child(2) {
  margin: 0 0.5rem;
}

footer .bloc-res a:nth-child(2) {
  margin: 0 2rem;
}

#fb,
#insta,
#linkedin {
  position: relative;
}

#fb::after,
#insta::after,
#linkedin::after {
  content: var(--fb);
  position: absolute;
  width: 30px;
  height: 30px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#insta::after {
  content: var(--insta);
}

#linkedin::after {
  content: var(--link);
}

#fb:hover::after {
  content: url(/wp-content/themes/landingPage/images/facebook_hover.png);
}

#insta:hover::after {
  content: url(/wp-content/themes/landingPage/images/insta_hover.png);
}

#linkedin:hover::after {
  content: url(/wp-content/themes/landingPage/images/linkedin_hover.png);
}

@media screen and (min-width:801px) and (max-width:820px) {
  .saut {
    display: block;
  }
}

@media screen and (max-width:480px) {
  footer .bloc-1 {
    margin-bottom: 0;
  }

  footer img {
    margin-bottom: 1rem;
  }

  .saut {
    display: block;
  }
}