/*!****************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./src/scss/style.scss ***!
  \****************************************************************************************************************/
@charset "UTF-8";
/* Mixins Dégradés */
.from-bottom,
.from-left,
.from-right,
.from-top {
  opacity: 0;
}

@keyframes fade-in-top {
  from {
    opacity: 0;
    transform: translateY(10%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes fade-in-right {
  from {
    opacity: 0;
    transform: translateX(10%);
  }
  to {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes fade-in-bottom {
  from {
    opacity: 0;
    transform: translateY(10%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes fade-in-left {
  from {
    opacity: 0;
    transform: translateX(-10%);
  }
  to {
    opacity: 1;
    transform: translateX(0%);
  }
}
.fade-in-top {
  -webkit-animation: fade-in-top 0.8s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-top 0.8s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.fade-in-right {
  -webkit-animation: fade-in-right 0.8s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-right 0.8s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.fade-in-bottom {
  -webkit-animation: fade-in-bottom 0.8s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-bottom 0.8s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.fade-in-left {
  -webkit-animation: fade-in-left 0.8s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-left 0.8s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.fade-out-top {
  -webkit-animation: fade-in-top 0.8s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-top 0.8s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation-direction: reverse;
}

@keyframes up-and-down {
  0% {
    top: 1px;
  }
  50% {
    top: -1px;
  }
  100% {
    top: 1px;
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.professor {
  font-family: "professor", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4rem;
  line-height: 4rem;
  text-align: center;
}
.professor strong {
  color: #a4ce4e;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
input,
textarea {
  font-family: "Poppins", sans-serif;
  font-style: normal;
}

p,
li {
  text-wrap: pretty;
  font-size: 1rem;
  line-height: 1.8rem;
  text-align: justify;
  font-weight: 300;
  color: #2f4574;
}

h1 {
  font-size: 4rem;
  line-height: 4rem;
  font-weight: 300;
  color: #a4ce4e;
  text-transform: uppercase;
}
h1 strong {
  color: #2f4574;
}

h2 {
  font-size: 3rem;
  line-height: 3.5rem;
  font-weight: 300;
  color: #474955;
}

h3 {
  font-size: 2.5rem;
  line-height: 3rem;
  color: #474955;
}

h4 {
  font-size: 2rem;
  line-height: 2.5rem;
}

strong {
  font-weight: 600;
}

.light {
  font-weight: 300;
  font-style: normal;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semi-bold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.italic {
  font-style: italic;
}

.cap {
  text-transform: capitalize;
}

.red {
  color: #2f4574;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 0.9rem;
}

* {
  margin: 0;
  padding: 0;
}

.container {
  width: 80vw !important;
  max-width: 1400px;
  margin: auto;
}
.container.columns {
  display: flex;
  gap: 80px;
}
.container.columns .colg,
.container.columns .cold {
  width: 50%;
}
.container.grid {
  display: grid;
}

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

#scrollToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #2f4574;
  border-radius: 30px;
  color: #fff;
  height: 50px;
  width: 50px;
  padding: 0;
  z-index: 999;
  transition: all ease-in 300ms;
  display: flex;
  justify-content: center;
  align-items: center;
}
#scrollToTop svg {
  height: 25px;
  position: relative;
  animation: up-and-down 5s ease-in-out infinite;
}

::-moz-selection {
  /* Code for Firefox */
  color: #fff;
  background: #a4ce4e;
}

::selection {
  color: #fff;
  background: #a4ce4e;
}

.cta {
  background-color: #a4ce4e;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  outline: none;
}

.cta-line {
  color: #2f4574;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 5px;
  margin-top: 30px;
  display: flex;
  font-weight: 400;
  gap: 20px;
  transition: all ease-in 300ms;
}
.cta-line::after {
  content: url(2b815e36b6cd44d4ac3e.svg);
  width: 25px;
}
.cta-line:hover {
  color: #a4ce4e;
  gap: 40px;
  font-weight: 600;
}

header {
  padding: 20px 2vw;
  width: 96vw;
  z-index: 11;
  min-height: 300px;
  max-height: 400px;
  position: relative;
}
header.-frontpage {
  min-height: 400px;
  max-height: 400px;
}
header .main-navigation {
  display: flex;
}
header .main-navigation .colg {
  width: 20%;
  max-width: 350px;
}
header .main-navigation .colg img {
  object-fit: contain;
}
header .main-navigation .menu {
  width: 80%;
}
header .main-navigation .menu .hamburger-menu {
  display: none;
}
header .main-navigation .menu #menu-navigation-principale {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 50px;
}
header .main-navigation .menu #menu-navigation-principale li {
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 2px;
  font-size: 0.9rem;
  padding-top: 10px;
  position: relative;
}
header .main-navigation .menu #menu-navigation-principale li a {
  color: #fff;
  transition: all ease-out 300ms;
  text-decoration: none;
  font-weight: 600;
}
header .main-navigation .menu #menu-navigation-principale li a:hover {
  color: #2f4574;
}
header .main-navigation .menu #menu-navigation-principale .menu-item-has-children .sub-menu {
  display: none;
}
header .main-navigation .menu #menu-navigation-principale .menu-item-has-children:hover {
  min-height: 400px;
}
header .main-navigation .menu #menu-navigation-principale .menu-item-has-children:hover .sub-menu {
  display: block;
  position: absolute;
  background-color: #fff;
  border-bottom: 2px solid #2f4574;
  top: 45px;
  width: 320px;
}
header .main-navigation .menu #menu-navigation-principale .menu-item-has-children:hover .sub-menu li {
  color: #2f4574;
  list-style: none;
  display: block;
  border-bottom: 1px solid #efefef;
  position: relative;
  max-height: auto;
  padding: 0;
  margin: 0;
  text-align: left;
}
header .main-navigation .menu #menu-navigation-principale .menu-item-has-children:hover .sub-menu li a {
  color: #a4ce4e;
  text-transform: none;
  letter-spacing: 0;
  width: 90%;
  display: block;
  text-align: left;
  padding: 2% 5%;
  margin: 0;
  text-shadow: none;
}
header .main-navigation .menu #menu-navigation-principale .menu-item-has-children:hover .sub-menu li:hover {
  background-color: #2f4574;
  border-color: #2f4574;
  min-height: auto;
}
header .main-navigation .menu #menu-navigation-principale .menu-item-has-children:hover .sub-menu li:hover a {
  color: #fff;
}
header .main-navigation .menu #menu-navigation-principale .menu-item-has-children:hover .sub-menu li:hover .sub-menu {
  display: block;
}
header .main-navigation .menu #menu-navigation-principale .menu-item-has-children:hover .sub-menu li .sub-menu {
  display: none;
  position: absolute;
  right: -320px;
  top: 0;
}
header .main-navigation .menu #menu-navigation-principale .menu-item-has-children:hover .sub-menu li .sub-menu li a {
  color: #a4ce4e;
  text-transform: none;
  font-size: 0.8rem;
  font-weight: 300;
}
header .main-navigation .menu #menu-navigation-principale .menu-item-has-children:hover .sub-menu li .sub-menu li a:hover {
  color: #fff;
}
header .main-navigation .hamburger-menu {
  display: none;
  stroke: #fff;
}

.megamenu {
  display: none;
  opacity: 0;
}

.current-menu-item a {
  color: #2f4574;
}

footer {
  background-color: #efefef;
  padding: 100px 0 30px;
  position: relative;
  bottom: 0;
}
footer .container .footer-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 20px;
}
footer .container .footer-top .col {
  width: 25%;
}
footer .container .footer-top .col.menu-footer {
  width: 50%;
}
footer .container .footer-top .col.menu-footer li {
  list-style: none;
}
footer .container .footer-top .col.menu-footer li a {
  color: #2f4574;
  text-decoration: none;
  position: relative;
  padding-left: 80px;
  font-size: 1.8rem;
  font-weight: 700;
}
footer .container .footer-top .col.menu-footer li a::before {
  content: "";
  display: block;
  background-color: #a4ce4e;
  width: 50px;
  height: 2px;
  position: absolute;
  top: 20px;
  left: 0;
}
footer .container .footer-top .col p {
  font-size: 0.8rem;
  color: #2f4574;
  font-weight: 600;
  line-height: 1.2rem;
}
footer .container .footer-top .col p a {
  text-decoration: none;
  color: #2f4574;
}
footer .container .footer-top .col p strong {
  font-weight: 900;
}
footer .container .footer-top .col p strong a {
  color: #a4ce4e;
  margin-top: 30px;
  font-weight: 700;
  display: block;
}
footer .container .footer_bottom {
  display: flex;
  border-top: 1px solid #fff;
  padding-top: 15px;
}
footer .container .footer_bottom p {
  width: 50%;
  font-size: 0.7rem;
  color: #2f4574;
  letter-spacing: 1px;
  font-weight: 400;
}
footer .container .footer_bottom p:last-child {
  text-align: right;
}
footer .container .footer_bottom p strong {
  color: #a4ce4e;
}
footer .container .footer_bottom p a {
  text-decoration: none;
  color: #2f4574;
}

#formulaire-contact form {
  margin: 50px 0;
}
#formulaire-contact form input,
#formulaire-contact form textarea {
  width: calc(100% - 20px);
  border: none;
  border-bottom: 1px solid #2f4574;
  margin-bottom: 20px;
  outline: none;
  padding: 5px 10px;
}
#formulaire-contact form input:focus,
#formulaire-contact form textarea:focus {
  outline: none;
}
#formulaire-contact form input[type=submit] {
  width: fit-content;
  padding: 10px 30px;
  background-color: #a4ce4e;
  border: none;
  border-bottom: none;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}
#formulaire-contact h2 {
  color: #a4ce4e;
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 700;
  display: block;
}
#formulaire-contact p {
  font-size: 0.8rem;
  color: #2f4574;
  font-weight: 600;
  line-height: 1.2rem;
}
#formulaire-contact p a {
  text-decoration: none;
  color: #2f4574;
}
#formulaire-contact p strong {
  font-weight: 900;
}
#formulaire-contact p strong a {
  color: #a4ce4e;
  margin-top: 30px;
  font-weight: 700;
  display: block;
}

.section-hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  max-height: 400px;
  z-index: 0;
}
.section-hero.hero-home {
  max-height: 800px;
}
.section-hero svg {
  width: 100vw;
}
.section-hero svg image {
  width: 100%;
}
.section-hero svg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #2f4574;
  opacity: 0.7;
  width: 100%;
  height: 100%;
}

.section-introduction {
  padding: 50px 0;
}

.section-introduction-home {
  padding: 0 0 150px;
  position: relative;
}
.section-introduction-home .content.titre h1 {
  font-size: 10rem;
  line-height: 8.5rem;
  color: #2f4574;
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
.section-introduction-home .content.titre h1 em {
  font-family: "professor", sans-serif;
  text-transform: none;
  color: #fff;
  font-size: 6rem;
  line-height: 6rem;
  margin-left: 150px;
}
.section-introduction-home .content.titre h1::before {
  content: url(3ed8883edc7b89a3c5e2.png);
  position: absolute;
  z-index: -1;
  left: -50px;
}
.section-introduction-home .columns .colg {
  width: 40%;
}
.section-introduction-home .columns .colg p em {
  color: #a4ce4e;
  font-style: normal;
  font-weight: 500;
}
.section-introduction-home .columns .colg p + p {
  margin-top: 20px;
}
.section-introduction-home .columns .colg .cta {
  margin-top: 50px;
  display: inline-block;
  color: #b0b0b0;
  background: none;
  padding: 0;
  transition: all ease-in 300ms;
}
.section-introduction-home .columns .colg .cta::before {
  content: ">";
  color: #a4ce4e;
  margin-right: 20px;
  transition: all ease-in 300ms;
}
.section-introduction-home .columns .colg .cta:hover {
  color: #a4ce4e;
  font-weight: 600;
}
.section-introduction-home .columns .colg .cta:hover::before {
  margin-right: 10px;
  margin-left: 10px;
}
.section-introduction-home .columns .cold {
  position: relative;
  width: 60%;
  margin-top: -50px;
}
.section-introduction-home .columns .cold .label {
  width: 150px;
  position: absolute;
  right: 50px;
}
.section-introduction-home .bottom {
  padding-left: 25%;
  width: 55vw !important;
  margin-top: -350px;
}
.section-introduction-home .bottom .block-img {
  width: 26.666vw;
}
.section-introduction-home .bottom p {
  margin: 50px 0;
}

#citation {
  margin-bottom: -50px;
  padding: 50px 0 0;
  z-index: 2;
  position: relative;
}
#citation h2 {
  color: #2f4574;
  text-align: center;
}
#citation h2 strong {
  color: #a4ce4e;
}
#citation p {
  text-align: center;
  color: #2f4574;
  margin: 30px auto;
}
#citation p em {
  color: #a4ce4e;
}
#citation .block-img {
  margin: auto;
  width: 160px;
  height: 160px;
}
#citation .block-img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
#citation .block-img.separator {
  width: 50px;
  height: 100px;
  margin: 30px auto;
}

.section-qualites {
  background-color: #f1f0e8;
  padding: 100px 0;
}
.section-qualites .columns {
  justify-content: space-between;
  gap: 50px;
}
.section-qualites .columns .col {
  height: 160px;
  overflow: hidden;
}
.section-qualites .columns .col .title-img {
  min-height: 160px;
  transform: translateY(0);
  transition: all ease-in 300ms;
}
.section-qualites .columns .col .title-img .block-img {
  width: 60px;
  margin: auto;
}
.section-qualites .columns .col .title-img .title {
  font-size: 2.5rem;
}
.section-qualites .columns .col .title-img .title:after {
  content: "";
  width: 50%;
  background-color: #a4ce4e;
  height: 1px;
  margin: 30px auto 0;
  display: block;
}
.section-qualites .columns .col .txt-content {
  margin-top: 25px;
  transform: translateY(0);
  transition: all ease-in 300ms;
}
.section-qualites .columns .col .txt-content p {
  font-weight: 400;
  text-align: center;
  max-width: 65%;
  margin: auto;
}
.section-qualites .columns .col + .col {
  border-left: 1px solid #fff;
  padding-left: 50px;
}
.section-qualites .columns .col:hover .title-img,
.section-qualites .columns .col:hover .txt-content {
  transform: translateY(-140px);
}
.section-qualites .video {
  margin-top: 80px;
  margin-bottom: -300px;
  position: relative;
  z-index: 10;
}
.section-qualites .video video {
  height: 600px;
}
.section-qualites + .section-objectifs-qualites {
  padding-top: 0;
}

.section-objectifs-qualites {
  background-color: #f1f0e8;
  padding: 150px 0 100px;
  margin-bottom: 300px;
}
.section-objectifs-qualites .columns .colg h2 {
  text-transform: uppercase;
  color: #a4ce4e;
}
.section-objectifs-qualites .columns .colg h2 strong {
  color: #2f4574;
}
.section-objectifs-qualites .video {
  margin-top: 80px;
  margin-bottom: -300px;
  position: relative;
  z-index: 10;
}
.section-objectifs-qualites .video video {
  height: 600px;
}

.section-nos-produits {
  padding: 100px 0;
}
.section-nos-produits .top {
  border-bottom: 1px solid #efefef;
  margin-bottom: 80px;
  padding: 200px 0 80px;
}
.section-nos-produits .top .colg .block-img {
  width: 80%;
  margin-top: 250px;
}
.section-nos-produits .top .cold h3 {
  color: #efefef;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  font-size: 1rem;
}
.section-nos-produits .top .cold h2 {
  color: #a4ce4e;
  margin: 10px auto 30px 0;
}
.section-nos-produits .top .cold h2 strong {
  color: #2f4574;
}
.section-nos-produits .bottom .col-g {
  width: 70%;
}
.section-nos-produits .bottom .col-g h3 {
  color: #efefef;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  font-size: 1rem;
}
.section-nos-produits .bottom .col-g h2 {
  color: #2f4574;
  margin: 10px auto 30px 0;
}
.section-nos-produits .bottom .col-g .block-img {
  height: 500px;
}
.section-nos-produits .bottom .col-d {
  width: 30%;
  padding-top: 200px;
  min-height: 550px;
}
.section-nos-produits .bottom .col-d p {
  color: #2f4574;
}
.section-nos-produits .statsBlock {
  display: flex;
  gap: 30px;
  margin-top: -100px;
  justify-content: flex-end;
}
.section-nos-produits .statsBlock .block-stat {
  height: 150px;
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-nos-produits .statsBlock .block-stat:first-child {
  background-color: #a4ce4e;
  border-radius: 40px 0 0 0;
}
.section-nos-produits .statsBlock .block-stat:nth-child(2) {
  background-color: #2f4574;
}
.section-nos-produits .statsBlock .block-stat p {
  text-align: center;
  font-size: 2rem;
  line-height: 2.3rem;
  color: #fff;
}
.section-nos-produits .cta {
  margin: 50px auto 0;
}

.section-intro-produits {
  padding: 50px 0;
}
.section-intro-produits .top {
  margin-bottom: 80px;
  gap: 0;
}
.section-intro-produits .top .colg .block-img {
  width: 80%;
  margin-top: 250px;
}
.section-intro-produits .top .cold h3 {
  color: #efefef;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  font-size: 1rem;
}
.section-intro-produits .top .cold h2 {
  color: #a4ce4e;
  margin: 10px auto 30px 0;
}
.section-intro-produits .top .cold h2 strong {
  color: #2f4574;
}
.section-intro-produits .top .cold .cta {
  margin: 30px auto;
}
.section-intro-produits .bottom {
  gap: 0;
}
.section-intro-produits .bottom .cold .block-img {
  width: 60%;
  margin-right: 0;
  margin-top: -350px;
  margin-left: auto;
}

.section-pdv .pdv-filter {
  margin-bottom: 2rem;
}
.section-pdv .pdv-columns {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}
.section-pdv .pdv-column {
  flex: 1;
  list-style: none;
  padding: 0;
}
.section-pdv .pdv-column li {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 10px;
  padding: 5px 0;
  color: #474955;
  line-height: 1rem;
}
.section-pdv .pdv-column li + li {
  border-top: 1px solid #efefef;
}
.section-pdv .pdv-column li .thb {
  width: 25px;
  height: 25px;
}
.section-pdv .pdv-column:not(:last-child) {
  border-right: 1px solid #d9e5c7;
  padding-right: 2rem;
}

#pdv-map {
  height: 500px;
}

.section-actualites .columns {
  border-bottom: 1px solid #efefef;
  padding: 50px 0;
  gap: 20px;
}
.section-actualites .columns .colg,
.section-actualites .columns .card_article {
  width: 33.3333333333%;
}
.section-actualites .columns .colg h2 {
  color: #b0b0b0;
  display: inline;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 5px;
}
.section-actualites .columns .colg h3 {
  color: #a4ce4e;
  font-weight: 300;
  font-size: 3rem;
  line-height: 3.5rem;
}
.section-actualites .columns .colg h3 strong {
  color: #2f4574;
}
.section-actualites .columns .colg .cta {
  margin-top: 40px;
  display: inline-block;
}
.section-actualites .columns .card_article .miniature {
  width: 100%;
  height: 275px;
}
.section-actualites .columns .card_article .miniature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-actualites .columns .card_article .txt {
  margin-top: -30px;
}
.section-actualites .columns .card_article .date {
  background-color: #fff;
  color: #b0b0b0;
  display: inline;
  padding: 20px 50px 20px 0;
}
.section-actualites .columns .card_article h4 {
  color: #2f4574;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.8rem;
  margin: 20px 0;
}
.section-actualites .columns .card_article h4 span {
  font-weight: 400;
}
.section-actualites .columns .card_article .cta-border {
  text-decoration: none;
  color: #a4ce4e;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.section-two-col-img-txt {
  position: relative;
}
.section-two-col-img-txt .container .colg hr {
  background-color: #a4ce4e;
  margin: 40px 0;
  border: none;
  width: 60px;
  height: 3px;
}
.section-two-col-img-txt .container .cold::after {
  content: "";
  width: calc(50vw - 130px);
  position: absolute;
  right: 0;
  top: 0;
  height: calc(100% - 100px);
  background-color: #f1f0e8;
  z-index: -1;
}
.section-two-col-img-txt .container .cold .swiper-img-tcit {
  height: 550px;
  margin-top: 150px;
}

.section-two-col-img-txt-fond-bleu {
  position: relative;
  background-color: #2f4574;
  padding: 80px 0;
}
.section-two-col-img-txt-fond-bleu .container .colg h2,
.section-two-col-img-txt-fond-bleu .container .colg h3,
.section-two-col-img-txt-fond-bleu .container .colg p {
  color: #fff;
}
.section-two-col-img-txt-fond-bleu .container .colg h3 {
  font-weight: 400;
  margin-bottom: 20px;
}
.section-two-col-img-txt-fond-bleu .container .colg h2 {
  text-transform: uppercase;
  font-size: 1.2rem;
  line-height: 1.2rem;
  letter-spacing: 5px;
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 50px;
}
.section-two-col-img-txt-fond-bleu .container .colg h2::before {
  content: "";
  width: 20px;
  height: 2px;
  background-color: #a4ce4e;
}
.section-two-col-img-txt-fond-bleu .container .colg p + p {
  margin-top: 20px;
}
.section-two-col-img-txt-fond-bleu .container .colg .cta {
  display: inline-block;
  margin: 30px 0 0;
}
.section-two-col-img-txt-fond-bleu .container .cold {
  position: relative;
}
.section-two-col-img-txt-fond-bleu .container .cold .block-img {
  height: 500px;
  position: absolute;
  top: calc(1.2rem + 50px);
  z-index: 5;
  width: 100%;
}
.section-two-col-img-txt-fond-bleu .container .cold .block-img.separator {
  top: -150px;
  height: 270px;
  right: -100px;
  z-index: 6;
  width: 300px;
}
.section-two-col-img-txt-fond-bleu .container .cold .block-img.viande {
  top: auto;
  bottom: -350px;
  left: -100px;
  height: 250px;
  width: auto;
}

.section-2col-two-img-two-txt {
  padding: 100px 0 50px;
  position: relative;
}
.section-2col-two-img-two-txt .container.columns {
  height: 100%;
  gap: 80px;
}
.section-2col-two-img-two-txt .container.columns .colg {
  width: 50%;
  position: relative;
}
.section-2col-two-img-two-txt .container.columns .colg .block-img {
  margin-top: 100px;
  width: 70%;
}
.section-2col-two-img-two-txt .container.columns .colg p + p {
  margin-top: 20px;
}
.section-2col-two-img-two-txt .container.columns .cold {
  width: 50%;
  padding-top: 150px;
}
.section-2col-two-img-two-txt .container.columns .cold .block-txt::before, .section-2col-two-img-two-txt .container.columns .cold .block-txt::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #a4ce4e;
  margin: 50px 0;
}
.section-2col-two-img-two-txt .container.columns .cold h2 {
  color: #efefef;
  letter-spacing: 10px;
  font-size: 1.2rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 300;
}
.section-2col-two-img-two-txt .container.columns .cold h2::before {
  content: "";
  display: block;
  border-bottom: 1px solid #2f4574;
  width: 20px;
}
.section-2col-two-img-two-txt .container.columns .cold h3 {
  font-size: 3rem;
  margin: 40px 0 30px;
  font-weight: 500;
}
.section-2col-two-img-two-txt .container.columns .cold p {
  margin-bottom: 20px;
}
.section-2col-two-img-two-txt .container.columns .cold p + p {
  margin-bottom: 50px;
}
.section-2col-two-img-two-txt .container.columns .cold .block-img {
  width: 50%;
  margin: 150px 0 -100px auto;
  z-index: 6;
  position: relative;
}

.section-two-swip-txt {
  padding: 150px 0 50px;
  height: 500px;
  position: relative;
}
.section-two-swip-txt .separator {
  margin: auto;
  width: 400px;
  position: absolute;
  left: 35%;
  top: -110px;
  z-index: 5;
  transform: rotate(-20deg);
}
.section-two-swip-txt .container.columns {
  height: 100%;
  gap: 100px;
}
.section-two-swip-txt .container.columns .colg {
  width: 65%;
  position: relative;
}
.section-two-swip-txt .container.columns .colg .swiper-events {
  height: 400px;
  width: 90%;
  margin-left: 0;
}
.section-two-swip-txt .container.columns .colg .swiper-events .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 400px;
}
.section-two-swip-txt .container.columns .colg .btnPrevEvents,
.section-two-swip-txt .container.columns .colg .btnNextEvents {
  bottom: 0;
  top: auto;
  color: #2f4574;
  width: 50px;
  left: 100px;
  font-size: 1.5rem;
}
.section-two-swip-txt .container.columns .colg .btnPrevEvents::after,
.section-two-swip-txt .container.columns .colg .btnNextEvents::after {
  font-size: 1.5rem;
}
.section-two-swip-txt .container.columns .colg .btnPrevEvents {
  left: 0;
}
.section-two-swip-txt .container.columns .colg .blockDark {
  width: 25vw;
  min-width: 200px;
  max-width: 350px;
  height: 300px;
  position: absolute;
  bottom: 0;
  right: 0;
  left: auto;
  background-color: #000;
  z-index: 2;
}
.section-two-swip-txt .container.columns .cold {
  width: 35%;
}
.section-two-swip-txt .container.columns .cold h2 {
  color: #efefef;
  letter-spacing: 10px;
  font-size: 1.2rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 300;
}
.section-two-swip-txt .container.columns .cold h2::before {
  content: "";
  display: block;
  border-bottom: 1px solid #2f4574;
  width: 20px;
}
.section-two-swip-txt .container.columns .cold h3 {
  font-size: 3rem;
  margin: 40px 0 30px;
  font-weight: 500;
}
.section-two-swip-txt .container.columns .cold p {
  margin-bottom: 20px;
}
.section-two-swip-txt .container.columns .cold p + p {
  margin-bottom: 50px;
}
.section-two-swip-txt .container.columns .cold .cta {
  display: block;
  width: fit-content;
  margin-top: 50px;
}
