HEX
Server: Apache
System: Linux webm013.cluster123.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: lesanew (165608)
PHP: 8.3.31
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/lesanew/anestetues2/web/app/themes/anes-tetues/resources/css/pages/partenaires.scss
/* Page: Partenaires */
@use '../utilities';
@use '../components/wave-img';
@use '../components/form';

.page-template-partenaires {
  .partners-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: utilities.space(4) 0;

    .logo-container {
      width: calc(50% - 2rem);
      position: relative;
    }

    .wave-img {
      position: relative;
      padding: 10%;
      box-sizing: border-box;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: utilities.$background-light;
      isolation: isolate;
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .box-shadow {
      position: absolute;
      background-color: rgb(0 0 0 / 30%);
      z-index: 0;
      left: 50%;
      top: calc(50% + 0.2rem);
      transform: translate(-50%, -50%);
      width: calc(100% + 0.3rem);
      height: calc(100% + 0.3rem);
      filter: blur(2rem);
      mask-image: url('../../images/svg/form-image.svg');
      mask-repeat: no-repeat;
      mask-position: center;
      mask-size: 100% 100%;
    }
  }

  .partner-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-in-out;
    z-index: 1000;

    &__backdrop {
      position: absolute;
      inset: 0;
      background: rgb(0 0 0 / 60%);
    }

    &__content {
      position: relative;
      z-index: 1;
      background: utilities.$background-light;
      padding: utilities.space(4);
      border-radius: 1rem;
      max-width: 90rem;
      width: calc(100% - utilities.space(4));
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: 0 1.5rem 3rem rgb(0 0 0 / 35%);
    }

    &__title {
      margin-top: 0;
      margin-bottom: utilities.space(3);
      text-align: center;
    }

    &__close {
      position: absolute;
      top: utilities.space(2);
      right: utilities.space(2);
      border: none;
      background: transparent;
      font-size: 2rem;
      line-height: 1;
      cursor: pointer;
      color: inherit;
    }

    &__form {
      margin-top: utilities.space(2);
    }

    &.is-open {
      opacity: 1;
      pointer-events: auto;
    }
  }
}

@media screen and (width >= 768px) {
  .page-template-partenaires {
    .partners-container {
      .logo-container {
        width: calc(100% / 3 - 2rem);
      }
    }
  }
}

@media screen and (width >= 1280px) {
  .page-template-partenaires {
    .partners-container {
      justify-content: start;

      .logo-container {
        width: calc(20% - 2rem);
        margin-right: 2.5rem;

        &:nth-child(5n) {
          margin-right: 0;
        }
      }
    }
  }
}