/* *********************************************************************************************** */
/* GODIGIT STANDARD PAGE */
/* *********************************************************************************************** */

.godigit-page {
  color: var(--font-color);
}

.godigit-page h2,
.h2-border  {
  padding-left: 20px;
  border-left: solid 4px var(--secondary-color);
}

/* .godigit-page-title {
    margin-top: 250px;
  } */
  
/*   .godigit-page-title h1 {
    font-weight: 200;
    margin-bottom: 20px;
    font-size: 40px;
  } */

  .godigit-page-content {
    margin-top: 40px;
    margin-bottom: 100px;
  }

.godigit-page-content-img img {
  width: 100%;
}
  
  .section-margin-top h2 {
    text-transform: capitalize;
    font-size: 50px;
  }

  .no-float {
    width: 100%;
  }

  .float-left {
    width: 40%;
    float: left;
    margin: 0 20px 20px 0;
  }

  .mini-float-left {
    width: 20%;
    float: left;
    margin: 0 40px 20px 0;
  }

  .godigit-single-page {
    margin-top: 1rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .godigit-single-menu {
    width: 25%;
    padding: 0.5rem 0;
    /* border-left: 1px solid var(--dark-color); */
     background-color: var(--light-color);
   
  }

  .godigit-single-menu-item {
    color: var(--dark-color);
    padding: 3px 10px;
    margin: 3px;
    font-size: 16px;
    font-weight: 500;
  }

  .godigit-single-menu-item a {
    text-decoration: none;
    color: var(--dark-color);
  }

  .godigit-single-menu-item a:hover {
    color: var(--hover-color);
  }

  .godigit-single-post {
    width: 70%;
  }
  
  /* *********************************************************************************************** */
  /* GODIGIT POSTS LIST */
  /* *********************************************************************************************** */
  
  .post-container {
    margin-bottom: 100px;
  }
  
  .post-container-item {
    margin-bottom: 40px;
  }

  .news-title {
    margin: 10px 0 5px 0;
  }

  .news-content {
    margin-top: 20px;
  }
  
  .event-container-item {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
  }
  
  .post-list-img {
   min-width: 20%;
    margin-right: 40px;
    position: relative;

  }

  .post-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .post-list-txt {
    width: 80%;
  }

  .span-category ul {
    display: flex;
  }
  
  .span-category ul li a{
    padding: 0 8px;
    font-size: 14px;
    text-transform: uppercase;
    background-color: var(--dark-color-2);
    color: white;
    /* border: solid 2px var(--dark-color);
    color: var(--dark-color); */
    border-radius: 50px;
    margin-right: 10px;
  }

  .span-category ul li a:hover {
    background-color: var(--hover-color);
    color: white;
  /*   border: solid 2px var(--hover-color);
    color: var(--hover-color); */
  }

  /* *********************************************************************************************** */
  /* GODIGIT STAFF LIST */
  /* *********************************************************************************************** */
  
  .staff-main-title {
    margin-bottom: 80px;
  }
  
  .staff-container {
    margin-bottom: 100px;
  }

  .staff-fonction-title {
    padding-left: 20px;
    border-left: solid 4px var(--secondary-color);
  }

  .staff-container-row {
    margin-top: 80px;
    display: flex;
    justify-content: flex-start;
  }
  
  .staff-container-item {
    padding: 30px;
    width: 30%;
    margin-right: 40px;
    margin-bottom: 100px;
    background-color: var(--light-color);
    border-radius: 50px 0px 50px 0px ;
  }
  
  .staff-list-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    float: left;
    margin-top: -60px;
    margin-left: -40px;
    margin-right: 20px;
  }

  .staff-list-img img {
    border-radius: 50%;
    width: 100%;
  }

  .staff-title {
    font-weight: 200;
    margin-bottom: 0;
    text-align: right;
  }
  
  .staff-list-txt {
    width: 100%;
    color: var(--dark-color);
    font-weight: 200;
  }

  .staff-list-span {
    font-size: 12px;
    color: grey;
    text-align: right;
  }

  .staff-content {
    margin-top: 40px;
  }

  /* *********************************************************************************************** */
  /* BEFORE FOOTER */
  /* *********************************************************************************************** */

  .before-footer {
      margin-top: 80px;
      border-top: solid 1px var(--dark-color);
  }

  .tagcloud a {
    padding: 5px 10px;
    border: 1px solid;
    margin-right: 10px;
    border-radius: 50px;
    color: var(--primary-color);
    text-transform: uppercase;
  }

  @media (max-width: 1000px) {

    .godigit-page-title {
      margin-top: 80px;
    }

    .godigit-page-title h1{
      font-size: 50px;
      line-height: 55px;
      margin-bottom: 20px;
    }
    
    .godigit-single-menu {
      display: none;
    }

    .godigit-single-post {
      width: 100%;
    }

    .staff-container-row {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
    }

    .staff-container-item {
      width: 90%;
      margin-right: 0;
    }

    .godigit-page-content {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .float-left {
      float:none;
      width: 100% ;
      margin: 20px;
    }
  }