html, body {
  overflow-x: hidden;
}

body {
  text-underline-position: under;
}
body a {
  color: inherit;
}
body a:hover {
  color: inherit;
}
body strong {
  font-weight: bold;
}
body img {
  display: block;
}
body table tbody > tr:nth-child(odd) > td, body table tbody > tr:nth-child(even) > td, body table tbody > tr:nth-child(odd) > th, body table tbody > tr:nth-child(even) > th {
  background: transparent;
}
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;
}
body .scrolling-text .scroll {
  white-space: nowrap;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 30px;
  line-height: 1;
  text-transform: uppercase;
  animation: scroll 20s alternate-reverse linear infinite;
}
@media screen and (max-width: 768px) {
  body .scrolling-text .scroll {
    font-size: 50px;
    gap: 20px;
  }
}
body .scrolling-text .scroll .sep {
  width: 30px;
  height: 1px;
  flex: 0 0 auto;
}
body .gammes-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
body .gammes-tags a {
  border-radius: 44px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  background: var(--e-global-color-accent);
  color: white;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  gap: 5px;
  transition: all 0.3s ease;
}
body .gammes-tags a:hover {
  background: var(--e-global-color-bc5a948);
  gap: 10px;
}
body .splide-gammes .splide__track .splide__list .splide__slide {
  width: 100%;
  max-width: 339px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
}
body .splide-gammes .splide__track .splide__list .splide__slide .trait {
  width: 49px;
  height: 2px;
  background: var(--e-global-color-accent);
  margin: 30px 0 10px;
}
body .splide-gammes .splide__track .splide__list .splide__slide .splide__slide__img {
  aspect-ratio: 1/1;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: var(--e-global-color-primary);
}
body .splide-gammes .splide__track .splide__list .splide__slide .splide__slide__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease;
}
body .splide-gammes .splide__track .splide__list .splide__slide .splide__slide__img .caption {
  position: absolute;
  left: 30px;
  bottom: 20px;
  right: 30px;
  color: white;
  font-size: 22px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  transition-delay: 0.1s;
}
body .splide-gammes .splide__track .splide__list .splide__slide h3 {
  margin: 0;
}
body .splide-gammes .splide__track .splide__list .splide__slide h3 a {
  color: var(--e-global-color-accent);
  font-size: 25px;
  font-weight: bold;
}
body .splide-gammes .splide__track .splide__list .splide__slide:nth-child(even) .splide__slide__img {
  transform: rotateZ(2deg);
}
body .splide-gammes .splide__track .splide__list .splide__slide:nth-child(odd) .splide__slide__img {
  transform: rotateZ(-2deg);
}
body .splide-gammes .splide__track .splide__list .splide__slide:hover .splide__slide__img {
  transform: rotateZ(0deg);
}
body .splide-gammes .splide__track .splide__list .splide__slide:hover .splide__slide__img .caption {
  opacity: 1;
  transform: none;
}
body .splide-gammes .splide__track .splide__list .splide__slide:hover .splide__slide__img img {
  opacity: 0.2;
}
body .splide-gammes .splide__arrows {
  position: absolute;
  top: 0;
  right: 60px;
  width: 103px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--e-global-color-accent);
  color: white;
  border-radius: 60px;
  transform: translateY(-120%);
}
@media screen and (max-width: 768px) {
  body .splide-gammes .splide__arrows {
    display: none;
  }
}
body .splide-gammes .splide__arrows .splide__arrow {
  display: flex;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  height: 60px;
  color: white;
  padding: 0;
  background: transparent;
  border-radius: 0;
  position: relative;
  transform: none;
  top: auto;
  transition: all 0.3s ease;
}
body .splide-gammes .splide__arrows .splide__arrow:hover {
  background: none;
  transform: translateY(2px);
  opacity: 1;
}
body .splide-gammes .splide__pagination {
  bottom: auto;
  top: 0;
  transform: translateY(-50px);
}
body .splide-gammes .splide__pagination .splide__pagination__page {
  background: rgba(213, 173, 105, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}
body .splide-gammes .splide__pagination .splide__pagination__page.is-active {
  background: var(--e-global-color-accent);
  transform: none;
  width: 16px;
}
body .splide-accueil .splide__arrows {
  position: absolute;
  top: 30px;
  left: calc(40% + 60px);
  width: 103px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--e-global-color-accent);
  color: white;
  z-index: 10;
  border-radius: 60px;
}
@media screen and (max-width: 768px) {
  body .splide-accueil .splide__arrows {
    display: none;
  }
}
body .splide-accueil .splide__arrows .splide__arrow {
  display: flex;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  height: 60px;
  color: white;
  padding: 0;
  background: transparent;
  border-radius: 0;
  position: relative;
  transform: none;
  top: auto;
  transition: all 0.3s ease;
}
body .splide-accueil .splide__arrows .splide__arrow:hover {
  background: none;
  transform: translateY(2px);
  opacity: 1;
}
body .splide-accueil .splide__slide {
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  body .splide-accueil .splide__slide {
    flex-direction: column;
  }
}
body .splide-accueil .splide__slide .image {
  flex: 0 0 auto;
  width: 40%;
  height: 100%;
  border-radius: 0 45px 45px 0;
  overflow: hidden;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 768px) {
  body .splide-accueil .splide__slide .image {
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
    border-radius: 0px;
    filter: none;
  }
}
body .splide-accueil .splide__slide .image img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  body .splide-accueil .splide__slide .image img {
    object-fit: cover;
  }
}
body .splide-accueil .splide__slide .droite {
  display: flex;
  padding: 60px;
  min-height: 60vh;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  body .splide-accueil .splide__slide .droite {
    padding: 30px 30px;
    min-height: auto;
  }
}
body .splide-accueil .splide__slide .droite .container {
  max-width: 585px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  body .splide-accueil .splide__slide .droite .container {
    max-width: 100%;
  }
}
body .splide-accueil .splide__slide .droite h3 {
  font-size: 16px;
  font-weight: medium;
  color: var(--e-global-color-text);
}
body .splide-accueil .splide__slide .droite h2 {
  font-size: 50px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 30px;
  color: var(--e-global-color-accent);
}
@media screen and (max-width: 768px) {
  body .splide-accueil .splide__slide .droite h2 {
    font-size: 36px;
  }
}
body .splide-accueil .splide__slide .droite .description {
  font-size: 18px;
  font-weight: 500;
  color: var(--e-global-color-text);
  max-width: 470px;
}
@media screen and (max-width: 768px) {
  body .splide-accueil .splide__slide .droite .description {
    font-size: 16px;
    max-width: 100%;
  }
}
body .splide-accueil .splide__slide .droite .buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  body .splide-accueil .splide__slide .droite .buttons {
    flex-direction: column;
    padding-bottom: 20px;
  }
}
body .splide-accueil .splide__slide .droite a.button {
  display: flex;
  gap: 10px;
  align-items: center;
  background: var(--e-global-color-accent);
  color: white;
  padding: 15px 30px;
  border-radius: 60px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  body .splide-accueil .splide__slide .droite a.button {
    padding: 13px 20px;
  }
}
body .splide-accueil .splide__slide .droite a.button:last-child {
  background: var(--e-global-color-primary);
}
body .splide-accueil .splide__slide .droite a.button:hover {
  transform: translateY(-2px);
}
body #lz-product-gallery {
  width: 100%;
  display: flex;
  flex-direction: column;
}
body #lz-product-gallery #main-product-image {
  padding: 30px;
}
body #lz-product-gallery #main-product-image a.main-image {
  aspect-ratio: 1/1;
  padding: 30px;
  width: 100%;
  display: block;
}
body #lz-product-gallery #main-product-image a.main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
body #lz-product-gallery .product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
body #lz-product-gallery .product-gallery-thumbs .item {
  aspect-ratio: 1/1 !important;
  width: 100% !important;
  float: none;
  padding: 20px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 5px;
  transition: all 0.3s ease;
  opacity: 0.8;
  cursor: pointer;
}
body #lz-product-gallery .product-gallery-thumbs .item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
body #lz-product-gallery .product-gallery-thumbs .item:hover {
  opacity: 1;
  transform: translateY(-2px);
}
body .woocommerce-result-count {
  font-size: 15px;
  color: gray;
}
body form.woocommerce-ordering .orderby {
  border-color: var(--e-global-color-accent);
  font-size: 15px;
  font-weight: 500;
}
body .widget_product_categories h5 {
  font-size: 20px;
  color: var(--e-global-color-accent);
  font-weight: 500;
}
body .widget_product_categories ul.product-categories {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  list-style: none;
}
body .widget_product_categories ul.product-categories li {
  font-size: 16px;
  color: black;
  font-weight: bold;
  margin-bottom: 10px;
}
body .widget_product_categories ul.product-categories li .count {
  opacity: 0.5;
  font-size: 0.8em;
}
body .widget_product_categories ul.product-categories li ul.children {
  list-style: none;
  padding: 0;
  margin-top: 5px;
}
body .widget_product_categories ul.product-categories li ul.children li {
  font-size: 15px;
  line-height: 22px;
  font-weight: normal;
  transition: all;
  display: flex;
  align-items: center;
}
body .widget_product_categories ul.product-categories li ul.children li:before {
  content: "\f061";
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  color: var(--e-global-color-accent);
  margin-right: 10px;
}
body .widget_product_categories ul.product-categories li ul.children li:hover {
  color: #D5AD69;
}
body.woocommerce .product-image-wrapper, body.elementor-page-5683 .product-image-wrapper {
  aspect-ratio: 1/1;
  background: #F5F5F5;
  border: solid thin #e6e6e6;
  padding: 20px;
  border-radius: 10px;
}
body.woocommerce .product-image-wrapper img, body.elementor-page-5683 .product-image-wrapper img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  margin: 0 !important;
  object-position: center;
}
body.woocommerce .woo-variation-items-wrapper ul[role=radiogroup].radio-variable-items-wrapper, body.elementor-page-5683 .woo-variation-items-wrapper ul[role=radiogroup].radio-variable-items-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: row;
  gap: 5px;
}
body.woocommerce .woo-variation-items-wrapper ul[role=radiogroup].radio-variable-items-wrapper li.variable-item, body.elementor-page-5683 .woo-variation-items-wrapper ul[role=radiogroup].radio-variable-items-wrapper li.variable-item {
  background: white;
  border: solid 2px rgba(0, 0, 0, 0.1);
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  color: var(--e-global-color-text);
}
body.woocommerce .woo-variation-items-wrapper ul[role=radiogroup].radio-variable-items-wrapper li.variable-item input[type=radio], body.elementor-page-5683 .woo-variation-items-wrapper ul[role=radiogroup].radio-variable-items-wrapper li.variable-item input[type=radio] {
  display: none;
}
body.woocommerce .woo-variation-items-wrapper ul[role=radiogroup].radio-variable-items-wrapper li.variable-item input + span, body.elementor-page-5683 .woo-variation-items-wrapper ul[role=radiogroup].radio-variable-items-wrapper li.variable-item input + span {
  margin: 0 !important;
}
body.woocommerce .woo-variation-items-wrapper ul[role=radiogroup].radio-variable-items-wrapper li.variable-item.selected, body.elementor-page-5683 .woo-variation-items-wrapper ul[role=radiogroup].radio-variable-items-wrapper li.variable-item.selected {
  border: solid 2px var(--e-global-color-accent);
  color: var(--e-global-color-accent);
}
body.woocommerce .woo-variation-items-wrapper ul[role=radiogroup].radio-variable-items-wrapper li.variable-item .price, body.elementor-page-5683 .woo-variation-items-wrapper ul[role=radiogroup].radio-variable-items-wrapper li.variable-item .price {
  display: none;
}
body.woocommerce .woo-variation-items-wrapper ul[role=radiogroup].radio-variable-items-wrapper li.variable-item img, body.elementor-page-5683 .woo-variation-items-wrapper ul[role=radiogroup].radio-variable-items-wrapper li.variable-item img {
  display: none;
}
body.woocommerce .variations_form.cart table.variations tr, body.elementor-page-5683 .variations_form.cart table.variations tr {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 20px;
}
body.woocommerce .variations_form.cart table.variations tr th, body.elementor-page-5683 .variations_form.cart table.variations tr th {
  flex: 0 0 auto;
  min-width: 100px !important;
}
body.woocommerce .variations_form.cart table.variations tr th .woo-selected-variation-item-name, body.elementor-page-5683 .variations_form.cart table.variations tr th .woo-selected-variation-item-name {
  display: none;
}
body.woocommerce .products, body.elementor-page-5683 .products {
  padding: 40px 0;
}
body.woocommerce .products .product .price, body.elementor-page-5683 .products .product .price {
  color: var(--e-global-color-accent) !important;
  font-size: 20px;
  font-weight: 500 !important;
}
body.woocommerce .products .product h2, body.elementor-page-5683 .products .product h2 {
  font-size: 22px !important;
}
body.woocommerce .products .product .add_to_cart_button, body.elementor-page-5683 .products .product .add_to_cart_button {
  font-size: 14px;
  font-weight: 600;
  color: black;
  padding: 0 0 2px 0;
  border-bottom: solid 2px black;
  background: none;
  border-radius: 0px;
  margin-top: 0px;
  margin-bottom: 20px;
}
body.woocommerce .products .product .add_to_cart_button:hover, body.elementor-page-5683 .products .product .add_to_cart_button:hover {
  color: var(--e-global-color-accent);
  border-bottom: solid 2px var(--e-global-color-accent);
}
body.woocommerce .products .product .categories, body.elementor-page-5683 .products .product .categories {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 16px;
  font-family: "Playfair Display", serif;
  color: var(--e-global-color-text);
  gap: 8px;
  padding: 10px 0;
}
body.woocommerce .products .product .categories:before, body.elementor-page-5683 .products .product .categories:before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--e-global-color-accent);
  gap: 5px;
}
body.woocommerce .products .product .categories .variations .archive-variable-items li, body.elementor-page-5683 .products .product .categories .variations .archive-variable-items li {
  --wvs-archive-product-item-height: 30px;
}
body.woocommerce .woocommerce-variation-description, body.elementor-page-5683 .woocommerce-variation-description {
  font-size: 16px;
  font-weight: 300;
  max-width: 80%;
}
body.woocommerce .elementor-add-to-cart .woocommerce-variation-add-to-cart, body.elementor-page-5683 .elementor-add-to-cart .woocommerce-variation-add-to-cart {
  margin-top: 20px;
}
body.woocommerce .elementor-add-to-cart .woocommerce-variation-price, body.elementor-page-5683 .elementor-add-to-cart .woocommerce-variation-price {
  font-size: 30px;
  color: var(--e-global-color-accent);
  font-weight: 500;
}
body.woocommerce .elementor-add-to-cart .woocommerce-variation-price .price, body.elementor-page-5683 .elementor-add-to-cart .woocommerce-variation-price .price {
  font-size: 30px !important;
  color: var(--e-global-color-accent) !important;
  font-weight: 500 !important;
}
body.woocommerce .elementor-widget-woocommerce-product-images .onsale, body.elementor-page-5683 .elementor-widget-woocommerce-product-images .onsale {
  background: var(--e-global-color-accent);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: translate(-25%, -25%);
}
body.woocommerce .elementor-widget-woocommerce-product-images .woocommerce-product-gallery .flex-control-thumbs, body.elementor-page-5683 .elementor-widget-woocommerce-product-images .woocommerce-product-gallery .flex-control-thumbs {
  margin-top: 5px !important;
}
body .gammes-menu {
  background: white;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  width: 90vw;
  max-width: 650px;
}
body .gammes-menu .menu {
  flex: 0 0 auto;
  width: 45%;
  display: flex;
  flex-direction: column;
  padding-right: 30px;
  padding-left: 20px;
  justify-content: center;
  align-items: flex-start;
}
body .gammes-menu .menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  color: var(--e-global-color-text);
  transition: all 0.3s ease;
  font-family: "Playfair Display", serif;
  padding: 6px 0;
}
body .gammes-menu .menu a i {
  color: var(--e-global-color-accent);
}
body .gammes-menu .menu a:hover {
  transform: translateX(10px);
  color: var(--e-global-color-accent);
}
body .gammes-menu .droite {
  flex: 0 0 auto;
  width: 55%;
}
body .gammes-menu .droite .wrapper {
  aspect-ratio: 1/1;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}
body .gammes-menu .droite .wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.single-product table.woocommerce-product-attributes {
  border-radius: 2px;
}
body.single-product table.woocommerce-product-attributes tbody tr th, body.single-product table.woocommerce-product-attributes tbody tr td, body.single-product table.woocommerce-product-attributes tbody tr:nth-child(even) th, body.single-product table.woocommerce-product-attributes tbody tr:nth-child(even) td, body.single-product table.woocommerce-product-attributes tbody tr:nth-child(odd) th, body.single-product table.woocommerce-product-attributes tbody tr:nth-child(odd) td {
  background: white;
  padding: 5px 10px;
  border: none;
  vertical-align: middle;
}
body .product-image-wrapper .onsale {
  display: none !important;
}
body .add-to-cart-wrapper form {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
body .add-to-cart-wrapper form:before, body .add-to-cart-wrapper form:after {
  content: none !important;
}
body .add-to-cart-wrapper form .quantity input[type=number] {
  padding: 6px 0;
  width: 60px;
}
body #search-inter form {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  height: 30px;
  border: solid 1px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  position: relative;
  height: 50px;
  padding: 0 10px 0 20px;
}
body #search-inter form input[type=text] {
  width: 100%;
  height: 50px;
  background: transparent;
  font-size: 16px;
  border: none;
  outline: none;
  font-weight: 500;
  padding: 0;
  color: var(--e-global-color-text);
}
body #search-inter form button {
  position: absolute;
  color: slategray;
  font-size: 20px;
  width: 30px;
  border: none;
  appearance: none;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 10px;
  top: 0;
}
@media screen and (max-width: 640px) {
  body.woocommerce .products.elementor-grid.columns-3 {
    display: block;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
#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;
}

#triggerMargeClient {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: white;
  background-color: var(--e-global-color-secondary);
  border-radius: 50%;
  z-index: 11;
}
#triggerMargeClient.active {
  background: black;
  color: #D5AD69;
}
#triggerMargeClient svg {
  width: 30px;
  height: 30px;
}

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

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

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

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

[data-aos=clip-to-bottom] {
  clip-path: inset(0 0 100% 0);
  display: inline-block;
  transition: clip-path cubic-bezier(0.25, 0.1, 0.25, 1);
}
[data-aos=clip-to-bottom].aos-animate {
  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: 2351ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(1) {
  animation-delay: 1071ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(2) {
  animation-delay: 1328ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(3) {
  animation-delay: 561ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(4) {
  animation-delay: 1914ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(5) {
  animation-delay: 2271ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(6) {
  animation-delay: 679ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(7) {
  animation-delay: 1681ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(8) {
  animation-delay: 1556ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(9) {
  animation-delay: 1603ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(10) {
  animation-delay: 2635ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(11) {
  animation-delay: 2436ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(12) {
  animation-delay: 1196ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(13) {
  animation-delay: 2046ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(14) {
  animation-delay: 903ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(15) {
  animation-delay: 503ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(16) {
  animation-delay: 508ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(17) {
  animation-delay: 2150ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(18) {
  animation-delay: 1773ms;
}
html:not(.no-js) body [data-aos=float]:nth-child(19) {
  animation-delay: 1234ms;
}

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

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

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

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

@media screen and (max-width: 768px) {
  [data-aos-delay]:not(.mobile-delay) {
    transition-delay: 0s !important;
  }
}
