@charset "UTF-8";

:root {
  /* Colors */
  --black: #121212;
  --white: #fff;
  --pink: rgba(245, 221, 218, 1);
  --pink50: rgba(245, 221, 218, .5);
  --blue: #280B45;
  --red: #E2000B;
  --redLight: #FD6161;
  --red30: rgba(253, 97, 97, .3);
  --red70: rgba(253, 97, 97, .7);
  /* Typography */
  --fontRegular: "Nunito-Regular";
  --fontBold: "Nunito-Bold";
  --fontExtraBold: "Nunito-ExtraBold";
  --fontBlack: "Nunito-Black";
}

/* Fonction toute prête pour gérer Rem et Pixel en fonction des supports des navigateurs. */

:root {
  --gap: 8px;
}

@font-face {
  font-family: "Nunito-Regular";
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Nunito-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Nunito-Bold";
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Nunito-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Nunito-ExtraBold";
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/Nunito-ExtraBold.ttf") format("truetype");
}

@font-face {
  font-family: "Nunito-Black";
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/Nunito-Black.ttf") format("truetype");
}

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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

strong,
b {
  font-weight: bold;
}

ul,
ol {
  list-style-type: none;
}

table {
  border: 0;
  border-spacing: 0;
  empty-cells: show;
  border-collapse: 0;
}

th,
td {
  text-align: left;
  font-weight: normal;
}

html {
  font-size: 10px;
}

body {
  line-height: 1.3;
  font-family: var(--fontRegular);
  scroll-behavior: smooth;
  background: var(--pink50);
  color: var(--blue);
  font-size: 16px;
  font-size: 1.6rem;
}

html,
button,
input,
select,
textarea {
  font-family: sans-serif;
}

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

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

button,
input,
select,
textarea {
  font-size: 100%;
  border: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}

button,
input {
  line-height: normal;
}

button,
select {
  text-transform: none;
}

input[type=text],
input[type=password],
input[type=number] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  border-radius: 0;
}

/* input[type="number"] {
     -webkit-appearance: textfield;
     -moz-appearance:textfield;
} */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
  *overflow: visible;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

input[type=checkbox],
input[type=radio] {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  *height: 13px;
  *width: 13px;
}

input[type=search] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

strong {
  font-family: var(--fontBold);
}

:root {
  --container-padding: 24px;
  --container-width: calc(100vw - var(--container-padding) * 2);
}

.container {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  max-width: 100%;
  padding-inline: calc(50% - var(--container-width) / 2);
}

.container-margin {
  margin-left: auto;
  margin-right: auto;
  width: var(--container-width);
  max-width: 100%;
}

.cols {
  display: flex;
}

.cols.center {
  align-items: center;
}

.cols.between {
  justify-content: space-between;
}

.cols.gap-16 {
  gap: 16px;
}

.cols.gap-24 {
  gap: 24px;
}

.page-interne {
  padding-top: 32px;
}

.page-interne.no-pt {
  padding-top: 0;
}

.block-title {
  font-family: var(--fontExtraBold);
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 1.36;
}

.page-title {
  font-size: 35px;
  font-size: 3.5rem;
  font-family: var(--fontBlack);
  line-height: 1;
  margin-bottom: 24px;
}

.single-videos .page-title {
  font-family: var(--fontRegular);
}

.single-videos .page-title strong {
  font-family: var(--fontBlack);
}

.title-2 {
  font-size: 25px;
  font-size: 2.5rem;
  font-family: var(--fontExtraBold);
  line-height: 1.1363636364;
}

header {
  padding-top: 24px;
  position: relative;
  z-index: 999;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
}

body.home header {
  align-items: center;
}

header .contact-flottant {
  position: fixed;
  bottom: 10px;
  right: 20px;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 98px;
  height: 89px;
  background: url("../images/picto-contact.svg") center no-repeat;
  padding-left: 10px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.1428571429;
  font-family: var(--fontBold);
  color: var(--white);
  text-decoration: none;
}
header .contact-flottant img{
	display:none;
}

header .logo {
  position: relative;
  z-index: 10;
}

header .logo a,
header .logo > span {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
}

header .logo img {
  width: 120px;
}

header .logo span {
  color: var(--red);
  line-height: 1;
  font-weight: 100;
  font-size: 18px;
  font-size: 1.8rem;
}

header .logo span strong {
  display: block;
  font-family: var(--fontBold);
}

header .right .top {
  display: flex;
  justify-content: flex-end;
  gap: 50px;
}

header .menu-nav .menu > li {
  position: relative;
  padding-bottom: 8px;
}

header .menu-nav .menu > li:hover .submenu {
  display: flex;
}

header .menu-nav .menu > li:hover > a {
  color: var(--redLight);
}

header .menu-nav .menu > li.menu-item-has-children {
  padding-bottom: 0;
}

header .menu-nav .menu a {
  color: var(--blue);
  text-decoration: none;
  font-family: var(--fontBold);
}

header .menu-nav .menu .current-menu-item > a {
  color: var(--redLight);
}

header .menu-nav .menu .submenu {
  flex-direction: column;
  gap: 16px;
  background: var(--pink50);
  padding: 16px 24px;
  border-radius: 16px 16px 0 0;
}

header .menu-nav .menu .submenu li {
  border-top: 1px solid var(--blue);
  padding-top: 16px;
}

header .menu-nav .menu .submenu li:first-child {
  border-top: 0;
  padding-top: 0;
}

header .menu-nav .menu .submenu li a {
  display: block;

}

header .menu-nav .menu .submenu li a:hover {
  color: var(--redLight);
}

body.home header .logo a > span {
  display: block !important;
}

:not(.home) header .logo a > span {
  display: none;
}

body:not(.univers-selected) .univers-switcher,
body:not(.univers-selected) .searchbar,
body:not(.univers-selected) nav,
body:not(.univers-selected) .toggle-menu,
body:not(.univers-selected) .close-menu,
body.home .univers-switcher,
body.home .searchbar,
body.home nav,
body.home .toggle-menu,
body.home .close-menu {
  display: none;
}

body:not(.univers-selected) header .logo a > span,
body.home header .logo a > span {
  display: flex !important;
  flex-direction: column;
  white-space: nowrap;
}

body:not(.home) .univers-switcher.not-desktop {
  margin-bottom: 24px;
}

.univers-switcher.not-desktop > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 26px;
  height: 50px;
}

.univers-switcher.not-desktop > div .sep {
  display: none;
}

.univers-switcher.not-desktop > div span,
.univers-switcher.not-desktop > div a {
  display: grid;
  place-content: center;
  height: 50px;
  text-align: center;
  font-size: 18px;
}

.univers-switcher.not-desktop > div .current {
  border-radius: 26px;
  border: 2px solid var(--redLight);
  font-weight: 700;
}

footer {
  padding-block: 24px;
}

footer .top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  font-size: 16px;
  font-size: 1.6rem;
}

footer .top .mention {
  text-align: center;
}

footer .top .mention a {
  color: var(--blue);
  text-decoration: none;
}

footer .top .mention a:hover {
  text-decoration: underline;
}

footer .top .links {
  display: flex;
  align-items: center;
}

footer .top .links a {
  text-decoration: none;
  color: currentColor;
  font-weight: 700;
}

footer .top .socials {
  display: flex;
  align-items: center;
  gap: 24px;
  border-left: 1px solid var(--blue);
  margin-left: 32px;
  padding-left: 32px;
}

footer .top .socials.socials-prehome {
  border: 0;
  padding-left: 0;
}

footer .top .socials a {
  display: block;
  width: 24px;
  height: 22px;
}

footer .top .socials a.facebook {
  content: url("../images/logo-facebook.svg");
}

footer .top .socials a.instagram {
  content: url("../images/logo-instagram.svg");
}

footer .top .socials a.twitter {
  content: url("../images/logo-twitter.svg");
}

footer .top .socials a.youtube {
  content: url("../images/logo-youtube.svg");
}

footer .top .socials a.linkedin {
  content: url("../images/logo-linkedin.svg");
}

footer .bottom {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  padding-top: 8px;
}

footer .bottom .copyright {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

footer .bottom .menu-footer {
  flex: 1;
  text-align: right;
}

footer .bottom .menu-footer ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  gap: 16px;
}

footer .bottom .menu-footer ul li:last-child a {
  display: flex;
  flex-direction: column;
}

footer .bottom .menu-footer ul li:last-child a img {
  margin-bottom: 2px;
}

footer .bottom .menu-footer ul a {
  color: currentColor;
  text-decoration: none;
  text-align: center;
  gap: 8px;
  font-size: 16px;
  font-size: 1.6rem;
}

footer .bottom .menu-footer ul a:hover {
  text-decoration: underline;
}

footer .bottom .menu-footer ul a img {
  max-height: 14px;
  width: auto;
}

.nice-list,
.single .wysiwyg ul,
.single .wysiwyg ol,
.accordeon-content ul {
  margin-block: 24px 60px;
  list-style: disc;
  margin-left: 20px;
}

.nice-list li,
.single .wysiwyg ul li,
.single .wysiwyg ol li,
.accordeon-content ul li {
  margin-bottom: 8px;
}

.nice-list li::marker,
.single .wysiwyg ul li::marker,
.single .wysiwyg ol li::marker,
.accordeon-content ul li::marker {
  color: var(--redLight);
}

ol.nice-list,
.single .wysiwyg ol {
  list-style: decimal;
}

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 50px;
  font-family: var(--fontExtraBold);
  text-align: center;
}

.page-modulaire .table-responsive {
  overflow-x: auto;
  padding-bottom: 10px;
  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: var(--blue) var(--red30);
  /* Internet Explorer */
  -ms-overflow-style: -ms-autohiding-scrollbar;
  /* Webkit (Chrome, Safari, Opera, Edge) */
}

.page-modulaire .table-responsive::-webkit-scrollbar {
  display: block;
  height: 8px;
}

.page-modulaire .table-responsive::-webkit-scrollbar-track {
  background: var(--red70);
  border-radius: 4px;
}

.page-modulaire .table-responsive::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 4px;
  border: 2px solid var(--blue);
}

.page-modulaire .table-responsive::-webkit-scrollbar-thumb:hover {
  background: var(--blue);
}

.switcher {
  padding-top: 8px;
  --_color: var(--blue);
}

.switcher.red {
  --_color: var(--red);
}

.switcher.red .current {
  font-weight: normal;
}

.switcher > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.switcher a,
.switcher .current {
  text-decoration: none;
  font-size: 14px;
  text-transform: capitalize;
  color: var(--_color);
}

.switcher .current {
  font-family: var(--fontBold);
  pointer-events: none;
}

.switcher .sep {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  position: relative;
  cursor: pointer;
  --_petit: 8px;
  --_grand: 20px;
  --_margin: -4px;
}

.switcher .sep:before {
  content: "";
  display: block;
  width: var(--_petit);
  height: var(--_petit);
  border-radius: 50%;
  background: var(--_color);
  margin-left: var(--_margin);
}

.switcher .sep:after {
  content: "";
  display: block;
  width: var(--_grand);
  height: var(--_grand);
  border-radius: 50%;
  background: var(--_color);
}

.switcher .lang-fr .sep,
.switcher .univers-human .sep {
  flex-direction: row;
}

.switcher .lang-fr .sep:before,
.switcher .univers-human .sep:before {
  margin-right: var(--_margin);
  margin-left: 0;
}

nav .switcher a,
nav .switcher .current {
  font-size: 20px;
}

nav .switcher .sep {
  --_petit: 12px;
  --_grand: 30px;
  --_margin: -7px;
}

.switcher.lang-switcher:has(.no-page) {
  display: none;
}

.home .switcher {
  margin-bottom: 60px;
}

.prehome {
  display: flex;
  flex-direction: column;
}

.prehome .intro {
  text-align: center;
  line-height: 1.2272727273;
  font-size: 22px;
  font-size: 2.2rem;
  margin-bottom: 32px;
}

.prehome .univers-choice {
  text-align: center;
  background: #fff;
  padding-bottom: 90px;
  position: relative;
  flex: 1;
}

.prehome .univers-choice .container {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.prehome .univers-choice .container .univers {
  flex: 1;
}

.prehome .univers-choice:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding-top: 60px;
  background: var(--pink50) url("../images/vague-interne-top.svg") top 100px center no-repeat;
  background-size: 100% auto;
  aspect-ratio: 1404/120;
  z-index: 0;
}

.prehome .univers-choice > :first-child {
  position: relative;
  z-index: 1;
}

.prehome .univers-choice .photo {
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 24px;
}

.prehome .univers-choice .photo img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  transition: 350ms ease-out;
  display: block;
}

.prehome .univers-choice [data-univers=human] .photo img {
  object-position: 70% center;
}

.prehome .univers-choice a {
  font-family: var(--fontBold);
  text-decoration: none;
  color: currentColor;
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 1.2;
}

.prehome .univers-choice a:hover .photo img {
  scale: 1.05;
}

.searchbar {
  align-self: flex-start;
  padding-top: 5px;
}

.searchbar form {
  position: relative;
}

.searchbar button {
  position: absolute;
  background: none;
  padding: 0;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
}

.searchbar input[type=text] {
  display: flex;
  align-items: center;
  height: 24px;
  background: none;
  padding-inline: 8px 32px;
  border-bottom: 1px solid var(--blue);
  width: 400px;
}

.searchbar input[type=text]:focus-within {
  outline: 0;
}

.searchbar input[type=text]::placeholder {
  font-style: italic;
}

.searchbar.mobile-search {
  padding-top: 10px;
  position: relative;
}

.searchbar.mobile-search .search-picto {
  width: 17px;
  height: 17px;
}

.searchbar.mobile-search .search-form {
  display: none;
  opacity: 0;
  transition: opacity 350ms ease-out;
}

.searchbar.mobile-search.open .search-picto {
  background: url(../images/picto-close-black.svg) center no-repeat;
}

.searchbar.mobile-search.open .search-picto img {
  opacity: 0;
}

.searchbar.mobile-search.open .search-form {
  display: block;
  position: fixed;
  top: 60px;
  left: 8px;
  background: var(--white);
  border-radius: 8px;
  padding: 8px 16px;
  z-index: 100;
  width: calc(100% - 16px);
  opacity: 1;
}

.searchbar.mobile-search.open .search-form input {
  max-width: 90%;
  border: 0;
}

.admin-bar .searchbar.mobile-search.open .search-form {
  top: 106px;
}

.hero {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 50px;
  padding-bottom: 0;
  padding-top: 64px;
}

.hero .photo {
  overflow: hidden;
  aspect-ratio: 330/305;
  border-radius: 24px;
}

.hero .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .texts {
  flex: 1;
  text-align: right;
}

.hero .texts h2 {
  font-weight: 700;
  font-size: 35px;
  font-size: 3.5rem;
  font-family: var(--fontExtraBold);
  line-height: 1.1428571429;
  margin-bottom: 8px;
}

.hero .texts .text {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 20px;
  padding-left: 70px;
}

.btn {
  display: inline-flex;
  align-items: center;
  height: 50px;
  background: var(--redLight);
  color: var(--white);
  font-size: 16px;
  font-size: 1.6rem;
  border-radius: 24px;
  padding-inline: 48px;
  text-decoration: none;
  transition: background 300ms ease-out;
  font-family: var(--fontBold);
}

.btn.white {
  background: var(--white);
  color: var(--redLight);
}

.btn:hover,
.btn.secondary:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.btn.secondary {
  background: none;
  border: 2px solid var(--redLight);
  color: var(--redLight);
  padding-inline: 14px;
}

.origine > .container,
.block-text-pictos > .container {
  overflow-x: hidden;
}

.origine .cols,
.block-text-pictos .cols {
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
}

.origine .cols .right,
.block-text-pictos .cols .right {
  flex: 1;
}

.origine .cols .block-title,
.block-text-pictos .cols .block-title {
  margin-bottom: 10px;
}

.origine .cols .text,
.block-text-pictos .cols .text {
  margin-bottom: 50px;
}

.origine .cols .avantages-list,
.block-text-pictos .cols .avantages-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.origine .cols .avantages-list .avantage,
.block-text-pictos .cols .avantages-list .avantage {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 150px;
  border: 1px solid currentColor;
  border-radius: 30px;
  color: var(--redLight);
  font-size: 20px;
  font-size: 2rem;
  font-family: var(--fontBold);
  padding-inline: 24px;
}

.origine .cols .avantages-list .avantage:before,
.block-text-pictos .cols .avantages-list .avantage:before {
  content: url("../images/picto-check.svg");
  display: block;
  width: 32px;
  height: 22px;
  margin-bottom: 18px;
}

.origine .cols .avantages-list.img .avantage:before,
.block-text-pictos .cols .avantages-list.img .avantage:before {
  display: none;
}

.origine .cols .avantages-list.img .avantage .picto,
.block-text-pictos .cols .avantages-list.img .avantage .picto {
  margin-bottom: 8px;
}

.origine .cols .avantages-list.img .avantage .picto img,
.block-text-pictos .cols .avantages-list.img .avantage .picto img {
  height: 50px;
}

.vagues {
  background: var(--white);
  display: flex;
  flex-direction: column;
  margin-block: 100px;
}

.vagues:before {
  content: "";
  display: block;
  width: 100%;
  background: url("../images/vague-interne-top.svg") top center no-repeat;
  background-size: 100%;
  transform: translateY(-98%);
  aspect-ratio: 1906/128;
  margin-bottom: 0;
}

.vagues:after {
  content: "";
  display: block;
  width: 100%;
  background: url("../images/vague-interne-bottom.svg") bottom center no-repeat;
  background-size: 100%;
  transform: translateY(98%);
  aspect-ratio: 1906/136;
  margin-top: -1px;
}

.vagues.no-top {
  margin-top: 0;
}

.vagues.no-top:before {
  display: none !important;
}

.vagues.block-text-title,
.vagues.block-accordion,
.vagues.block-bandeau-pictos,
.vagues.block-bandeau-chiffres,
.vagues.block-bandeau-blocks-pictos,
.vagues.block-liste-puces,
.vagues.block-text-pictos {
  margin-block: 80px;
}

.vagues.vagues-after {
  margin-bottom: 0 !important;
  padding-bottom: 100px;
}

.vagues.vagues-after:after {
  display: none;
}

.vagues.vagues-after + .vagues {
  margin-top: 0;
}

.vagues.vagues-after + .vagues:before {
  display: none;
}

.video-home {
  overflow-x: hidden;
}

.video-home .content-video {
  max-width: 804px;
  background: var(--redLight);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding-block: 24px;
  padding-inline: 24px;
  border-radius: 30px;
  margin-inline: auto;
}

.video-home .content-video .block-title {
  color: var(--white);
}

.video-home .content-video iframe {
  max-width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

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

/**
 * Swiper 11.1.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: July 15, 2024
 */

/* FONT_START */

@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}

/* FONT_END */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3D Effects */

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */

/* 3D Shadows */

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Slide styles end */

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

/* Navigation font start */

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

/* Navigation font end */

:root {
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 13px;
  --swiper-pagination-bullet-height: 13px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 5px;
  --swiper-pagination-bullet-vertical-gap: 6px;
}

.swiper-pagination {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  border: 2px solid var(--swiper-pagination-bullet-inactive-color);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  width: 17px;
  height: 17px;
  background: var(--swiper-pagination-bullet-inactive-color);
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

/* Zoom container styles start */

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Zoom container styles end */

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

/* a11y */

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

/* Cube slide shadows start */

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Cube slide shadows end */

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

/* Flip slide shadows start */

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Flip slide shadows end */

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.products-home .block-title {
  text-align: center;
  margin-bottom: 24px;
}

.products-home .text {
  line-height: 1.4285714286;
  margin-bottom: 60px;
  text-align: center;
  max-width: 650px;
  margin-inline: auto;
}

.products-home .slider-home-products {
  position: relative;
  overflow-x: hidden;
  padding-bottom: 32px;
}

.products-home .slider-home-products .swiper-wrapper {
  margin-bottom: 80px;
  padding-top: 10px;
}

.products-home .slider-home-products .swiper-scrollbar {
  --swiper-scrollbar-size: 10px;
  --swiper-scrollbar-bg-color: rgba(255, 255, 255, 0.34);
  --swiper-scrollbar-drag-bg-color: var(--white);
  box-shadow: 10px 10px 15px 0 rgba(237, 144, 120, 0.4);
  position: relative;
  max-width: 90%;
  margin-inline: auto;
  left: auto;
  bottom: auto;
  top: auto;
  cursor: pointer;
}

.products-home .slider-home-products .swiper-scrollbar .swiper-scrollbar-drag {
  background: var(--redLight);
}

.products-home .slider-home-products .swiper-slide {
  display: grid;
  place-content: center;
  background: var(--white);
  border-radius: 30px;
  width: 230px;
  height: auto;
  aspect-ratio: 1;
  box-shadow: 15px 15px 25px 0 rgba(237, 144, 120, 0.4);
  transition: 300ms ease-out;
}

.products-home .slider-home-products .swiper-slide:hover {
  transform: translateY(-10px);
}

.products-home .slider-home-products .swiper-slide img {
  max-height: 185px;
  max-width: 166px;
  width: auto;
  height: auto;
}

.products-home .slider-home-products .show-all {
  background: var(--redLight);
  color: var(--white);
  text-decoration: none;
  font-size: 24px;
  font-size: 2.4rem;
  padding-inline: 24px;
  text-align: center;
  font-family: var(--fontBold);
}

.lactalk {
  margin-bottom: 90px;
}

.lactalk .cols {
  flex-direction: column-reverse;
}

.lactalk .photo {
  position: relative;
  width: 330px;
  height: 301px;
  margin-inline: auto;
}

.lactalk .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top right;
  clip-path: path("M301.928 123.092a4.354 4.354 0 0 1-4.249-3.5A150.462 150.462 0 0 0 149.137.006C68.431.691 1.955 66.106.043 146.792A150.439 150.439 0 0 0 297.531 182a5.251 5.251 0 0 1 5.115-4.2 27.361 27.361 0 0 0 27.182-30.464c-1.54-13.957-13.859-24.243-27.9-24.243");
  transition: 300ms ease-out;
}

.lactalk .photo:hover img {
  scale: 1.01;
}

.lactalk .photo a {
  display: block;
  height: 100%;
  position: relative;
}

.lactalk .photo a:before {
  content: url("../images/picto-play.svg");
  display: block;
  width: 76px;
  height: 53px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(calc(-50% - 25px), -50%, 0);
  z-index: 1;
}

.lactalk .content {
  flex: 1;
  background: var(--white);
  box-shadow: 15px 15px 36px 0 rgb(245, 221, 218);
  padding-top: 64px;
  padding-inline: 32px;
  margin-bottom: 64px;
}

.lactalk .content .block-title {
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.0454545455;
  font-family: var(--fontRegular);
}

.lactalk .content .block-title strong {
  font-family: var(--fontExtraBold);
}

.lactalk .content .text {
  margin-bottom: 16px;
}

.gestion-stress {
  margin-bottom: 120px;
}

.gestion-stress .block-title {
  text-align: center;
  margin-bottom: 40px;
}

.list-programmes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.list-programmes .programme {
  background: var(--redLight);
  min-height: 103px;
  border-radius: 30px;
  transition: 300ms ease-out;
}

.list-programmes .programme:hover {
  transform: translateY(-10px);
}

.list-programmes .programme a,
.list-programmes .programme span {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  gap: 32px;
  padding-inline: 24px;
  color: var(--white);
  text-decoration: none;
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1.1428571429;
  font-family: var(--fontBold);
}

.list-programmes .programme .picto {
  height: 52px;
}

.blog-home {
  margin-bottom: 70px;
}

.blog-home .block-title {
  text-align: center;
  margin-bottom: 56px;
}

.blog-home .slider-home-blog {
  position: relative;
  overflow-x: hidden;
  padding-bottom: 32px;
}

.blog-home .slider-home-blog .swiper-wrapper {
  margin-bottom: 80px;
}

.blog-home .slider-home-blog .swiper-scrollbar {
  --swiper-scrollbar-size: 10px;
  --swiper-scrollbar-bg-color: rgba(255, 255, 255, 0.34);
  --swiper-scrollbar-drag-bg-color: var(--white);
  box-shadow: 10px 10px 15px 0 rgba(237, 144, 120, 0.4);
  position: relative;
  max-width: 75%;
  margin-inline: auto;
  left: auto;
  bottom: auto;
  top: auto;
  cursor: pointer;
}

.blog-home .slider-home-blog .swiper-scrollbar .swiper-scrollbar-drag {
  background: var(--redLight);
}

.blog-home .slider-home-blog .swiper-slide {
  width: 280px;
  text-decoration: none;
  direction: ltr;
  opacity: 0.35;
}

.blog-home .slider-home-blog .swiper-slide.swiper-slide-active {
  opacity: 1;
}

.blog-home .slider-home-blog .swiper-slide img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 30px;
}

.blog-home .slider-home-blog .swiper-slide:not(.swho-all) {
  color: var(--blue);
}

.blog-home .slider-home-blog .swiper-slide:not(.swho-all) .photo {
  margin-bottom: 20px;
}

.blog-home .slider-home-blog .swiper-slide:not(.swho-all) .data {
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.blog-home .slider-home-blog .swiper-slide:not(.swho-all) h3 {
  font-size: 18px;
  font-size: 1.8rem;
  font-family: var(--fontBlack);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.blog-home .slider-home-blog .swiper-slide:not(.swho-all) .excerpt {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.1428571429;
  margin-bottom: 20px;
}

.blog-home .slider-home-blog .swiper-slide.show-all {
  display: grid;
  place-content: center;
  font-size: 28px;
  font-size: 2.8rem;
  font-family: var(--fontBold);
  background: var(--redLight);
  color: var(--white);
  aspect-ratio: 1;
  border-radius: 30px;
}

.reassurance {
  margin-bottom: 70px;
}

.reassurance .block-title {
  text-align: center;
  line-height: 1.0227272727;
  margin-bottom: 64px;
}

.list-certifs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.list-certifs li {
  flex: 1;
  text-align: center;
}

.list-certifs li .picto {
  height: 55px;
  margin-bottom: 16px;
}

.list-certifs li .picto img {
  height: 100%;
}

.list-certifs li .name {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.3333333333;
  font-family: var(--fontBlack);
}

.list-certifs.nb-4 li:last-child {
  grid-column: auto;
  padding-inline: 0;
}

.crosssell .block-title {
  text-align: center;
  margin-bottom: 16px;
}

.crosssell .intro {
  max-width: 610px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 64px;
}

.crosssell .crosssell-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}

.crosssell .crosssell-list li {
  width: 100%;
}

.crosssell .crosssell-list li:hover {
  transform: translateY(-15px);
}

.crosssell .crosssell-list li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 24px;
  color: var(--blue);
  text-decoration: none;
  width: 100%;
  height: 425px;
  border-radius: 30px;
  text-align: center;
  background-position: bottom center;
  background-repeat: no-repeat;
}

.crosssell .crosssell-list li .name {
  font-size: 20px;
  font-size: 2rem;
  font-family: var(--fontExtraBold);
  margin-bottom: 8px;
}

.crosssell .crosssell-list li .logo {
  height: 69px;
  width: auto;
  max-width: 120px;
}

.crosssell .crosssell-list li .logo img {
  display: inline-block;
  height: 100%;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 14px;
  font-size: 1.4rem;
}

.breadcrumb a {
  color: var(--blue);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.top-page {
  background: var(--white);
  padding-top: 32px;
}

.top-page.no-bg {
  background: none;
}

.top-page.vagues {
  margin-bottom: 64px;
}

.top-page .cols {
  flex-direction: column;
}

.top-page .cols .col {
  flex: 1;
}

.top-page .title {
  font-family: var(--fontExtraBold);
  margin-bottom: 8px;
  font-size: 25px;
  font-size: 2.5rem;
}

.top-page .text {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.3571428571;
  padding-right: 40px;
}

.page-template-pg-modulaire .top-page {
  background: none;
}

.top-single-product {
  padding-top: 32px;
}

.produits .title-2 {
  margin-bottom: 24px;
}

.page-template-pg-documentation .produits .title-2 {
  margin-bottom: 40px;
}

.filters {
  flex-direction: column;
  margin-bottom: 100px;
}

.filters .text {
  font-size: 14px;
  font-size: 1.4rem;
}

.filters form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.filters form select {
  width: 100%;
}

.list-produits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 16px;
  margin-bottom: 70px;
}

.list-produits .produit {
  position: relative;
  color: var(--blue);
  font-family: var(--fontBold);
  text-decoration: none;
  transition: 300ms ease-out;
}

.list-produits .produit:hover {
  transform: translateY(-8px);
}

.list-produits .produit:hover h3 svg {
  color: var(--redLight);
}

.list-produits .produit .photo {
  display: grid;
  place-content: center;
  background: var(--white);
  width: 100%;
  aspect-ratio: 1;
  padding: 24px;
  border-radius: 30px;
  box-shadow: 15px 15px 25px 0 var(--pink);
  margin-bottom: 24px;
}

.list-produits .produit .photo img {
  max-height: 110px;
  width: auto;
  margin-inline: auto;
}

.list-produits .produit h3 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-inline: 20px;
  gap: 8px;
}

.list-produits .produit h3 svg {
  display: block;
  width: 12px;
  height: 24px;
  transition: 300ms ease-out;
}

.see-more {
  text-align: center;
  margin-bottom: 100px;
}

.select {
  position: relative;
}

.select select {
  display: flex;
  align-items: center;
  text-align: center;
  background: var(--redLight);
  height: 50px;
  border-radius: 50px;
  font-size: 14px;
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 700;
  min-width: 270px;
  cursor: pointer;
  font-family: var(--fontRegular);
  padding-inline: 16px 24px;
}

.select:before {
  content: "";
  display: block;
  width: 32px;
  height: 25px;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  padding-right: 0;
  background: var(--redLight) url("../images/arrow-bottom.svg") center no-repeat;
  background-size: 8px 4px;
  z-index: 1;
}

.wpcf7-form .row {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
}

.wpcf7-form .row .columns {
  width: 100%;
}

.wpcf7-form .row .columns.small-6 {
  flex-basis: 50%;
}

.wpcf7-form label {
  display: block;
  padding-left: 20px;
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 8px;
  font-weight: 700;
  cursor: pointer;
}

.wpcf7-form label a {
  color: var(--redLight);
}

.wpcf7-form .wpcf7-form-control-wrap {
  width: 100%;
  position: relative;
}

.wpcf7-form .wpcf7-form-control-wrap input,
.wpcf7-form .wpcf7-form-control-wrap textarea {
  width: 100%;
  box-sizing: border-box;
}

.wpcf7-form .wpcf7-form-control-wrap input.wpcf7-form-control,
.wpcf7-form .wpcf7-form-control-wrap textarea.wpcf7-form-control {
  display: flex;
  align-items: center;
  height: 60px;
  padding-inline: 20px;
  border-radius: 30px;
  font-size: 14px;
  font-size: 1.4rem;
}

.wpcf7-form .wpcf7-form-control-wrap textarea.wpcf7-form-control {
  padding-block: 20px;
  height: 180px;
}

.wpcf7-form .select select {
  background: var(--white);
  color: var(--blue);
  text-align: left;
  padding-inline: 20px;
  font-weight: 400;
  width: 100%;
  height: 60px;
}

.wpcf7-form .select:before {
  transform: none;
  right: 4px;
  background-color: var(--white);
  background-image: url("../images/arrow-bottom-red.svg");
}

.wpcf7-form .check-box-confidentiality {
  margin-bottom: 24px;
}

.wpcf7-form .check-box-confidentiality label {
  display: flex;
  gap: 8px;
  padding-left: 0;
  position: relative;
  --_taille: 16px;
}

.wpcf7-form .check-box-confidentiality label input[type=checkbox] {
  display: block;
  width: var(--_taille);
  height: var(--_taille);
}

.wpcf7-form .submit {
  text-align: center;
  margin-bottom: 24px;
}

.wpcf7-form .mentions {
  font-size: 10px;
  font-size: 1rem;
}

.wpcf7-form .wpcf7-not-valid-tip {
  color: var(--redLight);
  padding-left: 20px;
  padding-top: 8px;
}

form.invalid .wpcf7-response-output,
form.unaccepted .wpcf7-response-output {
  border-color: var(--redLight) !important;
  color: var(--redLight) !important;
  text-align: center;
}

.top-single-product {
  margin-bottom: 40px;
}

.top-single-product .cols {
  flex-direction: column;
  gap: 24px;
}

.top-single-product .gallery .photo {
  width: 100%;
  height: 370px;
  background: var(--white);
  border-radius: 30px;
  margin-bottom: 16px;
}

.top-single-product .gallery .photo .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  aspect-ratio: 560/370;
}

.top-single-product .gallery .photo .swiper-slide img {
  display: block;
  max-height: 90%;
  width: auto;
  margin-inline: auto;
}

.top-single-product .gallery .photo.thumbnail {
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-single-product .gallery .photo.thumbnail img {
  display: block;
  max-height: 90%;
  width: auto;
  margin-inline: auto;
}

.top-single-product .gallery .thumbs-photos .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 66px;
  height: 66px;
  border-radius: 10px;
  border: 1px solid transparent;
  overflow: hidden;
  background: var(--white);
}

.top-single-product .gallery .thumbs-photos .swiper-slide:first-child {
  margin-left: auto;
}

.top-single-product .gallery .thumbs-photos .swiper-slide img {
  max-width: 80%;
  max-height: 90%;
  width: auto;
  height: auto;
  object-fit: cover;
}

.top-single-product .gallery .thumbs-photos .swiper-slide.swiper-slide-thumb-active {
  border-color: var(--redLight);
}

.top-single-product .gallery .thumbs-photos .swiper-button-prev,
.top-single-product .gallery .thumbs-photos .swiper-button-next {
  --swiper-navigation-color: var(--redLight);
}

.top-single-product .gallery .thumbs-photos .swiper-button-prev:after,
.top-single-product .gallery .thumbs-photos .swiper-button-next:after {
  text-shadow: 1px 1px 8px var(--blue);
}

.top-single-product .product-specifications {
  flex: 1;
}

.top-single-product .product-specifications .product-name {
  font-size: 44px;
  font-size: 4.4rem;
  font-family: var(--fontExtraBold), sans-serif;
  line-height: 1.0681818182;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.top-single-product .product-specifications .list-specifications {
  margin-bottom: 32px;
}

.top-single-product .product-specifications .list-specifications li {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--redLight);
  margin-bottom: 8px;
  padding-top: 8px;
}

.top-single-product .product-specifications .list-specifications li:first-child {
  border: 0;
  padding-top: 0;
}

.top-single-product .product-specifications .list-specifications li strong {
  white-space: nowrap;
}

.top-single-product .product-specifications .product-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bottom {
  margin-bottom: 100px;
}

.bottom .product-action {
  text-align: center;
  margin-bottom: 50px;
}

.accordeon {
  list-style: none;
  padding: 0;
  margin: 0;
}

.accordeon > li.open .accordeon-btn:after {
  transform: rotate(0);
}

.accordeon-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  background-color: transparent;
  color: var(--blue);
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 30px;
  font-size: 3rem;
  font-family: var(--fontExtraBold);
  transition: background-color 0.3s ease;
  margin-bottom: 40px;
}

.accordeon-btn:after {
  content: "";
  display: block;
  background: url("../images/arrow-up-blue.svg") center no-repeat;
  width: 17px;
  height: 9px;
  transition: transform 300ms ease-out;
  transform: rotateX(180deg);
}

.accordeon-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  font-size: 18px;
  font-size: 1.8rem;
}

.accordeon-content p {
  padding-top: 24px;
  margin-bottom: 24px;
  font-size: 16px;
  font-size: 1.6rem;
}

.accordeon-content p a {
  color: var(--red);
}

.accordeon-content p:empty {
  display: none;
}

.accordeon-content p:first-child {
  border: 0;
  padding-top: 0;
}

.accordeon > li {
  margin-bottom: 64px;
}

.accordeon-content.open {
  max-height: 150px;
  /* ajustez la hauteur selon vos besoins */
}

.posts-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(312px, 1fr));
  gap: 50px;
  margin-bottom: 64px;
}

.posts-list .post a {
  color: var(--blue);
  text-decoration: none;
}

.posts-list .post a:hover img {
  scale: 1.1;
}

.posts-list .post .photo {
  aspect-ratio: 1;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 24px;
}

.posts-list .post .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 500ms ease-out;
}

.posts-list .post .date {
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.posts-list .post h3 {
  text-transform: uppercase;
  font-family: var(--fontBlack);
  margin-bottom: 8px;
}

.posts-list .post .excerpt {
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.posts-list .post .terms {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.posts-list .post .terms span {
  display: flex;
  align-items: center;
  padding-inline: 8px;
  border: 1px solid var(--blue);
  height: 32px;
  font-family: var(--fontBold);
  border-radius: 32px;
}

.blog-filters {
  margin-bottom: 48px;
}

.blog-filters .title {
  margin-bottom: 20px;
}

.blog-filters ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-filters ul li:first-child a {
  color: var(--blue);
}

.blog-filters ul li a {
  display: flex;
  align-items: center;
  height: 40px;
  color: var(--redLight);
  border: 1px solid currentColor;
  padding-inline: 8px;
  border-radius: 40px;
  font-size: 14px;
  font-size: 1.4rem;
  font-family: var(--fontBold);
  text-decoration: none;
  transition: 300ms ease-out;
}

.blog-filters ul li a.active,
.blog-filters ul li a:hover {
  background: var(--redLight);
  color: var(--white);
}

.produits .action {
  text-align: center;
  margin-bottom: 100px;
}

.produits .no-result {
  text-align: center;
  padding-top: 40px;
  margin-bottom: 80px;
}

.single .metas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 40px;
}

.single .metas > span:first-child {
  white-space: nowrap;
}

.single .metas .thematiques {
  display: flex;
  flex-wrap: wrap;
}

.single .metas .thematiques a {
  margin-left: 5px;
  color: var(--blue);
  text-decoration: none;
  font-family: var(--fontBold);
}

.single .metas .thematiques a:hover {
  text-decoration: underline;
}

.single .wysiwyg {
  margin-bottom: 50px;
}

.single .wysiwyg.vagues {
  margin-top: 80px;
  margin-bottom: 80px;
}

.single .wysiwyg h2 {
  font-size: 25px;
  font-size: 2.5rem;
  font-family: var(--fontExtraBold);
  margin-bottom: 10px;
}

.single .wysiwyg h2 strong {
  font-family: var(--fontExtraBold);
}

.single .wysiwyg h3 {
  font-size: 18px;
  font-size: 1.8rem;
  font-family: var(--fontBlack);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.single .wysiwyg h6 u {
  text-decoration: none;
}

.single .wysiwyg a {
  color: var(--red);
}

.single .wysiwyg a[href^="#"] {
  text-decoration: none;
}

.single .wysiwyg a[href^="#"]:hover {
  text-decoration: underline;
}

.single .module-block-filet-separation {
  margin: 0 auto 50px auto;
  border-bottom: solid 1px var(--blue);
}

.single .module-block-video {
  margin-bottom: 50px;
}

.single .module-block-video iframe {
  display: block;
  margin-inline: auto;
}

.single .module-block-legende {
  margin-bottom: 50px;
}

.single .module-block-image {
  margin: 0 auto 50px auto;
}

.single .module-block-image img {
  aspect-ratio: 16/9;
  max-height: 400px;
  border-radius: 30px;
  object-fit: cover;
  margin-inline: auto;
  display: block;
}

.single .module-block-slider {
  margin-bottom: 50px;
}

.single .module-block-slider .owl-stage {
  display: flex;
  align-items: center;
}

.single .module-block-slider .owl-item {
  display: flex;
  height: 100%;
}

.single .module-block-slider .owl-item .module-block-slider__item {
  margin-inline: auto;
}

.single .module-block-slider img {
  border-radius: 30px;
  height: 300px;
  width: auto;
  object-fit: cover;
}

.single .module-block-highlight {
  background: var(--redLight);
  color: var(--white);
  border-radius: 30px;
  margin-bottom: 40px;
  padding: 24px 32px 32px;
  text-align: center;
}

.single .module-block-highlight .module-block-highlight__title {
  line-height: 1.1363636364;
  margin-bottom: 32px;
  font-family: var(--fontRegular);
  text-transform: uppercase;
}

.single .module-block-highlight .module-block-highlight__title strong {
  font-family: var(--fontExtraBold);
  display: block;
}

.single .module-block-highlight .module-block-highlight__description p {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
}

.single .module-block-highlight .module-block-highlight__description a {
  color: var(--white);
}

.single .back {
  display: flex;
  justify-content: center;
  gap: 32px;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 24px;
}

.single .container-single {
  --container-width: 900px;
}

.search-results {
  margin-bottom: 32px;
}

.search-results .page-interne .container + .container {
  display: flex;
  flex-direction: column;
}

.search-results .page-interne .container + .container .page-title {
  order: -1;
}

.search-results .results {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}

.search-results .search-type {
  font-size: 24px;
  font-size: 2.4rem;
  font-family: var(--fontExtraBold);
  margin-bottom: 16px;
  color: var(--redLight);
}

.search-results .result {
  display: grid;
  text-align: center;
}

.search-results .result a {
  color: var(--blue);
  text-decoration: none;
}

.search-results .result a:hover img {
  scale: 1.1;
}

.search-results .result .photo {
  height: 150px;
  background: url("../images/logo-lactium.svg") center no-repeat;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 30px;
}

.search-results .result .photo.no-photo {
  opacity: 0.1;
}

.search-results .result .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 300ms ease-out;
}

.search-results .result h3 {
  font-family: var(--fontExtraBold);
  font-size: 18px;
  font-size: 1.8rem;
}

.search-results .result .highlight {
  position: relative;
  font-family: var(--fontExtraBold);
}

.no-results-search .page-header {
  margin-bottom: 0;
}

.pagination {
  text-align: center;
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.pagination a,
.pagination span {
  color: var(--blue);
  font-family: var(--fontBold);
  text-decoration: none;
}

.pagination a:hover,
.pagination span:hover {
  text-decoration: underline;
}

.pagination .current {
  color: var(--redLight);
}

.page-template-pg-lactalk {
  overflow-x: hidden;
}

.videos-list .saison {
  margin-bottom: 110px;
}

.videos-list .num-saison {
  font-size: 44px;
  font-size: 4.4rem;
  color: var(--redLight);
  margin-bottom: 24px;
}

.videos-list .num-saison strong {
  font-family: var(--fontExtraBold);
}

.videos-list .slider-videos {
  position: relative;
}

.videos-list .slider-videos .swiper-wrapper {
  margin-bottom: 80px;
}

.videos-list .slider-videos .swiper-scrollbar {
  --swiper-scrollbar-size: 10px;
  --swiper-scrollbar-bg-color: rgba(255, 255, 255, 0.34);
  --swiper-scrollbar-drag-bg-color: var(--white);
  box-shadow: 10px 10px 15px 0 rgba(237, 144, 120, 0.4);
  position: relative;
  max-width: 90%;
  margin-inline: auto;
  left: auto;
  bottom: auto;
  top: auto;
  cursor: pointer;
}

.videos-list .slider-videos .swiper-scrollbar .swiper-scrollbar-drag {
  background: var(--redLight);
}

.videos-list .swiper-slide {
  width: 312px;
}

.videos-list .swiper-slide a {
  color: var(--blue);
  text-decoration: none;
}

.videos-list .swiper-slide .photo {
  margin-bottom: 20px;
  position: relative;
  height: 285px;
}

.videos-list .swiper-slide .photo:before {
  content: url("../images/picto-youtube.svg");
  display: block;
  width: 56px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(calc(-50% - 10px), -50%, 0);
  z-index: 1;
}

.videos-list .swiper-slide .photo img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  clip-path: path("M285.459 116.378a4.116 4.116 0 0 1-4.017-3.3A142.255 142.255 0 0 0 141 .005C64.7.653 1.848 62.5.041 138.785A142.233 142.233 0 0 0 281.3 172.072a4.965 4.965 0 0 1 4.836-3.971 25.869 25.869 0 0 0 25.7-28.8c-1.456-13.2-13.1-22.921-26.378-22.921");
}

.videos-list .swiper-slide .date {
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.videos-list .swiper-slide h3 {
  font-size: 18px;
  font-size: 1.8rem;
  font-family: var(--fontBlack);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.videos-list .swiper-slide h3 span {
  display: block;
  font-family: var(--fontRegular);
}

.videos-list .swiper-slide .excerpt {
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.videos-list .swiper-slide .terms {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.videos-list .swiper-slide .terms span {
  display: flex;
  align-items: center;
  padding-inline: 8px;
  border: 1px solid var(--blue);
  height: 32px;
  font-family: var(--fontBold);
  border-radius: 32px;
}

.single-videos .page-interne .container,
.single-videos .page-interne .container-margin {
  --container-width: 969px;
}

.single-videos h1 {
  font-weight: 400;
}

.single-videos h1 strong {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
}

.single-videos .metas {
  flex-direction: column;
  align-items: start;
}

.single-videos .wysiwyg p {
  margin-bottom: 16px;
}

.single-videos .video-player {
  background: var(--redLight);
  border-radius: 30px;
  padding: 24px;
  margin-bottom: 48px;
}

.single-videos .video-player iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 15px;
}

.single-videos .navigation-videos {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

.single-videos .navigation-videos .navigation-items {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.single-videos .navigation-videos .navigation-item {
  text-align: center;
  max-width: 25%;
}

.single-videos .navigation-videos .navigation-item.next-item {
  margin-left: auto;
}

.single-videos .navigation-videos .navigation-item a {
  margin-bottom: 10px;
}

.single-videos .navigation-videos .navigation-item p {
  font-size: 14px;
  font-size: 1.4rem;
}

.single-videos .navigation-videos .navigation-item p strong {
  display: block;
  text-transform: uppercase;
  font-family: var(--fontBlack);
}

.single-videos .navigation-videos .back-videos {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.contact-single {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
  gap: 8px;
  font-size: 14px;
  font-size: 1.4rem;
}

.contact-single p {
  font-size: 16px;
  font-size: 1.6rem;
}

.list-docs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.list-docs li {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--blue);
  padding-top: 16px;
}

.list-docs li:first-child {
  border: 0;
  padding-top: 0;
}

.list-docs li .doc-name {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
}

.list-docs li .doc-name:before {
  content: url("../images/picto-pdf.svg");
  display: block;
  width: 32px;
  height: 33px;
}

.list-docs li .btn {
  padding-inline: 24px;
}

.list-docs li .form {
  display: none;
  background: var(--redLight);
  color: var(--white);
  border-radius: 30px;
  padding: 24px 32px 0;
  max-width: 480px;
}

.list-docs li .form .text {
  font-weight: 700;
  padding-inline: 40px;
  text-align: center;
  margin-bottom: 8px;
}

.list-docs li .form form label {
  padding-left: 0;
  margin-bottom: 16px;
}

.list-docs li .form form .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
}

.list-docs li .form form .wpcf7-acceptance label input {
  width: 16px;
  margin-top: 3px;
}

.list-docs li .form form .submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.list-docs li .form .wpcf7-list-item {
  margin-left: 0;
}

.list-docs li .form .wpcf7-not-valid-tip {
  color: var(--white);
  font-style: italic;
}

.list-docs li.active {
  color: var(--redLight);
}

.list-docs li.active .doc-link {
  display: none;
}

.list-docs li.active .form {
  display: block;
}

.block-text-title {
  margin-bottom: 20px;
}

.block-text-title .block-title {
  margin-bottom: 24px;
}

.block-text-title .cols {
  flex-direction: column;
}

.block-text-title .cols .col p {
  margin-bottom: 16px;
}

.block-text-title .cols .col p a {
  color: var(--red);
}

.block-text-title .cols .col table {
  border: 1px solid var(--red);
  border-collapse: collapse;
}

.block-text-title .cols .col table th,
.block-text-title .cols .col table td {
  border: 1px solid var(--red);
  padding: 4px 8px;
}

.block-text-title .cols .col h2 {
  font-size: 44px;
  font-size: 4.4rem;
}

.block-text-title .cols .col h3 {
  font-size: 40px;
  font-size: 4rem;
}

.block-text-title .cols .col h4 {
  font-size: 30px;
  font-size: 3rem;
}

.block-text-title .cols .col h5 {
  font-size: 24px;
  font-size: 2.4rem;
  font-family: var(--fontBold);
}

.block-text-title .cols .col h6 {
  font-size: 14px;
  font-size: 1.4rem;
}

.block-text-title .button.center {
  text-align: center;
}

.block-text-title .button.right {
  text-align: right;
}

.block-text-title.red .content {
  background: var(--redLight);
  border-radius: 30px;
  color: var(--white);
  text-align: center;
  padding: 24px;
}

.block-text-title.red .content a {
  color: var(--white) !important;
}

.block-text-title .content-with-photo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.block-text-title .content-with-photo.photo-anim {
  overflow-x: hidden;
}

.block-text-title .content-with-photo .photo {
  width: 100%;
  position:relative;
  border-radius: 30px;
  overflow: hidden;
}
.module-block-image .photo{
position:relative;;
}
 .photo .button{
	position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}
 .photo .button a{
    background: transparent;
    border: 2px solid white;
}
 .photo .button a:hover{
    background: white;
    border: 2px solid white;
    color:var(--redLight);
}


.block-text-title .content-with-photo .photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.block-text-title .content-with-photo .text {
  flex: 1;
}

.block-text-title .content-with-photo .text .block-title {
  line-height: 1.1363636364;
}

.block-accordion {
  margin-bottom: 100px;
}

.block-accordion .block-title {
  margin-bottom: 50px;
}

.block-accordion .accordeon > li {
  border-top: 1px solid var(--blue);
  margin-bottom: 24px;
  padding-top: 24px;
}

.block-accordion .accordeon > li:first-child {
  border: 0;
  padding-top: 0;
}

.block-accordion .accordeon .accordeon-btn {
  align-items: flex-start;
  font-family: var(--fontBold);
  margin-bottom: 16px;
  padding-left: 0;
  font-size: 16px;
  font-size: 1.6rem;
}

.block-accordion .accordeon .accordeon-btn span {
  flex: 1;
}

.block-accordion .accordeon .accordeon-btn:after {
  margin-top: 5px;
}

.block-accordion .accordeon .accordeon-content {
  font-size: 16px;
  font-size: 1.6rem;
}

.block-bandeau-pictos,
.block-bandeau-blocks-pictos {
  margin-bottom: 100px;
}

.block-bandeau-pictos .block-title,
.block-bandeau-blocks-pictos .block-title {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 40px;
}

.block-bandeau-chiffres {
  margin-bottom: 100px;
}

.block-bandeau-chiffres .block-title {
  margin-bottom: 32px;
  margin-inline: auto;
  text-align: center;
}

.block-bandeau-chiffres .list-certifs .chiffre {
  color: var(--redLight);
  font-family: var(--fontExtraBold);
  font-size: 40px;
  font-size: 4rem;
  margin-bottom: 16px;
}

.block-bandeau-chiffres .list-certifs li:last-child {
  grid-column: auto;
  padding-inline: 0;
}

.block-liste-puces .block-title {
  margin-bottom: 24px;
}

@media (min-width: 831px) {
  body {
    min-height: 100%;
  }

  .page-interne {
    padding-top: 64px;
  }

  .block-title {
    font-size: 44px;
    font-size: 4.4rem;
    line-height: 1.3636363636;
  }

  .block-title h2 {
    font-size: 44px;
    font-size: 4.4rem;
  }

  .block-title h3 {
    font-size: 40px;
    font-size: 4rem;
  }

  .block-title h4 {
    font-size: 30px;
    font-size: 3rem;
  }

  .block-title h5 {
    font-size: 24px;
    font-size: 2.4rem;
  }

  .page-title {
    font-size: 50px;
    font-size: 5rem;
  }

  .title-2 {
    font-size: 44px;
    font-size: 4.4rem;
  }

  header .logo a,
  header .logo > span {
    gap: 8px;
  }

  header .logo img {
    width: 147px;
  }

  header .logo span {
    font-size: 20px;
    font-size: 2rem;
  }

  header .menu-nav .menu .submenu {
    display: none;
    background: var(--white);
    border-radius: 16px;
    position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
  }

  header nav .menu {
    padding-top: 24px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 24px;
  }

  body.home header {
    margin-bottom: 0;
  }

  footer .top {
    flex-direction: row;
    justify-content: space-between;
  }

  footer .top .socials {
    gap: 8px;
  }

  footer .bottom {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    border-top: 1px solid currentColor;
  }

  footer .bottom .copyright {
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
  }

  footer .bottom .menu-footer ul {
    gap: 40px;
    flex-direction: row;
    margin-left: auto;
  }

  footer .bottom .menu-footer ul li:last-child a {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  footer .bottom .menu-footer ul a {
    text-align: left;
  }

  .home .switcher {
    margin-bottom: 30px;
  }

  .prehome .intro {
    margin-top: -150px;
    margin-bottom: 150px;
  }

  .prehome .univers-choice .container {
    --container-width: 968px;
  }

  .prehome .univers-choice .photo img {
    height: 365px;
  }

  .prehome .univers-choice a {
    font-size: 35px;
    font-size: 3.5rem;
  }

  .hero {
    flex-direction: row;
    gap: 24px;
    padding-bottom: 100px;
  }

  .hero .photo {
    aspect-ratio: 722/500;
    width: 720px;
  }

  .hero .texts h2 {
    font-size: 50px;
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 24px;
  }

  .hero .texts .text {
    padding-left: 40px;
    margin-bottom: 40px;

  }

  .origine .cols,
  .block-text-pictos .cols {
    flex-direction: row;
  }

  .origine .cols .left,
  .block-text-pictos .cols .left {
    max-width: 605px;
  }

  .origine .cols .block-title,
  .block-text-pictos .cols .block-title {
    margin-bottom: 24px;
  }

  .vagues {
    margin-block: 100px 200px;
  }

  .vagues:before {
    margin-bottom: -50px;
  }

  .vagues.block-text-title,
  .vagues.block-accordion,
  .vagues.block-bandeau-pictos,
  .vagues.block-bandeau-chiffres,
  .vagues.block-bandeau-blocks-pictos,
  .vagues.block-liste-puces,
  .vagues.block-text-pictos {
    margin-block: 100px 130px;
  }

  .vagues.vagues-after {
    padding-bottom: 150px;
  }

  .page-modulaire .vagues:after {
    margin-top: -100px;
  }

  .video-home {
    padding-block: 64px;
  }

  .video-home .content-video {
    gap: 32px;
    padding-block: 56px;
  }

  .products-home .slider-home-products .swiper-scrollbar {
    max-width: 720px;
  }

  .lactalk {
    padding-block: 64px;
  }

  .lactalk .cols {
    flex-direction: row;
  }

  .lactalk .photo {
    width: 560px;
    height: 510px;
    position: absolute;
    max-width: none;
  }

  .lactalk .photo img {
    clip-path: path("M510.531 208.136a7.362 7.362 0 0 1-7.184-5.91C479.132 86.072 375.765-1.041 252.176.01 115.711 1.168 3.306 111.779.073 248.211c-3.4 143.32 111.766 260.571 254.319 260.571 122.186 0 224.184-86.171 248.705-201.038a8.88 8.88 0 0 1 8.649-7.1 46.265 46.265 0 0 0 45.961-51.512c-2.6-23.6-23.435-40.993-47.176-40.993");
  }

  .lactalk .content {
    border-radius: 30px;
    padding: 96px 40px 80px 500px;
    min-height: 565px;
    margin-left: 165px;
    margin-bottom: 0;
  }

  .lactalk .content .block-title {
    margin-bottom: 30px;
  }

  .lactalk .content .text {
    margin-bottom: 50px;
  }

  .list-programmes {
    grid-template-columns: repeat(4, 272px);
    gap: 16px;
  }

  .list-programmes .programme {
    height: 163px;
  }

  .list-programmes .programme a,
  .list-programmes .programme span {
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding-inline: 0;
    text-align: center;
  }

  .blog-home {
    margin-bottom: 130px;
  }

  .blog-home .slider-home-blog .swiper-scrollbar {
    max-width: 720px;
  }

  .blog-home .slider-home-blog .swiper-slide {
    width: 312px;
    opacity: 1;
  }

  .blog-home .slider-home-blog .swiper-slide img {
    width: 100%;
    height: 312px;
  }

  .blog-home .slider-home-blog .swiper-slide:not(.swho-all) .photo {
    margin-bottom: 24px;
  }

  .blog-home .slider-home-blog .swiper-slide:not(.swho-all) .excerpt {
    margin-bottom: 0;
  }

  .blog-home .slider-home-blog .swiper-slide:not(.swho-all) .action {
    display: none;
  }

  .reassurance {
    margin-bottom: 200px;
  }

  .list-certifs {
    gap: 24px;
    display: flex;
    justify-content: space-between;
  }

  .list-certifs li .picto {
    margin-bottom: 32px;
  }

  .crosssell .crosssell-list {
    flex-direction: row;
    gap: 14px;
  }

  .crosssell .crosssell-list li {
    flex: 1;
    transition: transform 350ms ease-out;
  }

  .top-page {
    padding-top: 64px;
  }

  .top-page.vagues {
    margin-bottom: 130px;
  }

  .top-page.vagues:after {
    margin-bottom: -4.1vw;
    transform: translateY(40%);
  }

  .top-page .cols {
    flex-direction: row;
  }

  .top-single-product {
    padding-top: 64px;
  }

  .page-template-pg-lactalk .top-page:after {
    margin-top: -32px;
  }

  .produits {
    padding-top: 1vw;
  }

  .filters {
    flex-direction: row;
  }

  .filters .text {
    padding-right: 60px;
  }

  .filters form {
    flex-direction: row;
  }

  .list-produits {
    grid-template-columns: repeat(4, 272px);
    gap: 70px 16px;
  }

  .list-produits .produit .photo img {
    max-height: 200px;
  }

  .list-produits .produit h3 {
    align-items: center;
  }

  .wpcf7-form .row {
    gap: 16px;
    flex-direction: row;
  }

  .wpcf7-form .submit {
    text-align: right;
  }

  .top-single-product {
    margin-bottom: 88px;
  }

  .top-single-product .cols {
    flex-direction: row;
    gap: 100px;
  }

  .top-single-product .gallery {
    width: 560px;
  }

  .top-single-product .product-specifications {
    padding-top: 32px;
  }

  .top-single-product .product-specifications .product-name {
    margin-bottom: 8px;
  }

  .top-single-product .product-specifications .list-specifications li {
    display: block;
  }

  .top-single-product .product-specifications .list-specifications li strong {
    margin-right: 4px;
  }

  .top-single-product .product-specifications .product-action {
    flex-direction: row;
    gap: 0;
  }

  .accordeon-btn {
    font-size: 44px;
    font-size: 4.4rem;
  }

  .posts-list .post .excerpt {
    margin-bottom: 8px;
  }

  .blog-filters ul {
    gap: 10px;
  }

  .blog-filters ul li a {
    border-width: 2px;
    padding-inline: 16px;
    height: 50px;
    border-radius: 50px;
    font-size: 16px;
    font-size: 1.6rem;
  }

  .single .metas {
    flex-direction: row;
  }

  .single .metas .thematiques {
    display: block;
  }

  .single .wysiwyg.vagues {
    margin-top: 200px;
    margin-bottom: 150px;
  }

  .single .module-block-highlight {
    margin-bottom: 80px;
    padding: 48px 80px 56px 48px;
  }

  .single .module-block-highlight .module-block-highlight__description p {
    padding-inline: 100px;
  }

  .search-results .results {
    grid-template-columns: repeat(4, 1fr);
  }

  .videos-list .slider-videos .swiper-scrollbar {
    max-width: 720px;
  }

  .single-videos .metas {
    align-items: center;
    flex-direction: row;
  }

  .single-videos .video-player {
    padding: 72px 80px;
  }

  .single-videos .navigation-videos {
    margin-bottom: 100px;
  }

  .list-docs {
    margin-bottom: 100px;
  }

  .list-docs li {
    flex-direction: row;
  }

  .list-docs li .doc-name {
    font-size: 20px;
    font-size: 2rem;
  }

  .list-docs li .doc-link {
    margin-left: auto;
  }

  .list-docs li .btn {
    padding-inline: 64px;
  }

  .list-docs li .form {
    margin-left: auto;
  }

  .block-text-title {
    margin-bottom: 40px;
  }

  .block-text-title .cols {
    flex-direction: row;
  }

  .block-text-title.cols-2 .block-title {
    max-width: 60%;
  }

  .block-text-title.red .content {
    padding: 48px 80px;
  }

  .block-text-title.red .content .block-title {
    padding-inline: 100px;
  }

  .block-text-title .content-with-photo {
    flex-direction: row;
    gap: 100px;
  }

  .block-text-title .content-with-photo.reverse {
    flex-direction: row-reverse;
  }

  .block-text-title .content-with-photo.reverse .content {
    padding-left: 82px;
    padding-right: 0;
  }

  .block-text-title .content-with-photo .photo {
    width: 480px;
  }

  .block-text-title .content-with-photo .text {
    padding-right: 82px;
  }

  .block-accordion .accordeon .accordeon-btn {
    font-size: 18px;
    font-size: 1.8rem;
  }

  .block-bandeau-pictos .block-title,
  .block-bandeau-blocks-pictos .block-title {
    max-width: 66%;
  }

  .block-bandeau-chiffres .block-title {
    max-width: 66%;
  }

  .block-bandeau-chiffres .list-certifs .chiffre {
    font-size: 60px;
    font-size: 6rem;
  }

  .not-desktop {
    display: none;
  }
}

@media only screen and (min-width: 1200px) {
  :root {
    --container-width: 1135px;
  }
}

@media (max-width: 849px) {
  html {
    font-size: 10px;
  }
}

@media (max-width: 830px) {
  .page-interne {
    padding-inline: 8px;
  }

  header {
    min-height: 133px;
  }
  header .contact-flottant {
  	width: 60px;
  	height: 60px;
    padding-left: 5px;
  }
  header .contact-flottant span{
  	display : none ;
  }
  header .contact-flottant img{
  	display : block ;

  }

  header .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  header .toggle-menu {
    position: absolute;
    top: 72px;
    right: 48px;
    display: block;
    width: 42px;
    height: 26px;
    background: url("../images/picto-menu.svg") center no-repeat;
  }

  .menu-open header .toggle-menu {
    display: none;
  }

  header .close-menu {
    position: absolute;
    top: 72px;
    right: 54px;
    display: none;
    width: 30px;
    height: 30px;
    background: url("../images/picto-close.svg") center no-repeat;
  }

  .menu-open header .close-menu {
    display: block;
  }

  header .univers-switcher {
    display: none;
  }

  header .right {
    display: block;
  }

  header nav {
    display: flex;
    position: absolute;
    z-index: 2;
    inset: 125px 16px auto 16px;
    border-radius: 16px;
    background: var(--white);
    padding: 60px 16px 20px 16px;
    transition: transform 500ms ease-out;
    transform: translateY(-200%);
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
  }

  header nav .univers-switcher {
    position: relative;
    top: auto;
    right: auto;
    display: block;
  }

  header nav .menu-nav {
    width: 100%;
  }

  header nav .menu-nav .menu {
    display: flex;
    flex-direction: column;
  }

  header nav .menu-nav .menu > li {
    width: 100%;
    border-top: 1px solid var(--blue);
  }

  header nav .menu-nav .menu > li:first-child {
    border: 0;
  }

  header nav .menu-nav .menu > li > a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
  }

  .menu-open header nav {
    transform: translateY(0);
  }

  body:not(.univers-selected) header .logo,
  body.home header .logo {
    position: relative;
    left: auto;
    transform: none;
  }

  body:not(.univers-selected) header .logo a > span span,
  body.home header .logo a > span span {
    position: absolute;
    top: 50%;
    left: 140px;
    white-space: nowrap;
    transform: translateY(-50%);
  }

  body:not(.univers-selected) header .right,
  body.home header .right {
    margin-left: auto;
  }

  .prehome .intro {
    margin-top: 20px;
  }

  .prehome .intro br {
    display: none;
  }

  .video-home {
    margin-bottom: 70px;
  }

  .video-home .content-video .block-title {
    font-size: 18px;
    font-size: 1.8rem;
  }

  .lactalk {
    padding-inline: 0;
  }

  .lactalk .content .cta {
    margin-bottom: -25px;
  }

  .list-certifs li:last-child {
    grid-column: 1/span 2;
    padding-inline: 80px;
  }

  .single .metas .sep {
    display: none;
  }

  .videos-list .num-saison strong {
    display: block;
  }

  .videos-list .num-saison span {
    display: none;
  }

  .videos-list .slider-videos {
    overflow-x: hidden;
  }

  .single-videos .metas .sep {
    display: none;
  }

  .single-videos .navigation-videos {
    flex-direction: column-reverse;
  }

  .single-videos .navigation-videos .back-videos {
    position: relative;
    margin-inline: auto;
    transform: none;
    top: auto;
    left: auto;
  }

  .single-videos .navigation-videos .navigation-items {
    margin-bottom: 32px;
  }

  .single-videos .navigation-videos .navigation-item {
    flex: 1;
    max-width: none;
  }

  .single-videos .navigation-videos .navigation-item p {
    font-size: 13px;
    font-size: 1.3rem;
    text-transform: uppercase;
  }

  .single-videos .navigation-videos .navigation-item p strong {
    display: inline;
  }

  .block-text-title .cols .col iframe {
    max-width: 100%;
    aspect-ratio: 16/9;
  }

  .not-mobile {
    display: none !important;
  }
}

@media (min-width: 769px) and (max-width: 830px) {
  .hero .photo {
    aspect-ratio: 722/400;
  }

  .hero .texts {
    text-align: left;
  }

  .hero .texts .text {
    padding-left: 0;
  }

  .list-programmes {
    grid-template-columns: repeat(2, 1fr);
  }

  .list-certifs {
    grid-template-columns: repeat(6, 1fr);
  }

  .list-certifs li {
    grid-column: span 2;
  }

  .list-certifs li:nth-child(4) {
    grid-column: 2/span 2;
  }

  .list-certifs li:nth-child(5) {
    grid-column: 4/span 2;
    padding-inline: 0;
  }

  .crosssell .crosssell-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .crosssell .crosssell-list li {
    width: 47.7%;
  }

  .search-results .results {
    grid-template-columns: repeat(2, 1fr);
  }

  .single-videos .navigation-videos .navigation-item p {
    padding-inline: 50px;
  }

  .block-text-title .content-with-photo .photo {
    aspect-ratio: 480/250;
  }

  .block-bandeau-chiffres .list-certifs li:last-child {
    grid-column: 3/span 2;
  }
}

@media (min-width: 600px) and (max-width: 999px) {
  .single .module-block-slider .owl-stage {
    justify-content: center;
  }
}

/* Disclaimer */
.disclaimer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.disclaimer-modal {
    background: var(--blue);
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    color: white;
    border:1px solid var(--redLight);
}

.disclaimer-modal h2 {
    font-size: 24px;
    margin-bottom: 1.5rem;
}

.disclaimer-modal p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

.btn-agree {
    background: var(--redLight);
    color: white;
    border: 1px solid transparent;
    padding: 12px 32px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.btn-agree:hover {
    background: var(--blue);
    border-color:var(--redLight);
}
.grecaptcha-badge{
	display:none;
}
/*# sourceMappingURL=styles.css.map */