/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #000;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
  transform: scale(0.6);
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/* * Squeeze */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

html,
body {
  overflow-x: hidden;
}

html {
  scroll-padding-top: 250px;
}
@media (max-width: 768px) {
  html {
    scroll-padding-top: 175px;
  }
}

body {
  text-underline-position: under;
  margin-top: 160px !important;
}
@media screen and (max-width: 1024px) {
  body {
    margin-top: 120px !important;
  }
}
body a {
  color: inherit;
}
body a:hover {
  color: inherit;
}
body strong {
  font-weight: bold;
}
body img {
  display: block;
}
body [type=button]:focus,
body [type=submit]:focus,
body button:focus,
body select:focus {
  box-shadow: 0 0 0 2px white, 0 0 0 5px rgba(var(--e-global-color-primary), 0.5);
  outline: none;
}

#copyright-lezards {
  padding: 15px;
  font-size: 13px;
  line-height: 18px;
  font-weight: normal;
  color: black;
  background: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
#copyright-lezards p {
  margin: 0 !important;
  padding: 0 !important;
  flex: 1;
  text-align: right;
}
#copyright-lezards a.image {
  flex: 0 0 auto;
  margin: 0 5px;
}
#copyright-lezards a.image img {
  width: 30px;
  height: auto;
  display: block;
}
#copyright-lezards a.texte {
  font-size: 1.2em;
  font-weight: 500;
  flex: 1;
  color: black;
  text-align: left;
}

[data-aos] {
  transition: cubic-bezier(0.25, 0.1, 0.25, 1);
}

[data-aos=clip-to-right] {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  display: inline-block;
  transition: -webkit-clip-path cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: clip-path cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: clip-path cubic-bezier(0.25, 0.1, 0.25, 1), -webkit-clip-path cubic-bezier(0.25, 0.1, 0.25, 1);
}
[data-aos=clip-to-right].aos-animate {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

[data-aos=clip-to-left] {
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%);
  display: inline-block;
  transition: -webkit-clip-path cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: clip-path cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: clip-path cubic-bezier(0.25, 0.1, 0.25, 1), -webkit-clip-path cubic-bezier(0.25, 0.1, 0.25, 1);
}
[data-aos=clip-to-left].aos-animate {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

[data-aos=clip-to-top] {
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  display: inline-block;
  transition: -webkit-clip-path cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: clip-path cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: clip-path cubic-bezier(0.25, 0.1, 0.25, 1), -webkit-clip-path cubic-bezier(0.25, 0.1, 0.25, 1);
}
[data-aos=clip-to-top].aos-animate {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

[data-aos=clip-to-bottom] {
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
  display: inline-block;
  transition: -webkit-clip-path cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: clip-path cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: clip-path cubic-bezier(0.25, 0.1, 0.25, 1), -webkit-clip-path cubic-bezier(0.25, 0.1, 0.25, 1);
}
[data-aos=clip-to-bottom].aos-animate {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

html:not(.no-js) body [data-aos=float] {
  animation: float 6s ease-in-out infinite;
}
html:not(.no-js) body [data-aos=float]:nth-child(0) {
  animation-delay: 509ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(1) {
  animation-delay: 2851ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(2) {
  animation-delay: 607ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(3) {
  animation-delay: 1914ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(4) {
  animation-delay: 2334ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(5) {
  animation-delay: 993ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(6) {
  animation-delay: 2567ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(7) {
  animation-delay: 1103ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(8) {
  animation-delay: 48ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(9) {
  animation-delay: 1165ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(10) {
  animation-delay: 78ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(11) {
  animation-delay: 2003ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(12) {
  animation-delay: 2137ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(13) {
  animation-delay: 142ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(14) {
  animation-delay: 1222ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(15) {
  animation-delay: 2034ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(16) {
  animation-delay: 312ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(17) {
  animation-delay: 2844ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(18) {
  animation-delay: 294ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(19) {
  animation-delay: 774ms;
}

html:not(.no-js) body [data-aos=fade-up] {
  transform: translate3d(0, 30px, 0);
}

html:not(.no-js) body [data-aos=fade-down] {
  transform: translate3d(0, -30px, 0);
}

html:not(.no-js) body [data-aos=fade-left] {
  transform: translate3d(30px, 0, 0);
}

html:not(.no-js) body [data-aos=fade-right] {
  transform: translate3d(-30px, 0, 0);
}

@media screen and (max-width: 768px) {
  [data-aos-delay]:not(.mobile-delay) {
    transition-delay: 0s !important;
  }
}
body .accueil-swiper-container .swiper-slide {
  display: flex;
  justify-content: center;
}
body .accueil-swiper-container .swiper-fond .swiper-wrapper .swiper-slide {
  overflow: hidden;
}
body .accueil-swiper-container .swiper-fond .swiper-wrapper .swiper-slide img {
  width: 100%;
  border-radius: 20px;
  height: 480px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  body .accueil-swiper-container .swiper-fond .swiper-wrapper .swiper-slide img {
    height: 380px;
    border-radius: 0;
  }
}
@media screen and (max-width: 767px) {
  body .accueil-swiper-container .swiper-fond .swiper-wrapper .swiper-slide img {
    height: 280px;
  }
}
body .accueil-swiper-container .swiper-texte {
  margin-top: -120px;
}
body .accueil-swiper-container .swiper-texte .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
}
body .accueil-swiper-container .swiper-texte .swiper-wrapper .swiper-slide .slide-content {
  background-color: var(--e-global-color-secondary);
  width: 900px;
  border-radius: 15px;
  padding: 50px 90px 80px;
}
@media screen and (max-width: 1024px) {
  body .accueil-swiper-container .swiper-texte .swiper-wrapper .swiper-slide .slide-content {
    width: calc(100% - 60px);
  }
}
@media screen and (max-width: 768px) {
  body .accueil-swiper-container .swiper-texte .swiper-wrapper .swiper-slide .slide-content {
    padding: 20px 20px 40px;
  }
}
body .accueil-swiper-container .swiper-texte .swiper-wrapper .swiper-slide .slide-content h2 {
  font-size: clamp(1.625rem, 0.1299rem + 3.1189vw, 2.625rem);
  font-weight: 600;
  color: var(--e-global-color-accent);
  text-align: center;
}
body .accueil-swiper-container .swiper-texte .swiper-wrapper .swiper-slide .slide-content h2 span {
  font-weight: 700;
  color: var(--e-global-color-text);
}
body .accueil-swiper-container .swiper-texte .swiper-pagination {
  bottom: 90px;
}
@media screen and (max-width: 767px) {
  body .accueil-swiper-container .swiper-texte .swiper-pagination {
    bottom: 70px;
  }
}
body .accueil-swiper-container .bouton-container {
  display: flex;
  justify-content: center;
}
body .accueil-swiper-container .bouton-container .bouton {
  background-color: var(--e-global-color-accent);
  padding: 12px 20px;
  border-radius: 0 0 15px 15px;
  margin: 0 auto;
  transition: all 0.3s;
  color: var(--e-global-color-secondary);
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  body .accueil-swiper-container .bouton-container .bouton {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
body .accueil-swiper-container .bouton-container .bouton svg {
  margin-left: 20px;
}
body .accueil-swiper-container .bouton-container .bouton svg path {
  stroke: var(--e-global-color-secondary);
}
body .accueil-swiper-container .bouton-container .bouton:hover {
  background-color: var(--e-global-color-text);
}
body .accueil-swiper-container .bouton-container .bouton i {
  margin-left: 25px;
  font-size: 13px;
}

body #menubar-227 {
  --n-menu-wrapper-display: flex !important;
  --n-menu-dropdown-content-box-height: auto !important;
  position: relative !important;
  left: inherit !important;
  right: inherit !important;
}
body #menubar-227 .e-n-menu-heading {
  flex-direction: column;
}
body #menu-toggle-227 {
  opacity: 0;
  pointer-events: none;
  height: 0;
  width: 0;
}

body #Ligne_1,
body #Ligne_2,
body #Ligne_3 {
  transition: all 0.3s;
}
body .elementor-element-1d35b19.is-active #Ligne_1 {
  transform: rotate(45deg) translate(3px, -3px);
}
body .elementor-element-1d35b19.is-active #Ligne_2 {
  opacity: 0;
}
body .elementor-element-1d35b19.is-active #Ligne_3 {
  transform: rotate(-45deg) translate(-11px, 16px);
}

body.menu-mobile-is-active {
  max-height: 100vh;
  overflow: hidden;
}
body.menu-mobile-is-active #menu-mobile {
  display: flex;
}
body #menu-mobile {
  position: fixed;
  z-index: 11;
  display: none;
}

body .hamburger,
body .hamburger.is-active,
body .hamburger:active,
body .hamburger:focus,
body .hamburger:hover {
  background-color: transparent;
  border: none;
}
body .hamburger .hamburger-inner::after,
body .hamburger .hamburger-inner::before,
body .hamburger .hamburger-inner,
body .hamburger.is-active .hamburger-inner::after,
body .hamburger.is-active .hamburger-inner::before,
body .hamburger.is-active .hamburger-inner,
body .hamburger:active .hamburger-inner::after,
body .hamburger:active .hamburger-inner::before,
body .hamburger:active .hamburger-inner,
body .hamburger:focus .hamburger-inner::after,
body .hamburger:focus .hamburger-inner::before,
body .hamburger:focus .hamburger-inner,
body .hamburger:hover .hamburger-inner::after,
body .hamburger:hover .hamburger-inner::before,
body .hamburger:hover .hamburger-inner {
  background-color: var(--e-global-color-text);
}

body button.hamburger-trigger {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body button.hamburger-trigger .hamburger-box {
  transform: scale(0.8);
}
body button.hamburger-trigger .menu-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--e-global-color-text);
  text-align: center;
  margin-top: 2px;
}/*# sourceMappingURL=lezardscreation-style.css.map */