<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*Generic spotlight*/
.spotlight {
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0;
  padding: 1px 0;
  width: 100%;

  .spotlight-content {
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
    margin: 40px 0 40px 55px;
    padding: 45px 45px 55px;
    width: 845px;

    h1 {
      color: var(--blue-500);
      font-family: Lato-Black;
      font-size: 65px;
      line-height: 70px;
      margin: 0 0 20px;
    }

    p {
      color: var(--blue-500);
      font-size: 20px;
      line-height: 25px;
      margin: 0;
      padding: 0;
    }
  }

  &amp;.spotlight-projet {
    .spotlight-content {
      margin: 40px 90px;
      width: auto;
      padding: 30px 55px 45px 75px;
      background-color: rgba(0, 0, 0, 0.05);

      h1 {
        color: white;
        margin: 0 0 20px;
        font-family: Lato-Regular;
        font-weight: normal;

        strong {
          font-family: Lato-Black;
        }
      }

      p {
        color: white;
      }
    }
  }

  @media (max-width: 1440px) {
    &amp;.spotlight-projet {
      .spotlight-content {
        p {
          br {
            display: none;
          }
        }
      }
    }
  }

  @media (max-width: 1290px) {
    background-position: top 0 right -160px;

    .spotlight-content {
      h1 {
        font-size: 58px;
        line-height: 60px;
      }
    }

    &amp;.spotlight-projet {
      background-position: top right;


    }
  }

  @media (max-width: 1190px) {
    background-size: auto 100%;

    .spotlight-content {
      padding: 35px 45px;
      width: 610px;

      h1 {
        font-size: 50px;
        line-height: 52px;
      }

      p {
        font-size: 16px;
        line-height: 20px;
      }
    }

    &amp;.spotlight-projet {
      .spotlight-content {
        margin: 40px 45px;
        padding: 20px 45px 45px;

        h1 {
          margin: 0 0 10px;
        }
      }
    }
  }

  @media (max-width: 935px) {
    .spotlight-content {
      margin: 30px;
      padding: 30px;
      width: 420px;

      h1 {
        font-size: 35px;
        line-height: 37px;
        margin: 0 0 20px;
      }

      p {
        font-size: 14px;
      }
    }

    &amp;.spotlight-projet {
      .spotlight-content {
        margin: 30px;
        padding: 30px;

        h1 {
          margin: 0 0 20px;
        }
      }
    }
  }

  @media (max-width: 700px) {
    .spotlight-content {
      width: 280px;
    }
  }

  @media (max-width: 580px) {
    background-position: bottom;
    background-size: 100% auto;
    height: 500px;

    .spotlight-content {
      margin: 0;
      padding: 20px 35px;
      width: auto;

      h1 {
        margin: 0 0 10px;
        font-size: 30px;
        line-height: 35px;
      }

      p {
        br {
          display: none;
        }
      }
    }

    &amp;.spotlight-projet {
      height: auto;
      background-size: auto 100%;

      .spotlight-content {
        margin: 25px;
        padding: 25px;

        h1 {
          strong {
            display: inline-block;
          }
        }
      }
    }
  }

  @media (max-width: 375px) {
    background-size: 375px auto;
  }
}
</pre></body></html>