*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: "Poppins", sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}
/* From Uiverse.io by timlmit */ 
.lds-spinner {
  color: official;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #fff;
}

.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}

@keyframes lds-spinner {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #656565;
  position: relative;
  z-index: -5;
}

/*le fond gris*/
.back {
  background: repeating-linear-gradient(45deg,
      #fff 0px,
      #fff 800px,
      #f0f0f0 800px,
      #f0f0f0 1600px);
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  color: #7AB730;
  text-decoration: none;
  background-color: transparent;
  transition: all 0.2s ease-in-out
}

a:hover {
  color: #527a20;
  text-decoration: none;
}

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role="button"] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

@media (max-width: 1200px) {
  legend {
    font-size: calc(1.275rem + 0.3vw);
  }
}

progress {
  vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

.family_poppins {
  font-family: "Poppins", sans-serif;
}

[hidden] {
  display: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: #212121;
}

h1,
.h1 {
  font-size: 2.5rem;
}

@media (max-width: 1200px) {

  h1,
  .h1 {
    font-size: calc(1.375rem + 1.5vw);
  }
}

h2,
.h2 {
  font-size: 2rem;
}

@media (max-width: 1200px) {

  h2,
  .h2 {
    font-size: calc(1.325rem + 0.9vw);
  }
}

h3,
.h3 {
  font-size: 1.75rem;
}

@media (max-width: 1200px) {

  h3,
  .h3 {
    font-size: calc(1.3rem + 0.6vw);
  }
}

h4,
.h4 {
  font-size: 1.5rem;
}

@media (max-width: 1200px) {

  h4,
  .h4 {
    font-size: calc(1.275rem + 0.3vw);
  }
}

h5,
.h5 {
  font-size: 1.25rem;
  color: #EE3124;
}

h6,
.h6 {
  font-size: 52px;
  color: #EE3124;
  margin-bottom: 0;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 80%;
  font-weight: 400;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

/*==============================================
================================================
===============================================*/

.logo-zone-index {
  display: flex;
  object-fit: contain;
  align-items: flex-end;
  justify-content: center;
}

.logo-index {
  width: 30%;
  margin-right: 15px;
}

/*taille des sections*/
.section {
  position: relative;
  padding: 4rem 0;
}

.section_noPadding {
  padding: 0;
}

.section_map {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.section_recrutement {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.section_candidature {
  padding-top: 0;
  padding-bottom: 4rem;
}

.section_carre {
  padding-top: 0;
}

.section_environnement {
  padding-top: 0;
  padding-bottom: 4rem;
}

.section_savoir-faire {
  padding: 4rem 0;
  background-image: url("../images/texture-background.jpg");
  background-size: 100% 50%;
  background-position: bottom;
  background-repeat: no-repeat;
}

.section_fond::after {
  content: "";
  background-color: #ed1c24cf;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
}
/* 
.section_fond {
  background-image: url(../images/truck3.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

  position: relative;
  opacity: 0.902;

   
  margin-bottom: 4rem;
  
} */

.section_fond p {
  color: #fff;
}

.section_fond .h4 {
  color: #fffce5;
}

.section_bouton {
  padding-top: 0;
  padding-bottom: 4rem;
}

.section_wcu {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.section_feature {
  padding: 0;
}

.section_contact {
  padding-top: 6rem;
  padding-bottom: 2rem;
}

.section_liste {
  padding: 4rem 0;
}

.section_liste3 {
  padding-top: 0;
  padding-bottom: 4rem;
}

.section_liste2 {
  padding: 4rem
}

.section_devis {
  padding-top: 6rem;
  padding-bottom: 2rem;
}

.section_haut {
  padding-top: 6rem;
  padding-bottom: 2rem;
}

.section_haut2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section li {
  font-weight: 600;
}

.section li::marker {
  color: #EE3124;
}

/*section des encadrés blancs à cheval sur la photo avec un cercle rouge*/
.section_liste .feature-item {
  box-shadow: 0 10px 10px #d7d7d7;
  padding: 40px 30px;
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  right: 90px;
  background-color: #fff;
}

.section_liste .feature-item p {
  margin-left: 25px;
  margin-bottom: 0;
}

.section_liste .text {
  margin: 0;
  display: block;
  margin-top: 8px;
}

.section_liste .text2 {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section_liste .circle img, .fondRouge .circle img{
  filter: brightness(0)invert(1);
}

.section_liste .logo-circle {
  width: 70%;
  height: auto;
}

.section_liste .logo-circle2 {
  width: 80%;
  height: auto;
}

.section_liste .feature-item .circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #EE3124;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #EE3124;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}

/*section avec des encadrés blanc plus petit*/
.section_listePetit .feature-item {
  box-shadow: 0 10px 10px #d7d7d7;
  padding: 20px 15px;
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  right: 90px;
  background-color: #fff;
  max-width: 60%;
}

.section_listePetit .feature-item p {
  margin-left: 25px;
  margin-bottom: 0;
}

.section_listePetit .text {
  margin: 0;
  display: block;
  margin-top: 8px;
}

.section_listePetit .circle img {
  filter: brightness(0)invert(1);
}

.section_listePetit .logo-circle {
  width: 80%;
  height: auto;
}

.section_listePetit .feature-item .circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #EE3124;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #EE3124;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}

/*2e section avec des encadrés blanc plus petit qui prennent la largeur de tout le bloc*/
.section_listePetit2 .feature-item {
  box-shadow: 0 10px 10px #d7d7d7;
  padding: 25px 15px;
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  right: 90px;
  background-color: #fff;
}

.section_listePetit2 .feature-item p {
  margin-left: 25px;
  margin-bottom: 0;
}

.section_listePetit2 .text {
  margin: 0;
  display: block;
  margin-top: 8px;
}

.section_listePetit2 .circle img {
  filter: brightness(0)invert(1);
}

.section_listePetit2 .logo-circle {
  width: 70%;
  height: auto;
}

.section_listePetit2 .logo-circle2 {
  width: 80%;
  height: auto;
}

.section_listePetit2 .feature-item .circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #EE3124;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #EE3124;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}



.section_haut2 .feature-item p {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  color: #656565;
  margin-left: 25px;
  margin-top: 15px;
}

.section_haut2 .circle-immobile {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #EE3124;
  position: relative;
  text-align: center;
  transition: all 0.3s ease-in-out;
  z-index: 0;
}

.section_haut2 .circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #EE3124;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #EE3124;
  position: relative;
  text-align: center;
  transform: translate(10px, 10px);
}

.section_haut2 .circle img {
  filter: brightness(0)invert(1);
}

.section_haut2 .logo-circle {
  width: 75%;
  height: auto;

}

.section_haut2 .logo-circle2 {
  width: 75%;
  height: auto;
  position: relative;
  left: 3px;
}

/*section de texte a côté des 2 cercles rouges*/
.section_liste2 .circle {
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #EE3124;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #EE3124;
  position: relative;
  text-align: center;
  transform: translate(10px, 10px);
}

.section_liste2 .circle-immobile {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #EE3124;
  position: relative;
  text-align: center;
  transition: all 0.3s ease-in-out;
  z-index: 0;
}

.section_liste2 .logo-circle {
  width: 36px;
  height: auto;
}

.section_liste2 .logo-circle.small {
  width: 30px;
}

.section_liste2 .logo-circle2 {
  width: 70%;
  height: auto;
}

.section_liste2 .circle img {
  filter: brightness(0)invert(1);
}

.section_liste2 .all {
  display: flex;
  align-items: center;
  gap: 20px;
}

.section_liste2 .all p {
  margin-top: 40px;
}


.section_feature .feature-item {
  box-shadow: 0 10px 10px #d7d7d7;
  padding: 0 30px;
  padding-bottom: 20px;
  bottom: 50px;
  position: relative;
  background-color: #fff;
}

.section_feature .center {
  display: flex;
  justify-content: center;
 
  align-items: center;

  position: relative;
  z-index: 99;

  margin-bottom: 25px;

}

.section_feature .circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;

  background-color: white;
  display: flex;
  align-items: center;
 
  justify-content: center;
 
  border: 2px solid #D7D7D7;
  position: relative;

  text-align: center;
  transition: all 0.3s ease-in-out;

}

.section_feature .circle:hover {
 
  transform: translate(10px, 10px);

  background-color: #EE3124;

  border: 2px solid #EE3124;
}

.section_feature .circle-immobile {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  position: relative;
  text-align: center;
  transition: all 0.3s ease-in-out;
  z-index: -20;

}

.section_feature .circle-immobile:hover {
  border: 2px solid #EE3124;

}

.section_feature .circle:hover img {

  filter: brightness(0) invert(1);

}

.logo-circle {
  width: 55%;
  height: auto;
}


.section_feature2 {
  background-image: url("../images/truck3.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(0, 0, 57, 0.9);
  background-blend-mode: multiply;
}

.section_feature2 .center {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 20;
}

.section_feature2 .center p {
  position: relative;
  top: 10px;
  margin-left: 25px;
  margin-top: 20px;
  color: #fff;
}

.section_feature2 .circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  transform: translate(10px, 10px);
  background-color: #EE3124;
  border: 2px solid #EE3124;
}

.section_feature2 .circle-immobile {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #EE3124;
  position: relative;
  text-align: center;
  transition: all 0.3s ease-in-out;
  z-index: -20;
}

.section_feature2 .circle img {
  filter: brightness(0) invert(1);
}

.section_feature2 .circleRed {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  transform: translate(10px, 10px);
  background-color: #fff;
  border: 2px solid #fff;
}

.section_feature2 .circle-immobileRed {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  position: relative;
  text-align: center;
  transition: all 0.3s ease-in-out;
  z-index: -20;
}

/*section encadré bleu et label CO2*/
.section_environnement .border {
  box-shadow: -20px 0 20px #d7d7d7;
  padding: 50px 100px;
  margin: 50px;
  margin-right: -15px;
}

.section_environnement .background {
  padding: 0 3rem;
}

.section_environnement h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 25px;
}

.section_environnement p {
  color: #fff;
}

.section_environnement .bloc-environnement {
  background-color: #0e97a0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  right: 15px;
}

.section_environnement .small-img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  display: block;
  margin: auto;
}

/*------------------------------------------------
--------------------------------------------------
--------------------------------------------------
 */
.container75 {
  min-width: 75vw;
}

.container65 {
  min-width: 65vw;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 11;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background: #000039;
  box-shadow: 0px 0px 26.46px 0.54px rgb(0 0 0 / 14%);
  border-radius: 50px;
}

.back-to-top i {
  color: #fff;
}

.back-to-top.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top:hover {
  background: #010716;
  transition: all 0.2s ease-in-out
}

.color-princip {
  color: #59b34f;
}

.bg-princip {
  background-color: #59b34f;
}

.w-50 {
  width: 50%;
}

label.error {
  color: red;
  font-size: 13px;
}

.overflow-hidden {
  overflow: hidden;
}

.h-70 {
  height: 70%;
}

@media (min-width: 992px) {
  .header .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
    border: 3px solid #EE3124;
    border-top: 5px solid #EE3124;
  }

  .header .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: .5s;
    opacity: 1;
  }

  .header .sticky-menu .navbar .nav-item:hover .dropdown-menu {
    top: 120%;
  }

  .header .navbar .nav-item .dropdown-menu:before {
    content: '';
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: 10px solid #EE3124;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
  }
}

.copyright_bottom {
  background: #121110;
  padding: 10px 0;
}

.slider_area.owl-carousel .slide-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: -999;
}

.header .dropdown-item {
  color: #211E1C;
}

.header .dropdown-item.active,
.header .dropdown-item:focus {
  background: transparent;
  color: #EE3124;
}

.header .dropdown-item:not(:last-child) {
  border-bottom: 1px dashed #e9dddd;
}

.slider_area.owl-carousel .slide-item .slid_content .p::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  margin-top: 10px;
}

.slider_area.owl-carousel .slide-item:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.28);
}

.slider_area.owl-carousel .slide-item img {
  height: 600px;
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
}

.slider_area.owl-carousel .slid_content {
  position: absolute;
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.slider_area.owl-carousel .slid_content .h1 {
  font-size: 45px;
  color: #EE3124;
  background: #fff;
  font-weight: 600;
  margin-bottom: 25px;
  padding: 10px 20px;
}

.slider_area.owl-carousel .slid_content .p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 25px;
  text-align: left;
  padding-right: 250px;
  padding-left: 250px;
}

.slider_area.owl-carousel .slid_content .moreBtn a {
  display: inline-block;
  padding: 5px 10px;
  background: #414141;
  color: #fff;
  transition: 0.2s all;
  font-size: 22px;
}

.slider_area.owl-carousel .slid_content .moreBtn:hover a {

  background: #FFF;
  color: #414141;
}

.slider_area.owl-carousel .slid_content .moreBtn {
  position: relative;
  left: -240px;
  margin-top: 10px;
}

.savoir-faire_item {
  padding: 12px;
  transition: 0.3s all;
  position: relative;
}

.savoir-faire_item .savoir-faire_img {
  height: 300px;
  width: 100%;
  overflow: hidden;
}

.savoir-faire_item .savoir-faire_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.savoir-faire_item:hover {
  transform: scale(1.1);
}

.savoir-faire_item .h4 {
  font-size: 18px;
  background: #fff;
  color: #EE3124;
  padding: 15px 10px;
  width: 80%;
  text-align: center;
  display: block;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  bottom: 30px;
  transition: 0.3s all;
}

.savoir-faire_item .h4:hover {
  color: #fff;
  background-color: #EE3124;
}

.img-petit {
  width: 500px;
  height: 700px;
  object-fit: cover;
  object-position: center;
}

.img-petit-650 {
width: 500px;
height: 650px;
object-fit: cover;
object-position: center;
}

.secteur_item {
  padding: 12px;
  transition: all 0.3s;
  position: relative;
}

.secteur_item:hover {
  transform: scale(1.1);
}

.secteur_item .secteur_img {
  height: 600px;
  width: 100%;
  overflow: hidden;
}

.secteur_item .secteur_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.2s ease;
}

.secteur_item:hover .secteur_img img {
  filter: brightness(50%);
}

.secteur_item .h4 {
  color: #fff;
  display: block;
  margin-left: 70px;
  position: relative;
  bottom: 90px;
  font-weight: 350;
}

.secteur_item:hover .h4 {
  display: none;
}

.secteur_item .h4_hover {
  display: none;
}

.secteur_item:hover .h4_hover {
  color: #fff;
  display: block;
  margin-left: 70px;
  position: absolute;
  bottom: 200px;
  font-weight: 500;
  font-size: 30px;
  z-index: 20;
}

.secteur_item .p {
  display: none;
}

.secteur_item:hover .p {
  color: #fff;
  display: block;
  margin-left: 70px;
  margin-right: 70px;
  position: absolute;
  bottom: 110px;
  z-index: 20;
}

.secteur_item:hover .p_lire {
  color: #EE3124;
  display: block;
  margin-left: 70px;
  position: absolute;
  bottom: 50px;
  font-weight: 600;
  font-size: 30px;
  z-index: 20;
}

.secteur_item .p_lire {
  display: none;
}

.moyen_item {
  padding: 12px;
  transition: 0.3s all;
  position: relative;
}

.moyen_item .moyen_img {
  height: 220px;
  width: 100%;
  overflow: hidden;
}

.moyen_item .moyen_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.moyen_item:hover {
  transform: scale(1.1);
}

.moyen_item .h4 {
  font-size: 18px;
  background: #EE3124;
  color: #fff;
  padding: 15px 10px;
  width: 80%;
  text-align: center;
  display: block;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  bottom: 30px;
  transition: 0.3s all;
}

.objet-item {
  padding: 12px;
  transition: 0.3s all;
  position: relative;
}

.objet-item .objet-img {
  height: 300px;
  width: 100%;
  overflow: hidden;
}

.objet-item .objet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.objet-item:hover {
  transform: scale(1.1);
}

.objet-item .h4 {
  font-size: 18px;
  background: #EE3124;
  color: #fff;
  padding: 15px 10px;
  width: 80%;
  text-align: center;
  display: block;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  bottom: 30px;
  transition: 0.3s all;
}

.secteur-item:hover .hover-button {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hover-button:hover {
  background-color: #590000;
  color: #fff;
}

.header.sticky-menu {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, .15);
  padding-top: 0;
  width: 100%;
  z-index: 999;
}

.top_menu {
  background: #000039;
  color: #fff;
  padding: 5px 15px;
}

.top_menu ul.info_box {
  margin: 0;
  padding: 0;
}

.top_menu ul.info_box .li_info {
  position: relative;
  padding: 0 25px;
  font-size: 15px;
  display: flex;
  align-items: center;
}

.top_menu ul.info_box .li_info i {
  margin-right: 8px;
}

.top_menu .logo-header {
  width: 18px;
}

.btn-menu .logo-bouton {
  background-color: #EE3124;
  width: 36px;
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.btn-menu .logo-bouton img {
  filter: brightness(0) invert(1);
  height: 30px;
}

/* .logo-bouton{
    position: absolute;
    z-index: 10;
    width: 30px;
    right: 385px;
    top: 50px;
    filter: brightness(0)invert(1);
}

.logo-bouton2{
    position: absolute;
    z-index: 10;
    width: 30px;
    right: 245px;
    top: 50px;
    filter: brightness(0)invert(1);
}
 */
.carre-logo {
  background-color: #EE3124;
  padding: 18px;
  position: absolute;
  right: 384px;
  top: 47px;
}

.carre-logo2 {
  background-color: #EE3124;
  padding: 18px;
  position: absolute;
  right: 242px;
  top: 47px;
}

.footer-top .carre-logo2 {
  background-color: #EE3124;
  padding: 16px;
  position: absolute;
  left: 6px;
  top: 6px;
}

.footer-top .logo-bouton2 {
  position: absolute;
  z-index: 10;
  width: 27px;
  left: 8px;
  top: 9px;
  filter: brightness(0) invert(1);
}

/* .main_menu.sticky-menu .logo-bouton{
    position: absolute;
    z-index: 10;
    width: 30px;
    right: 335px;
    top: 22px;
    filter: brightness(0)invert(1);
}

.main_menu.sticky-menu .logo-bouton2{
    position: absolute;
    z-index: 10;
    width: 30px;
    right: 196px;
    top: 22px;
    filter: brightness(0)invert(1);
} */

.main_menu.sticky-menu .carre-logo {
  background-color: #EE3124;
  padding: 18px;
  position: absolute;
  right: 334px;
  top: 18px;
}

.main_menu.sticky-menu .carre-logo2 {
  background-color: #EE3124;
  padding: 18px;
  position: absolute;
  right: 193px;
  top: 18px;
}

.navbar-brand {
  width: 20%;
}

.main_menu.sticky-menu .navbar-brand {
  width: 8%;
}

.btn-menu {
  display: inline-block;
  font-size: 16px;
  padding: 8px 12px;
  text-align: center;
  border-radius: 0;
  border: 1px solid #cacaca;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  transition: 0.3s all;
}

.btn-menu:hover {
  background: #000039;
  color: #fff;
}

.btn-menu2 {
  position: relative;
  display: inline-block;
  font-size: 16px;
  padding: 12px 20px;
  padding-left: 43px;
  text-align: center;
  border-radius: 0;
  border: 1px solid #cacaca;
  background: #000039;
  color: #fff;
  transition: 0.3s all;
}

.btn-menu2:hover {
  background: #fff;
  color: #000039;
}

.header.sticky-menu .main_menu {
  display: none;
}

.main_menu .navbar-nav .nav-link {
  color: #211E1C;
  margin-right: 20px;
  text-align: center;
}

.main_menu .navbar-nav .nav-link:hover,
.main_menu .navbar-nav .nav-link.active {
  color: #EE3124;
}

.main_menu .second_menu .navbar-nav .nav-link.active {
  color: #211e1c;
}

.main_menu .navbar-nav {
  /* position: absolute; */
  /* left: 27%; */
}

.header .main_menu.sticky-menu {
  display: none;
}

.header.sticky-menu .main_menu.sticky-menu {
  display: flex;
}

.header.sticky-menu .main_menu.sticky-menu .navbar-nav {
  background-color: #EE3124;
  padding: 15px 15px;
  /* position: absolute; */
  /* left: 20% !important; */
}

.header.sticky-menu .main_menu.sticky-menu .navbar-nav .nav-link {
  color: #fff;
  margin-right: 15px;
  text-align: center;
}


.header.sticky-menu .main_menu.sticky-menu .navbar-nav .nav-link:hover,
.header.sticky-menu .main_menu.sticky-menu .navbar-nav .nav-link.active {
  color: #211e1c;
}

.main_menu .logo {
  height: 60px;
}

.main_menu .logo-2 {
  height: 45px;
}

.second_menu {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 100%;
}

.second_menu .navbar-nav {
  background: #EE3124;
  /* z-index: 20; */
  /* position: absolute; */
  /* bottom: -30px; */
  /* left: 50%; */
  /* transform: translateX(-50%); */
  padding: 0 20px;
}

.second_menu .navbar-nav .nav-link {
  color: #fff;
  padding: 15px 20px;
  font-weight: 550;
  font-family: 'Roboto regular', sans-serif;
  transition: 0.3s all;
}

.second_menu .navbar-nav .nav-link:hover {
  color: #211E1C;
}

.second_menu .navbar-nav>a:not(:last-child)::after {
  position: absolute;
  content: '';
  height: 35%;
  border-right: 2px solid #fff;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 30px;
}

.img-header {
  width: 30px;
}

.main_menu.sticky-menu .img-header {
  width: 20px;
      filter: brightness(0) invert(1);
}

.footer {
  background-color: #000039;
  position: relative;
}

.footer .footer-top {
  padding-bottom: 3rem;
  padding-top: 5rem;
}

.footer p,
.footer a,
.footer i {
  color: #CCCCCC;
  font-size: 14px;
}

.footer .link {
  transition: 0.3s all;
}

.footer .link:hover {
  color: #EE3124;
}

.footer .h5 {
  color: #CCCCCC;
  font-weight: 600;
  margin-bottom: 25px;
}

.footer .h5::after {
  content: "";
  display: block;
  width: 20%;
  height: 4px;
  background-color: #EE3124;
  margin-top: 10px;
}

.footer .logoFooter {
  width: 350px;
}

.footer .logo-area {
  margin-right: 200px;
}

.title {
  margin-bottom: 10px;
}

.title .up_title {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  position: relative;
  /* padding-left: 36px; */
  color: #EE3124;
  display: inline-block;
  margin-bottom: 10px;
font-weight:normal;
}

/* .title .up_title:before{
	content:'';
	position:absolute;
	width:30px;
	height:30px;
	background: url() no-repeat;
	background-position:center;
	background-size:100%;
	top:50%;
	left:0;
	transform: translateY(-50%);
} */
.title .h1 {
  font-size: 35px;
  font-weight: 700;
}

.titre-gauche {
  display: flex !important;
  align-items: flex-start !important;
}


.traits {
  display: flex;
  align-items: center;
  justify-content: center;
}

.traits span {
  display: inline-block;
  background-color: #000;
  margin-bottom: 10px;
}

.moyen-trait {
  width: 30px;
  height: 1px;
  border-radius: 5px;
  margin-left: 5px;
  margin-right: 5px;
}

.bouton-rouge {
  background: #EE3124;
  color: #fff;
  padding: 10px 25px;
  transition: 0.3s all;
  border: 2px solid #EE3124;
}

.bouton-rouge:hover {
  background-color: #fff;
  color: #EE3124;
}

.bouton {
  display: flex;
  justify-content: flex-end;
  gap: 5px;
}

.btn-menu {
  white-space: nowrap;
}


.page-header {
  position: relative;
  color: #fff;
  padding: 3rem 0;
}

.page-header:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.28);
}

.banner-heading {
  position: relative;
  text-align: center;
}

.banner-heading .h1 {
  color: #fff;
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 800;
}

.page-header .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0;
  background: transparent;
  justify-content: center;
}

.page-header .breadcrumb li,
.page-header .breadcrumb li a {
  font-size: 16px;
  color: #f5f5f5;
  position: relative;
}

.page-header li+li:before {
  content: "\f105";
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  left: 8px;
  top: 50%;
  font-size: 16px;
  transform: translateY(-50%);
  color: #fff;
}

.page-header li+li {
  padding-left: 25px;
}

.why-item {
  background: #f5f5f5;
  padding: 30px 40px;
  height: 100%;
  position: relative;
  transition: 0.3s all;
}

.why-item img {
  height: 80px;
  margin-bottom: 15px;
  position: relative;
  transition: 0.3s all;
}

.why-item .h5 {
  font-weight: 700;
  font-size: 20px;
}

.why-item:hover {
  background: #007bff;
  box-shadow: 0px 6px 26.46px 0.54px rgba(1, 2, 2, 0.11);
}

.why-item:hover .h5,
.why-item:hover p {
  color: #fff;
}

.why-item:hover img {
  filter: brightness(0) invert(1);
}

.img-container {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.date {
  display: inline-block;
  font-size: 14px;
  background-color: #EE3124;
  color: #fff;
  padding: 5px 10px;
}

.actu_item {
  padding: 20px;
position:relative;
}

.actu_item .actu_img {
  height: 380px;
  width: 100%;
  overflow: hidden;
position:relative;
}

.actu_item .actu_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s all;
}

.actu_item:hover .actu_img img {
  transform: scale(1.2);
}

.actu_item .h4 {
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 21px;
}

.actu_item .actu_date {
  color: #fff;
  background-color: #EE3124;
  font-size: 17px;
  padding: 7px 12px;
  position: absolute;
  bottom: 200px;
}

.actu_item p {
  text-align: justify;
  color: #000;
  font-size: 17px;
}

.actu_item .p_lire {
  color: #EE3124;
}

.owl-carousel .owl-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.img_about {
  width: 100%;
  height: 450px;
  position: relative;
}

.img_about:before {
  content: '';
  position: absolute;
  height: 200px;
  width: 200px;
  background: #EE3124;
  right: -20px;
  bottom: -20px;
  z-index: -1;
}

.img_about img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-accueil {
  width: 100%;
}

.checkbox-text {
  color: #000039;
}

.btn-contact {
  color: #000039;
  background-color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  border: 1px solid #000039;
  transition: 0.3s all;
}

.btn-contact:hover {
  color: #fff;
  background-color: #000039;
}

.annee {
  background: #000039;
  padding: 5px 15px;
  z-index: 20;
  position: absolute;
  top: -20px;
  left: 70%;
}

.text {
  margin: 0 18rem;
}

.carre {
  box-shadow: 0 10px 10px #d7d7d7;
  padding: 40px 30px;
  background-color: #fff;
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
}

.section_carre .bloc {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.section_carre .img-petit {
  width: 50%;
  height: auto;
}

.section_carre .img-petit2 {
  width: 57%;
  height: auto;
}

.section_carre .img-bloc {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

/*taille des images*/
.img-taille {
  width: 600px;
  height: 450px;
}

.img-encadre {
  border: 3px solid #EE3124;
  padding: 5px;
  border-radius: 3px;
}

.img-encadre2 {
  border: 3px solid #000039;
  padding: 5px;
  border-radius: 3px;
}

.img-carre {
  width: 100%;
  height: 400px;
}

.img-carre img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-dessus {
  width: 80%;
  position: relative;
  z-index: 2;
}

.img-dessous {
  width: 80%;
  position: relative;
  bottom: 40px;
  left: 80px;
}

.img-droite {
  width: 100%;
  height: 450px;
  position: absolute;
}

.img-droite::before {
  content: '';
  position: absolute;
  height: 300px;
  width: 300px;
  background-color: #EE3124;
  z-index: 0;
  bottom: 35%;
  left: 307px;
}

.img-gauche {
  width: 100%;
  height: 450px;
  position: absolute;
}

.img-gauche::before {
  content: '';
  position: absolute;
  height: 200px;
  width: 200px;
  background-color: #EE3124;
  z-index: 0;
  top: 208px;
  left: -1%;
}

.img-ombre {
  box-shadow: -5px 10px 10px #9A9A9A;
}

/*pour tous les traits rouges au dessus*/
.trait {
  display: block;
}

.trait span {
  display: block;
  background-color: #EE3124;
}

.trait-rouge {
  width: 100%;
  height: 5px;
}

/*plus petite taille du trait rouge*/
.trait2 {
  display: block;
  position: relative;
  bottom: 40px;
  right: 30px;
}

.trait2 span {
  display: block;
  background-color: #EE3124;
}

.trait-rouge2 {
  width: 115%;
  height: 5px;
}

/*encore plus petite taille du trait rouge*/
.trait3 {
  display: block;
  position: relative;
  bottom: 40px;
  right: 30px;
}

.trait3 span {
  display: block;
  background-color: #EE3124;
}

.trait-rouge3 {
  width: 545px;
  height: 5px;
}

/*trait rouge pour le section contact*/
.trait4 {
  display: block;
  position: absolute;
}

.trait4 span {
  display: block;
  background-color: #EE3124;
  z-index: 2;
  position: absolute;
  right: -230px;
  bottom: 58px;
}

.trait-rouge4 {
  width: 260px;
  height: 5px;
}
/*****************************/
.trait5 {
  display: block;
}

.trait5 span {
  display: block;
  background-color: #EE3124;
}

.trait-rouge5 {
  width: 92.7%;
  height: 5px;
}
/************************************************/
.trait6 {
  display: block;
}

.trait6 span {
  display: block;
  background-color: #EE3124;
}

.trait-rouge6 {
  width: 88.7%;
  height: 5px;
}
/****************************************************/

.trait7 {
  display: block;
}

.trait7 span {
  display: block;
  background-color: #EE3124;
}

.trait-rouge7 {
    width: 84.5%;
    height: 5px;
}
/*********************************************/
.trait8 {
  display: block;
}

.trait8 span {
  display: block;
  background-color: #EE3124;
}

.trait-rouge8 {
    width: 84.5%;
    height: 5px;
}
















/*section des mentions légales*/
.section_mention {
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.section_mention p {
  color: #2B2B2B;
}

/*page index secteur d'activité*/
.section_secteur {
  padding-bottom: 4rem;
  padding-top: 0;
}

.section_secteur .sect_block {
  position: relative;
  display: block;
  height: 100%;
  margin-bottom: 30px;
}

.section_secteur .bloc {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 2px;
  transition: 0.3s all;
  box-shadow: -5px 10px 10px #A9A9A9;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.section_secteur .bloc p {
  color: #212121;
  transition: 0.3s all;
  margin: 0 30px;
  margin-bottom: 10px;
}
.section_secteur .bloc h2 {
  color: #212121;
  transition: 0.3s all;
  margin: 0 30px;
  margin-bottom: 10px;
font-size:1rem;
}

.section_secteur .bloc .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  transition: 0.3s all;
}

.section_secteur .bloc .img-secteur {
  width: 13%;
}

.section_secteur .bloc:hover {
  background-color: #EE3124;
}

.section_secteur .bloc:hover p {
  color: #fff;
}

.section_secteur .bloc:hover img {
  filter: brightness(0)invert(1);
}

.section_secteur .trait {
  display: block;
}

.section_secteur .trait span {
  display: block;
  background-color: #EE3124;
}

.section_secteur .trait-rouge {
  width: 100%;
  height: 5px;
}

/*page de contact*/
.section_contact i {
  display: flex;
  align-items: center;
  font-size: 40px;
  margin-bottom: 20px;
}

.section_contact .carre {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 30px;
}

.section_contact .img-contact {
  width: 21%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.section_contact .img-contact2 {
  width: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.section_contact p {
  margin-bottom: 15px;
}

.section_contact .bloc {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.section_contact .map-div {
  margin-top: 60px;
}

.contact-form .form-control {
  border-radius: 0;
  height: 40px;
}

.contact-form textarea.form-control {
  height: 180px;
}

.contact-form .form-control:focus {
  box-shadow: none;
  outline: none;
  border-color: #EE3124
}

/*section recrutement*/

.btn-styled {
  /*style des boutons*/
  font-size: 18px;
  /*taille de la police*/
  display: inline-block;
  padding: 10px 20px;
  /*largeur du bloc*/
  border-radius: 5px;
  /*pour que les coins soient arrondis*/
  background: #fff;
  color: #000039;
  box-shadow: 3.032px 10.574px 24px 0px rgba(56, 82, 141, 0.24);
  /*l'ombre du bouton*/
  border: 1px solid #000039;
  /*couleur et épaisseur de la bordure*/
  transition: 0.3s all;
}

.btn-styled:hover {
  /*changement de couleur lors du survol*/
  background-color: #000039;
  color: #fff;
}

.offre-item {
  /*bloc des offres*/
  position: relative;
  background: #fff;
  box-shadow: 3.032px 10.574px 24px 0px rgba(56, 82, 141, 0.24);
  /*l'ombre du bloc*/
  padding: 30px;
  padding-right: 90px;
}

.offre-metas {

  border-bottom: 1px solid rgb(202, 208, 211);
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
}

.offre-metas li {
  color: #000039;

}

.map-div {
  width: 100%;
  height: 500px;
}

.map-div iframe {
  border: none;
  width: 100%;
  height: 100%;
}


.bg-red {
  background-color: #EE3124;
}

.red {
  color: #EE3124;

}

.color-black {
  color: black;
}

.i2 {
  position: absolute;
  bottom: -41px;
  width: 50%;
  right: -27px;
  background: white;
  padding-right: 23px !important;
  padding: 11px;
  box-shadow: -5px 10px 10px #9A9A9A;
}

.color-grey {
  color: #000039;
}

.i3 {
  background: white;
  padding: 11px;
  box-shadow: -5px 10px 10px #6a0f0f;

}

body {
  overflow-x: hidden;
}

/* .vert .title .up_title {
  color: #0e97a0 !important;

} */
.color-vert {
  color: #63AE33 !important;

}

/* .vert .trait span {
  background-color: #0e97a0 !important;
}

.vert .trait3 span {
  background-color: #0e97a0 !important;
} */
.vert .trait span {
  background-color: #63AE33 !important;
}

.vert .trait3 span {
  background-color: #63AE33 !important;
}

.types .trsp {
  justify-content: center;
  align-items: center;
  background-color: #EE3124;
  padding: 10px;
  position: relative;
  z-index: 2;
  top: -30px;
  width: 80%;
  left: 50%;
  transform: translate(-50%);
}

.types .trsp p {
  color: white;
  font-weight: 300;
  text-align: center;
  margin: 0 !important;
  padding-top: 5px;
  padding-bottom: 5px;
}

.types .img img {
  width: 100%;
  height: 276px !important;
  object-fit: cover !important;
}



.size-20 {
  font-size: 20px;
}

.bg-vert {
  background-color: #63AE33 !important;

}

.bouton-vert {
  background: #63AE33;
  color: #fff;
  padding: 10px 25px;
  transition: 0.3s all;
  border: 2px solid #63AE33;
}

.bouton-vert:hover {
  background-color: #fff;
  color: #63AE33;
}

.fix-label {
  position: absolute;
  top: 7%;
  right: 4px;
  z-index: 2;
  height: 152px;
  border: solid 1px black;
}

.accueil .fix-label {

  display: none;

}

.fix-label-acc {
  position: absolute;
  top: -30%;
  right: 4px;
  z-index: 2;
  height: 152px;
  border: solid 1px black;
}

.section_fond-vert {
  background-image: url(../images/Bg-vert.png);
  padding: 4rem 0;
  margin-bottom: 4rem;
  background-color: rgba(0, 0, 0, 0.3) !important;
  background-blend-mode: multiply;
  background-size: cover;
}

span.actu_date {
  background-color: #EE3124;
  color: white;
  padding: 5px 10px !important;

}

.actu-detail-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.autre-actus-img {
  width: 100%;
  height: 80px;
  object-fit: cover;
}


.i4 {
  position: absolute;
  bottom: -26px;
  width: 274px;
  left: -81px;
  background: white;
  box-shadow: -5px 10px 10px #9A9A9A;
  padding: 17px;
}

.r-18 {
  right: -18%;
}

.cer-images {
  width: 206px;
  height: 170px;
  object-fit: contain;

}

.cer-images-label {
width: 423px;
height: 170px;
object-fit: contain;

}


.section_haut2 .feature-item {
  padding: 20px 30px;
  margin-top: 15px;
  background-color: #fff;
  display: flex;
  justify-content: flex-start;
  position: relative;
  top: 9%;
  right: -300px;
  width: 78%;
}




.w-94 {
  width: 94% !important;
}

.section_liste .except .feature-item {

  padding: 29px 27px !important;
  margin-bottom: 9px !important;

}




.section_fond {
  background-image: url(../images/texture-background.jpg);
  padding: 4rem 0;
  margin-bottom: 4rem;
  /*background-color: rgba(0, 0, 0, 0.3) !important;*/
  background-blend-mode: multiply;
  background-size: cover;
}

.bgDiapo { background-color: rgba(0, 0, 57, 0.5); padding:35px 0px; display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center; }

  /********************************** Yassmine ********************/
  .trait-two{
height: 600px;
display: block;
  }

.img-ombre-two {
  box-shadow: -5px 10px 10px #9A9A9A;
      height: 340px;
    object-fit: cover;
    width: 100%;
}
.trait-two span {
  display: block;
  background-color: #EE3124;
}

.trait-rouge {
  width: 100%;
  height: 5px;
}
.images-fond {
  display: flex;
  gap: 20px; 
  justify-content: center;
  align-items: center;
}

.images-fond .img-fond {
  width: 50%;          
  height: 300px;       
  object-fit: cover;  
 
}
.sous-titre{
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: #212121;
}
.cer-images-label {
    width: 220px;
    height: 170px;
    object-fit: contain;
}
.titreH5{
    font-size: 1.25rem;
    color: #EE3124;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

.header .navbar-light .navbar-toggler-icon:after, .header .navbar-light .navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 1px;
    background-color: #000;
    top: 0;
    left: 0;
    content: '';
    z-index: 2;
    transition: all 300ms 
linear;
}
.header .navbar-light .navbar-toggler-icon:after, .header .navbar-light .navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 1px;
    background-color: #000;
    top: 0;
    left: 0;
    content: '';
    z-index: 2;
    transition: all 300ms 
linear;
}

.header .navbar-toggler {
    float: right;
    border: none;
    padding-right: 10px;
}
.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 0, 0, 0.1);
}

button:not(:disabled), [type="button"]:not(:disabled), [type="reset"]:not(:disabled), [type="submit"]:not(:disabled) {
    cursor: pointer;
}
.navbar-light .navbar-toggler {
    color: rgb(22 21 21);
    border-color: rgba(0, 0, 0, 0.1);
}
.container-entreprise{
    display: flex; 
    flex-direction: column;
     justify-content: center; 
     align-items:center; 
     position: relative; 
     right: -18%
}
.marginTop{
    display: flex;
     flex-direction: column; 
     justify-content: center;
     margin-top: 0px;
}
.margin_top{
    margin-top: 0px;
}
.img-container-moyen {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.margin-text{
    margin: 0 8rem
}
.text-exp{
    margin-bottom: 0; 
    color: #fff; 
    font-size: 20px; 
    text-transform: uppercase;
}
.div-center{
    display: flex;
    justify-content: center;
}
.padTop{
   padding-top: 6rem;
}
.owl-moyen .owl-nav {
    position: absolute !important;
    bottom: 0;
}

.header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before
 {
    transform: translateY(8px) rotate(-45deg);
}
.header .navbar-light .navbar-toggler-icon:after, .header .navbar-light .navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 1px;
    background-color: #000;
    top: 0;
    left: 0;
    content: '';
    z-index: 2;
    transition: all 300ms 
linear;
}
.header .navbar-light .navbar-toggler-icon:after, .header .navbar-light .navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 1px;
    background-color: #000;
    top: 0;
    left: 0;
    content: '';
    z-index: 2;
    transition: all 300ms 
linear;
}
.header .navbar-light .navbar-toggler-icon:after {
    top: 8px;
}
.header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
}
.header .navbar-light .navbar-toggler-icon {
    width: 24px;
    height: 17px;
    background-image: none;
    position: relative;
    border-bottom: 1px solid #000;
    transition: all 300ms 
linear;
}
.header .navbar-light .navbar-toggler-icon {
    width: 24px;
    height: 17px;
    background-image: none;
    position: relative;
    border-bottom: 1px solid #000;
    transition: all 300ms 
linear;
}
.header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
} 


/* Styles pour les boutons mobiles dans la barre top_menu */
.mobile-top-buttons {
  padding: 10px 0;
  gap: 5px;
}
.mobile-top-buttons .logo-bouton{
background-color: #EE3124;
  width: 36px;
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.mobile-top-buttons .logo-bouton img {
  filter: brightness(0) invert(1);
  height: 30px;
}

.mobile-top-buttons a {
  text-decoration: none;
  transition: opacity 0.3s ease;
  font-size: 14px;
}

.mobile-top-buttons a:hover {
  opacity: 0.8;
}

.icon-mobile-top {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* Styles pour les liens supplémentaires dans le menu mobile */
.mobile-extra-links {
  padding-left: 15px;
  padding-right: 15px;
}

.mobile-extra-links .nav-link {
  padding: 10px 0;
  color: #333;
  font-size: 16px;
}

.mobile-extra-links .nav-link:hover {
  color: #007bff;
}

.mobile-extra-links .icon-menu {
  margin-right: 10px;
}
.wow {
  visibility: visible !important;
}

a.ville-dupliquee{
color:#656565 !important;
}

a.ville-dupliquee:hover{
color:#EE3124 !important;
}