@charset "UTF-8"; 
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}


img {
  max-width: 100%;
  height: auto;
}

.grey-bg-color {
  background: #fff;
  transition: background 0.3s ease-in-out;
  border-radius: 0.5rem;
}

.nowrap {
  flex-wrap: nowrap;
}

.py-2 {
  padding: 2em 0;
}

.col-lg-30 {
    width: 30%;
    flex-basis: 30%;
  }

.first-col {
    margin-right: 20px;
}


.m-auto {
  margin: auto;
}

.px-1 {
  padding: 0 1em;
}

section.image .screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(22, 59, 109, 0) 0%, rgba(22, 59, 109, 0.5) 60%);
  z-index: 0;
}
section.image .screen.white {
  background: rgba(255, 255, 255, 0.65);
}

.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.col-lg-50 {
  width: 100%;
  flex-basis: 100%;
}

.c {
    margin-right: 20px;
}

section.image .titre h1 {
  position: relative;
  color: white;
  font-size: 44px;
  font-family: var(--alt-font);
}

*, html, body {
    box-sizing: border-box !important;
}





button,
.button {
  cursor: pointer;
  padding: 0.5em 2em;
  text-align: center;
  font-family: var(--alt-font);
  font-weight: 700;
  line-height: 1.6;
  font-size: 0.825em;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (min-width: 768px) {




@media only screen and (min-width: 768px)
{
.w-lg-70 {
    width: 70%;
    flex-basis: 70%;
}}

:root {
  --main-txt-color :rgba(22, 59, 109, 1);
  --main-bg-color: rgba(22, 59, 109, 1);
  --alt-txt-color: rgba(3, 121, 193, 1);
  --alt-bg-color: rgba(3, 121, 193, 1);
  --accent-txt-color: rgba(90, 213, 195, 1);
  --accent-bg-color: rgba(90, 213, 195, 1);
  --main-font: Lato, "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  --alt-font: Montserrat, "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  --light-color: rgba(255, 255, 255, 1);
  --dark-color: rgba(22, 59, 109, 1);
  --light-bg-color: rgba(255, 255, 255, 1);
  --dark-bg-color: rgba(22, 59, 109, 1);
  --darker-color: rgba(0, 35, 65, 1);
  --blue-color: rgba(22, 59, 109, 1);
}

.w-100 {
  width: 100%;
  flex-basis: 100%;
}

.align-items-start {
  align-items: flex-start;
}

body {
  font-family: var(--main-font);
  background: var(--light-color);
  font-size: 16px;
}

section.content .frame {
  position: relative;
  border-radius: 18px;
  box-shadow: 0px 20px 50px 30px rgba(0, 0, 0, 0.33);
}

.grey-bg-color {
  background: #fff;
  transition: background 0.3s ease-in-out;
  border-radius: 0.5rem;
  margin-bottom: 30px !important;
}

.m-0 {
  margin: 0em;
}



.hidden {
  display: none ;
}

.light-hover-bg-color:hover {
  background: var(--light-color);
  transition: background 0.3s ease-in-out;
}
 
.light-bg-color {
  background: var(--light-color);
  transition: background 0.3s ease-in-out;
}

.h_box-shadow {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s ease-in-out;
}

.h_box-shadow:hover {
  box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.33);
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.text-align-center {
  text-align: center;
}

section.content {
  position: relative;
  z-index: 20;
}

.mt-0 {
  margin-top: 0em;
}

.mb-1 {
  margin-bottom: 1em;
}

progress[value] {
  /* Reset the default appearance */
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  accent-color: var(--accent-bg-color);
  width: 100%;
  height: 20px;
  position: relative;
}

.p-2 {
    padding: 2em;
}

.spacer-1 {
  height: 1em;
}

.spacer-2 {
  height: 2em;
}

.spacer-3 {
  height: 3em;
}

.spacer-4 {
  height: 4em;
}

.spacer-5 {
  height: 5em;
}

progress[value]::-webkit-progress-bar {
  background-color: #ebebeb;
  border-radius: 4px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.02) inset;
}
progress[value].progress-value-main-bg-color::-webkit-progress-value {
  border-radius: 4px;
  background: var(--main-bg-color);
}
progress[value].progress-value-main-bg-color {
  accent-color: var(--main-bg-color);
}
progress[value].progress-value-alt-bg-color::-webkit-progress-value {
  border-radius: 4px;
  background: var(--alt-bg-color);
}
progress[value].progress-value-alt-bg-color {
  accent-color: var(--alt-bg-color);
}
progress[value]::-webkit-progress-value {
  border-radius: 4px;
  background: var(--accent-bg-color);
}

section.content .frame.up {
  transform: translateY(-200px);
}
section.content .frame.border-radius-0 {
  border-radius: 0;
}

html {
  color: var(--main-txt-color);
  font-size: 15px;
  box-sizing: border-box;
  line-height: 1.4;
  scroll-behavior: smooth;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: antialiased;
}

p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}


html, body {
  box-sizing: border-box;
}
  
body {
  font-family: Lato, "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  background: rgba(255, 255, 255, 1);
}


.container {
  width: 100%;
  height: auto;
  margin: auto;
  padding: 0;
  max-width: 1170px;
}

section {
  display: flex;
  position: relative;
}

section.content .frame.up {
    transform: translateY(-200px);
}

.w-lg-30 {
    width: 30%;
    flex-basis: 30%;
  }

.p-1 {
  padding: 1em;
}

.p-3 {
  padding: 3em;
}

.w-80 {
  width: 80%;
  flex-basis: 80%;
}

main {
  margin: auto;
  background: url("../assets/img/fonds/background-xpfibre-dark.svg");
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-color: #002341;
}

section.image {
  position: relative;
  background: var(--dark-bg-color);
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: auto;
  min-height: 500px;
  width: 100%;
  z-index: 0;
}	

section.image .screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(22, 59, 109, 0) 0%, rgba(22, 59, 109, 0.5) 60%);
  z-index: 0;
}

.p-lg-3 {
    padding: 3em;
}

.align_left {
	text-align: left;
}

.m-1 {
    margin: 1em;
}

.justify-content-center {
  justify-content: center;
}

.row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin: auto;
}

.accent-txt-color {
  color: #5ad5c3;
}

*, html, body {
  box-sizing: border-box;
}

.align-items-center {
  align-items: center;
}

section.image .screen.white {
  background: rgba(255, 255, 255, 0.65);
}
section.image .titre h1 {
  position: relative;
  color: white;
  font-size: 44px;
  font-family: var(--alt-font);
}
section.image .titre.up {
  margin-top: -150px;
}

.row {
    flex-direction: row;
    margin: auto;
}
}
footer {
  background: var(--light-color);
  padding: 3em 1.5em;
  display: flex;
  flex-basis: 100%;
  justify-content: space-between;
}


footer nav {
  display: flex;
  flex-direction: column;
  font-family: var(--alt-font);
  margin-top: 1em;
}
footer nav a {
  display: block;
  padding: 0.25em 0.025em;
  color: var(--main-txt-color);
  text-decoration: none;
}
footer nav div.active > a {
  color: var(--alt-txt-color);
}
footer .col .logo {
  max-width: 152px;
  margin: 1em auto;
}
footer .reseaux nav {
  flex-direction: row;
  justify-content: flex-end;
}
footer .reseaux nav a {
  background: var(--main-bg-color);
  padding: 0 0.025em;
  margin: 0.25em;
  border-radius: 50%;
}
/* footer .reseaux nav a:hover {
  border-radius: 0;
} */
footer .copyright p {
  text-align: right;
  font-size: 0.8em;
  margin: 1em 0 0;
}
/* BLOG */
.posts {
  position: relative;
  max-width: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  grid-gap: 30px;
}

.post {
  font-family: Montserrat, sans-serif;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 100%;
  padding: 5px;
  transition: all 0.3s ease-in-out;
}

.post-image.thumbnail {
  height: 170px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-image.thumbnail img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.post-text {
  padding: 0 1em;
}

.post-dsp {
  color: var(--accent-txt-color);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.post-titre h1 {
  margin: 1em auto;
  color: white;
  text-shadow: black 10px 10px 20px;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 44px;
}

.button.post-link {
  margin: 0 1em 1em;
}

.post-titre h3 {
  margin: 0 auto 1em auto;
  font-size: 16px;
}

.post-content {
  font-family: lato, sans-serif;
  margin: 0 0 1em;
}

.post-link-container {
  margin-top: auto;
}

.post-link {
  text-decoration: none;
  /*cursor: url("https://a-cloud.b-cdn.net/media/original/87f0c4ff8d302ce583a5325f08a863c6.svg") 64 64, auto !important;*/
}

.post .button,
.posts .button {
  background: var(--accent-txt-color);
  color: white;
  font-size: 0.75em;
  display: inline-flex;
  text-decoration: none;
  border-radius: 2px;
  padding: 0.75em 1.5em;
  border: 1px solid var(--accent-txt-color);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.post .button:hover,
.posts .button:hover {
  color: white;
  border: 1px solid var(--main-txt-color);
  background: var(--main-txt-color);
  transition: all 0.3s ease-in-out;
}

.single .post-dsp {
  font-size: 30px;
  text-align: center;
}
.single .post-date {
  font-size: 16px;
  color: var(--accent-txt-color);
  text-align: center;
}
.single .post-content {
  color: white;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  max-width: 930px;
  width: 100%;
  margin: 50px auto 0;
}
.single .post-content a {
  color: var(--accent-txt-color);
}

.posts .post {
  transition: all 0.3s ease-in-out;
  background-color: white;
  box-shadow: 0px 0px 20px 4px rgba(0, 0, 0, 0.01);
}
.posts .post:hover {
  background-color: white;
}
.posts .post:hover {
  background-color: white;
  box-shadow: 0px 0px 30px 20px rgba(0, 0, 0, 0.33);
}
.posts .post-dsp {
  text-align: left;
}
.posts .post-date {
  margin-top: 1em;
  font-size: 13px;
  color: var(--main-txt-color);
  text-align: left;
}
.posts .post-content {
  color: var(--main-txt-color);
  text-align: justify;
  text-overflow: ellipsis;
}

  /* Pour les petits écrans */
  @media (max-width: 850px) {
    .video {
        max-width: 350px;
    }
}

/* Pour les grands écrans */
@media (min-width: 851px) {
    .video {
        max-width: 600;
    }
}

.flex-container {
  display: flex;
  justify-content: space-between; 
 }

 .selected {
  padding: 3;
 }

 /* Largeur de la barre de défilement */
::-webkit-scrollbar {
  width: 7px;
 }
 
 /* Piste de défilement */
 ::-webkit-scrollbar-track {
  background: #f1f1f1;
 }
 
 /* Curseur de défilement */
 ::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
 }
 
 /* Curseur de défilement lors du survol */
 ::-webkit-scrollbar-thumb:hover {
  background: #555;
 }


 

 .btn:focus-visible {
    background: none !important;
    color: white !important;
 }

 .icon {
  display: inline-flex;
  width: 20px;
  margin-right: 8px;
}



.nav-link:hover {
  color: rgba(90, 213, 195, 1);
  cursor: pointer;
}

a.menu-item {
  font-size: 15px;
  padding: 0.85em;
  display: inline-block;
  font-family: var(--alt-font);
  text-decoration: none;
  color: var(--main-txt-color);
cursor: pointer;
}

.title_connect {
  font-weight: bold;
}

.img-zoom {
  transition: transform 0.5s ease-in-out;
}

.img-zoom:hover {
  cursor: pointer !important;
}
.img-zoom:active, .img-zoom:focus {
  transform: scale(1.6);
  cursor: pointer !important;
}
