
/*--------------------------------------------------------------
# Tontine
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}


:root { 
  --background-color: #ffffff; 
  --default-color: #212529; 
  --heading-color: #32353a; 
  --accent-color: #e84545; 
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}


:root {
  --nav-color: #3a3939; 
  --nav-hover-color: #e84545; 
  --nav-mobile-background-color: #ffffff; 
  --nav-dropdown-background-color: #ffffff; 
  --nav-dropdown-color: #3a3939;
  --nav-dropdown-hover-color: #e84545; 
}

/* Color */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Ma page generale
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: #FF8100;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, #FF8100, transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}



/*--------------------------------------------------------------
# mon  Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: white;
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}



.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: #FF8100;
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 40px;
  transition: 0.3s;
}


.header .btn-Connecte,
.header .btn-Connecte:focus {
  color: var(--contrast-color);
  background: #0080F7;
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 40px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, #FF8100, transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 0px 0 0;
    padding: 6px 20px;
  }

    .header .btn-Connecte {
    order: 2;
    margin: 0 0px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}

/*mon  Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  --nav-color: rgba(255, 255, 255, 0.5);
  --nav-hover-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
  --heading-color: #32353a;
  --nav-color: #3a3939;
  --nav-hover-color: #e84545;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: black;
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #FF8100;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, #FF8100, transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: #FF8100;
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: #FF8100;
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}


/*--------------------------------------------------------------
# Preloader 
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: #FF8100 transparent #FF8100 transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #FF8100;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, #FF8100, transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# mobile 
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# page-title
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 98px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 64px;
  }
}

/*--------------------------------------------------------------
# Mon-titre
--------------------------------------------------------------*/
.Mon-titre {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.Mon-titre h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.Mon-titre h2:before,
.Mon-titre h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: #FF8100;
  display: inline-block;
}

.Mon-titre h2:before {
  margin: 0 15px 10px 0;
}

.Mon-titre h2:after {
  margin: 0 0 10px 15px;
}

.Mon-titre p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Mon-slide Section
--------------------------------------------------------------*/
.Mon-slide {
  width: 100%;
  min-height: 80vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Mon-slide img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.Mon-slide:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 90%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.Mon-slide .container {
  position: relative;
  z-index: 3;
}

.Mon-slide h2 {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
  color: black;
}

.Mon-slide p {
  color: black;
  margin: 5px 0 0 0;
  font-size: 20px;
}

.Mon-slide .sign-up-form {
  margin-top: 20px;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 7px;
  background: color-mix(in srgb, var(--default-color) 5%, white 90%);
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
  display: flex;
}

.Mon-slide .sign-up-form input[type=text] {
  background-color: transparent;
  border: 0;
  padding: 4px 10px;
  width: 100%;
}

.Mon-slide .sign-up-form input[type=text]:focus-visible {
  outline: none;
}

.Mon-slide .sign-up-form input[type=submit] {
  border: 0;
  box-shadow: none;
  background-color: #FF8100;
  border-color: #FF8100;
  padding: 8px 20px 10px 20px;
  border-radius: 7px;
  color: var(--contrast-color);
  transition: 0.3s;
}

.Mon-slide .sign-up-form input[type=submit]:hover {
  background-color: color-mix(in srgb, #FF8100, transparent 10%);
}

@media (max-width: 768px) {
  .Mon-slide h2 {
    font-size: 32px;
  }

  .Mon-slide p {
    font-size: 18px;
  }
}



/*--------------------------------------------------------------
# Nos-produits Section
--------------------------------------------------------------*/
.Nos-produits .content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 20px;
  background: color-mix(in srgb, #FF8100, transparent 95%);
  color: #FF8100;
  border-radius: 7px;
  display: inline-block;
}

.Nos-produits .content h2 {
  font-weight: 700;
}

.Nos-produits .content p:last-child {
  margin-bottom: 0;
}

.Nos-produits .content .read-more {
  background: #FF8100;
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.Nos-produits .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.Nos-produits .content .read-more:hover {
  background: color-mix(in srgb, #FF8100, transparent 20%);
  padding-right: 19px;
}

.Nos-produits .content .read-more:hover i {
  margin-left: 10px;
}

.Nos-produits .icon-box {
  background-color: var(--surface-color);
  padding: 15px 15px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
}

.Nos-produits .icon-box i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, #FF8100, transparent 95%);
  color: #FF8100;
}

.Nos-produits .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}

.Nos-produits .icon-box p {
  margin-bottom: 0;
}

.Nos-produits .icon-box:hover i {
  background-color: #FF8100;
  color: var(--contrast-color);
}

.Nos-produits .icon-boxes .col-md-6:nth-child(2) .icon-box,
.Nos-produits .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {

  .Nos-produits .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .Nos-produits .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}

/*--------------------------------------------------------------
# chiffre Section
--------------------------------------------------------------*/
.chiffre {
  position: relative;
  padding: 120px 0;
}

.chiffre img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.chiffre:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 80%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.chiffre .container {
  position: relative;
  z-index: 3;
}

.chiffre .chiffre-item {
  padding: 30px;
  width: 100%;
}

.chiffre .chiffre-item h2{
  color: #FF8100;
  font-weight: 700;
}

.chiffre .chiffre-item span {
  font-size: 48px;
  display: block;
  color: #FF8100;
  font-weight: 700;
}

.chiffre .chiffre-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 700;
  color: black;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  position: relative;
  padding-top: 40px;
}

.services .service-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
}

.services .service-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #FF8100;
  border-right: 5px solid var(--background-color);
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-right: 50px;
  line-height: 0;
}

.services .service-item .icon i {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  background: color-mix(in srgb, #FF8100, transparent 70%);
  border-radius: 50px;
  z-index: 1;
  bottom: -15px;
  right: -15px;
  transition: 0.3s;
}

.services .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .service-item .title a {
  color: var(--heading-color);
}

.services .service-item .title a:hover {
  color: #FF8100;
}

.services .service-item .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# A-propos Section
--------------------------------------------------------------*/
.A-propos .A-propos-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.A-propos .A-propos-item+.A-propos-item {
  margin-top: 100px;
}

@media (max-width: 768px) {
  .A-propos .A-propos-item+.A-propos-item {
    margin-top: 40px;
  }
}

.A-propos .A-propos-item h3 {
  font-weight: 700;
  font-size: 26px;
}

.A-propos .A-propos-item .btn-get-started {
  background-color: #FF8100;
  color: var(--contrast-color);
  padding: 8px 30px 10px 30px;
  border-radius: 4px;
}

.A-propos .A-propos-item .btn-get-started:hover {
  background-color: color-mix(in srgb, #FF8100, transparent 10%);
}

.A-propos .A-propos-item ul {
  list-style: none;
  padding: 0;
}

.A-propos .A-propos-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.A-propos .A-propos-item ul li:last-child {
  padding-bottom: 0;
}

.A-propos .A-propos-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #FF8100;
}

.A-propos .A-propos-item img {
  border: 6px solid var(--surface-color);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}

.A-propos .A-propos-item .A-propos-img-bg {
  position: relative;
  min-height: 500px;
}

@media (max-width: 640px) {
  .A-propos .A-propos-item .A-propos-img-bg {
    min-height: 300px;
  }
}

.A-propos .A-propos-item .A-propos-img-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.A-propos .A-propos-item .image-stack {
  display: grid;
  position: relative;
  grid-template-columns: repeat(12, 1fr);
}

.A-propos .A-propos-item .image-stack .stack-back {
  grid-column: 4/-1;
  grid-row: 1;
  width: 100%;
  z-index: 1;
}

.A-propos .A-propos-item .image-stack .stack-front {
  grid-row: 1;
  grid-column: 1/span 8;
  margin-top: 20%;
  width: 100%;
  z-index: 2;
}


/*--------------------------------------------------------------
# contact-nous Section
--------------------------------------------------------------*/
.contact-nous {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.contact-nous img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.contact-nous:before {
  content: "";
  background: #FF8100;
  position: absolute;
  inset: 0;
  z-index: 2;
}

.contact-nous .container {
  position: relative;
  z-index: 3;
}

.contact-nous h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.contact-nous p {
  color: var(--default-color);
}

.contact-nous .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  background-color: #0062FF;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.contact-nous .cta-btn:hover {
  background: #3168C2;
  border: 2px solid #FF8100;
}



/*--------------------------------------------------------------
# Actualites
--------------------------------------------------------------*/
.Actualite article {
  background: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.Actualite .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.Actualite .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 10px;
}

.Actualite .titre {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.Actualite .titre a {
  color: var(--heading-color);
  transition: 0.3s;
}

.Actualite .titre a:hover {
  color: #FF8100;
}

.Actualite .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.Actualite .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.Actualite .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# page Contact 
--------------------------------------------------------------*/
.contact .info-item {
  background: white;
  border:1px solid #FF8100;
  padding: 30px;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: #FF8100;
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .mon-champ {
  height: 100%;
}

.contact .mon-champ input[type=text],
.contact .mon-champ input[type=text],
.contact .mon-champ textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .mon-champ input[type=text]:focus,
.contact .mon-champ input[type=text]:focus,
.contact .mon-champ textarea:focus {
  border-color: #FF8100;
}

.contact .mon-champ input[type=text]::placeholder,
.contact .mon-champ input[type=text]::placeholder,
.contact .mon-champ textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .mon-champ button[type=submit] {
  color: var(--contrast-color);
  padding: 10px 30px;
  transition: 0.4s;
}

.contact .mon-champ button[type=submit]:hover {
  background: color-mix(in srgb, #FF8100, transparent 20%);
}



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

.m-b-50 {
    margin-bottom: 50px;
}

.dark-link {
    color: #333;
}

.heading-line {
    position: relative;
    padding-bottom: 5px;
}

.heading-line:after {
    content: "";
    height: 4px;
    width: 75px;
    background-color: #29B6F6;
    position: absolute;
    bottom: 0;
    left: 0;
}

.notification-ui_dd-content {
    margin-bottom: 30px;
}

.notification-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px;
    margin-bottom: 7px;
    background: #fff;
    -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.notification-list--unread {
    border-left: 2px solid #F5843A;
}

.notification-list .notification-list_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.notification-list .notification-list_content .notification-list_img img {
    height: 48px;
    width: 48px;
    border-radius: 50px;
    margin-right: 20px;
}

.notification-list .notification-list_content .notification-list_detail p {
    margin-bottom: 5px;
    line-height: 1.2;
}

.notification-list .notification-list_feature-img img {
    height: 48px;
    width: 48px;
    border-radius: 5px;
    margin-left: 20px;
}

.mon-champ {
    display: inline-block;
    background-color: transparent;
    border: 1px solid #E0DDDD;
    width: 100%;
    height: 50px;
    margin-bottom: 20px;
    padding: 0.375rem 1.75rem 0.375rem 0.75rem;
    font-size: 15px;
    border-radius: none;
    font-weight: 400;
    color: black;
    vertical-align: middle;
}

.mon-champ {
  height: 48px;
  background: #fff;
  color: #000;
  font-size: 16px;
  border-radius: 5px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.1); }
  .mon-champ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(0, 0, 0, 0.2) !important; }
  .mon-champ::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(0, 0, 0, 0.2) !important; }
  .mon-champ:-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(0, 0, 0, 0.2) !important; }
  .mon-champ:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(0, 0, 0, 0.2) !important; }
  .mon-champ:focus, .mon-champ:active {
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #F5843A; }

.mon-button {
    margin-top: 10px;
  background-color:#F5843A; 
  color:white; border-radius:5px; 
  padding:10px; font-size:16px

  }

  .mon-button1 {
    margin-top: 10px;
    margin-right: 4px;
  background-color:#F5843A; 
  color:white; border-radius:5px; 
  padding:10px; font-size:16px

  }

  .mon-button1:hover{
    margin-top: 10px;
  background-color:#F5843A; 
  color:white; border-radius:5px; 
  padding:10px; font-size:16px

  }

  .mon-button:hover{
    margin-top: 10px;
  background-color:#F5843A; 
  color:white; border-radius:5px; 
  padding:10px; font-size:16px

  }



/*--------------------------------------------------------------
# mon Footer
--------------------------------------------------------------*/
.footer {
  color: white;
   background: black;
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-Nos-produits .logo {
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: white;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  background-color:#FF8100;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  color: white;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links h4 {

  color: white;
}


.footer .social-links a:hover {
  color: white;
  background-color:#0062FF;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: white;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #FF8100;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}