/*!*******************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/styles/main.scss ***!
  \*******************************************************************************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap);

/*!***********************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/styles/main.scss (1) ***!
  \***********************************************************************************************************************************************/
*,
*:before,
*:after {
  box-sizing: border-box;
  outline: none;
}

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;
  font-family: "Source Sans 3", sans-serif;
  -moz-osx-font-smoothing: grayscale;
  /* Firefox */
  -webkit-font-smoothing: antialiased;
  /* WebKit  */
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  background-color: #F3F7F5;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-left: 0;
}

a:focus,
button:focus {
  outline: none;
}

header {
  position: relative;
  z-index: 99;
  background: #fff;
}

.container {
  max-width: 1550px;
  width: 100%;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}


.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  transition: all 0.4s ease;
}

.header.hide {
  transform: translateY(-100%);
  opacity: 0;
}

.header .sticky {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
}

.head-spacer {
  height: 155px;
}

.header.sticky.show {
  animation: slideDown 0.5s ease forwards;
}


@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.bar-top {
  background: #00260E;
}

.content-barTop {
  padding: 16px 0;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content-barTop .btm {
  font-size: 14px;
}

.content-barTop .btm strong {
  font-weight: 700;
}

.content-barTop .coord {
  display: flex;
  align-items: center;
  gap: 90px;
}

.content-barTop .coord .info-tel {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 14px;
  font-weight: 600;
}

.content-barTop .coord .info-tel strong {
  font-weight: 600;
}

.content-barTop .coord ul {
  display: flex;
  gap: 16px;
  align-items: center;
}

.content-barTop .coord ul a {
  text-decoration: none;
}

.content-barTop .coord ul a img {
  transition: all 0.3s;
}

.content-barTop .coord ul a:hover img {
  transform: rotate(360deg);
}

.search-box {
  display: none;
  position: absolute;
  top: -15px;
  right: 47px;
}

.search-box form {
  position: relative;
}

.search-box input[type=text] {
  display: block;
  width: 100%;
  height: 74px;
  border-radius: 40px;
  padding: 0 40px;
  background: #fff;
  border: 1px solid #DBDADE;
  font-size: 18px;
}

.search-box input[type=submit] {
  position: absolute;
  top: 15px;
  right: 20px;
  background: #096D3A;
  border: 1px solid #096D3A;
  padding: 12px 24px;
  color: #fff;
  border-radius: 40px;
  font-size: 16px;
}

.bar-menu .plus-link {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.bar-menu .plus-link a {
  font-size: 16px;
  color: #2A2F35;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.bar-menu .plus-link a img {
  display: inline-block;
  margin-right: 8px;
}

.bar-menu .plus-link a:hover {
  color: #800200;
}

.bar-menu .search {
  width: 42px;
  position: relative;
}

.bar-menu .search .btn-search {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #57B33E;
  background: url(../images/ico-search.svg) no-repeat center #096D3A;
}

.bar-menu .search.active .search-box {
  display: block;
  width: 1280px;
}

.bar-menu .search.active .btn-search {
  background: url(../images/xmark.svg) center #fff no-repeat;
}

.inner-menu {
  display: flex;
  gap: 32px;
}

.inner-menu .menu-rsc {
  display: flex;
  gap: 16px;
  align-items: center;
}

.banner .item-banner {
  height: 736px;
  overflow: hidden;
}

.banner .item-banner .container {
  position: relative;
  z-index: 2;
}

.banner .item-banner img {
  object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
}

.banner .swiper-button-next,
.banner .swiper-button-prev {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #BDA457;
  opacity: 1;
}

.banner .swiper-button-next:after,
.banner .swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
  color: #BDA457;
  font-size: 16px;
}

.banner .swiper-button-prev,
.banner .swiper-rtl .swiper-button-next {
  left: 95px;
}

.banner .swiper-button-next,
.banner .swiper-rtl .swiper-button-prev {
  right: 95px;
}

.banner .swiper-pagination {
  bottom: 32px !important;
}

.banner .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  background: transparent;
  opacity: 1;
}

.banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
}

.title-section {
  padding-bottom: 25px;
}

.title-section h2 {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  color: #116731;
  padding-bottom: 25px;
}

.title-section p {
  text-align: center;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  color: #2A2F35;
  font-size: 22px;
  line-height: 1.4;
}

.actualites {
  padding: 80px 0;
  background: #fff;
}

.actualites.actualites-rse {
  background: #F3F7F5;
}

.actualites .container {
  max-width: 1652px;
  padding-left: 64px;
  padding-right: 64px;
  position: relative;
}

.actualites .swiper-button-prev,
.actualites .swiper-rtl .swiper-button-next {
  left: 0;
  color: #116731;
  font-weight: bold;
}

.actualites .swiper-button-prev:after,
.actualites .swiper-rtl .swiper-button-next:after {
  font-size: 32px;
}

.actualites .swiper-button-next,
.actualites .swiper-rtl .swiper-button-prev {
  right: 0;
  color: #116731;
  font-weight: bold;
}

.actualites .swiper-button-next:after,
.actualites .swiper-rtl .swiper-button-prev:after {
  font-size: 32px;
}

.actualites .show-more {
  margin: 0 auto;
}

.actualites .control-swiper {
  display: flex;
  justify-content: center;
  padding-top: 35px;
  align-items: center;
}

.actualites .control-swiper .swiper-button-next,
.actualites .control-swiper .swiper-button-prev {
  position: static;
  border: none;
}

.actualites .control-swiper .swiper-button-next:after,
.actualites .control-swiper .swiper-button-prev:after {
  font-size: 16px;
  color: #fff;
}

.actualites .control-swiper .swiper-pagination {
  position: static;
  width: fit-content;
  padding-bottom: 20px;
}

.slide-actus {
  overflow: hidden;
  padding-bottom: 30px;
}

.item-actus {
  background: #FDFDFD;
  border: 1px solid #F1F1F1;
  border-radius: 24px;
  overflow: hidden;
}

.item-actus .visu-actus {
  position: relative;
}

.item-actus .visu-actus img {
  display: block;
  width: 100%;
}

.item-actus .visu-actus .label-actus {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 12px;
  color: #000;
  padding: 15px 25px;
  border-radius: 40px;
  background: #fff;
}

.item-actus .infos-actus {
  padding: 24px 40px 40px 40px;
}

.item-actus .infos-actus .date {
  color: #2A2F35;
  font-size: 16px;
  padding-bottom: 16px;
}

.item-actus .infos-actus .desc-actus {
  padding-bottom: 32px;
  display: flex;
  gap: 8px;
  flex-direction: column;
  color: #030606;
}

.item-actus .infos-actus .desc-actus h3 {
  font-size: 28px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 700;
  line-height: 1.2;
}

.item-actus .infos-actus .desc-actus p {
  font-size: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}

.item-actus .infos-actus a {
  display: flex;
  color: #116731;
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
  gap: 10px;
  align-items: center;
  padding-bottom: 5px;
  width: fit-content;
}

.item-actus .infos-actus a:after {
  content: "";
  display: block;
  width: 20px;
  height: 26px;
  background: url(../images/arrow-right.svg) center no-repeat;
}

.item-actus .infos-actus .sup-infos-actus {
  display: flex;
  align-items: center;
  gap: 10px;
}

.item-actus .infos-actus .sup-infos-actus .sepa {
  background: #030606;
  width: 1px;
  height: 13px;
}

.item-actus .infos-actus .sup-infos-actus .date-actu {
  color: #030606;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.item-actus .infos-actus .sup-infos-actus .comment-actu {
  color: #030606;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.control-swiper .swiper-button-next,
.control-swiper .swiper-button-prev {
  width: 48px;
  height: 48px;
  border: 1px solid #424444;
  border-radius: 50%;
}

.control-swiper .swiper-button-next,
.control-swiper .swiper-rtl .swiper-button-prev {
  right: 0;
}

.control-swiper .swiper-button-prev,
.control-swiper .swiper-rtl .swiper-button-next {
  left: 0;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border: 1px solid #fff;
  background: transparent;
  opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0;
}

.show-more {
  display: block;
  background: #fff;
  border-radius: 48px;
  font-size: 22px;
  font-weight: 600;
  padding: 16px 60px 16px 32px;
  position: relative;
  text-decoration: none;
  color: #116731;
  border: 1px solid #116731;
  width: fit-content;
}

.show-more:after {
  position: absolute;
  top: 50%;
  margin-top: -13px;
  content: "";
  display: block;
  background: url(../images/arrow-right.svg) center no-repeat;
  width: 20px;
  height: 26px;
  right: 32px;
  transition: all 0.3s;
}

.show-more:hover:after {
  transform: translate(6px, 0);
}

.bka-products {
  background: #116731;
  padding: 80px 0;
}

.bka-products .title-section h2 {
  color: #fff;
}

.box-products {
  max-width: 1264px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 40px;
}

.box-products .item-cat-product {
  width: calc((100% - 64px) / 3);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px;
  text-decoration: none;
  flex-direction: column;
}

.box-products .item-cat-product .visu img {
  max-width: 100%;
}

.box-products .item-cat-product .name {
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}

.box-products .item-cat-sep {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  min-height: 326px;
  background: url(../images/img-cat-sep.png) center no-repeat;
  background-size: cover;
  align-items: end;
}

.box-products .item-cat-sep .content-cat-sep {
  padding: 24px 42px;
}

.box-products .item-cat-sep .content-cat-sep h2 {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  padding-bottom: 15px;
}

.box-products .item-cat-sep .content-cat-sep p {
  font-size: 20px;
  color: #fff;
  padding-bottom: 15px;
}

.box-products .item-cat-sep .content-cat-sep a {
  font-size: 20px;
  color: #116731;
  text-decoration: none;
  border: 1px solid #FFE000;
  background: #FFE000;
  border-radius: 40px;
  padding: 20px 40px;
  display: flex;
  width: fit-content;
  font-weight: 600;
  transition: all 0.3s;
}

.box-products .item-cat-sep .content-cat-sep a:hover {
  background: #116731;
  color: #FFE000;
}

.brands-sup {
  text-align: center;
}

.brands-sup img {
  max-width: 100%;
}

.bka-marques {
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.bka-marques .item-marques {
  text-align: center;
}

.bka-marques .item-marques img {
  margin: 0 auto;
}

.bka-marques .swiper-pagination {
  bottom: 30px;
}

.bka-marques .swiper-pagination .swiper-pagination-bullet {
  border: 1px solid #116731;
  width: 16px;
  height: 16px;
}

.bka-marques .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #116731;
}

.slide-marques img {
  display: block;
  max-width: 156px;
}

.bka-propos {
  padding: 80px 0;
}

.box-propos {
  max-width: 1002px;
  width: 100%;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.box-propos iframe {
  position: relative !important;
  height: 500px;
}

.box-propos:before {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#116731+0,012b11+100&0+0,0.67+100 */
  background: linear-gradient(to bottom, rgba(17, 103, 49, 0) 0%, rgba(1, 43, 17, 0.67) 100%);
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

.box-propos img {
  display: block;
  width: 100%;
}

.box-propos .btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 224, 0, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.box-propos .btn-play:after {
  background: url(../images/play.png) center no-repeat;
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.box-propos .btn-play:hover {
  background: #ffe000;
}

.bka-chiffres {
  background: #116731;
  padding: 80px 0;
}

.bka-chiffres .title-section h2 {
  color: #fff;
}

.box-chiffres {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 832px;
  width: 100%;
  margin: 0 auto;
}

.box-chiffres .item-chiffres {
  width: calc((100% - 64px) / 3);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-direction: column;
}

.box-chiffres .item-chiffres .nbr {
  font-size: 66px;
  font-weight: 700;
  color: #FFE000;
}

.box-chiffres .item-chiffres .label-nbr {
  font-size: 20px;
  color: #fff;
}

.bka-comite {
  padding: 80px 0;
}

.bka-comite .box-comite {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  padding-bottom: 56px;
}

.bka-comite .box-comite .item-comite {
  border-radius: 16px;
  overflow: hidden;
  max-width: 356px;
  border: 1px solid #F1F1F1;
  background: #fff;
}

.bka-comite .box-comite .item-comite .visu img {
  display: block;
  width: 100%;
}

.bka-comite .box-comite .item-comite .infos {
  padding: 24px 32px;
}

.bka-comite .box-comite .item-comite .infos .name {
  font-size: 18px;
  color: #2A2F35;
  padding-bottom: 15px;
}

.bka-comite .box-comite .item-comite .infos .label-comite {
  color: #116731;
  font-size: 28px;
  font-weight: 700;
}

.bka-comite .box-comite.box-comite-liste {
  padding-bottom: 0;
}

.bka-comite .box-comite.box-comite-liste .item-comite {
  width: calc((100% - 128px) / 5);
}

.bka-comite .box-comite.box-comite-liste .item-comite .infos .name {
  font-size: 14px;
}

.bka-comite .box-comite.box-comite-liste .item-comite .infos .label-comite {
  font-size: 18px;
}

.bka-services {
  padding: 80px 0;
  background: #F0ECD7;
}

.box-services {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  max-width: 1262px;
  width: 100%;
  margin: 0 auto;
}

.box-services .item-service {
  width: calc((100% - 48px) / 2);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #F1F1F1;
  background: #fff;
}

.box-services .visu img {
  display: block;
  width: 100%;
}

.box-services .infos {
  padding: 24px 40px 40px 40px;
}

.box-services .infos h3 {
  font-size: 28px;
  color: #116731;
  padding-bottom: 15px;
  font-weight: 700;
}

.box-services .infos p {
  font-size: 18px;
  color: #2A2F35;
  line-height: 1.2;
  padding-bottom: 25px;
}

.box-services .infos a {
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
  color: #116731;
  display: flex;
  width: fit-content;
  gap: 16px;
}

.box-services .infos a:after {
  content: "";
  display: block;
  background: url(../images/icon-arrow-right.svg) center no-repeat;
  width: 20px;
  height: 26px;
}

.bka-agregation {
  background: #fff;
  padding: 80px 0;
}

.bka-agregation .card-agregation {
  width: 100%;
  max-width: 1262px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  min-height: 440px;
  background: url(../images/fnd-agree.jpg) center no-repeat;
  background-size: cover;
  align-items: end;
}

.bka-agregation .card-agregation .content-agregation {
  padding: 24px 42px;
}

.bka-agregation .card-agregation .content-agregation h2 {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  padding-bottom: 15px;
}

.bka-agregation .card-agregation .content-agregation p {
  font-size: 20px;
  color: #fff;
  padding-bottom: 15px;
}

.bka-agregation .card-agregation .content-agregation a {
  font-size: 20px;
  color: #116731;
  text-decoration: none;
  border: 1px solid #FFE000;
  background: #FFE000;
  border-radius: 40px;
  padding: 20px 40px;
  display: flex;
  width: fit-content;
  font-weight: 600;
  transition: all 0.3s;
  gap: 15px;
}

.bka-agregation .card-agregation .content-agregation a:hover {
  background: #116731;
  color: #FFE000;
}

.bka-histoire {
  padding: 80px 0;
}

.box-histoire {
  padding-top: 120px;
}

.line-history {
  position: relative;
}

.line-history .item-history {
  position: relative;
  left: 0%;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: end;
  padding-right: 60px;
}

.line-history .item-history:before {
  content: "";
  display: block;
  width: 2px;
  background: #FFE000;
  position: absolute;
  top: 0;
  right: -1px;
  z-index: 1;
  bottom: 0;
}

.line-history .item-history:first-child {
  margin-top: 0;
}

.line-history .item-history:after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: #116731;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: -20px;
  z-index: 1;
}

.line-history .item-history:nth-child(2n) {
  left: 50%;
  align-items: start;
  padding-right: inherit;
  padding-left: 60px;
  border: none;
}

.line-history .item-history:nth-child(2n):after {
  right: inherit;
  left: -20px;
}

.line-history .item-history:nth-child(2n):before {
  right: inherit;
  left: -1px;
}

.line-history .item-history .date-history {
  font-size: 72px;
  color: #116731;
  padding-bottom: 24px;
  font-weight: 700;
}

.line-history .card-history {
  max-width: 571px;
  width: 100%;
  background: #fff;
  border-radius: 32px;
  border: 1px solid #FFE000;
  overflow: hidden;
}

.line-history .card-history .desc h3 {
  font-size: 28px;
  color: #fff;
  padding: 24px 32px;
  background: #116731;
  font-weight: 700;
}

.line-history .card-history .desc .desc-hist {
  padding: 32px;
}

.line-history .card-history .desc p {
  font-size: 20px;
  line-height: 1.4;
  color: #2A2F35;
}

.date-now {
  position: relative;
  text-align: center;
  padding-top: 48px;
  font-size: 38px;
  font-weight: 700;
  color: #116731;
}

.date-now:after {
  width: 24px;
  height: 24px;
  background: #116731;
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.bka-slide {
  padding: 80px 0;
  background: #fff;
}

.bka-slide.bka-slide-rse {
  background: #F3F7F5;
}

.bka-slide .box-bka-slide {
  overflow: hidden;
  position: relative;
  max-width: 1004px;
  width: 100%;
  margin: 0 auto;
}

.bka-slide .item-bka {
  overflow: hidden;
  border-radius: 16px;
}

.bka-slide .item-bka img {
  display: block;
  width: 100%;
}

.bka-slide .swiper-button-next,
.bka-slide .swiper-button-prev {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  opacity: 1;
}

.bka-slide .swiper-button-next:after,
.bka-slide .swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
  color: #116731;
  font-size: 16px;
}

.bka-slide .swiper-button-prev,
.bka-slide .swiper-rtl .swiper-button-next {
  left: 32px;
}

.bka-slide .swiper-button-next,
.bka-slide .swiper-rtl .swiper-button-prev {
  right: 32px;
}

.bka-slide .swiper-pagination {
  bottom: 32px;
}

.bka-slide .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  background: transparent;
  opacity: 1;
}

.bka-slide .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
}

.bka-refrents {
  padding: 80px 0;
  background: #F0ECD7;
}

.box-refrents {
  max-width: 1004px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.box-refrents .item-refrents {
  width: calc((100% - 32px) / 2);
  background: #fff;
  border-radius: 16px;
  padding: 32px 68px;
  text-align: center;
}

.box-refrents .item-refrents .icon-ref {
  text-align: center;
  padding-bottom: 10px;
}

.box-refrents .item-refrents .name {
  color: #116731;
  font-size: 28px;
  font-weight: 700;
  padding-bottom: 10px;
  text-align: center;
}

.box-refrents .item-refrents .tel {
  font-size: 22px;
  color: #2A2F35;
  padding-bottom: 25px;
  text-align: center;
}

.box-refrents .item-refrents a {
  font-size: 20px;
  color: #116731;
  font-weight: 600;
  border: 1px solid #116731;
  border-radius: 40px;
  background: #FFE000;
  display: flex;
  gap: 15px;
  text-align: center;
  padding: 16px 40px;
  text-decoration: none;
  width: fit-content;
  margin: 0 auto;
}

.contact-refrents {
  background: #fff;
  padding: 80px 0;
}

.contact-refrents .box-contact-refrents {
  max-width: 1002px;
  width: 100%;
  margin: 0 auto;
  background: #116731;
  border-radius: 16px;
  padding: 48px;
  text-align: center;
}

.contact-refrents .box-contact-refrents h2 {
  font-size: 38px;
  color: #fff;
  font-weight: 700;
  padding-bottom: 24px;
}

.contact-refrents .box-contact-refrents p {
  font-size: 22px;
  color: #fff;
  font-weight: 700;
  padding-bottom: 32px;
  line-height: 1.4;
}

.contact-refrents .box-contact-refrents p span {
  display: block;
  font-weight: 400;
}

.contact-refrents .box-contact-refrents a {
  font-size: 20px;
  color: #116731;
  font-weight: 600;
  border: 1px solid #116731;
  border-radius: 40px;
  background: #FFE000;
  display: flex;
  width: fit-content;
  gap: 15px;
  padding: 16px 40px;
  text-decoration: none;
  margin: 0 auto;
}

.bka-signalement {
  padding: 80px 0;
}

.bka-signalement .box-signalement {
  padding: 32px 92px;
  background: #fff;
  text-align: center;
  max-width: 1002px;
  width: 100%;
  margin: 0 auto;
  border-radius: 16px;
}

.bka-signalement .box-signalement p {
  font-size: 24px;
  color: #2A2F35;
  line-height: 1.3;
  padding-bottom: 24px;
}

.bka-signalement .box-signalement a {
  font-size: 20px;
  color: #116731;
  font-weight: 600;
  border: 1px solid #116731;
  border-radius: 40px;
  background: #FFE000;
  display: flex;
  width: fit-content;
  gap: 15px;
  padding: 16px 40px;
  text-decoration: none;
  margin: 0 auto;
}

.bka-downl-doc {
  background: #fff;
  padding: 80px 0;
}

.bka-downl-doc .box-downl-doc {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
}

.bka-downl-doc .tabs {
  width: 100%;
}

.bka-downl-doc .tab-links {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1px;
  flex-wrap: wrap;
}

.bka-downl-doc .tab-links li {
  padding: 16px 32px;
  background: #F0ECD7;
  cursor: pointer;
  transition: 0.3s;
  font-size: 18px;
  font-weight: 600;
}

.bka-downl-doc .tab-links li.active {
  background: #116731;
  color: #fff;
}

.bka-downl-doc .tab-content {
  border: 1px solid #F4F4F4;
}

.bka-downl-doc .tab {
  display: none;
}

.bka-downl-doc .tab .label-doc {
  font-size: 24px;
  font-weight: 700;
  color: #030606;
  padding: 24px;
}

.bka-downl-doc .tab ul li {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
}

.bka-downl-doc .tab ul li span {
  font-size: 20px;
  font-weight: 600;
  color: #030606;
}

.bka-downl-doc .tab ul li a {
  font-size: 20px;
  color: #116731;
  font-weight: 600;
  border: 1px solid #116731;
  border-radius: 40px;
  background: #FFE000;
  display: flex;
  width: fit-content;
  gap: 15px;
  padding: 8px 22px;
  text-decoration: none;
}

.bka-downl-doc .tab.active {
  display: block;
}

.bka-appels {
  background: #fff;
  padding: 80px 0;
  text-align: center;
}

.bka-appels img {
  max-width: 100%;
}

.presentation {
  padding: 80px 0;
  background: #F0ECD7;
}

.presentation .box-presentation {
  max-width: 1262px;
  width: 100%;
  margin: 0 auto;
}

.presentation .box-presentation p {
  font-size: 22px;
  line-height: 1.4;
  color: #2A2F35;
  padding-bottom: 24px;
}

.presentation .box-presentation p strong {
  font-weight: 700;
}

.presentation .box-presentation a {
  font-size: 20px;
  color: #116731;
  font-weight: 600;
  border: 1px solid #116731;
  border-radius: 40px;
  background: #FFE000;
  display: flex;
  width: fit-content;
  gap: 15px;
  padding: 16px 40px;
  text-decoration: none;
  margin: 30px auto 0 auto;
}

.bka-participer {
  padding: 80px 0;
  background: #fff;
}

.bka-participer .box-participer {
  max-width: 744px;
  width: 100%;
  margin: 0 auto;
}

.bka-participer .box-participer .visu img {
  display: block;
  width: 100%;
  margin-bottom: 40px;
}

.bka-participer .box-participer a {
  font-size: 20px;
  color: #116731;
  font-weight: 600;
  border: 1px solid #116731;
  border-radius: 40px;
  background: #FFE000;
  display: flex;
  width: fit-content;
  gap: 15px;
  padding: 16px 40px;
  text-decoration: none;
  margin: 30px auto 0 auto;
}

.bka-temoignages {
  background: rgba(17, 103, 49, 0.0509803922);
  padding: 80px 0;
  overflow: hidden;
}

.bka-temoignages .slide-tem {
  position: relative;
  padding-top: 60px;
  padding-bottom: 80px;
}

.bka-temoignages .item-tem {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  width: 744px;
}

.bka-temoignages .item-tem .title {
  font-size: 24px;
  color: #116731;
  font-weight: 700;
  background: rgba(17, 103, 49, 0.2);
  padding: 24px 32px;
}

.bka-temoignages .item-tem .content-tem {
  padding: 24px 40px;
}

.bka-temoignages .item-tem .preso {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}

.bka-temoignages .item-tem .preso .visu {
  width: 136px;
  border-radius: 50%;
  border: 4px solid rgba(255, 224, 0, 0.6980392157);
}

.bka-temoignages .item-tem .preso .visu img {
  display: block;
  width: 100%;
}

.bka-temoignages .item-tem .preso .detail-perso {
  width: calc(100% - 136px);
  padding-left: 24px;
}

.bka-temoignages .item-tem .preso .detail-perso .name {
  color: #116731;
  font-size: 24px;
  font-weight: 900;
  padding-bottom: 5px;
}

.bka-temoignages .item-tem .preso .detail-perso .label-perso {
  color: #57B33E;
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 5px;
}

.bka-temoignages .item-tem .preso .detail-perso .cert-perso {
  color: #116731;
  font-size: 24px;
  font-weight: 600;
}

.bka-temoignages .item-tem .note-tem {
  background: rgba(232, 241, 204, 0.5019607843);
  padding: 16px 50px;
  margin-bottom: 25px;
  border-radius: 16px;
  font-size: 17px;
  color: #2A2F35;
  line-height: 1.4;
  position: relative;
  text-align: center;
}

.bka-temoignages .item-tem .note-tem:before {
  content: "";
  display: block;
  width: 24px;
  height: 23px;
  position: absolute;
  left: 16px;
  top: 16px;
  background: url(../images/apostropheapostrophe.svg) center no-repeat;
}

.bka-temoignages .item-tem .note-tem:after {
  content: "";
  display: block;
  width: 24px;
  height: 23px;
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: url(../images/apostropheapostrophe-2.svg) center no-repeat;
}

.bka-temoignages .item-tem .logos {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

.bka-temoignages .all-tem {
  font-size: 20px;
  color: #116731;
  font-weight: 600;
  border: 1px solid #116731;
  border-radius: 40px;
  background: #FFE000;
  display: flex;
  width: fit-content;
  gap: 15px;
  padding: 16px 40px;
  text-decoration: none;
  margin: 45px auto 0 auto;
}

.bka-temoignages .control-swiper {
  position: absolute;
  width: 74px;
  height: 29px;
  top: 0;
  right: 0;
}

.bka-temoignages .control-swiper .swiper-button-next,
.bka-temoignages .control-swiper .swiper-button-prev {
  width: 21px;
  height: 29px;
  border: none;
  border-radius: inherit;
  background: url(../images/arrow-right-slide.svg) center no-repeat;
  opacity: 1;
}

.bka-temoignages .control-swiper .swiper-button-next:after,
.bka-temoignages .control-swiper .swiper-button-prev:after {
  display: none;
}

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

.bka-temoignages .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  border: 1px solid #116731;
}

.bka-temoignages .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #116731;
}

.bka-card-links {
  background: #fff;
  padding: 80px 0;
}

.bka-card-links .box-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.bka-card-links .box-card-links .item-card-links {
  width: calc((100% - 64px) / 3);
  border: 1px solid #F1F1F1;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.bka-card-links .box-card-links .item-card-links a {
  font-size: 20px;
  color: #116731;
  font-weight: 600;
  border: 1px solid #116731;
  border-radius: 40px;
  background: #FFE000;
  display: flex;
  width: fit-content;
  gap: 15px;
  padding: 16px 40px;
  text-decoration: none;
  margin: 0 auto;
}

.bka-piliers {
  background: #fff;
  padding: 80px 0;
}

.box-piliers {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  padding: 0 65px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.box-piliers .item-piliers {
  width: calc((100% - 80px) / 3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.box-piliers .item-piliers .num-pili {
  background: rgba(17, 103, 49, 0.1019607843);
  width: 64px;
  height: 64px;
  font-size: 38px;
  color: #116731;
  font-weight: 700;
  margin-bottom: 24px;
  border: 4px solid #116731;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-piliers .item-piliers .desc {
  text-align: center;
  font-size: 24px;
  line-height: 1.4;
  color: #2A2F35;
  font-weight: 600;
  padding: 0 30px;
}

.txt-img {
  background: #fff;
  padding: 80px 0;
}

.txt-img.txt-img-odd .box-txt-img {
  flex-direction: row-reverse;
}

.box-txt-img {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
  align-items: center;
}

.box-txt-img .visu {
  width: calc((100% - 64px) / 2);
}

.box-txt-img .visu img {
  display: block;
  width: 100%;
  border: 16px;
}

.box-txt-img .desc {
  width: calc((100% - 64px) / 2);
}

.box-txt-img .desc .title {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 36px;
  color: #116731;
  font-weight: 700;
  padding-bottom: 32px;
}

.box-txt-img .desc p {
  font-size: 22px;
  color: #2A2F35;
  line-height: 1.4;
  padding-bottom: 25px;
}

.all-products {
  padding: 80px 0;
}

.list-products .filters {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  align-items: center;
  border-bottom: 4px solid #B8B8B8;
}

.list-products .filters .button {
  border: none;
  background: none;
  font-size: 17px;
  color: #000;
  padding: 8px 5px;
  cursor: pointer;
  position: relative;
  width: 14.28%;
  text-align: center;
}

.list-products .filters .button.is-checked:after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: #116731;
  position: absolute;
  left: 0;
  bottom: -4px;
}

.list-products .grid {
  display: flex;
  flex-wrap: wrap;
}

.list-products .grid-item {
  display: flex;
  flex-direction: column;
  width: 20%;
  margin-bottom: 40px;
  padding: 0 32px;
}

.list-products .content-grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 25px;
  background: #fff;
  height: 100%;
}

.list-products .content-grid-item .visu-grid-item {
  margin-bottom: 20px;
}

.list-products .content-grid-item .visu-grid-item img {
  width: 100%;
}

.list-products .content-grid-item span {
  font-size: 24px;
  color: #000000;
  display: block;
  font-weight: 600;
  text-align: center;
}

.list-products .content-grid-item span span {
  font-size: 18px;
  font-weight: 500;
}

.option-brakina {
  padding: 80px 0;
  background: #F0ECD7;
}

.option-brakina .show-more {
  margin: 56px auto 0 auto;
  background: #FFE000;
}

.box-option-brakina {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.box-option-brakina .item-option-brakina {
  width: calc((100% - 96px) / 4);
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.box-option-brakina .item-option-brakina .desc {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: #2A2F35;
  text-align: center;
}

.box-option-brakina .item-option-brakina .desc span {
  display: block;
  margin-top: 15px;
  font-weight: 400;
}

.footer {
  background: #00260E;
  padding: 80px 0;
}

.footer .row-logo-menu-footer {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #E7E7E7;
  padding-bottom: 35px;
}

.footer .row-logo-menu-footer .col-logo {
  max-width: 580px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}

.footer .row-logo-menu-footer .col-logo .logo-rss {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.footer .row-logo-menu-footer .col-logo .logo-rss ul {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer .row-logo-menu-footer .col-logo p {
  color: #DFDFDF;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  line-height: 22px;
}

.footer .row-logo-menu-footer .coord-footer {
  max-width: 475px;
}

.footer .row-logo-menu-footer .coord-footer .line-info {
  display: flex;
  gap: 15px;
  align-items: start;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  padding-bottom: 40px;
  color: #DFDFDF;
}

.footer .row-logo-menu-footer .coord-footer .link-face {
  border-radius: 40px;
  display: flex;
  align-items: center;
  padding: 16px 32px;
  background: #395794;
  width: fit-content;
  gap: 15px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.footer .row-logo-menu-footer .col-menu {
  display: flex;
  gap: 80px;
}

.footer .row-logo-menu-footer .col-menu .item-com-menu:last-child {
  padding-right: 0;
}

.footer .row-logo-menu-footer .col-menu .item-com-menu h4 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  padding-bottom: 20px;
}

.footer .row-logo-menu-footer .col-menu .item-com-menu ul li {
  padding-bottom: 20px;
}

.footer .row-logo-menu-footer .col-menu .item-com-menu ul li a {
  font-size: 18px;
  color: #DFDFDF;
  text-decoration: none;
  transition: all 0.3s;
}

.footer .row-logo-menu-footer .col-menu .item-com-menu ul li a:hover {
  color: #800200;
}

.footer .row-logo-menu-footer .col-menu .item-com-menu .link-whats {
  display: flex;
  background: #FFE000;
  justify-content: center;
  gap: 15px;
  color: #116731;
  padding: 16px 32px;
  border-radius: 40px;
  text-decoration: none;
  margin-top: 30px;
}

.footer .row-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 48px;
}

.footer .row-copyright .copyright {
  font-size: 16px;
  color: #fff;
  font-family: "Open Sans", sans-serif;
}

.footer .row-copyright ul {
  display: flex;
  gap: 25px;
}

.footer .row-copyright ul a {
  text-decoration: none;
  font-size: 16px;
  color: #fff;
  font-family: "Open Sans", sans-serif;
}

.hasFnd {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hasFnd>img {
  display: none;
}

.bka-pagination {
  padding-top: 30px;
}

.bka-pagination ul {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.bka-pagination ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid #116731;
  border-radius: 50%;
  color: #2A2F35;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  text-decoration: none;
}

.bka-pagination ul li a.crrent {
  background: #116731;
  border: 1px solid #116731;
  color: #fff;
}

.bka-pagination ul li a.prev,
.bka-pagination ul li a.next {
  width: auto;
  height: auto;
  color: #116731;
  font-size: 18px;
  position: relative;
  padding-right: 35px;
  border: none;
}

.bka-pagination ul li a.prev:after,
.bka-pagination ul li a.next:after {
  content: "";
  display: inline-block;
  background: url(../images/arrow-right.svg) center no-repeat;
  width: 20px;
  height: 26px;
  position: absolute;
  top: 0;
  right: 0;
}

.bka-pagination ul li a.prev.prev,
.bka-pagination ul li a.next.prev {
  padding-right: 0;
  padding-left: 35px;
}

.bka-pagination ul li a.prev.prev:after,
.bka-pagination ul li a.next.prev:after {
  top: -5px;
  left: 0;
  right: inherit;
  transform: rotate(180deg);
}

.detail-actu {
  padding: 80px 0;
}

.detail-actu .box-detail-actu {
  border: 1px solid #E6E6E6;
  background: #FCFCFC;
  border-radius: 24px;
  padding: 95px 130px;
}

.detail-actu .intro-actu {
  font-size: 36px;
  font-weight: 700;
  color: #2A2F35;
  padding-bottom: 30px;
}

.detail-actu .visu-detail {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  margin-bottom: 30px;
}

.detail-actu .visu-detail img {
  display: block;
  width: 100%;
}

.detail-actu .visu-detail .date {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 12px;
  color: #fff;
  padding: 15px 25px;
  border-radius: 40px;
  background: rgba(194, 15, 47, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.detail-actu p {
  font-size: 18px;
  color: #2A2F35;
  line-height: 24px;
  padding-bottom: 20px;
}

.detail-actu strong {
  font-weight: 700;
}

.detail-actu h1 {
  font-size: 36px;
  color: #2A2F35;
  font-weight: 700;
  padding-bottom: 15px;
}

.detail-actu h2 {
  font-size: 32px;
  color: #2A2F35;
  font-weight: 700;
  padding-bottom: 15px;
}

.detail-actu h3 {
  font-size: 26px;
  color: #2A2F35;
  font-weight: 700;
  padding-bottom: 15px;
}

.detail-actu h4 {
  font-size: 22px;
  color: #2A2F35;
  font-weight: 700;
  padding-bottom: 15px;
}

.detail-actu h5 {
  font-size: 18px;
  color: #2A2F35;
  font-weight: 700;
  padding-bottom: 15px;
}

.detail-actu h6 {
  font-size: 17px;
  color: #2A2F35;
  font-weight: 600;
  padding-bottom: 15px;
}

.detail-actu ul {
  list-style: disc;
  padding-left: 35px;
  padding-bottom: 35px;
}

.detail-actu ul li {
  padding-bottom: 10px;
  font-size: 18px;
  color: #2A2F35;
}

.detail-actu ol {
  list-style: decimal;
  padding-left: 35px;
  padding-bottom: 35px;
}

.detail-actu ol li {
  padding-bottom: 10px;
  font-size: 18px;
  color: #2A2F35;
}

.detail-actu blockquote {
  font-style: italic;
  font-size: 20px;
  padding-bottom: 20px;
}

.detail-actu blockquote p {
  font-size: 20px;
}

.detail-actu blockquote span {
  display: block;
  font-style: normal;
  font-weight: 600;
}

.detail-actu i {
  font-style: italic;
}

.detail-actu legend {
  font-style: italic;
  font-weight: 300;
  padding-bottom: 20px;
}

.bka-contact {
  padding: 80px 0;
  display: flex;
  flex-wrap: wrap;
}

.bka-contact h2 {
  font-size: 36px;
  font-weight: 700;
  color: #030606;
  padding-bottom: 32px;
}

.bka-contact p {
  font-size: 22px;
  padding-bottom: 32px;
  color: #030606;
}

.bka-contact .col-form {
  width: 50%;
  padding-right: 20px;
}

.bka-contact .form {
  border: 1px solid #E6E6E6;
  background: #FCFCFC;
  border-radius: 24px;
  padding: 40px;
}

.bka-contact .form label {
  font-size: 16px;
  font-weight: 600;
  display: block;
  padding-bottom: 5px;
  color: #4B465C;
}

.bka-contact .form input[type=text],
.bka-contact .form input[type=email],
.bka-contact .form input[type=tel],
.bka-contact .form select,
.bka-contact .form textarea {
  display: block;
  width: 100%;
  height: 39px;
  border: 1px solid #DBDADE;
  padding: 0 16px;
  font-size: 16px;
  color: #4B465C;
  border-radius: 6px;
}

.bka-contact .form textarea {
  height: 142px;
  padding-top: 16px;
}

.bka-contact .form input[type=submit] {
  border: none;
  background: url(../images/send.svg) 85% center no-repeat #BDA457;
  width: 162px;
  height: 54px;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  border-radius: 40px;
}

.bka-contact .row-form {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 16px;
}

.bka-contact .row-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bka-contact .col-option-1 {
  width: 100%;
}

.bka-contact .col-option-2 {
  width: calc((100% - 16px) / 2);
}

.bka-contact .col-option-3 {
  width: calc((100% - 32px) / 3);
}

.bka-contact .col-infos {
  width: 50%;
  padding-left: 20px;
}

.bka-contact .infos-icon {
  display: flex;
  gap: 15px;
  font-size: 22px;
  color: #030606;
  padding-bottom: 32px;
  align-items: start;
}

.bka-contact .infos-icon strong {
  font-weight: 600;
}

.mask-modal {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  display: none;
}

.mask-modal.show {
  display: flex;
}

.mask-modal .modal-bka {
  max-width: 505px;
  width: 100%;
  height: 520px;
  background: #fff;
  padding: 70px 30px 30px 30px;
  text-align: center;
}

.mask-modal .modal-bka img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.mask-modal .modal-bka .content-modal {
  padding-top: 30px;
}

.mask-modal .modal-bka h2 {
  font-size: 27px;
  font-weight: 700;
  color: #116731;
  padding-bottom: 35px;
}

.mask-modal .modal-bka p {
  font-size: 21px;
  color: #333333;
  padding-bottom: 35px;
}

.mask-modal .modal-bka a {
  display: inline-block;
  background: #116731;
  border-radius: 4px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 24px;
}

.mask-modal .modal-bka .remembre {
  padding-top: 25px;
  font-weight: 700;
}

.popup-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 9998;
}

.inner-banner {
  display: flex;
  min-height: 512px;
  align-items: end;
}

.title-page {
  padding-bottom: 24px;
}

.title-page span {
  display: block;
  font-size: 24px;
  text-transform: uppercase;
  color: #fff;
  padding-bottom: 12px;
}

.title-page h1 {
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  padding-bottom: 24px;
}

.inner-page {
  padding: 80px 0;
}

.filter-actus {
  display: flex;
  gap: 56px;
  padding-bottom: 48px;
}

.filter-actus .search {
  width: 100%;
}

.filter-actus .search-box {
  display: block;
  position: static;
  width: 100%;
}

.filter-actus .trier-actu {
  display: flex;
  gap: 24px;
}

.filter-actus .trier-actu label {
  display: block;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #4B465C;
}

.filter-actus .trier-actu select {
  border-radius: 34px;
  padding: 0 16px;
  height: 43px;
  width: 250px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(../images/ico-select.svg);
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 10px;
}

.intro-banner {
  max-width: 1096px;
  width: 100%;
  padding-bottom: 56px;
  margin: 0 auto;
}

.intro-banner img {
  display: block;
  width: 100%;
  border-radius: 16px;
}

.title-bloc {
  padding-bottom: 56px;
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  color: #116731;
}

.list-actus {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.list-actus .item-actus {
  width: calc((100% - 64px) / 3);
}

.link-back {
  padding-bottom: 56px;
}

.link-back a {
  display: flex;
  border: 1px solid #116731;
  color: #116731;
  border-radius: 40px;
  text-decoration: none;
  padding: 17px 40px;
  font-size: 22px;
  font-weight: 600;
  gap: 16px;
  width: fit-content;
}

.link-back a:before {
  content: "";
  display: block;
  width: 20px;
  height: 26px;
  background: url(../images/arrow-right.svg) center no-repeat;
  transform: rotate(180deg);
}

.detail-art {
  padding: 64px 160px;
  background: #fff;
  border-radius: 16px;
  margin-bottom: 56px;
}

.detail-art .date {
  font-size: 18px;
  color: #2A2F35;
  padding-bottom: 16px;
}

.detail-art .title-art {
  font-size: 36px;
  color: #116731;
  font-weight: 700;
  padding-bottom: 56px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
}

.detail-art .title-art ul {
  display: flex;
  gap: 16px;
  align-items: center;
  list-style: none;
  padding: 0;
}

.detail-art .title-art ul li {
  padding: 0;
}

.detail-art .title-art ul a {
  text-decoration: none;
}

.share-art {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

 .label-share {
  font-size: 18px;
  font-weight: 700;
  color: #2A2F35;
}

.label-art {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 12px;
  color: #000;
  padding: 15px 25px;
  border-radius: 40px;
  background: #fff;
}
.share-art ul{
  display: flex;
  gap: 16px;
  align-items: center;
  list-style: none;
  padding: 0;
}
.share-art ul li {
  list-style-type: none;
}
.detail-art .visu {
  position: relative;
  margin-bottom: 56px;
}

.detail-art .visu img {
  display: block;
  width: 100%;
  border-radius: 16px;
}

.detail-art p {
  font-size: 18px;
  color: #2A2F35;
  line-height: 1.4;
  padding-bottom: 15px;
}

.detail-art strong {
  font-weight: 600;
}

.detail-art strong {
  font-weight: 700;
}

.detail-art h1 {
  font-size: 36px;
  color: #2A2F35;
  font-weight: 700;
  padding-bottom: 15px;
}

.detail-art h2 {
  font-size: 32px;
  color: #2A2F35;
  font-weight: 700;
  padding-bottom: 15px;
}

.detail-art h3 {
  font-size: 26px;
  color: #2A2F35;
  font-weight: 700;
  padding-bottom: 15px;
}

.detail-art h4 {
  font-size: 22px;
  color: #2A2F35;
  font-weight: 700;
  padding-bottom: 15px;
}

.detail-art h5 {
  font-size: 18px;
  color: #2A2F35;
  font-weight: 700;
  padding-bottom: 15px;
}

.detail-art h6 {
  font-size: 17px;
  color: #2A2F35;
  font-weight: 600;
  padding-bottom: 15px;
}

.detail-art ul {
  list-style: disc;
  padding-left: 35px;
  padding-bottom: 35px;
}

.detail-art ul li {
  padding-bottom: 10px;
  font-size: 18px;
  color: #2A2F35;
}

.detail-art ol {
  list-style: decimal;
  padding-left: 35px;
  padding-bottom: 35px;
}

.detail-art ol li {
  padding-bottom: 10px;
  font-size: 18px;
  color: #2A2F35;
}

.detail-art blockquote {
  font-style: italic;
  font-size: 20px;
  padding-bottom: 20px;
}

.detail-art blockquote p {
  font-size: 20px;
}

.detail-art blockquote span {
  display: block;
  font-style: normal;
  font-weight: 600;
}

.detail-art i {
  font-style: italic;
}

.detail-art legend {
  font-style: italic;
  font-weight: 300;
  padding-bottom: 20px;
}

.box-gallery {
  padding-top: 40px;
  background: rgba(17, 103, 49, 0.0509803922);
  border-radius: 16px;
  overflow: hidden;
}

.box-gallery .swiper-button-next,
.box-gallery .swiper-button-prev {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #116731;
  opacity: 1;
}

.box-gallery .swiper-button-next:after,
.box-gallery .swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
  color: #116731;
  font-size: 16px;
}

.box-gallery .swiper-button-prev,
.box-gallery .swiper-rtl .swiper-button-next {
  left: 95px;
}

.box-gallery .swiper-button-next,
.box-gallery .swiper-rtl .swiper-button-prev {
  right: 95px;
}

.gallery .swiper-slide {
  text-align: center;
}

.gallery .swiper-slide img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.gallery-thambs {
  background: #023C18;
  padding: 24px;
}

.gallery-thambs .swiper-slide {
  width: fit-content;
}

.gallery-thambs .swiper-slide img {
  display: block;
  height: 192px;
  width: auto;
}

.list-commi {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.list-commi .item-commi {
  width: calc((100% - 96px) / 4);
  border-radius: 16px;
  background: #fff;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.list-commi .item-commi a {
  font-size: 20px;
  color: #116731;
  font-weight: 600;
  border: 1px solid #116731;
  border-radius: 40px;
  background: #FFE000;
  display: flex;
  gap: 15px;
  text-align: center;
  padding: 16px 40px;
  text-decoration: none;
  width: fit-content;
  margin: 0 auto;
}

.list-offres .item-offre {
  background: #FDFDFD;
  border: 1px solid #F1F1F1;
  padding: 40px;
  border-radius: 24px;
  margin-bottom: 40px;
}

.list-offres .item-offre .type-offre {
  font-size: 16px;
  color: #116731;
  padding-bottom: 20px;
}

.list-offres .item-offre h3 {
  font-size: 24px;
  font-weight: 700;
  color: #030606;
  padding-bottom: 20px;
}

.list-offres .item-offre p {
  font-size: 20px;
  line-height: 26px;
  padding-bottom: 44px;
}

.list-offres .item-offre .plus-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.list-offres .item-offre .sup-infos-offre {
  display: flex;
  align-items: center;
  gap: 16px;
}

.list-offres .item-offre .sup-infos-offre .sepa {
  background: #030606;
  width: 1px;
  height: 13px;
}

.list-offres .item-offre .sup-infos-offre .date-offre {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #030606;
}

.list-offres .item-offre .sup-infos-offre .comment-offre {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #030606;
}

.list-offres .item-offre a {
  border: 1px solid #116731;
  color: #116731;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 48px;
  padding: 16px 60px 16px 32px;
  position: relative;
}

.list-offres .item-offre a:after {
  position: absolute;
  top: 50%;
  margin-top: -11px;
  content: "";
  display: block;
  background: url(../images/ico-plus-green.svg) center no-repeat;
  width: 16px;
  height: 22px;
  right: 32px;
  transition: all 0.3s;
}

.bka-filters {
  padding-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.bka-filters h2 {
  font-size: 36px;
  font-weight: 700;
  color: #116731;
}

.bka-filters .filtre {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.bka-filters .filtre select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(../images/ico-select.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px;
  border: 1px solid #DBDADE;
  padding: 0 36px 0 10px;
  border-radius: 6px;
  cursor: pointer;
  height: 42px;
  color: #A5A2AD;
}

.bka-filters .label-filtre {
  font-size: 28px;
  font-weight: 600;
  color: #030606;
}

.bka-filters .option-filtre {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bka-filters .option-filtre label {
  color: #2A2F35;
  font-size: 20px;
  font-weight: 500;
}

.box-form {
  max-width: 1002px;
  width: 100%;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid #DBDADE;
  padding: 40px;
  background: #fff;
}

.box-form .col-infos-contact .label-item-contact {
  padding-bottom: 26px;
}

.box-form .col-infos-contact .label-item-contact h3 {
  font-size: 22px;
  color: #20111D;
  padding-bottom: 10px;
}

.box-form .col-infos-contact .label-item-contact p {
  font-size: 16px;
  color: #20111D;
}

.box-form .col-infos-contact .options-infos-contact {
  padding-bottom: 15px;
}

.box-form .col-infos-contact .row-infos-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 20px;
}

.box-form .col-infos-contact label {
  display: block;
  width: 100%;
  font-size: 18px;
  color: #2A2F35;
  padding-bottom: 5px;
  font-weight: 600;
}

.box-form .col-infos-contact input,
.box-form .col-infos-contact select,
.box-form .col-infos-contact textarea {
  width: 100%;
  border: 1px solid #DBDADE;
  border-radius: 35px;
  height: 51px;
  padding: 0 16px;
  font-size: 16px;
  color: #2A2F35;
}

.box-form .col-infos-contact select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(../images/ico-select.svg);
  background-repeat: no-repeat;
  background-position: right 25px center;
  background-size: 10px;
}

.box-form .col-infos-contact textarea {
  height: 142px;
  padding-top: 15px;
}

.box-form .col-infos-contact .col-option-3 {
  width: calc((100% - 32px) / 3);
}

.box-form .col-infos-contact .col-option-2 {
  width: calc((100% - 16px) / 2);
}

.box-form .col-infos-contact .col-option-2 span {
  color: #A5A2AD;
  font-size: 12px;
}

.box-form .col-infos-contact .col-option-1 {
  width: 100%;
}

.box-form .col-condition {
  display: flex;
  align-items: center;
  gap: 5px;
}

.box-form .col-condition input {
  height: 24px;
  width: 24px;
}

.box-form .input-file-holder {
  position: relative;
}

.box-form .input-file-upload-btn {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  background: #116731;
  border-top-right-radius: 35px;
  border-bottom-right-radius: 35px;
  height: 51px;
  padding: 0 20px;
  font-size: 14px;
  color: #fff;
}

.box-form .row-action-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.box-form .row-action-contact a {
  color: #800200;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  padding-right: 35px;
  text-decoration: none;
}

.box-form .row-action-contact a:after {
  content: "";
  display: inline-block;
  background: url(../images/action-arrow-right.svg) no-repeat;
  width: 16px;
  height: 22px;
  position: absolute;
  top: 0;
  right: 0;
}

.box-form .row-action-contact a.prev {
  padding-right: 0;
  padding-left: 35px;
}

.box-form .row-action-contact a.prev:after {
  top: -5px;
  left: 0;
  right: inherit;
  transform: rotate(180deg);
}

.box-form .row-action-contact a.desable {
  color: #94979A;
  pointer-events: none;
}

.box-form .row-action-contact a.desable:after {
  background: url(../images/disable-action-arrow-right.svg) no-repeat;
}

.box-form .row-action-contact button {
  border: none;
  background: #FFE000;
  border-radius: 40px;
  color: #116731;
  font-size: 20px;
  font-weight: 700;
  padding: 12px 32px;
  border: 1px solid #116731;
  cursor: pointer;
}

.box-form .row-action-contact button:after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 22px;
  background: url(../images/ico-send.svg) center no-repeat;
  margin-left: 5px;
  vertical-align: bottom;
}

.bka-contact-form {
  padding: 80px 0;
  background: #fff;
}

.bka-contact-map {
  padding: 80px 0;
}

.bka-contact-map .box-map {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.bka-contact-map .box-map .item-map {
  width: calc((100% - 32px) / 2);
  height: 455px;
}

.bka-contact-map .box-map .item-map iframe {
  width: 100%;
  height: 455px;
}

.box-detail-prod {
  border-radius: 16px;
  background: #fff;
  border: 1px solid #F1F1F1;
  padding: 64px;
  display: flex;
}

.box-detail-prod .visu {
  width: 287px;
}

.box-detail-prod .visu img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.box-detail-prod .desc {
  width: calc(100% - 287px);
}

.box-detail-prod .desc .title-logo {
  display: flex;
  align-items: end;
  gap: 24px;
  padding-bottom: 32px;
}

.box-detail-prod .desc .title-logo h2 {
  font-size: 36px;
  font-weight: 700;
  color: #2A2F35;
}

.box-detail-prod .desc .title-logo h2 span {
  display: block;
  font-weight: 600;
  font-weight: 26px;
}

.box-detail-prod .desc p,
.box-detail-prod .desc li,
.box-detail-prod .desc .cart,
.box-detail-prod .desc strong {
  font-size: 18px;
  color: #2A2F35;
}

.box-detail-prod .desc p {
  padding-bottom: 15px;
  line-height: 1.3;
}

.box-detail-prod .desc .cart {
  padding-bottom: 15px;
}

.box-detail-prod .desc strong {
  font-weight: 600;
}

.box-detail-prod .desc h5 {
  color: #116731;
  font-weight: 600;
  padding-bottom: 10px;
}

.box-detail-prod .desc ul {
  list-style: disc;
  padding-left: 20px;
}

.box-detail-prod .desc ul li {
  padding-bottom: 5px;
}

.box-detail-prod table {
  width: auto;
  margin-bottom: 20px;
  ;
}

.box-detail-prod table td {
  padding: 10px 15px;
}

.cross-prods {
  padding-top: 80px;
  overflow: hidden;
}

.cross-prods .all-cross {
  font-size: 20px;
  color: #116731;
  font-weight: 600;
  border: 1px solid #116731;
  border-radius: 40px;
  background: #fff;
  display: flex;
  width: fit-content;
  gap: 15px;
  padding: 16px 40px;
  text-decoration: none;
  margin: 45px auto 0 auto;
}

.slide-cross {
  position: relative;
  padding-top: 60px;
  padding-bottom: 80px;
}

.slide-cross .control-swiper {
  position: absolute;
  width: 74px;
  height: 29px;
  top: 0;
  right: 0;
}

.slide-cross .control-swiper .swiper-button-next,
.slide-cross .control-swiper .swiper-button-prev {
  width: 21px;
  height: 29px;
  border: none;
  border-radius: inherit;
  background: url(../images/arrow-right-slide.svg) center no-repeat;
  opacity: 1;
}

.slide-cross .control-swiper .swiper-button-next:after,
.slide-cross .control-swiper .swiper-button-prev:after {
  display: none;
}

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

.slide-cross .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  border: 1px solid #116731;
}

.slide-cross .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #116731;
}

.slide-cross .item-cross {
  width: 263px;
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.slide-cross .item-cross .visu {
  align-items: center;
}

.slide-cross .item-cross .visu img {
  max-width: 100%;
}

.slide-cross .item-cross .name {
  font-size: 24px;
  font-weight: 600;
}

.menu-row ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-row ul li {
  font-size: 15px;
  margin-right: 15px;
}

.menu-row ul li:last-child {
  margin-right: 0;
}

.menu-row ul li a {
  text-decoration: none;
  color: #2A2F35;
  padding: 43px 10px;
  display: inline-block;
  transition: 350ms all;
  font-size: 18px;
  font-weight: 600;
  position: relative;
}

.menu-row ul li a.active {
  color: #116731;
}

.menu-row ul li a:hover {
  color: #116731;
}

.menu-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.menu-box .logo {
  max-width: 140px;
}

.menu-box .logo img {
  width: 100%;
}

.menu {
  display: flex;
  flex-wrap: wrap;
}

@media only screen and (min-width: 1024px) {
  .bar-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .menu {
    display: flex !important;
  }

  .menu .megamenu>a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 28px;
    display: none;
  }

  .menu .megamenu>a:hover:after {
    display: block;
  }

  .menu li .sub-menu {
    transition: 350ms all;
  }

  .menu li:hover>.sub-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .menu li.megamenu>a {
    padding-right: 20px;
    position: relative;
  }

  .menu li.megamenu>a:before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    height: 8px;
    width: 8px;
    border-right: 2px solid #030606;
    border-bottom: 2px solid #030606;
    transform: translate(0, -50%) rotate(45deg);
  }

  .menu li .sub-menu {
    position: absolute;
    top: 100%;
    transform: translateY(50px);
    opacity: 0;
    visibility: hidden;
    background: #fff;
    min-width: 250px;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.04);
  }

  .menu li .sub-menu li {
    margin-right: 0;
    font-size: 16px;
    position: relative;
    border-bottom: 1px solid #F1F1F1;
  }

  .menu li .sub-menu li:last-child {
    border: none;
  }

  .menu li .sub-menu li a {
    color: #2A2F35;
    padding: 15px 20px;
    display: block;
    font-size: 16px;
    font-weight: 600;
  }

  .menu li .sub-menu li a:before {
    right: 15px;
    transform: rotate(-45deg);
  }

  .menu li .sub-menu .sub-menu {
    position: absolute;
    left: 100%;
    top: 0;
  }
}

@media only screen and (max-width: 1360px) {
  .menu-row ul li a {
    padding: 35px 5px;
    font-size: 15px;
  }
}

@media only screen and (max-width: 1224px) {
  .menu-row ul li {
    margin-right: 10px;
  }

  .menu-row ul li a {
    padding: 32px 5px;
    font-size: 12px;
  }
}

@media only screen and (max-width: 1023px) {
  .menu-box {
    justify-content: flex-end;
  }

  .link-rs ul {
    display: none;
  }

  #menu_trigger {
    height: 22px;
    width: 30px;
    display: inline-block;
  }

  #menu_trigger .menulines {
    margin-top: 9px;
    position: relative;
    display: block;
  }

  #menu_trigger .menulines,
  #menu_trigger .menulines:before,
  #menu_trigger .menulines:after {
    content: "";
    height: 2px;
    width: 30px;
    border-radius: 5px;
    background: #000;
  }

  #menu_trigger .menulines:before,
  #menu_trigger .menulines:after {
    position: absolute;
    left: 0;
  }

  #menu_trigger .menulines:before {
    top: -9px;
  }

  #menu_trigger .menulines:after {
    top: 9px;
  }

  .menu-row .mobile-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    overflow: hidden;
  }

  .menu-row .mobile-menu ul {
    transition: 350ms all;
    display: block;
  }

  .menu-row .mobile-menu li {
    margin: 0;
    border-bottom: 1px solid #000;
    font-size: 16px;
  }

  .menu-row .mobile-menu li a {
    color: #2A2F35;
    display: block;
    position: relative;
    padding: 15px 20px;
  }

  .menu-row .mobile-menu li a:hover {
    color: #FFEB3B;
  }

  .menu-row .mobile-menu li a .navtrigger {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    background: #000;
  }

  .menu-row .mobile-menu li a .navtrigger:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    height: 8px;
    width: 8px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .menu-row .mobile-menu li .sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    background: #fff;
    height: 100%;
    transition: 350ms all;
    z-index: 1;
  }

  .menu-row .mobile-menu li .sub-menu li {
    font-size: 14px;
  }

  .menu-row .mobile-menu li .sub-menu .backmenu-row {
    position: relative;
    padding: 20px;
    padding-left: 50px;
    background: #fff;
    font-size: 16px;
  }

  .menu-row .mobile-menu li .sub-menu .backmenu-row .back-trigger {
    padding: 0;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    display: block;
    background: white;
    border: 1px solid #000;
  }

  .menu-row .mobile-menu li .sub-menu .backmenu-row .back-trigger:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    height: 8px;
    width: 8px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: translate(-50%, -50%) rotate(135deg);
  }

  .menu-row .mobile-menu li .sub-menu .backmenu-row em {
    font-style: normal;
    color: #000;
  }

  .menu-row .mobile-menu li.sub-open>.sub-menu {
    left: 0;
  }
}

@media only screen and (max-width: 1660px) {
  .content-item-banner {
    padding-left: 70px;
  }
}

@media only screen and (max-width: 1224px) {
  .footer .row-logo-menu-footer .col-menu {
    gap: 20px;
  }

  .moca-contact .col-form {
    width: 100%;
    padding-right: 0;
    margin-bottom: 30px;
  }

  .moca-contact .col-infos {
    width: 100%;
    padding-left: 0;
  }
}

@media only screen and (max-width: 1060px) {
  .footer .row-logo-menu-footer {
    flex-direction: column;
  }

  .company .col-desc {
    width: 100%;
    padding-right: 0;
  }

  .company .col-slide {
    width: 100%;
  }
}

@media only screen and (max-width: 1023px) {
  .inner-menu .menu-rsc {
    display: none;
  }

  .box-product .item-our-product {
    width: calc((100% - 40px) / 2);
  }

  .lst-menu {
    display: none;
  }

  .bar-menu {
    padding: 32px 0;
    position: relative;
  }

  .bar-menu .logo-box {
    position: absolute;
    top: 10px;
    left: 0;
  }

  .bar-menu .plus-link {
    display: none;
  }

  .bar-menu .search {
    position: absolute;
    top: 20px;
    right: 30px;
    top: 22px;
    right: 50px;
  }

  .bar-menu .search .icon-loop span {
    display: none;
  }

  .bar-menu .search .search-box {
    height: auto;
  }

  .bar-menu .search .search-box button {
    font-size: 0;
    background: url(../images/loopl.svg) no-repeat;
    width: 25px;
    height: 25px;
    padding: 0;
  }

  .bar-menu .search .search-box .gray-loop {
    display: none;
  }

  .bar-menu .search .search-form {
    padding: 10px 25px;
  }

  .bar-menu .search.active .search-box {
    width: 300px;
  }

  .footer .row-logo-menu-footer .col-menu {
    gap: 25px;
  }

  .infos-tab-links li a {
    padding: 15px 13px;
    font-size: 20px;
  }

  .intro-history {
    padding: 24px;
    flex-direction: column;
  }

  .intro-history .col-carte-hitory img {
    width: 100%;
  }

  .intro-history .col-text-history p {
    font-size: 16px;
  }

  .list-cle .item-cle {
    width: calc((100% - 40px) / 2);
  }
}

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

  .btm,
  .content-barTop .coord .info-tel {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .control-banner {
    display: none;
  }

  .box-product .item-our-product {
    width: 100%;
  }

  .banner .item-banner .content-item-banner h3 {
    font-size: 36px;
  }

  .banner .item-banner .content-item-banner p {
    font-size: 26px;
  }

  .banner .item-banner {
    height: 520px;
  }

  .content-item-banner {
    padding-left: 0;
  }

  .footer .row-logo-menu-footer .col-logo {
    padding-bottom: 30px;
    max-width: 100%;
  }

  .list-news .item-news {
    width: 100%;
  }

  .bra-pagination ul {
    gap: 10px;
    flex-wrap: wrap;
  }

  .bra-pagination ul li a {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .inner-banner {
    min-height: 230px;
  }

  .inner-banner .title-page h1 {
    font-size: 39px;
  }

  .box-presentation .col-desc-pres {
    width: 100%;
    padding-right: 0;
  }

  .box-presentation .col-visu-pres {
    padding-top: 30px;
    width: 100%;
    padding-left: 0;
  }

  .inner-banner .container img {
    max-width: 50%;
  }

  .item-actus .infos-actus {
    padding: 20px;
  }

  .item-actus .infos-actus .desc-actus h3 {
    font-size: 23px;
  }

  .box-products .item-cat-product {
    width: calc((100% - 32px) / 2);
  }

  .box-chiffres .item-chiffres {
    width: 100%;
  }

  .bka-comite .box-comite.box-comite-liste .item-comite {
    width: calc((100% - 32px) / 2);
  }

  .box-services .item-service {
    width: 100%;
  }

  .line-history .item-history {
    padding-left: 80px !important;
    width: 100%;
    align-items: start;
    padding-right: 0 !important;
    padding-bottom: 25px;
  }

  .line-history .item-history::before {
    left: 10px !important;
  }

  .line-history .item-history:after {
    left: 0 !important;
  }

  .line-history .item-history:nth-child(2n) {
    left: 0;
  }

  .date-now {
    text-align: left;
  }

  .date-now:after {
    left: 0;
    transform: none;
  }

  .box-refrents .item-refrents {
    padding: 32px 20px;
  }

  .bka-temoignages .item-tem {
    width: 420;
  }

  .bka-card-links .box-card-links .item-card-links {
    width: 100%;
  }

  .box-piliers .item-piliers {
    width: 100%;
  }

  .box-txt-img .visu {
    width: 100%;
  }

  .box-txt-img .desc {
    width: 100%;
  }

  .list-products .filters .button {
    font-size: 12px;
    padding: 8px;
  }

  .list-products .grid-item {
    width: 50%;
    padding: 0 15px;
  }

  .box-option-brakina .item-option-brakina {
    width: 100%;
  }

  .show-more {
    font-size: 14px;
  }

  .list-actus .item-actus {
    width: 100%;
  }

  .filter-actus .trier-actu {
    flex-wrap: wrap;
  }

  .filter-actus {
    flex-direction: column;
  }

  .detail-art {
    padding: 15px;
  }

  .box-form .col-infos-contact .col-option-2,
  .box-form .col-infos-contact .col-option-3 {
    width: 100%;
  }

  .list-commi .item-commi {
    width: calc((100% - 32px) / 2);
  }

  .box-detail-prod {
    flex-direction: column;
    gap: 35px;
  }

  .box-detail-prod .desc {
    width: 100%;
  }
}

@media only screen and (max-width: 660px) {
  .box-products .item-cat-product {
    width: 100%;
  }

  .footer .row-logo-menu-footer .col-menu {
    flex-direction: column;
  }

  .footer .row-copyright {
    flex-direction: column;
  }

  .footer .row-copyright .copyright {
    padding-bottom: 25px;
  }

  .bka-comite .box-comite.box-comite-liste .item-comite {
    width: 100%;
  }

  .box-refrents .item-refrents {
    width: 100%;
  }

  .list-commi .item-commi {
    width: 100%;
  }

  .bka-contact-map .box-map .item-map {
    width: 100%;
  }

  .list-offres .item-offre .plus-link {
    flex-direction: column;
    gap: 30px;
  }
}

.content-barTop .coord .info-tel a {
  color: #fff;
  text-decoration: none;
}

.item-actus {
  cursor: pointer;
}


.mask-modal {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  display: none;
}

.mask-modal.show {
  display: flex;
}

.mask-modal .modal-bra {
  max-width: 720px;
  width: 100%;
  height: 520px;
  padding: 70px 30px 30px 30px;
  text-align: center;
  background: #fff;
}

.mask-modal .modal-bra img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.mask-modal .modal-bra .content-modal {
  padding-top: 30px;
}

.mask-modal .modal-bra h2 {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  padding-bottom: 35px;
}

.mask-modal .modal-bra p {
  font-size: 22px;
  color: #030606;
  padding-bottom: 35px;
  line-height: 1.3;
  max-width: 432px;
  width: 100%;
  margin: 0 auto;
}

.mask-modal .modal-bra .img-logo {
  width: 200px;
  height: 54px;
  background: url(../images/logo-modal.png) center no-repeat;
  margin: 30px auto 10px auto;
}

.mask-modal .modal-bra a {
  display: inline-block;
  border: 2px solid #096D3A;
  background: #096D3A;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 32px;
  transition: all 0.3s;
  border-radius: 32px;
}

.mask-modal .modal-bra a:hover {
  color: #096D3A;
  background: #fff;
}

.mask-modal .modal-bra .remembre {
  padding-top: 25px;
  font-weight: 700;
}


.content-actu {
  padding: 96px 0;
}

.content-actu .item-prix {
  border-radius: 16px;
  background: #fff;
  border: 1px solid #F1F1F1;
  padding: 64px;
}

.content-actu .item-prix p {}