/* @import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@200;400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400;600;800&display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;700&display=swap");

/* root */
:root {
  --primary-color: #73b7b2; /* rgb(115, 183, 178) */
  --secondary-color: #f08222; /* rgb(240, 130, 34) */
  --light-color: #f1f1f1; /* rgb(241, 241, 241) */
  --light-color-2: #e2eefa;
  --dark-color: #374d61; /* rgb(55, 77, 97) */
  --dark-color-2: #b6205a; /* rgb(182, 32, 90) */
  --hover-color-2: #f08222; /* rrgb(240, 130, 34) */
  --hover-color: #42d89e; /* rgb(66, 216, 158) */
  --alert-color: #eb455e; /* rgb(235, 69, 94) */
  --background-color: white; /* rgb(255, 255, 255) */
  --font-color: #504f4f;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
/*   text-decoration: none; */
  outline: none;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: var(--background-color);
  font-weight: 300;
}

h1 {
  color: var(--dark-color);
  margin: 10px 10px 20px 0;
  font-weight: 500;
  font-size: 30px;
  line-height: 38px;
 /*  text-transform: uppercase; */
 /*  text-align: center; */
}

/* h1::after {
  content:"\0000A0";
  display: block;
  width: 10rem;
  height: 10px;
  margin-top: 20px;
  border-top: 1px solid var(--dark-color);
} */

h2 {
  color: var(--dark-color);
  font-weight: 500;
  font-size: 25px;
  line-height: 30px;
  margin: 20px 0 10px;
}

h3 {
  color: var(--dark-color);
  /* text-transform: uppercase; */
  font-size: 20px;
  line-height: 25px;
  margin: 10px 0;
  font-weight: 500;
}

/* h2 {
  color: var(--dark-color);
  font-size: 25px;
  line-height: 30px;
  margin: 20px 0 10px;
  font-weight: 500;
} */

h4 {
  color: var(--dark-color);
  /* text-transform: uppercase; */
  font-size: 16px;
  line-height: 20px;
  margin: 10px 0;
  font-weight: 500;
}

h5 {
  color: var(--dark-color);
  text-transform: uppercase;
  font-size: 14px;
  line-height: 18px;
  margin: 10px 0;
  font-weight: 500;
}

a {
  color: var(--primary-color);
  -webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}

a h2 {
  color: var(--dark-color);
  -webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}

a:hover,
a h2:hover,
.godigit-link a:hover {
  color: var(--hover-color);
}

strong, b {
  font-weight: 500;
}

ul {
  list-style: none;
}

input {
  padding: 6px;
  border: none;
  background-color: var(--light-color);
  font-size: 16px;
}

fieldset {
  padding: 20px;
  margin-bottom: 20px;
/*   border: none; */
  /* box-shadow: 2px 2px 6px rgba(55, 77, 97, 0.1); */
 /*  background-color: var(--light-color); */
}

label {
  cursor: default;
  margin-right: 1rem;
}

.godigit-link a {
  color: inherit;
  text-decoration: none;
}

.godigit-span {
  color: grey;
  font-size: 0.9rem;
}

.godigit-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.godigit-display {
  display: block;
  transform: scaleY(0);
}

.godigit-no-display {
  display: none;
  transform: scaleY(1);
  transition: transform 0.4s ease-in;
}

.btn-godigit-2 {
  border: none;
  border-radius: 50px;
  padding: 20px;
  background-color: var(--primary-color);
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

a.btn-godigit {
  border: solid 3px var(--primary-color);
  border-radius: 50px;
  padding: 16px 25px;
  background-color: white;
  color: var(--primary-color);
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-transform: uppercase;

  transition: 0.3s;
}

a.btn-godigit:hover {
  background-color: var(--hover-color);
  border-color: var(--hover-color);
  color: white;
}

.icon-mr {
  margin-right: 10px;
}

.icon-ml {
  margin-left: 10px;
}

.w-max {
  margin: auto;
  width: 100%;
 /*  width: -moz-available;          
  width: -webkit-fill-available;  
  width: fill-available; */
  max-width: 1200px;
}

.w-mid {
  margin: auto;
  width: 100%;
  max-width: 1000px;
}

.w-min {
  margin: auto;
  width: 100%;
  max-width: 600px;
}

.m-top {
  margin-top: 180px;
}



.godigit-hidden {
  display: none;
}

/* .main-header {
  position: relative;
} */

.main-navbar {
  height: 70px;
  width: 100%;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 200;
  box-shadow: 0px 4px 4px rgba(55, 77, 97, 0.1);
}

.background-navbar {
  height: 70px;
  width: 100%;
  background-color: white;
  position: fixed;
  top: 0;
  z-index: -1;
}

.navbar-logo {
  height: 40px;
  width: auto;
  margin: 0 60px;
}

.navbar-logo img {
  height: 100%;
}

.navbar-menu {
  height: inherit;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}

.navbar-menu > ul {
  height: inherit;
  display: flex;
  align-items: center;
}

.navbar-menu > ul > li {
  margin: 0 20px;
  padding: 18px 0;
  transition: color 0.1s;
  display: flex;
  align-items: center;
  height: 100%;
}

.navbar-menus > li:hover {
  color: var(--secondary-color);
  cursor: default;
}

.fa-chevron-down {
  transition: transform 0.2s;
}

.navbar-menus > li:hover .fa-chevron-down {
  transform: rotateZ(180deg);
}

.navbar-cart-items {
  background-color: var(--secondary-color);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: white;
  display: inline-block;
  text-align: center;
  font-weight: 500;
}

.navbar-infos {
  height: inherit;
  display: flex;
}

.infos-search {
/*   min-width: 200px; */
  height: 35px;
  padding: none;
  margin: 20px;
  border-bottom: 1px solid;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 200;
  letter-spacing: 1px;
}

.infos-search input {
  border: none;
  background-color: transparent;
  font-size: 14px;
  text-align: right;
}

.dropdown-top-search input::placeholder {
  color: white;
}

::placeholder {
  font-size: 14px;
  transform: translateY(0);
  transition: transform 0.4s, opacity 0.5s;
}

:focus::placeholder {
  transform: translateY(100%);
  opacity: 0;
}

.navbar-infos-phone,
.navbar-mobile-infos-phone {
  padding: 25px;
  text-align: center;
  height: inherit;
  border-radius: 0px;
}

.navbar-mobile-infos-phone {
  display: none;
}

.navbar-icon-search {
  display: none;
}

  /* *********************************************************************************************** */
/* SECOND NAVBAR */
/* *********************************************************************************************** */

.second-navbar {
  position: fixed;
  top: 0;
  background-color: white;
  /* background-color: var(--light-color-2); */
  color: black;
  font-weight: 400;
  z-index: 100;
  width: 100%;
  display: flex;
  justify-content: space-between;
  box-shadow: 0px 4px 4px rgba(55, 77, 97, 0.1);

  transform: translateY(-70px);
  transition: transform 0.6s;
}

.second-navbar-appear {
  transform: translateY(70px);
}

.second-navbar-menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: inherit;
  width: 80%;
}

.second-navbar-menu a {
  height: inherit;
}

.second-navbar-menu-item {
  font-size: 14px;
  text-align: center;
  transition: background-color 0.3s;
  height: 100%;
}

.second-navbar-menu-item a {
  padding: 10px 30px;
  display : flex;
 align-items : center;
}

.second-navbar-menu-item a:hover {
  background-color: var(--hover-color);
  color: white;
}

.second-navbar-menus-item-1 {
  background-color: var(--dark-color);
  color: white;
}

.second-navbar-menus-item-2 {
  background-color: var(--primary-color);
  color: white;
}

.second-navbar-menus-item-3 {
  background-color: var(--secondary-color);
  color: white;
}

.second-navbar-menus-item-4,
.second-navbar-menus-item-5,
.second-navbar-menus-item-6 {
  border-right: solid 1px var(--light-color);
}

.second-navbar-social {
  width: 20%;
  display: flex;
  color: var(--dark-color);
  justify-content: flex-end;
  align-items: center;
  padding-right: 20px;
}

.second-navbar-social li {
  margin-left: 10px;
}

/* *********************************************************************************************** */
/* DROPDOWN */
/* *********************************************************************************************** */

.navbar-menus-dropdown {
  width: 100%;
  padding: 0 40px 20px 40px;
  position: absolute;
  left: 0;
  top: 70px;
  z-index: -1000;
}

.navbar-menus-dropdown-1 {
  background-color: var(--primary-color);
  color: white;
  /* visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s; */
  transform: translateY(-100vw);
  transition: transform 0.6s;
}

.navbar-menus-item-1:hover .navbar-menus-dropdown-1 {
  /* visibility: visible;
  opacity: 1; */

  transform: translateY(0vw);
}

.navbar-menus-dropdown-2 {
  background-color: var(--dark-color);
  color: white;

  transform: translateY(-100vw);
  transition: transform 0.6s;
}

.navbar-menus-item-2:hover .navbar-menus-dropdown-2 {
  transform: translateY(0vw);
}

.navbar-menus-dropdown-3 {
  background-color: var(--dark-color-2);
  color: white;

  transform: translateY(-100vw);
  transition: transform 0.6s;
}

.navbar-menus-item-3:hover .navbar-menus-dropdown-3 {
  transform: translateY(0vw);
}

.navbar-menus-dropdown-item > div,
.navbar-menus-dropdown-item > ul {
  width: 25rem;
  display: flex;
  flex-direction: column;
}

.dropdown-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}

.dropdown-top-social > ul {
  display: flex;
  justify-content: flex-start;
}

.dropdown-top-social > ul > li {
  margin-right: 15px;
}

.dropdown-top-search {
  margin-right: 0px;
}

.dropdown-main {
  display: flex;
  justify-content: space-between;
}

.dropdown-main > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
}

.navbar-menus-dropdown-item ul {
  padding-left: 20px;
  border-left: solid 1px white;
}

.navbar-menus-dropdown-item a:hover {
  color: var(--hover-color);
}

.navbar-menus-dropdown-item ul li:last-child {
  padding-bottom: 20px;
}

.navbar-menus-dropdown-item div > ul > li:first-child a {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
}

.contact-menu div > ul > li > a {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
}

.navbar-menus-dropdown-item ul li a {
  font-size: 12px;
  font-weight: 200;
  text-transform: none;
}

.navbar-menus-dropdown-item h3 {
  font-size: 14px;
  text-transform: uppercase;
}

.dropdown-infos-right {
  text-align: right;
  text-transform: none;
}

.dropdown-infos-right h5 {
  margin-bottom: 10px;
  font-size: 12px;
  color: white;
}

.dropdown-infos-right p {
  font-size: 12px;
  margin-top: 5px;
  font-weight: 200;
}

.dropdown-logo {
  height: 40px;
  width: auto;
  margin-bottom: 10px;
}

.dropdown-logo img {
  height: 100%;
  fill: white;
}

/* *********************************************************************************************** */
/* NAVBAR MOBILE */
/* *********************************************************************************************** */

.mobile-navbar {
  display: none;
}

.mobile-navbar-icon {
  font-size: 2rem;
  color: var(--dark-color);
  margin-right: 2rem;
}

.mobile-navbar-menu {
  display: flex;
  justify-content: space-between;
  background-color: rgba(55, 77, 97, 0.97);
  width: 100%;
  height: 100vh;
  padding: 50px 40px 20px 40px;
  position: absolute;
  left: 0;
  top: 65px;
  z-index: 100;

 /*  visibility: hidden;
  opacity: 0; */
  transform: translateX(100vw);
  transition: transform 0.6s;
  /* transition: opacity 0.3s, visibility 0.3s; */
}

  .mobile-navbar-icon {
    display: none;
  }

  .mobile-appear {
    transform: translateX(0vw);
  /*   visibility: visible;
    opacity: 1; */
  }

  .mobile-menu-down {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: white;
    font-size: 1.4rem;
    color: var(--dark-color);
    z-index: 9999;
    visibility: hidden;
    height: 75px;
  }

  .godigit-mobile-search {
    display: none;
    position: fixed;
    width: 100%;
    bottom: 75px;
    background-color: var(--light-color-2);
    height: 100px;
    z-index: 9998;

    transform: translateY(200px);
    transition: transform 0.6s;
  }

  .godigit-mobile-search .infos-search {
    border-color: var(--dark-color);
  }

  .godigit-mobile-search .infos-search input {
    font-size: 20px;
    color: var(--dark-color);
  }

  .godigit-mobile-search .infos-search input::placeholder{
    font-size: 20px;
    color: var(--dark-color);
  }

  .mobile-search-appear {
    transform: translateY(0px);
  /*   visibility: visible;
    opacity: 1; */
  }

  .mobile-navbar-menu > ul {
    overflow: hidden;
  }

  .mobile-menu-ul {
    color: white;
  }

  .mobile-menu-label {
    cursor: pointer;
    display: block;
    overflow: hidden;
    text-transform: uppercase;
    font-weight: 500;
  }

  .fa-chevron-right {
    transition: transform 0.2s;
  }
  
  .mobile-menu-label:hover .fa-chevron-right {
    transform: rotateZ(90deg);
  }

  .mobile-menu-ul > li {
    cursor: pointer;
    overflow: hidden;
    height: 0;
    margin: 0;
    opacity: 0;
    transition: all 0.25s ease-in-out;
  }

  .mobile-menu-input[type="radio"] {
    display: none;
  }

  .mobile-menu-input:checked + .mobile-menu-ul > li:first-child {
    margin-top: 0.4em;
  }
  .mobile-menu-input:checked + .mobile-menu-ul > li:last-child {
    margin-bottom: 0.6em;
  }

  .mobile-menu-input:checked + .mobile-menu-ul > li {
    height: 1.6em;
    opacity: 1;
  }

/* *********************************************************************************************** */
/* SIDE MENU
/* *********************************************************************************************** */

/* .side-menus {
  text-transform: uppercase;

  width: 100%;
  display: flex;
  justify-content: space-between;
 
} */

.side-menu-social {
  display: flex;
  justify-content: flex-end;
  color: var(--dark-color);
  font-size: 18px;
  margin-bottom: 10px;
}

.side-menu-social li {
  margin: 0 10px;
}

.side-menu-left {
  position: absolute;
  top: 65px;
  left: 0;
  color: var(--dark-color);
  padding: 20px 40px;
  z-index: 100;
}

.side-menu-left:hover .godigit-widget-agenda-hover {
  transform: translateX(0);
}

.side-menu-left i {
  font-size: 40px;
}

.godigit-widget-agenda-hover {
  position: absolute;
  top: 75px;
  z-index: 9999;
  transform: translateX(-200%);
  transition: transform 0.5s ease-out;
}

.godigit-widget-agenda-container {
  background-color: var(--light-color);
  padding: 20px 40px 0 20px;
  width: 650px;
  overflow: hidden;
  z-index: 100;
}

h5.godigit-widget-shop-title {
  text-transform: none;
  margin: 10px 0
}

h5.godigit-widget-shop-title a {
  text-decoration: none;
  font-weight: 300;
  color: var(--dark-color);
}

h5.godigit-widget-shop-title a:hover {
  color: var(--hover-color);
}

.side-menu-right {
  position: absolute;
  top: 65px;
  right: 0;
  width: 300px;
  padding: 20px 40px;
  z-index: 100;
}

.side-menu-right-item {
  transition: background-color 0.2s;
}

.side-menu-right-item h5 {
  color: white;
  padding: 3px 10px;
  margin: 3px;
}

.side-menu-right-item-1 h5 {
  color: var(--dark-color);
}

.side-menu-right-item-1 {
  background-color: var(--light-color);
}

.side-menu-right-item-2 {
  background-color: var(--dark-color);
}

.side-menu-right-item-3 {
  background-color: var(--primary-color);
}

.side-menu-right-item:hover {
  background-color: var(--hover-color);
}

/* .side-menu-right-item-4 h5 {
  background-color: var(--secondary-color);
} */

/* *********************************************************************************************** */
/* HEADER - SLIDER */
/* *********************************************************************************************** */

.main-slider {
  position: relative;
  overflow: hidden;
/*   width: 100vw;
  width: -moz-available;          
  width: -webkit-fill-available;  
  width: fill-available; */
}

.slider-title h1 {
  font-size: 60px;
  line-height: 65px;
  font-weight: 700;
  text-transform: none;
  border: none;
  text-align: left;
}

.slider-title h1::after {
  content:none;
}

.slider {
  display: flex;
  transform: translateX(0);
  transition: transform 0.9s ease-in;
}

.slider-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wave {
  width: 100%;
  position: absolute;
  bottom: -40px;
  z-index: 50;
  pointer-events: none;
}

.wave img {
  width: 100%;
}

.menu-onglets {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
}

.menu-onglets-item {
  margin-left: 20px;
  height: 160px;
  width: 160px;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: white;
}

.menu-onglets-item a {
  padding: 10px;
  display: block;
  height: inherit;
}

.menu-onglets-item a:hover {
  color: white;
}

.menu-onglets-item:hover {
  transform: translateY(-30px);
}

.menu-onglets-item-1 {
  background-color: var(--dark-color);
  transition: transform 0.3s;
}

.menu-onglets-item-2 {
  background-color: var(--primary-color);
  transition: transform 0.3s;
}

.menu-onglets-item-3 {
  background-color: var(--secondary-color);
  transition: transform 0.3s;
}

.slider-title {
  position: absolute;
  top: 35%;
}

.slider-img {
  width: 100vw;
  height: 800px;
  z-index: -1;
}

.slider-img img {
  object-fit: cover;
  width: 100%;
  height: 800px;
}

/* *********************************************************************************************** */
/* NEWS SECTION */
/* *********************************************************************************************** */

.main-news {
  margin-top: 40px;
}

.news-highlight-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.news-standard-card {
  border-radius: 5px;
 /*  box-shadow: 2px 2px 8px var(--light-color); */
 box-shadow: 2px 2px 6px rgba(55, 77, 97, 0.1);
}

.news-highlight-img {
  width: 65%;
  overflow: hidden;
  position: relative;
}

.news-standard-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.news-highlight-img img,
.news-standard-img img {
  width: 100%;
  -webkit-transition: all 0.4s ease; /* Safari et Chrome */
-moz-transition: all 0.4s ease; /* Firefox */
-ms-transition: all 0.4s ease; /* Internet Explorer 9 */
-o-transition: all 0.4s ease; /* Opera */
transition: all 0.4s ease;
}

.news-highlight-img::before,
.news-standard-img::before {
  position: absolute;
z-index: 1;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
transform: translateY(100%);
width: 100%;
height: 100%;
font-size: 4rem;
font-family: 'Font Awesome 5 Free';
font-weight: 900;
content: '\f0aa';
color: white;
background: linear-gradient(180deg, rgba(66, 216, 158, 0.3) 0%, rgb(66, 216, 158, 0.5) 100%);
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}

.news-highlight-card:hover .news-highlight-img::before,
.news-standard-card:hover .news-standard-img::before{
  transform: translateY(0);
  font-size: 3rem;
}



.news-highlight-card:hover .news-highlight-title, 
.news-standard-card:hover .news-standard-title,
.news-highlight-card:hover .news-highlight-link,
.news-standard-card:hover .news-standard-link{
  color: var(--hover-color);
}

.news-highlight-card:hover .news-highlight-img img {
  opacity: 0.8;
  -webkit-transform:scale(1.02); /* Safari et Chrome */
-moz-transform:scale(1.02); /* Firefox */
-ms-transform:scale(1.02); /* Internet Explorer 9 */
-o-transform:scale(1.02); /* Opera */
transform:scale(1.02);

}

.news-standard-card:hover .news-standard-img img {
  opacity: 0.8;
  -webkit-transform:scale(1.05); /* Safari et Chrome */
-moz-transform:scale(1.05); /* Firefox */
-ms-transform:scale(1.05); /* Internet Explorer 9 */
-o-transform:scale(1.05); /* Opera */
transform:scale(1.05);
}

.news-highlight-infos {
  width: 30%;
  margin-left: 40px;
}

.news-standard-infos {
  padding: 10px 20px 30px 20px;
}

.news-highlight-infos ,
.news-standard-infos {
  color: grey;
}

.news-highlight-content,
.news-standard-content {
  margin-bottom: 10px;
}

.news-highlight-title,
.news-standard-title {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.news-highlight-link,
.news-standard-link,
a.agenda-card-link {
  color: var(--secondary-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* .news-highlight-title:hover,
.news-standard-title:hover,
.news-highlight-link:hover,
.news-standard-link:hover,
.more-link h2:hover,
.agenda-card-link:hover {
  color: var(--hover-color);
} */

.news-standard-row{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.news-standard-card-link {
  width: 30%;
}

.more-link {
  margin: 20px 0;
  text-align: right;
}

.more-link a {
  text-decoration: none;
}

.more-link a:hover h3{
 color: var(--hover-color);
}

/* *********************************************************************************************** */
/* FORMATION SECTION */
/* *********************************************************************************************** */

.main-formation,
.main-agenda {
  position: relative;
  padding: 40px 0;
  background-color: var(--light-color);
}

.formations-container,
.agenda-container {
  margin-top: 20px;
  overflow: hidden;
}

.formations-row,
.agenda-row {
  display: flex;
  justify-content: flex-start;
  /* align-items: flex-start; */
  transition: margin-left 1s;
}

/* .formations-row {
  height: auto;
} */

.slider-formation-control {
  position: absolute;
  width: 3rem;
  height: 3rem;
  background-color: rgba(221, 221, 221, 0.4);
  border-radius: 50px;
}

.slider-formation-control i {
  font-size: 2rem;
  color: var(--dark-color);
}

.control-left,
.agenda-control-left {
  top: 50%;
  left: 2rem;
}

.control-right,
.agenda-control-right {
  top: 50%;
  right: 2rem;
}

.hideControl {
  opacity: 0;
  visibility: hidden;
}

/* *********************************************************************************************** */
/* FORMATION CARD */
/* *********************************************************************************************** */

.formation-card {
  width: 300px;
  flex-shrink: 0;
  background-color: white;
  margin-right: 20px;
  border-radius: 5px;
}

.agenda-card {
  width: 400px;
  flex-shrink: 0;
  background-color: white;
  margin-top: 20px;
  margin-right: 50px;
  position: relative;
}

.next-card {
  display: block;
  transition: all 0.4s ease;
  width: 300px;
  height:100%;
  background-image: url('../img/godigit-card.png');
  background-color: rgba(255, 255, 255, 0.3);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  margin-right: 20px;
  border-radius: 10px;
  padding: 0;
  transform: scale(1);
}

.next-card:hover {
  transform: scale(0.98);
  background-color: rgba(255, 255, 255, 0.8);
}

.next-card h3 {
  padding-top: 4rem;
  margin: 0;
}

.formation-card i {
  margin-right: 10px;
}

.agenda-card-img {
  width: 100%;
}

a.formation-card-img {
  display: block;
  width: 100%;
  height: 140px;
}

.formation-card-img img {
  width: 100%;
  height: 100%;
/*   transform: scale(1); */
  transition: transform 0.3s ease-out;
  object-fit: cover;
}

.formation-card-img:hover img {
  transform: scale(0.98);
}

.agenda-card-img img {
  width: 100%;
  height: 300px;
  z-index: 9;
  object-fit: cover;
  -webkit-transition: all 0.4s ease; /* Safari et Chrome */
  -moz-transition: all 0.4s ease; /* Firefox */
  -ms-transition: all 0.4s ease; /* Internet Explorer 9 */
  -o-transition: all 0.4s ease; /* Opera */
  transition: all 0.4s ease;
}

.agenda-card-img img:hover {
  opacity: 0.8;
  -webkit-transform:scale(0.98); /* Safari et Chrome */
-moz-transform:scale(0.98); /* Firefox */
-ms-transform:scale(0.98); /* Internet Explorer 9 */
-o-transform:scale(0.98); /* Opera */
transform:scale(0.98);
}

.formation-card-infos {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 280px;
}

.formation-card-infos,
.agenda-card-infos {
  padding: 20px;
}

.formation-card-infos .formation-card-infos-wrapper-1 h4 {
  font-size: 18px;
  line-height: 20px;
}

.formation-card-infos .formation-card-infos-wrapper-1 h4:hover {
  color: var(--hover-color);
}

.formation-card-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.formation-card-info-1 p:first-child {
  color: white;
  background-color: var(--secondary-color);
  padding: 0 8px;
  letter-spacing: 1px;
}

.formation-card-info-1 p:last-child {
  color: var(--secondary-color);
  font-weight: 500;
}

.formation-card-info-2 p {
  color: grey;
  font-size: 14px;
}

.formation-card-category {
  padding: 0 8px;
  text-transform: uppercase;
  font-size: 12px;
  border: solid 1px grey;
  border-radius: 50px;
}

a.formation-card-btn {
  display: block;
  background-color: var(--primary-color);
  border: none;
  color: white;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 500;
}

a.formation-card-btn:hover {
  background-color: var(--hover-color);
  color: white;
}

.pastille-date {
  position: absolute;
  right: -20px;
  top: -20px;
  background-color: var(--secondary-color);
  border-radius: 50px;
  height: 100px;
  width: 100px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  z-index: 10;
}

.pastille-date p {
  color: white;
  font-weight: 200;
  text-transform: uppercase;
  font-size: 20px;
  text-align: center;
}

.pastille-date p:first-child {
  font-size: 40px;
  line-height: 35px;
}

/* *********************************************************************************************** */
/* FOOTER */
/* *********************************************************************************************** */


.godigit-footer {
  width: 100%;
  padding: 0 40px 20px 40px;
  color: var(--dark-color);
  background-color: white;
}

.navbar-menus-footer-item > ul {
  width: 400px;
  display: flex;
  flex-direction: column;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.footer-top-social > ul {
  display: flex;
  justify-content: flex-start;
}

.footer-top-social > ul > li {
  margin-right: 15px;
}

.footer-top-search {
  margin-right: 0px;
}

.footer-main {
  display: flex;
  justify-content: center;
}

.footer-main > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
}

.navbar-menus-footer-item ul {
  padding-left: 20px;
  border-left: solid 1px var(--dark-color);
}

.navbar-menus-footer-item ul li:last-child {
  padding-bottom: 20px;
}

.navbar-menus-footer-item ul li a {
  font-size: 12px;
  font-weight: 200;
  text-transform: none;
}

.navbar-menus-footer-item ul li a:hover {
  color: var(--hover-color);
}

.navbar-menus-footer-item h3 {
  font-size: 14px;
  text-transform: uppercase;
}

.footer-infos-right {
  text-align: right;
  text-transform: none;
}

.footer-infos-center {
  text-align: center;
  text-transform: none;
}

.footer-infos-right h5,
.footer-infos-center h5 {
  margin-bottom: 10px;
  font-size: 12px;
}

.footer-infos-right p,
.footer-infos-center p {
  font-size: 12px;
  margin-top: 5px;
  font-weight: 200;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 10px;
}

.footer-logo img {
  height: 100%;
}

.footer-copyright {
  margin-top: 30px;
}