@charset "UTF-8";
:root {
  --transition-base: all 0.3s linear 0s;
}

/* prompt-300 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Prompt";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/prompt/prompt-v10-latin_latin-ext-300.eot"); /* IE9 Compat Modes */
  src: url("../fonts/prompt/prompt-v10-latin_latin-ext-300.eot?#iefix") format("embedded-opentype"), url("../fonts/prompt/prompt-v10-latin_latin-ext-300.woff2") format("woff2"), url("../fonts/prompt/prompt-v10-latin_latin-ext-300.woff") format("woff"), url("../fonts/prompt/prompt-v10-latin_latin-ext-300.ttf") format("truetype"), url("../fonts/prompt/prompt-v10-latin_latin-ext-300.svg#Prompt") format("svg"); /* Legacy iOS */
}
/* prompt-regular - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Prompt";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/prompt/prompt-v10-latin_latin-ext-regular.eot"); /* IE9 Compat Modes */
  src: url("../fonts/prompt/prompt-v10-latin_latin-ext-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/prompt/prompt-v10-latin_latin-ext-regular.woff2") format("woff2"), url("../fonts/prompt/prompt-v10-latin_latin-ext-regular.woff") format("woff"), url("../fonts/prompt/prompt-v10-latin_latin-ext-regular.ttf") format("truetype"), url("../fonts/prompt/prompt-v10-latin_latin-ext-regular.svg#Prompt") format("svg"); /* Legacy iOS */
}
/* prompt-600 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Prompt";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/prompt/prompt-v10-latin_latin-ext-600.eot"); /* IE9 Compat Modes */
  src: url("../fonts/prompt/prompt-v10-latin_latin-ext-600.eot?#iefix") format("embedded-opentype"), url("../fonts/prompt/prompt-v10-latin_latin-ext-600.woff2") format("woff2"), url("../fonts/prompt/prompt-v10-latin_latin-ext-600.woff") format("woff"), url("../fonts/prompt/prompt-v10-latin_latin-ext-600.ttf") format("truetype"), url("../fonts/prompt/prompt-v10-latin_latin-ext-600.svg#Prompt") format("svg"); /* Legacy iOS */
}
/* prompt-700 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Prompt";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/prompt/prompt-v10-latin_latin-ext-700.eot"); /* IE9 Compat Modes */
  src: url("../fonts/prompt/prompt-v10-latin_latin-ext-700.eot?#iefix") format("embedded-opentype"), url("../fonts/prompt/prompt-v10-latin_latin-ext-700.woff2") format("woff2"), url("../fonts/prompt/prompt-v10-latin_latin-ext-700.woff") format("woff"), url("../fonts/prompt/prompt-v10-latin_latin-ext-700.ttf") format("truetype"), url("../fonts/prompt/prompt-v10-latin_latin-ext-700.svg#Prompt") format("svg"); /* Legacy iOS */
}
@font-face {
  font-family: "BrandonGrotesque";
  font-weight: 400;
  src: url("../fonts/BrandonGrotesque/BrandonGrotesqueRegular/BrandonGrotesqueRegular.eot");
  src: url("../fonts/BrandonGrotesque/BrandonGrotesqueRegular/BrandonGrotesqueRegular.eot") format("embedded-opentype"), url("../fonts/BrandonGrotesque/BrandonGrotesqueRegular/BrandonGrotesqueRegular.woff2") format("woff2"), url("../fonts/BrandonGrotesque/BrandonGrotesqueRegular/BrandonGrotesqueRegular.woff") format("woff"), url("../fonts/BrandonGrotesque/BrandonGrotesqueRegular/BrandonGrotesqueRegular.ttf") format("truetype"), url("../fonts/BrandonGrotesque/BrandonGrotesqueRegular/BrandonGrotesqueRegular.svg#BrandonGrotesqueBold") format("svg");
}
@font-face {
  font-family: "BrandonGrotesque";
  font-weight: 500;
  src: url("../fonts/BrandonGrotesque/BrandonGrotesqueMedium/BrandonGrotesqueMedium.eot");
  src: url("../fonts/BrandonGrotesque/BrandonGrotesqueMedium/BrandonGrotesqueMedium.eot") format("embedded-opentype"), url("../fonts/BrandonGrotesque/BrandonGrotesqueMedium/BrandonGrotesqueMedium.woff2") format("woff2"), url("../fonts/BrandonGrotesque/BrandonGrotesqueMedium/BrandonGrotesqueMedium.woff") format("woff"), url("../fonts/BrandonGrotesque/BrandonGrotesqueMedium/BrandonGrotesqueMedium.ttf") format("truetype"), url("../fonts/BrandonGrotesque/BrandonGrotesqueMedium/BrandonGrotesqueMedium.svg#BrandonGrotesqueBold") format("svg");
}
:root {
  --arrow-width: 30px;
  --arrow-spacer: 4px;
  --arrow-plus-spacer: calc(var(--arrow-width) + var(--arrow-spacer));
}

html {
  font-size: 14px;
  font-family: "Prompt", sans-serif;
}

.scroll-disabled {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
li,
span,
p {
  cursor: default;
}

main {
  background-color: #fff;
}
main.bg-gray {
  background-color: #F9F9F9;
}

*::-webkit-scrollbar {
  width: 4px;
  height: 2px;
  border-radius: 2px;
}

*::-webkit-scrollbar-track {
  border-radius: 2px;
  background: #fff;
}

*::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: #000;
}

.container {
  width: min(1440px, 80%);
  max-width: 100%;
  padding-inline: 15px;
  margin-left: auto;
  margin-right: auto;
}

.container-full {
  width: 100%;
}

.container-md {
  width: min(1300px, 80%);
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.container-sm {
  width: min(1200px, 80%);
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.page-template-page-faq .faq-content .container,
.archive-temoignages-section .container,
.single-publications .container-sm,
.single-actualite .container-sm {
  width: min(1200px, 50%);
}

.navigation {
  display: flex;
  align-items: center;
  gap: 100px;
  margin-top: 68px;
}
.navigation .page-number-box,
.navigation .swiper-pagination {
  position: static;
  width: 40px;
  color: var(--000000, #000);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
}
.navigation .buttons {
  display: flex;
  align-items: center;
  gap: 40px;
}
.navigation .buttons .swiper-button-prev {
  position: static;
  margin-top: 0;
  height: auto;
}
.navigation .buttons .swiper-button-prev:after {
  display: none;
}
.navigation .buttons .swiper-button-next {
  position: static;
  margin-top: 0;
  height: auto;
}
.navigation .buttons .swiper-button-next:after {
  display: none;
}
.navigation .arrowPacman {
  overflow: hidden;
  width: var(--arrow-plus-spacer);
}
.navigation .arrowPacman svg {
  height: 30px;
  width: var(--arrow-width);
}
.navigation .arrowPacman svg:last-of-type {
  margin-left: var(--arrow-spacer);
}
.navigation .arrowPacman-clip {
  align-items: center;
  display: flex;
  overflow: hidden;
  transform: translateX(calc(var(--arrow-plus-spacer) * -1));
  width: calc(var(--arrow-plus-spacer) + var(--arrow-width));
}
@-webkit-keyframes pacman {
  to {
    transform: translateX(0);
  }
}
@keyframes pacman {
  to {
    transform: translateX(0);
  }
}
.navigation button {
  border: none;
  background-color: transparent;
  position: relative;
  white-space: nowrap;
}
.navigation button:hover .arrowPacman-clip {
  -webkit-animation-delay: 150ms;
  animation-delay: 150ms;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-name: pacman;
  animation-name: pacman;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.55, 0, 0.21, 1);
  animation-timing-function: cubic-bezier(0.55, 0, 0.21, 1);
}

button.btn {
  background-color: transparent;
  color: inherit;
}

.btn-custom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: var(--transition-base);
  border: none;
  text-transform: uppercase;
  position: relative;
  border-top: 1px solid transparent;
  width: 330px;
  max-width: 100%;
  height: 60px;
  margin-bottom: 30px;
}
.btn-custom a {
  display: inherit;
  align-items: inherit;
  justify-content: inherit;
  transition: var(--transition-base);
  border: none;
  text-transform: uppercase;
  position: relative;
  border-top: 1px solid transparent;
  width: 330px;
  max-width: 100%;
  height: 60px;
}
.btn-custom a strong {
  display: block;
  width: 0;
  text-align: center;
  white-space: nowrap;
  transition: var(--transition-base);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  cursor: pointer;
}
.btn-custom a:before {
  content: "";
  width: 0;
  height: 1px;
  background-color: #000000;
  position: absolute;
  top: 0;
  left: 0;
  transition: var(--transition-base);
}
.btn-custom a:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000000;
  position: absolute;
  bottom: 0;
  left: 0;
}
.btn-custom a:hover strong {
  text-align: center;
  white-space: nowrap;
  width: 100%;
  transition: var(--transition-base);
}
.btn-custom a:hover:before {
  width: 100%;
  transition: var(--transition-base);
}
.btn-custom a.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.btn-custom a.disabled strong {
  cursor: not-allowed;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: var(--transition-base);
  border: none;
  text-transform: uppercase;
}
.btn span {
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  cursor: pointer;
}
.btn.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.btn.disabled span {
  cursor: not-allowed;
}
.btn span {
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  cursor: pointer;
}
.btn.btn-border--red {
  position: relative;
  border-top: 1px solid transparent;
  width: 330px;
  max-width: 100%;
  height: 60px;
}
.btn.btn-border--red span {
  display: block;
  width: 0;
  text-align: center;
  white-space: nowrap;
  transition: var(--transition-base);
  color: #be0404;
}
.btn.btn-border--red:before {
  content: "";
  width: 0;
  height: 1px;
  background-color: #BE0404;
  position: absolute;
  top: 0;
  left: 0;
  transition: var(--transition-base);
}
.btn.btn-border--red:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #BE0404;
  position: absolute;
  bottom: 0;
  left: 0;
}
.btn.btn-border--red:hover span {
  text-align: center;
  white-space: nowrap;
  width: 100%;
  transition: var(--transition-base);
}
.btn.btn-border--red:hover:before {
  width: 100%;
  transition: var(--transition-base);
}
.btn.btn-border--black {
  position: relative;
  border-top: 1px solid transparent;
  width: 330px;
  max-width: 100%;
  height: 60px;
}
.btn.btn-border--black span {
  display: block;
  width: 0;
  text-align: center;
  white-space: nowrap;
  transition: var(--transition-base);
}
.btn.btn-border--black:before {
  content: "";
  width: 0;
  height: 1px;
  background-color: #000000;
  position: absolute;
  top: 0;
  left: 0;
  transition: var(--transition-base);
}
.btn.btn-border--black:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000000;
  position: absolute;
  bottom: 0;
  left: 0;
}
.btn.btn-border--black:hover span {
  text-align: center;
  white-space: nowrap;
  width: 100%;
  transition: var(--transition-base);
}
.btn.btn-border--black:hover:before {
  width: 100%;
  transition: var(--transition-base);
}
.btn.btn-border--white {
  position: relative;
  border-top: 1px solid transparent;
  width: 330px;
  max-width: 100%;
  height: 60px;
}
.btn.btn-border--white span {
  display: block;
  width: 0;
  text-align: center;
  white-space: nowrap;
  transition: var(--transition-base);
}
.btn.btn-border--white:before {
  content: "";
  width: 0;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  transition: var(--transition-base);
}
.btn.btn-border--white:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}
.btn.btn-border--white:hover span {
  text-align: center;
  white-space: nowrap;
  width: 100%;
  transition: var(--transition-base);
}
.btn.btn-border--white:hover:before {
  width: 100%;
  transition: var(--transition-base);
}
.btn:hover {
  transition: var(--transition-base);
}

.title-section {
  color: var(--000000, #000);
  font-family: "Prompt", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 50px;
  position: relative;
}
.title-section:where(h2)::before {
  content: "";
  background-color: #E2E8F2;
  height: 100%;
  width: calc((100vw - 100%) / 2 - 20px);
  position: absolute;
  top: 0;
  left: calc((100vw - 100%) * -0.5);
}

.subtitle-section {
  color: var(--000000, #000);
  font-family: "Prompt", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 300;
  line-height: 40px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin: 0;
}

.plyr .plyr__controls {
  opacity: 0;
  transition: var(--transition-base);
}
.plyr .plyr__controls.active {
  opacity: 1;
  transition: var(--transition-base);
}
.plyr .plyr__control--overlaid {
  background-color: transparent;
  width: 60px;
  height: 60px;
  border-radius: 0;
  padding: 0;
}
.plyr .plyr__control--overlaid:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../img/svg/icon-play.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.plyr .plyr__control--overlaid:hover {
  background-color: transparent;
}
.plyr .plyr__control--overlaid svg {
  display: none !important;
}

.single-page {
  margin-bottom: 80px;
}

@media only screen and (max-width: 1670px) {
  .container {
    width: min(1440px, 85%);
  }
}
@media only screen and (max-width: 1240px) {
  .page-template-page-faq .faq-content .container,
  .page-template-page-faq .container,
  .archive-temoignages-section .container {
    width: 90%;
  }
  .single-publications .container-sm, .single-actualite .container-sm {
    width: 100%;
    padding-inline: 20px;
  }
  .container {
    width: 90%;
  }
  .container-md, .container-sm {
    width: 100%;
    padding-inline: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .title-section {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .single-page {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 992px) {
  .navigation {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .container-md,
  .container-sm,
  .single-publications .container-sm,
  .single-actualite .container-sm {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-template-page-faq .faq-content .container,
  .page-template-page-faq .container,
  .archive-temoignages-section .container,
  .container {
    width: 100%;
  }
  .title-section {
    font-size: 18px;
  }
  .single-page {
    margin-bottom: 30px;
  }
  .navigation {
    margin-top: 30px;
  }
}
.header {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 0 35px;
  position: relative;
  z-index: 9;
  margin-bottom: 80px;
  color: #ffffff;
  max-height: 100%;
}
.header:not(.dsd) {
  background-image: url("/wp-content/themes/dco/public/img/header-bg.webp");
}
.post-type-archive-publications .header {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .post-type-archive-publications .header {
    margin-bottom: 20px;
  }
}
.header.dsd {
  background-color: #f0f2f5;
  color: #000000;
}
.header.dsd .menu-items-box::before, .header.dsd .menu-items-box::after {
  background-color: #0079b5;
}
.header.dsd .menu-items-box li a:before {
  background-color: #000;
}
.header.dsd .col-logo .logo {
  width: 600px;
}
.header.dsd .col-logo .logo svg {
  display: none;
}
.header.dsd .col-logo .col-logo-dsd {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
}
.header.dsd .col-logo .col-logo-dsd img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}
.header.dsd .breadcrumbs {
  display: none !important;
}
.header.dsd .icon-list-item span {
  color: #000;
}
.header.dsd .icon-list-item path {
  fill: #000;
}
.header.dsd .breadcrumbs {
  --_breadcrumbs-color: #000;
}
.header.dsd .burger span {
  color: #000;
}
.header.dsd .burger path {
  stroke: #000;
}
.header.dsd .burger::before {
  display: none;
}
.header.dsd .burger.active {
  background-color: transparent;
}
@media (min-width: 1025px) {
  .header.dsd .title-header {
    display: none;
  }
}
.header.dsd ~ .header-scroll .menu-items-box {
  background-color: #0079b5;
}
.header .burger {
  padding: 0;
}
.header.header-dsd {
  color: #000000;
}
.header.header-dsd .col-logo .logo {
  display: none;
}
.header.header-dsd .col-logo-dsd {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 570px;
  height: auto;
}
.header.header-dsd .col-logo-dsd img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}
.header.header-dsd .small-logo {
  margin-bottom: 39px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header.header-dsd .menu-items-box li a:before {
  background-color: #000;
}
.header.header-dsd .menu-items-box .social-items .social-item span {
  color: #000;
}
.header.header-dsd .social-items .social-item span {
  color: #000;
}
.header.header-dsd .social-items .social-item path {
  fill: #000;
}
.header .menu-items-box .social-items {
  display: none;
}
.header .menu-items-box {
  position: absolute;
  top: 40px;
  left: 40px;
}
.header .menu-items-box ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.header .menu-items-box li a {
  display: flex;
  align-items: center;
  position: relative;
  gap: 7px;
  line-height: 2;
}
.header .menu-items-box li a:hover:before {
  width: 18px;
  transition: var(--transition-base);
}
.header .menu-items-box li a:before {
  content: "";
  width: 0;
  height: 1px;
  display: block;
  background-color: #ffffff;
  transition: var(--transition-base);
}
.header .social-items {
  position: absolute;
  top: 80px;
  right: 80px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 25px;
  display: none;
}
.header .social-items .social-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
  transition: var(--transition-base);
}
.header .social-items .social-item:hover {
  transform: scale(1.15);
  transition: var(--transition-base);
}
.header .social-items .social-item span {
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  display: block;
}
.header .row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.header .logo {
  width: 374px;
  display: flex;
  margin-bottom: 88px;
}
.header .logo svg {
  width: 100%;
  height: auto;
}
.header .col {
  width: 690px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 75px;
}
.header .col p {
  font-family: "BrandonGrotesque", sans-serif;
  font-size: 20px !important;
  font-style: normal;
  font-weight: 400;
  line-height: 1.54;
  text-transform: uppercase;
}
.header .title-header {
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.header .title-header span {
  display: block;
  font-weight: 300;
}
.header .title-header + :where(.breadcrumbs) {
  display: none;
}
.header > :where(.container) {
  position: relative;
}
.header > :where(.container)::after {
  content: "";
  display: block;
  clear: both;
}
@media screen and (max-width: 1670px) {
  .header > :where(.container)::after {
    display: none;
  }
}
.header > :where(.container) > .row {
  position: absolute;
  width: calc(100% - 30px);
  height: 100%;
}
.header > :where(.container) > .row > * {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.header > :where(.container) > .menu-items-box {
  position: static;
  float: left;
  margin-left: calc((100vw - 100%) * -0.5);
  padding-left: 40px;
  /* position: absolute; */
  top: 0;
  width: calc((100vw - 100%) / 2 - 15px);
}
.header > :where(.container) .col-logo > .menu-items-box {
  display: none;
}
.header > :where(.container) > .icon-list {
  float: right;
  margin-right: calc((100vw - 100%) * -0.5);
  padding-right: 67px;
  margin-top: 0;
}
@media screen and (max-width: 1670px) {
  .header > :where(.container) > .icon-list {
    display: none !important;
  }
}

.single.single-formations .header,
.home .header {
  margin-bottom: 0;
}

.page-template-page-connexion .header,
.page-template-page-inscription .header,
.page-template-page-profil .header {
  margin-bottom: 40px;
}

.single-publications .header .title-header,
.post-type-archive-temoignages .header .title-header,
.single-actualite .header .title-header {
  font-size: 31px;
}

.header-scroll {
  margin-bottom: 0;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: 199;
  transition: var(--transition-base);
  gap: 0;
  width: 100%;
  padding: 15px 0;
  top: 0;
  left: 0;
  background-color: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.header-scroll .box-soc-info {
  display: none;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}
.header-scroll .social-items {
  display: none;
}
.header-scroll .box {
  display: flex;
  position: relative;
  z-index: 2;
}
.header-scroll .col {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  width: 100%;
  position: relative;
  z-index: 2;
}
.header-scroll .col .flex-col {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}
.header-scroll .icon-list {
  display: flex;
  flex-direction: row;
  margin-top: 0;
}
.header-scroll.active-scroll {
  visibility: visible;
  opacity: 1;
  transition: var(--transition-base);
}
.header-scroll.active-scroll .logo {
  opacity: 1;
  transform: translateY(0);
  transition: var(--transition-base);
}
.header-scroll.active-scroll .burger {
  opacity: 1;
  transform: translateY(0);
  transition: var(--transition-base);
}
.header-scroll.active-scroll .menu-items-box {
  opacity: 1;
  transform: translateY(0);
  transition: var(--transition-base);
}
.header-scroll.active-scroll .menu-items-box .highlight {
  color: #ffffff;
}
.header-scroll .col-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.header-scroll .burger {
  display: flex;
  border-bottom-color: #000;
  opacity: 0;
  transform: translateY(-40px);
  transition: var(--transition-base);
  padding: 0;
}
.header-scroll .burger span {
  color: #000;
}
.header-scroll .burger .line {
  stroke: #000;
}
.header-scroll .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  width: auto;
  opacity: 0;
  transform: translateY(-40px);
  transition: var(--transition-base);
}
.header-scroll .logo path {
  fill: #000;
}
.header-scroll .logo.highlight path {
  fill: white;
}
.header-scroll .logo svg,
.header-scroll .logo img {
  width: auto;
  height: 100%;
}
.header-scroll .menu-items-box {
  opacity: 0;
  transform: translateY(-40px);
  transition: var(--transition-base);
  position: absolute;
  top: calc(100% + 15px);
  left: calc((100vw - 100%) * -0.5);
  display: none;
  padding: 21px 0;
  padding-left: calc((100vw - 100%) / 2 - 2px);
  padding-right: 4.05%;
  background-color: #000;
  overflow: hidden;
}
.header-scroll .menu-items-box .social-items {
  display: none;
}
.header-scroll .menu-items-box ul {
  width: 248px;
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.header-scroll .menu-items-box li {
  color: #ffffff;
}
.header-scroll .menu-items-box li a {
  display: flex;
  align-items: center;
  position: relative;
}
.header-scroll .menu-items-box li a:hover:before {
  width: 18px;
  transition: var(--transition-base);
}
.header-scroll .menu-items-box li a:before {
  content: "";
  width: 0;
  height: 1px;
  display: block;
  background-color: #fff;
  transition: var(--transition-base);
  margin-right: 5px;
}
.header-scroll .menu-items-box li:last-child {
  margin-bottom: 0;
}
.header-scroll.dsd .menu-items-box ul {
  width: 298px;
}
.burger {
  display: none;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  border-bottom: 1px solid #fff;
  background-color: transparent;
  border: none;
}
.burger span {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
}
.burger svg {
  width: 34px;
  height: 34px;
}
.burger .line {
  fill: none;
  stroke: #fff;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.burger .line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.burger .line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}
.burger .line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.burger.active .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.burger.active .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
.burger.active .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

@media only screen and (max-width: 1670px) {
  .header .burger {
    display: flex;
  }
  .header.dsd .menu-items-box {
    background-color: #0079b5;
  }
  .header.dsd .menu-items-box li a::before {
    background-color: #fff;
  }
  .header.dsd .col-logo .logo {
    width: auto;
  }
  .header.dsd .col-logo .col-logo-dsd {
    height: 110px;
    width: auto;
  }
  .header.dsd .col-logo .col-logo-dsd img {
    height: 100%;
    width: auto;
  }
  .header.header-dsd .row {
    justify-content: flex-start;
  }
  .header.header-dsd .container {
    position: relative;
  }
  .header.header-dsd .menu-items-box {
    top: 100%;
    width: 590px;
    max-width: 100%;
    left: 30px;
    background-color: #f0f2f5;
  }
  .header.header-dsd .menu-items-box li {
    color: #000000;
  }
  .header.header-dsd .menu-items-box:before {
    background-color: #f0f2f5;
  }
  .header.header-dsd .col-logo-dsd {
    width: 50%;
  }
  .header.header-dsd .col-logo {
    position: static;
  }
  .header.header-dsd .col {
    width: 50%;
    position: relative;
  }
  .header.header-dsd .col-wrapper-burger {
    justify-content: flex-end;
    position: absolute;
    top: 100%;
    left: 30px;
    width: 580px;
    max-width: 100%;
    background-color: #f0f2f5;
  }
  .header.header-dsd .burger {
    background-color: #f0f2f5;
    z-index: 3;
  }
  .header.header-dsd .burger:before {
    background-color: #f0f2f5;
  }
  .header.header-dsd .burger.active {
    background-color: #f0f2f5;
  }
  .header.header-dsd .burger span {
    color: #000000;
  }
  .header.header-dsd .burger .line {
    stroke: #000000;
  }
  .header .burger {
    width: auto;
    background-color: rgba(0, 0, 0, 0);
    position: relative;
  }
  .header .burger.active:before {
    opacity: 1;
  }
  .header .burger:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 100%;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0;
  }
  .header .col-logo {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .header .col-logo .breadcrumbs {
    display: none;
  }
  .header .col {
    height: 100%;
    justify-content: space-between;
  }
  .header .col .breadcrumbs {
    display: flex;
  }
  .header .menu-items-box {
    padding: 36px 0 32px;
    display: none;
    top: calc(100% + 34px);
    width: 100%;
    left: 0;
    background-color: #000;
    max-width: 289px;
  }
  .header .menu-items-box:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 100%;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 0;
    margin-right: -1px;
  }
  .header .menu-items-box li {
    color: #ffffff;
  }
  .header .menu-items-box li:last-child {
    margin-bottom: 0;
  }
  .header .menu-items-box .icon-list {
    display: none;
  }
  .header .menu-items-box .social-items {
    margin-top: 40px;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;
  }
  .header .menu-items-box .social-items .social-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    transition: var(--transition-base);
  }
  .header .menu-items-box .social-items .social-item:hover {
    transform: scale(1.15);
    transition: var(--transition-base);
  }
  .header .menu-items-box .social-items .social-item span {
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    display: block;
    color: #ffffff;
  }
  .header .container {
    display: flex;
    justify-content: flex-end;
    gap: 90px;
  }
  .header .row {
    width: 100%;
  }
  .header .social-items {
    position: static;
  }
  .header > .container > .row {
    position: static;
    height: auto;
    width: 100%;
  }
  .header > .container > .menu-items-box {
    display: none !important;
  }
  .header-scroll .logo {
    height: 50px;
  }
}
@media only screen and (max-width: 1440px) {
  .header {
    padding: 25px 0 27px;
  }
  .header .menu-items-box {
    top: calc(100% + 26px);
  }
  .header .logo {
    width: 289px;
  }
  .header .col {
    gap: 45px;
  }
  .header .social-items {
    gap: 25px;
  }
}
@media only screen and (max-width: 1200px) {
  .header .logo {
    width: 300px;
  }
  .header .col {
    width: auto;
  }
  .header .col p {
    font-size: 18px !important;
    line-height: 1.33;
  }
}
@media only screen and (max-width: 992px) {
  .single-formations .header > .container > .row {
    gap: 30px;
  }
  .header.header-dsd .col {
    margin-left: 0;
    margin-right: 30px;
  }
  .header .logo {
    width: 200px;
  }
  .header .container {
    gap: 20px;
  }
  .header .col {
    margin-left: 30px;
  }
  .header .col {
    max-width: calc(100% - 200px);
    gap: 40px;
  }
  .header .col p {
    font-size: 18px !important;
  }
  .header .title-header {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .single-formations .header > .container > .row {
    gap: 40px;
  }
  .header {
    padding: 16px 0 30px;
    height: auto;
    margin-bottom: 20px;
  }
  .header .container {
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
  }
  .header.dsd .col-logo::before {
    display: none;
  }
  .header.dsd .col-logo .logo {
    height: 49px;
    width: auto;
  }
  .header.dsd .col-logo .col-logo-dsd {
    height: 100%;
    width: 150px;
  }
  .header.dsd .col-logo .col-logo-dsd img {
    height: 100%;
    width: auto;
  }
  .header.dsd .menu-items-box {
    padding-top: 30px;
    top: calc(100% + 30px);
  }
  .header.header-dsd .col-logo-dsd {
    width: 100%;
  }
  .header.header-dsd .col-logo {
    position: relative;
  }
  .header.header-dsd .col-logo:before {
    background-color: #f0f2f5;
  }
  .header.header-dsd .col-logo .logo {
    display: flex;
  }
  .header.header-dsd .col-logo .logo svg path {
    fill: #000;
  }
  .header.header-dsd .col-wrapper-burger {
    position: relative;
    top: 0;
    left: 0;
    width: auto;
  }
  .header.header-dsd .menu-items-box {
    width: 100%;
    left: 0;
    top: 30px;
    z-index: 1;
  }
  .header.header-dsd .menu-items-box:after {
    background-color: #f0f2f5;
  }
  .header .col {
    margin-left: 0;
    max-width: 100%;
  }
  .header .col p {
    font-size: 14px !important;
  }
  .header .title-header + .breadcrumbs {
    display: flex;
  }
  .header .row {
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
  }
  .header .col {
    width: 100%;
  }
  .header .col-logo {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    position: relative;
    height: 60px;
  }
  .header .col-logo:before {
    content: "";
    position: absolute;
    background-color: #000;
    top: -20px;
    left: -15px;
    width: calc(100% + 15px);
    height: calc(100% + 20px);
    z-index: 0;
    opacity: 0;
  }
  .header .col-logo .breadcrumbs {
    display: none;
  }
  .header .logo {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: auto;
    height: 57px;
    position: relative;
    z-index: 2;
    transition: var(--transition-base);
  }
  .header .logo svg {
    height: 100%;
    width: auto;
  }
  .header .burger {
    margin-top: 0;
    position: relative;
    z-index: 2;
    gap: 0;
    width: auto;
    display: flex;
  }
  .header .burger::before {
    display: none;
  }
  .header .burger span {
    display: none;
  }
  .header .menu-items-box {
    top: -16px;
    padding-top: 110px;
    max-width: 100%;
  }
  .header .menu-items-box:before {
    width: 20px;
    left: -19px;
    right: auto;
  }
  .header .menu-items-box:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: -19px;
    width: 20px;
    height: 100%;
    background-color: #000;
    z-index: 0;
  }
  .header .menu-items-box .social-items {
    display: flex;
  }
  .header .menu-items-box ul {
    margin-top: 20px;
    margin-bottom: 50px;
  }
  .header .social-items {
    z-index: 1;
    position: relative;
    bottom: 0;
    right: 0;
    top: 0;
    flex-direction: row;
  }
  .header-scroll {
    padding: 8px 0;
  }
  .header-scroll .container {
    width: 100%;
  }
  .header-scroll .logo {
    height: 37px;
  }
  .header-scroll .box-soc-info {
    display: none;
  }
  .header-scroll .box {
    width: 100%;
  }
  .header-scroll .col-wrapper {
    width: 100%;
  }
  .header-scroll .col-wrapper:before {
    left: -15px;
    top: -10px;
    height: calc(100% + 20px);
  }
  .header-scroll .menu-items-box {
    left: -20px;
    top: calc(100% + 8px);
    padding-inline: 20px;
    width: calc(100% + 40px);
  }
  .header-scroll .menu-items-box ul {
    margin-bottom: 40px;
    gap: 10px;
  }
  .header-scroll .menu-items-box .social-items {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 28px;
  }
  .header-scroll .menu-items-box .social-items .social-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    transition: var(--transition-base);
  }
  .header-scroll .menu-items-box .social-items .social-item:hover {
    transform: scale(1.15);
    transition: var(--transition-base);
  }
  .header-scroll .menu-items-box .social-items .social-item span {
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    display: block;
    color: #ffffff;
  }
  .header-scroll .col {
    justify-content: space-between;
  }
  .header-scroll .col .flex-col {
    flex-direction: row-reverse;
    gap: 20px;
  }
  .header-scroll .col .flex-col .icon-list {
    display: flex;
    gap: 20px;
  }
  .header-scroll .burger span {
    display: none;
  }
}
.basket {
  --_menu-container-width: min(80%, 1440px);
  position: absolute;
  left: 0;
  top: 340px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  z-index: 90;
  transform: translateX(-100%);
  transition: var(--transition-base);
  width: 100%;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: rgba(42, 42, 42, 0.54);
}
.basket-wrapper-box {
  width: 680px;
  max-width: 40%;
  height: calc(100vh - 375px);
  padding: 100px 40px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  background-color: #fff;
}
.basket .btn {
  display: none;
}
.basket .btn.active {
  display: flex;
}
.basket.active-scroll {
  position: fixed;
  top: 67px;
  left: 0;
  height: calc(100vh - 67px);
}
.basket.active-scroll .basket-wrapper-box {
  height: calc(100vh - 67px);
  width: 50%;
  padding-left: calc((100vw - var(--_menu-container-width)) / 2 + 15px);
}
.basket.active-scroll .basket-list-wrapper {
  max-height: calc(100vh - 300px);
}
.basket.active {
  transform: translateX(0);
  transition: var(--transition-base);
}
.basket .basket-top {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  position: relative;
}
.basket button.close {
  padding: 0;
  margin: 0;
  background-color: transparent;
  border: none;
  position: absolute;
  top: 6px;
  right: 0;
  width: 30px;
  height: 30px;
  transition: var(--transition-base);
}
.basket button.close svg {
  width: 30px;
  height: 30px;
}
.basket button.close:hover {
  opacity: 0.75;
  transition: var(--transition-base);
}
.basket .basket-title {
  color: var(--000000, #000);
  font-size: 30px;
  font-style: normal;
  font-weight: 300;
  line-height: 40px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.basket .basket-empty {
  color: var(--000000, #000);
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 32px;
  display: none;
}
.basket .basket-empty.active {
  display: block;
}
.basket .basket-list-wrapper {
  overflow-y: auto;
  max-height: 300px;
}
.basket .basket-list {
  display: none;
  flex-direction: column;
  width: 100%;
  gap: 30px;
}
.basket .basket-list.option-list {
  margin-top: 16px;
}
.basket .basket-list-item {
  display: flex;
  flex-direction: column;
  padding-left: 30px;
  position: relative;
  width: 100%;
  gap: 4px;
  padding-bottom: 16px;
}
.basket .basket-list-item.hidden {
  display: none;
}
.basket .basket-list-item:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 30px;
  width: calc(100% - 30px);
  height: 1px;
  background-color: #E4E8EE;
}
.basket .basket-list-item .product-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.basket .basket-list-item .product-center {
  width: 100%;
}
.basket .basket-list-item .product-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.basket .basket-list-item .product-bottom p {
  color: var(--000000, #000);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
}
.basket .basket-list-item .product-bottom .product-type {
  width: 200px;
  max-width: 100%;
}
.basket .basket-list-item .product-title {
  position: relative;
  color: var(--000000, #000);
  font-size: 20px !important;
  font-style: normal;
  font-weight: 300;
  line-height: 32px !important;
}
.basket .basket-list-item .product-title:before {
  content: "-";
  width: 7px;
  text-align: left;
  position: absolute;
  top: 0;
  left: -30px;
  display: block;
  color: var(--000000, #000);
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 32px;
}
.basket .basket-list-item .product-delete {
  cursor: pointer;
  width: 20px;
  height: 20px;
  transition: var(--transition-base);
}
.basket .basket-list-item .product-delete svg {
  width: 20px;
  height: 20px;
}
.basket .basket-list-item .product-delete:hover {
  opacity: 0.75;
  transition: var(--transition-base);
}
.basket .basket-list-item .product-date {
  color: var(--000000, #000);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
}
.basket .basket-list-item .product-price {
  white-space: nowrap;
}
.basket .basket-list-item .product-price-all {
  white-space: nowrap;
}
.basket .basket-list-item .input-group {
  width: 80px;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 4px;
}
.basket .basket-list-item .input-group .quantity-field-count {
  min-width: 24px;
  height: 24px;
  text-align: center;
}
.basket .basket-list-item .input-group input {
  min-width: 24px;
  height: 24px;
  text-align: center;
  background-color: transparent;
  border: none;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  padding: 0;
  margin: 0;
}
.basket .basket-list-item .input-group input::-webkit-outer-spin-button, .basket .basket-list-item .input-group input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.basket .basket-list-item .input-group input.quantity-field {
  -moz-appearance: textfield;
  display: none;
}
.basket .basket-list-item .input-group input.button-quantity {
  width: 24px;
  line-height: 17px;
}
.basket .basket-list-item .input-group input.button-quantity.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.basket .basket-list.active {
  display: flex;
}
.basket .basket-total {
  display: none;
  justify-content: flex-end;
  gap: 20px;
}
.basket .basket-total.active {
  display: flex;
}
.basket .basket-total-title {
  color: var(--000000, #000);
  font-size: 24px !important;
  font-style: normal;
  font-weight: 300;
  line-height: 32px !important;
}
.basket .basket-total-price {
  color: var(--000000, #000);
  font-size: 24px !important;
  font-style: normal;
  font-weight: 300;
  line-height: 32px !important;
}

@media only screen and (max-width: 1670px) {
  .basket {
    --_menu-container-width: 91.644%;
    top: 326px;
  }
  .basket-wrapper-box {
    padding: 30px;
  }
  .basket.active-scroll {
    height: calc(100vh - 67px);
  }
  .basket.active-scroll .basket-wrapper-box {
    height: calc(100vh - 67px);
    top: 67px;
    width: 45vw;
    max-width: 45vw;
  }
}
@media only screen and (max-width: 1440px) {
  .basket {
    height: calc(100vh - 270px);
    top: 273px;
  }
  .basket-wrapper-box {
    width: 55vw;
    max-width: 55vw;
    height: calc(100vh - 270px);
  }
  .basket.active-scroll .basket-wrapper-box {
    width: 55vw;
    max-width: 55vw;
  }
}
@media (max-width: 1200px) {
  .basket-wrapper-box {
    width: 100vw;
    max-width: 100vw;
  }
  .basket.active-scroll {
    width: 100vw;
    max-width: 100vw;
  }
}
@media only screen and (max-width: 992px) {
  .basket {
    top: 244px;
    height: calc(100vh - 40px);
  }
  .basket-wrapper-box {
    height: calc(100vh - 240px);
  }
}
@media only screen and (max-width: 767px) {
  .basket {
    top: 255px;
    --_menu-container-width: 100%;
    height: calc(100vh - 30px);
  }
  .basket .basket-list-item .product-title {
    font-size: 20px !important;
  }
  .basket .basket-list-item .product-bottom {
    gap: 10px;
  }
  .basket-wrapper-box {
    height: auto;
    padding: 15px;
    width: 100%;
    max-width: 100%;
  }
  .basket.active-scroll {
    height: calc(100vh - 53px);
    top: 53px;
  }
  .basket.active-scroll .basket-wrapper-box {
    width: 100%;
    max-width: 100%;
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 400px) {
  .basket {
    top: 300px;
  }
}
.header.header-dsd .icon-list-item.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.header.header-dsd .icon-list-item svg path {
  fill: #000;
}
.header.header-dsd .icon-list-item span {
  color: #000;
}
.header .mobile-icons {
  display: none;
}
.header .col-logo > .icon-list {
  position: absolute;
  right: 63px;
  top: 40px;
  margin-top: 0;
}
.header .icon-list {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  gap: 10px;
}
.header .icon-list-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header .icon-list-item.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.header .icon-list-item svg {
  margin-right: 6px;
}
.header .icon-list-item span {
  color: var(--ffffff, #FFF);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
}
.header .icon-list-item span:nth-child(3) {
  margin-left: 5px;
}

.header-scroll .col .icon-list {
  display: none;
}
.header-scroll .icon-list {
  gap: 30px;
}
.header-scroll .icon-list-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
}
.header-scroll .icon-list-item.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.header-scroll .icon-list-item svg path {
  fill: #000;
  transition: var(--transition-base);
}
.header-scroll .icon-list-item span {
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
  transition: var(--transition-base);
}
.header-scroll .icon-list-item span:nth-child(3) {
  margin-left: 5px;
}
.header-scroll .menu-items-box .icon-list {
  display: none;
}
@media only screen and (max-width: 1670px) {
  .header .col-wrapper-burger {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    justify-content: flex-start;
  }
  .header .col-wrapper-burger .icon-list {
    margin: 0 0 7px 40px;
    flex-direction: row;
    gap: 40px;
  }
  .header .col-wrapper-burger .icon-list-item span {
    display: none;
  }
  .header .col-wrapper-burger .icon-list-item span:nth-child(3) {
    display: block;
  }
  .header .mobile-icons {
    display: flex;
  }
  .header .col-logo > .icon-list {
    display: none;
  }
  .header-scroll .menu-items-box .icon-list {
    display: none;
  }
  .header-scroll .icon-list {
    display: flex;
    flex-direction: row;
    margin-top: 0;
  }
}
@media only screen and (max-width: 1440px) {
  .header-scroll .icon-list-item span {
    display: none;
  }
  .header-scroll .icon-list-item span:nth-child(3) {
    display: block;
  }
}
@media only screen and (max-width: 1200px) {
  .header .col-wrapper-burger .icon-list {
    margin-left: 10px;
    gap: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .header .col-wrapper-burger {
    flex-direction: row;
    gap: 15px;
  }
  .header .col-wrapper-burger .mobile-icons {
    position: relative;
    z-index: 2;
  }
  .header-scroll .col .icon-list {
    gap: 20px;
  }
  .header-scroll .col .icon-list-item.item-basket svg {
    margin-right: 0;
  }
}
h1,
h2,
h3,
h4,
h5,
h6,
li,
span,
p {
  cursor: default;
}

a,
a span {
  cursor: pointer;
}

.wp-text {
  font-family: "Prompt", sans-serif;
}
.wp-text .wp-block-media-text .wp-block-media-text__content:first-child {
  padding-left: 0;
}
.wp-text .wp-block-media-text .wp-block-media-text__content:last-child {
  padding-right: 0;
}
.wp-text h1 {
  font-size: 48px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
  margin: 15px 0;
}
.wp-text h1:first-child {
  margin-top: 0;
}
.wp-text h1:last-child {
  margin-bottom: 0;
}
.wp-text h2 {
  font-size: 26px;
  letter-spacing: 0.6px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
  margin: 30px 0 15px;
  position: relative;
}
.wp-text h2:first-child {
  margin-top: 0;
}
.wp-text h2:last-child {
  margin-bottom: 0;
}
.wp-text h2 + p {
  margin-top: 10px;
}
.wp-text h2::before {
  content: "";
  background-color: #E2E8F2;
  height: 100%;
  width: calc((100vw - 100%) / 2 - 20px);
  position: absolute;
  top: 0;
  left: calc((100vw - 100%) * -0.5);
}
.wp-text h3 {
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
  letter-spacing: 0.078px;
  margin: 30px 0 15px;
}
.wp-text h3:first-child {
  margin-top: 0;
}
.wp-text h3:last-child {
  margin-bottom: 0;
}
.wp-text h3 + p {
  margin-top: 10px;
}
.wp-text h4 {
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
  letter-spacing: 0.078px;
  margin: 30px 0 15px;
}
.wp-text h4:first-child {
  margin-top: 0;
}
.wp-text h4:last-child {
  margin-bottom: 0;
}
.wp-text h4 + p {
  margin-top: 10px;
}
.wp-text h5 {
  font-size: 19px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
  letter-spacing: 0.078px;
  margin: 15px 0;
}
.wp-text h5:first-child {
  margin-top: 0;
}
.wp-text h5:last-child {
  margin-bottom: 0;
}
.wp-text h5 + p {
  margin-top: 10px;
}
.wp-text p {
  color: var(--000000, #000);
  text-align: justify;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.58;
  margin: 25px 0;
}
.wp-text p:first-child {
  margin-top: 0;
}
.wp-text p:last-child {
  margin-bottom: 0;
}
.wp-text ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wp-text ul li {
  position: relative;
  padding-left: 20px;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
}
.wp-text ul li:before {
  content: "•";
  position: absolute;
  color: #000;
  text-align: justify;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  top: -1px;
  left: 5px;
}
.wp-text ol {
  padding-left: 18px;
}
.wp-text ol li {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
}
.wp-text .wp-block-image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px 0;
  width: 100%;
}
.wp-text .wp-block-image img {
  width: 100%;
  height: auto;
}
.wp-text .is-layout-flex {
  gap: 50px;
}
.wp-text .wp-block-column p {
  margin-top: 10px;
}
.wp-text .wp-block-column p:first-child {
  margin-top: 0;
}
.wp-text .wp-block-column p:last-child {
  margin-bottom: 0;
}
.wp-text .wp-block-column .wp-block-image {
  margin: 0;
}
.wp-text .wp-block-quote {
  border-radius: 10px;
  background: #EFF2F6;
  padding: 20px;
  margin: 60px 0;
}
.wp-text .wp-block-quote p {
  color: var(--000000, #000);
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px; /* 140% */
  margin: 0;
}

.wp-small-block > h2 {
  width: 816px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.wp-small-block > h3 {
  width: 816px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.wp-small-block > h4 {
  width: 816px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.wp-small-block > h5 {
  width: 816px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.wp-small-block > p {
  width: 816px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.wp-small-block > ol {
  width: 816px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.wp-small-block > ul {
  width: 816px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 1024px) {
  .wp-small-block > h2, .wp-small-block > h3, .wp-small-block > h4, .wp-small-block > h5, .wp-small-block > p, .wp-small-block > ol, .wp-small-block > ul {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .wp-text h1 {
    font-size: 31px;
  }
  .wp-text h2 {
    font-size: 20px;
  }
  .wp-text h3 {
    font-size: 18px;
  }
  .wp-text h4 {
    font-size: 18px;
  }
  .wp-text h5 {
    font-size: 18px;
  }
  .wp-text p {
    font-size: 14px;
  }
  .wp-text ul li {
    font-size: 14px;
  }
  .wp-text ol li {
    font-size: 14px;
  }
  .wp-text .wp-block-image {
    margin: 20px 0;
    margin-left: -15px !important;
    width: calc(100% + 30px);
  }
}
h2 {
  font-size: 26px !important;
  line-height: 1.4 !important;
}
@media only screen and (max-width: 1024px) {
  h2 {
    font-size: 22px !important;
  }
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 18px !important;
  }
}

h3 {
  font-size: 22px !important;
  line-height: 1.4 !important;
}
@media only screen and (max-width: 1024px) {
  h3 {
    font-size: 20px !important;
  }
}
@media only screen and (max-width: 767px) {
  h3 {
    font-size: 16px !important;
  }
}

:is(p, .item-text, .item-text p) {
  font-size: 14px !important;
}

@keyframes animateMarginTop {
  from {
    padding-top: 100vh;
  }
  to {
    padding-top: 0;
  }
}
@keyframes animateTop {
  from {
    top: 0;
  }
  to {
    top: -100vh;
  }
}
.animate-margin-top {
  animation: animateMarginTop 3.1s ease forwards 1.5s;
}

.animate-top {
  animation: animateTop 3.1s ease forwards 1.5s;
}

.preloader {
  background-color: #F9F9F9;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-top: 29vh;
  padding-bottom: 9vh;
}
.preloader .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
}
.preloader .logo p {
  color: var(--Black, #39393F);
  text-align: center;
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 52px; /* 118.182% */
  font-variant: small-caps;
  letter-spacing: 3.52px;
}
.preloader .loading-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.preloader .loading-box p {
  color: var(--Black, #39393F);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px; /* 150% */
  font-variant: small-caps;
  letter-spacing: 1.6px;
}

@media only screen and (max-width: 767px) {
  .preloader .logo {
    width: calc(100% - 30px);
  }
  .preloader .logo svg {
    width: 20%;
    height: auto;
  }
  .preloader .logo p {
    font-size: 34px;
    line-height: 42px;
  }
}
.notre-vision {
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 0 !important;
  position: relative;
}
.notre-vision .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 2;
}
.notre-vision .col-slider {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.notre-vision .col-slider .notreVisionSwiper {
  width: 100%;
  height: 100%;
}
.notre-vision .col-slider .notreVisionSwiper .swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notre-vision .col-slider .notreVisionSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.notre-vision .col {
  width: 568px;
  max-width: 100%;
  padding-top: 96px;
  padding-bottom: 96px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 50px;
}
.notre-vision .title-section {
  margin: 0;
  width: 100%;
  text-align: left;
}
.notre-vision .title-section::before {
  display: none;
}

@media only screen and (max-width: 1560px) {
  .notre-vision {
    background-position: 75% center;
  }
}
@media only screen and (max-width: 1440px) {
  .notre-vision {
    background-position: 75% center;
  }
}
@media only screen and (max-width: 1024px) {
  .notre-vision {
    overflow-x: clip;
  }
  .notre-vision .container {
    padding: 0;
  }
  .notre-vision .col {
    padding: 40px 0;
    gap: 20px;
    width: 100%;
    position: relative;
    z-index: 0;
  }
  .notre-vision .col::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.8);
    width: 100vw;
    height: 100%;
    margin-left: calc((100vw - 100%) * -0.5);
  }
}
@media only screen and (max-width: 1024px) {
  .notre-vision {
    display: flex;
    flex-direction: column;
  }
  .notre-vision .container {
    padding: 0;
    flex-direction: column;
  }
  .notre-vision .col-slider {
    position: relative;
  }
  .notre-vision .col {
    padding-inline: 20px;
    width: 100%;
  }
}
@media only screen and (max-width: 992px) {
  .notre-vision .col {
    align-items: flex-start;
  }
}
.equipe {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.equipe img {
  width: 100%;
  height: auto;
}
.equipe .equipe-items-box {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 0;
  background-color: rgba(0, 0, 0, 0.55);
}
.equipe .equipe-items {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  max-width: 100%;
}
.equipe .equipe-items .equipe-item {
  color: var(--ffffff, #FFF);
  text-align: center;
  font-size: 18px !important;
  font-style: normal;
  font-weight: 300;
  line-height: 1.4;
}

@media only screen and (max-width: 1024px) {
  .equipe .equipe-items {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .equipe .equipe-items-box {
    padding: 5px 0;
  }
  .equipe .equipe-items {
    padding-left: 15px;
    padding-right: 15px;
  }
  .equipe .equipe-items .equipe-item {
    font-size: 14px !important;
  }
}
.presentation .box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-items: stretch;
}
.presentation .box .col-img {
  position: relative;
  width: 48.93%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.presentation .box .col-img img {
  width: 100%;
  height: auto;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.presentation .box .col-img .imgs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.presentation .box .col-img .imgs img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: none;
}
.presentation .box .col-img .imgs img.active {
  display: block;
}
.presentation .box .col-info {
  width: 47.51%;
}
.presentation .box .presentation-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
.presentation .box .presentation-items .item {
  position: relative;
  padding-left: 101px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0.5;
  transition: var(--transition-base);
}
.presentation .box .presentation-items .item.hover {
  opacity: 1;
  transition: var(--transition-base);
}
.presentation .box .presentation-items .item.hover:before {
  width: 70px;
  opacity: 1;
  transition: var(--transition-base);
}
.presentation .box .presentation-items .item:before {
  content: "";
  width: 0;
  height: 2px;
  background-color: #000000;
  position: absolute;
  top: 14px;
  left: 0;
  opacity: 0;
  transition: var(--transition-base);
}
.presentation .box .presentation-items .item-title {
  color: var(--000000, #000);
  text-align: justify;
  font-size: 22px;
  font-style: normal;
  margin-bottom: 10px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.24px;
}
.presentation .box .presentation-items .item-text p {
  color: var(--000000, #000);
  text-align: justify;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px; /* 162.5% */
  letter-spacing: 0.16px;
}

@media only screen and (max-width: 1024px) {
  .presentation .box .presentation-items .item {
    padding-left: 51px;
  }
  .presentation .box .presentation-items .item.hover:before {
    width: 35px;
  }
}
@media only screen and (max-width: 992px) {
  .presentation .box {
    flex-direction: column;
    gap: 40px;
  }
  .presentation .box .col {
    width: 100%;
  }
  .presentation .box .col-img img {
    height: auto;
    position: static;
  }
}
@media only screen and (max-width: 767px) {
  .presentation .box .presentation-items .item {
    padding-left: 0;
    opacity: 1;
  }
  .presentation .box .presentation-items .item-title {
    padding-left: 35px;
  }
  .presentation .box .presentation-items .item::before {
    height: 1px;
    opacity: 1;
    width: 25px !important;
    top: 10px;
  }
  .presentation .box .col-img {
    margin-left: -15px;
    width: calc(100% + 30px);
  }
  .presentation .box .col-img .imgs {
    display: none;
  }
}
.video {
  position: relative;
}
.video .video-iframe {
  position: relative;
  padding-bottom: 56.5%;
}
.video .video-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1;
}
.video .video-iframe .sound {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .video .video-iframe .sound {
    width: 30px;
    height: 30px;
  }
}
.video .video-iframe .sound svg {
  width: 100%;
  height: 100%;
}
.video .video-iframe .sound svg circle {
  fill: transparent;
  transition: var(--transition-base);
}
.video .video-iframe .sound svg g.unmute {
  display: none;
}
.video .video-iframe .sound.active svg g.mute {
  display: none;
}
.video .video-iframe .sound.active svg g.unmute {
  display: block;
}
.video .plyr__video-embed, .video .plyr__video-wrapper--fixed-ratio {
  aspect-ratio: 16/7.52 !important;
}
.video .plyr__control--overlaid {
  background-color: transparent;
  width: 152px;
  height: 152px;
}

@media only screen and (max-width: 1024px) {
  .video .plyr__control--overlaid {
    width: 100px;
    height: 100px;
  }
}
.actualite {
  position: relative;
}
.actualite .top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.actualite .top .title-section {
  margin-bottom: 0;
}
.actualite .content {
  overflow: hidden;
}

@media only screen and (max-width: 992px) {
  .actualite .top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
@media only screen and (max-width: 992px) {
  .actualite .container {
    padding: 0;
  }
  .actualite .navigation,
  .actualite .top {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.actualite-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.actualite-item .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.actualite-item .item-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 370/220;
  -o-object-fit: cover;
     object-fit: cover;
}
.actualite-item .category-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  display: none;
}
.actualite-item .category-list li {
  color: var(--000000, #000);
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px; /* 160% */
  display: block;
  padding: 0;
}
.actualite-item .category-list li:before {
  display: none;
}
.actualite-item .category-list li a {
  display: block;
}
.actualite-item .item-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media only screen and (max-width: 767px) {
  .actualite-item .item-info {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.actualite-item .item-title {
  color: var(--000000, #000);
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.4;
  cursor: pointer;
  margin: 0;
}
.actualite-item .item-title a {
  overflow: hidden;
  height: 100%;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media only screen and (max-width: 767px) {
  .actualite-item .item-title a {
    -webkit-line-clamp: 3;
  }
}
.actualite-item .item-text {
  color: var(--000000, #000);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px; /* 158.824% */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .actualite-item .item-text {
    display: none;
  }
}

.faq-section .top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.faq-section .top .title-section {
  margin-bottom: 0;
}

@media only screen and (max-width: 992px) {
  .faq-section .top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.faq-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 20px;
  margin-bottom: 40px;
  cursor: pointer;
  border-bottom: 1px solid #E4E8EE;
  transition: var(--transition-base);
}
.faq-item.active {
  border-bottom-color: #000;
  transition: var(--transition-base);
}
.faq-item:hover .item-arrow {
  transform: scale(-1, -1) rotate(360deg);
  transition: var(--transition-base);
}
.faq-item:last-child {
  margin-bottom: 0;
}
.faq-item .item-count {
  width: 100px;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px; /* 158.824% */
  display: none;
}
.faq-item .item-info {
  width: 78%;
}
.faq-item .item-title {
  width: 100%;
  color: #000;
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.4;
}
.faq-item .item-text {
  display: none;
  margin-top: 10px;
}
.faq-item .item-text p {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px; /* 158.824% */
}
.faq-item .item-arrow {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}
.faq-item .item-arrow svg {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 1024px) {
  .faq-item .item-count {
    width: 50px;
  }
}
.temoignages .top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.temoignages .top .title-section {
  margin-bottom: 0;
}
.temoignages .plyr__video-embed, .temoignages .plyr__video-wrapper--fixed-ratio {
  aspect-ratio: 16/9 !important;
}
.temoignages .content {
  overflow: hidden;
}
.temoignages .content .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 50px;
}

@media only screen and (max-width: 1024px) {
  .temoignages .plyr__video-embed,
  .temoignages .plyr__video-wrapper--fixed-ratio {
    aspect-ratio: 16/9 !important;
  }
}
@media only screen and (max-width: 992px) {
  .temoignages .top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.temoignages-item {
  display: flex;
  width: 100%;
  position: relative;
  flex-direction: column;
}
.temoignages-item.video {
  gap: 20px;
}
.temoignages-item .item-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.temoignages-item .box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.temoignages-item .item-title {
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.4;
}
.temoignages-item .item-category {
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.58;
}
.temoignages-item .item-text {
  text-align: justify;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.58;
}
.temoignages-item .item-image {
  width: min(100%, 705px);
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .temoignages-item .item-image {
    margin-left: -15px;
    width: calc(100% + 15px);
  }
}

@media only screen and (max-width: 992px) {
  .temoignages-item .item-text {
    height: auto;
  }
}
.loading-wrapper {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  display: none;
}
.loading-wrapper .loading-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.footer {
  background-color: #000;
  padding: 50px 0 40px;
  color: #ffffff;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
}
.footer.dwf_footer {
  background: #F0F2F5;
  color: black;
}
.footer.dwf_footer p {
  color: black;
}
.footer.dwf_footer .social-items svg path {
  fill: black;
}
.footer .container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
}
.footer .row {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.footer .col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer .col .box {
  margin-top: 125px;
}
.footer .col:nth-child(1) {
  width: 570px;
  max-width: 100%;
}
.footer .col:nth-child(2) {
  width: 330px;
  max-width: 100%;
}
.footer .col.copyrights {
  width: 100%;
  flex-direction: row;
  gap: 0.5rem;
}
.footer .col.copyrights p {
  font-size: 14px !important;
}
.footer .logo {
  margin-bottom: 80px;
}
.footer .logo svg {
  width: 285px;
  height: auto;
}
.footer .menu-items {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  -moz-column-count: 3;
       column-count: 3;
  width: 100%;
}
.footer .menu-items li {
  margin-top: 10px;
}
.footer .menu-items li:first-child {
  margin-top: 0;
}
.footer .menu-items li a {
  display: flex;
  align-items: center;
  position: relative;
  gap: 7px;
}
.footer .menu-items li a:hover:before {
  width: 18px;
  transition: var(--transition-base);
}
.footer .menu-items li a:before {
  content: "";
  width: 0;
  height: 1px;
  display: block;
  background-color: #ffffff;
  transition: var(--transition-base);
}
.footer .box {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.footer .contact-items {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer .social-items {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 19px;
}
.footer .social-items .social-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
  transition: var(--transition-base);
}
.footer .social-items .social-item:hover {
  transform: scale(1.15);
  transition: var(--transition-base);
}
.footer .social-items .social-item span {
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
}
.footer p {
  color: #C1C6CF;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px; /* 160% */
}

.modal-section {
  display: none;
  justify-content: flex-end;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  background: rgba(42, 42, 42, 0.54);
  z-index: 991;
}
.modal-section .close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
}
.modal-section .close svg {
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition-base);
}
.modal-section .close svg path {
  transition: var(--transition-base);
}
.modal-section .title-modal {
  color: var(--000000, #000);
  font-size: 40px !important;
  font-style: normal;
  font-weight: 300;
  line-height: 50px !important;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.modal-section .box {
  min-width: 810px;
  height: 100%;
  background: #FFF;
  padding: 0 100px 0 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
}
.modal-section .btn {
  background-color: transparent;
  margin-top: 36px;
}
.modal-section .wpcf7 form.invalid .wpcf7-response-output, .modal-section .wpcf7 form.unaccepted .wpcf7-response-output, .modal-section .wpcf7 form.payment-required .wpcf7-response-output {
  margin: 15px 0 0 0;
}
.modal-section .wpcf7-not-valid-tip {
  font-size: 14px;
  margin: 5px 0 5px 0px;
}
.modal-section .wpcf7-list-item {
  margin: 0 30px 0 0;
}
.modal-section .wpcf7-list-item label {
  cursor: pointer;
}
.modal-section .wpcf7-list-item label input {
  display: none;
  visibility: hidden;
  opacity: 0;
}
.modal-section .wpcf7-list-item label input:checked + span:after {
  opacity: 1;
  transition: var(--transition-base);
}
.modal-section .wpcf7-list-item label span {
  color: var(--Black, #39393F);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px; /* 162.5% */
  position: relative;
  padding-left: 24px;
}
.modal-section .wpcf7-list-item label span:before {
  content: "";
  background-image: url("../img/svg/radio-empty.svg");
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 0;
}
.modal-section .wpcf7-list-item label span:after {
  content: "";
  background-image: url("../img/svg/radio-checked.svg");
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: var(--transition-base);
}
.modal-section .form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}
.modal-section .form-row .input-box:last-child {
  margin-bottom: 0;
}
.modal-section .input-box {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-section .input-box p {
  width: 100%;
}
.modal-section .input-box label {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.modal-section .input-box .label {
  display: none;
}
.modal-section .input-box input {
  width: 100%;
  border-radius: 0;
  background: transparent;
  height: 50px;
  color: #000;
  font-family: inherit;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  text-indent: 10px;
  border: none;
  border-bottom: 1px solid #C1C6CF;
}
.modal-section .input-box input::-moz-placeholder {
  color: #000;
  font-family: inherit;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
}
.modal-section .input-box input::placeholder {
  color: #000;
  font-family: inherit;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
}
.modal-section .input-box .wpcf7-form-control-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.modal-section .input-box textarea {
  width: 100%;
  border-radius: 0;
  background: transparent;
  height: 180px;
  color: #000;
  font-family: inherit;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  border: none;
  padding: 12px 11px 10px;
  border-bottom: 1px solid #C1C6CF;
}
.modal-section .input-box textarea::-moz-placeholder {
  color: #000;
  font-family: inherit;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
}
.modal-section .input-box textarea::placeholder {
  color: #000;
  font-family: inherit;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
}

.popup-section {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  background: rgba(42, 42, 42, 0.54);
  z-index: 991;
}
@media only screen and (max-width: 767px) {
  .popup-section.publication-popup .box {
    width: 100%;
  }
}
.popup-section.publication-popup .box .content {
  min-height: 374px;
  width: 610px;
  max-width: 100%;
  gap: 24px;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
}
.popup-section .popup-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
  position: absolute;
  padding: 6px;
  top: 0;
  right: 0;
  background: rgba(228, 232, 238, 0);
}
.popup-section .popup-close:hover {
  background: rgb(228, 232, 238);
}
.popup-section .popup-close svg {
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition-base);
}
.popup-section .popup-close svg path {
  transition: var(--transition-base);
}
.popup-section .box {
  background-color: #fff;
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}
.popup-section .box .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 410px;
  max-width: 100%;
  min-height: 410px;
  max-height: 100vh;
  padding: 40px;
}
.popup-section .box .content .title {
  font-size: 26px !important;
  font-style: normal;
  font-weight: 300;
  line-height: 40px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}
.popup-section .box .content .title.color-red {
  font-size: 30px !important;
  line-height: 125%;
  color: #be0404;
}
.popup-section .box .content .text p {
  text-align: center;
  font-size: 22px !important;
  font-style: normal;
  font-weight: 300;
  line-height: 32px;
  margin-bottom: 15px;
}
.popup-section .box .content .text p:last-child {
  margin-bottom: 0;
}
.popup-section .box .pub-btn-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
}
.popup-section .box .pub-btn-items .btn {
  width: 160px;
  max-width: 100%;
}
@media only screen and (max-width: 767px) {
  .popup-section .box .pub-btn-items {
    flex-direction: column;
  }
  .popup-section .box .pub-btn-items .btn {
    width: 100%;
  }
}
.popup-section .box .btn-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media only screen and (max-width: 992px) {
  .modal-section .box {
    width: 100%;
    min-width: 100%;
    border-radius: 0;
    padding: 0 50px;
  }
}
@media only screen and (max-width: 767px) {
  .modal-section {
    height: 100dvh;
  }
  .modal-section .title-modal {
    font-size: 26px !important;
    line-height: 34px !important;
  }
  .modal-section .btn {
    margin-top: 16px;
  }
  .modal-section .box {
    gap: 30px;
    padding: 0 20px;
  }
  .modal-section .input-box input {
    padding-inline: 0;
  }
  .modal-section .wpcf7 {
    overflow: auto;
  }
}
@media only screen and (max-width: 1024px) {
  .footer .col .box {
    margin-top: 125px;
  }
}
@media only screen and (max-width: 767px) {
  .footer .col .box {
    margin-top: 0;
  }
  .footer .menu-items {
    -moz-column-count: 2;
    column-count: 2;
  }
  .footer .container {
    gap: 20px;
  }
  .footer .logo {
    width: 50%;
    margin-bottom: 20px;
  }
  .footer .logo svg {
    width: 100%;
    height: auto;
  }
  .footer .col:nth-child(2) {
    gap: 20px;
  }
  .footer .col.copyrights {
    flex-direction: column;
  }
  .footer .row {
    flex-direction: column;
    gap: 20px;
  }
  .footer .box {
    flex-direction: column;
  }
  .footer .social-items {
    flex-direction: row;
  }
}
.home section {
  margin-bottom: 100px;
}

.home-page .banner {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .home-page .banner {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 1024px) {
  .home section {
    margin-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .home section {
    margin-bottom: 40px;
  }
}
