/*#####################################*/
/* ##### Import des fichiers CSS ##### */
/*#####################################*/
@import url('reset.css');
@import url('variables.css');
@import url('typography.css');
@import url('components.css');
@import url('swiper.css');
@import url('utilities.css');




/*#####################################*/
/* ########## COLLABORATEURS SECTION ####### */
/*#####################################*/

.collaborateurs-hero-section {
    position: relative;
    overflow: hidden;
    height: 80vh;
    padding: 0;
}

.collaborateurs-hero-background {
    position: relative;
    height: 100%;
    width: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    margin-bottom: 60px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--beige);
    opacity: 0.8;
    z-index: 5;
}

.hero-content {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ARTISAN GRID SECTION  */

.line-bas {
      background: var(--vert-olive);
      width: 70vw;
      height: 0.5px;
      bottom: 0;
      left: 20vw;
      position: absolute;
      z-index: 10;

    }
    

    /* .line-bas::after{
        content: "";
        background: var(--vert-olive);
        width: 50vw;
        height: 0.5px;
        bottom: -10vh;
        left: 16vw;
        position: absolute;

        @media (max-width: 1024px) {
          left: auto;
          right: 0;
        }

      }

      .line-bas::before{
        content: "";
        background: var(--vert-olive);
        width: 24vw;
        height: 0.5px;
        bottom: -20vh;
        left: 32vw;
        position: absolute;

        @media (max-width: 1024px) {
          left: auto;
          right: 0;
        }

      } */

.line-gauche {
      background: var(--vert-olive);
      width: 0.5px;
      height: 80vh;
      left: 0;
      top: 100px;
      position: absolute;
      z-index: 10;
    }

.coin-br{
    mask: radial-gradient(30px at 0% 0%, transparent 99%, black calc(100% + 1px));
    height: 30px;
    width: 30px;
    position: absolute;
    background: var(--vert-olive);
    bottom: 0;
    right: 0;
}

.coin-tl{
    mask: radial-gradient(30px at 100% 100%, transparent 99%, black calc(100% + 1px));
    height: 30px;
    width: 30px;
    position: absolute;
    background: var(--vert-olive);
    bottom: 0;
    right: 0;
    transform: translate(100%, 100%)
}

@media (max-width: 1024px) {
  .coin-tl {
    display: none;
  }
}


