/* Start custom CSS for html, class: .elementor-element-72da16a *//* =========================================================
   B-LION'S AGENCY — PORTFOLIO
   ========================================================= */

.bla-portfolio {
  --bla-black: #050505;
  --bla-dark: #0d0d0f;
  --bla-blue: #245cff;
  --bla-blue-dark: #1648de;
  --bla-white: #ffffff;
  --bla-text: #111318;
  --bla-gray: #60636c;
  --bla-gray-light: #f4f5f7;
  --bla-border: #e1e3e8;
  --bla-radius: 28px;
  --bla-shadow: 0 24px 70px rgba(19, 28, 56, 0.1);

  width: 100%;
  overflow: hidden;
  color: var(--bla-text);
  background: var(--bla-white);
  font-family: inherit;
}

.bla-portfolio *,
.bla-portfolio *::before,
.bla-portfolio *::after {
  box-sizing: border-box;
}

.bla-portfolio img {
  max-width: 100%;
  display: block;
}

.bla-portfolio a {
  color: inherit;
  text-decoration: none;
}

.bla-container {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}


/* =========================================================
   ELEMENTI GENERALI
   ========================================================= */

.bla-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--bla-blue);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.bla-eyebrow-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(36, 92, 255, 0.1);
}

.bla-eyebrow-light {
  color: #a9bbff;
}

.bla-eyebrow-light .bla-eyebrow-dot {
  box-shadow: 0 0 0 6px rgba(169, 187, 255, 0.14);
}

.bla-btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.bla-btn span {
  font-size: 18px;
  transition: transform 0.25s ease;
}

.bla-btn:hover {
  transform: translateY(-3px);
}

.bla-btn:hover span {
  transform: translate(2px, 2px);
}

.bla-btn-primary {
  color: var(--bla-white) !important;
  background: var(--bla-blue);
  box-shadow: 0 14px 32px rgba(36, 92, 255, 0.25);
}

.bla-btn-primary:hover {
  background: var(--bla-blue-dark);
  box-shadow: 0 18px 38px rgba(36, 92, 255, 0.32);
}

.bla-btn-secondary {
  color: var(--bla-text) !important;
  border-color: var(--bla-border);
  background: rgba(255, 255, 255, 0.76);
}

.bla-btn-secondary:hover {
  border-color: #bbc0ca;
  background: var(--bla-white);
}

.bla-btn-white {
  color: var(--bla-black) !important;
  background: var(--bla-white);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.bla-btn-white:hover {
  background: #f1f4ff;
}


/* =========================================================
   HERO
   ========================================================= */

.bla-hero {
  position: relative;
  padding: 150px 0 80px;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(36, 92, 255, 0.13),
      transparent 26%
    ),
    radial-gradient(
      circle at 5% 90%,
      rgba(36, 92, 255, 0.07),
      transparent 25%
    ),
    linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.bla-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(20, 25, 40, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 25, 40, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 85%);
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.bla-hero .bla-container {
  position: relative;
  z-index: 2;
}

.bla-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  align-items: end;
  gap: 70px;
}

.bla-hero-content h1 {
  max-width: 920px;
  margin: 0;
  color: var(--bla-black);
  font-size: clamp(52px, 6.4vw, 94px);
  font-weight: 750;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.bla-hero-content h1 span {
  display: block;
  color: var(--bla-blue);
}

.bla-hero-content > p {
  max-width: 720px;
  margin: 38px 0 0;
  color: var(--bla-gray);
  font-size: 19px;
  line-height: 1.7;
}

.bla-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.bla-hero-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(21, 24, 32, 0.08);
  border-radius: var(--bla-radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--bla-shadow);
  backdrop-filter: blur(14px);
}

.bla-hero-card::after {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 180px;
  height: 180px;
  content: "";
  border-radius: 50%;
  background: rgba(36, 92, 255, 0.09);
}

.bla-card-label {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 24px;
  color: var(--bla-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.bla-hero-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #22252d;
  font-size: 20px;
  font-weight: 550;
  line-height: 1.55;
}

.bla-hero-card-footer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.bla-hero-card-footer span {
  padding: 8px 11px;
  border: 1px solid var(--bla-border);
  border-radius: 999px;
  color: #535761;
  background: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 650;
}

.bla-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 100px;
  border-top: 1px solid var(--bla-border);
  border-bottom: 1px solid var(--bla-border);
}

.bla-stat {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 34px;
  border-right: 1px solid var(--bla-border);
}

.bla-stat:first-child {
  padding-left: 0;
}

.bla-stat:last-child {
  border-right: 0;
}

.bla-stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--bla-black);
  font-size: 34px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: -0.04em;
}

.bla-stat span {
  color: var(--bla-gray);
  font-size: 14px;
  line-height: 1.4;
}


/* =========================================================
   SEZIONE PROGETTI
   ========================================================= */

.bla-projects-section {
  padding: 130px 0 150px;
  background: var(--bla-white);
}

.bla-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 60px;
}

.bla-section-heading h2,
.bla-tech-title h2 {
  margin: 0;
  color: var(--bla-black);
  font-size: clamp(40px, 4.6vw, 68px);
  font-weight: 740;
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.bla-section-heading > p {
  max-width: 520px;
  margin: 0 0 5px;
  color: var(--bla-gray);
  font-size: 17px;
  line-height: 1.75;
}


/* =========================================================
   CARD
   ========================================================= */

.bla-project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin: 32px 0;
}

.bla-project-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--bla-border);
  border-radius: var(--bla-radius);
  background: var(--bla-white);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.bla-project-card:hover {
  transform: translateY(-7px);
  border-color: #cdd2dc;
  box-shadow: var(--bla-shadow);
}

.bla-project-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  margin: 32px 0;
}

.bla-featured-reverse {
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
}

.bla-featured-reverse .bla-project-preview {
  order: 2;
}

.bla-featured-reverse .bla-project-info {
  order: 1;
}


/* =========================================================
   IMMAGINI
   ========================================================= */

.bla-project-preview {
  position: relative;
  min-height: 430px;
  display: block;
  overflow: hidden;
  background: #edf0f5;
}

.bla-project-featured .bla-project-preview {
  min-height: 590px;
}

.bla-project-image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.bla-project-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s ease;
}

.bla-project-card:hover .bla-project-image {
  transform: scale(1.035);
}

/* Posizionamento singole immagini */

.bla-image-bfsports {
  object-position: center 42%;
}

.bla-image-hiit {
  object-position: center 45%;
}

.bla-image-millennium {
  object-position: center 38%;
}

.bla-image-principe {
  object-position: center 48%;
}

/*
 Classic Division mantiene sempre le proporzioni.
 L'immagine viene ritagliata, non stirata.
*/

.bla-image-classic {
  object-fit: cover;
  object-position: center center;
}


/* =========================================================
   SBZ
   ========================================================= */

.bla-preview-sbz {
  padding: 65px;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(243, 118, 0, 0.18),
      transparent 30%
    ),
    linear-gradient(135deg, #ffffff 0%, #eceef2 100%);
}

.bla-preview-sbz .bla-project-image-wrap {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.bla-preview-sbz .bla-project-image {
  width: 86%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  object-position: center;
}

.bla-preview-sbz:hover .bla-project-image {
  transform: scale(1.025);
}


/* =========================================================
   LIBRI GRAFICHE AZ
   ========================================================= */

.bla-grafiche-grid {
  align-items: stretch;
}

.bla-preview-book {
  padding: 30px;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.9),
      transparent 35%
    ),
    #ececec;
}

.bla-preview-book .bla-project-image-wrap {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  min-height: 370px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bla-preview-book .bla-project-image {
  width: 100%;
  height: 100%;
  max-height: 390px;
  object-fit: contain;
  object-position: center;
}

.bla-preview-book:hover .bla-project-image {
  transform: scale(1.025);
}

.bla-grafiche-france {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
}

.bla-grafiche-france .bla-project-preview {
  min-height: 570px;
}

.bla-grafiche-france .bla-preview-book .bla-project-image {
  max-height: 510px;
}


/* =========================================================
   CONTENUTO CARD
   ========================================================= */

.bla-project-info {
  display: flex;
  flex-direction: column;
  padding: 34px 36px 38px;
}

.bla-project-featured .bla-project-info,
.bla-grafiche-france .bla-project-info {
  justify-content: center;
  padding: 55px;
}

.bla-project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
  color: var(--bla-blue);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.4;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.bla-project-meta span:last-child {
  color: #a1a5ae;
}

.bla-project-info h3 {
  margin: 0;
  color: var(--bla-black);
  font-size: clamp(27px, 2.7vw, 40px);
  font-weight: 740;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.bla-project-info > p {
  margin: 20px 0 0;
  color: var(--bla-gray);
  font-size: 15px;
  line-height: 1.72;
}

.bla-project-services {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 26px;
}

.bla-project-services span {
  padding: 7px 10px;
  border-radius: 7px;
  color: #595d67;
  background: var(--bla-gray-light);
  font-size: 11px;
  font-weight: 650;
}

.bla-project-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  margin-top: 32px;
  padding-bottom: 5px;
  border-bottom: 1px solid #b9c5e8;
  color: var(--bla-blue) !important;
  font-size: 14px;
  font-weight: 750;
  transition:
    gap 0.25s ease,
    border-color 0.25s ease;
}

.bla-project-link:hover {
  gap: 15px;
  border-color: var(--bla-blue);
}


/* =========================================================
   METODO
   ========================================================= */

.bla-method-section {
  position: relative;
  padding: 130px 0;
  color: var(--bla-white);
  background:
    radial-gradient(
      circle at 95% 5%,
      rgba(36, 92, 255, 0.25),
      transparent 25%
    ),
    var(--bla-black);
}

.bla-section-heading-light h2 {
  color: var(--bla-white);
}

.bla-section-heading-light > p {
  color: #a9abb2;
}

.bla-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.bla-method-item {
  min-height: 290px;
  padding: 38px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition: background-color 0.3s ease;
}

.bla-method-item:hover {
  background: rgba(36, 92, 255, 0.12);
}

.bla-method-item > span {
  display: block;
  margin-bottom: 70px;
  color: #788ac0;
  font-size: 12px;
  font-weight: 700;
}

.bla-method-item h3 {
  margin: 0;
  color: var(--bla-white);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.bla-method-item p {
  margin: 15px 0 0;
  color: #a7a9b0;
  font-size: 14px;
  line-height: 1.7;
}


/* =========================================================
   TECNOLOGIE
   ========================================================= */

.bla-tech-section {
  padding: 125px 0;
  background: #f7f8fb;
}

.bla-tech-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 100px;
}

.bla-tech-title h2 {
  font-size: clamp(38px, 4vw, 60px);
}

.bla-tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bla-tech-list span {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border: 1px solid var(--bla-border);
  border-radius: 12px;
  color: #393c44;
  background: var(--bla-white);
  box-shadow: 0 6px 18px rgba(25, 31, 48, 0.04);
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.bla-tech-list span:hover {
  transform: translateY(-3px);
  border-color: #b7c5ee;
  box-shadow: 0 12px 28px rgba(25, 31, 48, 0.08);
}


/* =========================================================
   CTA FINALE
   ========================================================= */

.bla-final-cta {
  padding: 80px 0 110px;
  background: #f7f8fb;
}

.bla-cta-box {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px;
  border-radius: 36px;
  color: var(--bla-white);
  background:
    radial-gradient(
      circle at 75% 30%,
      rgba(255, 255, 255, 0.14),
      transparent 22%
    ),
    linear-gradient(135deg, #123bc4 0%, #245cff 55%, #6c8dff 100%);
  box-shadow: 0 35px 90px rgba(36, 92, 255, 0.24);
}

.bla-cta-content {
  position: relative;
  z-index: 3;
  max-width: 850px;
}

.bla-cta-content h2 {
  margin: 0;
  color: var(--bla-white);
  font-size: clamp(45px, 5.5vw, 78px);
  font-weight: 750;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.bla-cta-content p {
  max-width: 650px;
  margin: 30px 0 36px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.7;
}

.bla-cta-decoration {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.bla-decoration-one {
  top: -180px;
  right: -100px;
  width: 600px;
  height: 600px;
}

.bla-decoration-two {
  right: 110px;
  bottom: -330px;
  width: 720px;
  height: 720px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

  .bla-hero {
    padding-top: 120px;
  }

  .bla-hero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .bla-hero-side {
    max-width: 680px;
  }

  .bla-section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .bla-section-heading > p {
    max-width: 680px;
  }

  .bla-project-featured,
  .bla-featured-reverse,
  .bla-grafiche-france {
    display: block;
  }

  .bla-featured-reverse .bla-project-preview,
  .bla-featured-reverse .bla-project-info {
    order: initial;
  }

  .bla-project-featured .bla-project-preview,
  .bla-grafiche-france .bla-project-preview {
    min-height: 500px;
  }

  .bla-project-featured .bla-project-info,
  .bla-grafiche-france .bla-project-info {
    padding: 40px;
  }

  .bla-method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bla-tech-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

  .bla-container {
    width: min(100% - 30px, 1320px);
  }

  .bla-hero {
    padding: 95px 0 50px;
  }

  .bla-eyebrow {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .bla-hero-content h1 {
    font-size: clamp(43px, 13vw, 62px);
    line-height: 0.99;
    letter-spacing: -0.055em;
  }

  .bla-hero-content > p {
    margin-top: 27px;
    font-size: 16px;
    line-height: 1.65;
  }

  .bla-hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .bla-btn {
    width: 100%;
  }

  .bla-hero-card {
    padding: 27px 23px;
    border-radius: 22px;
  }

  .bla-hero-card p {
    font-size: 17px;
  }

  .bla-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 60px;
  }

  .bla-stat {
    min-height: 105px;
    padding: 22px 15px;
    border-bottom: 1px solid var(--bla-border);
  }

  .bla-stat:first-child {
    padding-left: 15px;
  }

  .bla-stat:nth-child(2) {
    border-right: 0;
  }

  .bla-stat:nth-child(3),
  .bla-stat:nth-child(4) {
    border-bottom: 0;
  }

  .bla-stat strong {
    font-size: 27px;
  }

  .bla-stat span {
    font-size: 12px;
  }

  .bla-projects-section,
  .bla-method-section,
  .bla-tech-section {
    padding: 85px 0;
  }

  .bla-section-heading {
    margin-bottom: 38px;
  }

  .bla-section-heading h2,
  .bla-tech-title h2 {
    font-size: clamp(38px, 11vw, 51px);
  }

  .bla-section-heading > p {
    font-size: 15px;
  }

  .bla-project-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 24px 0;
  }

  .bla-project-card,
  .bla-project-featured,
  .bla-grafiche-france {
    margin: 24px 0;
    border-radius: 22px;
  }

  .bla-project-preview,
  .bla-project-featured .bla-project-preview,
  .bla-grafiche-france .bla-project-preview {
    min-height: 340px;
  }

  /*
   Su mobile Classic Division usa un'altezza superiore,
   così la fotografia verticale viene valorizzata.
  */

  .bla-featured-reverse .bla-project-preview {
    min-height: 460px;
  }

  .bla-image-classic {
    object-position: center center;
  }

  .bla-project-info,
  .bla-project-featured .bla-project-info,
  .bla-grafiche-france .bla-project-info {
    padding: 28px 23px 31px;
  }

  .bla-project-meta {
    margin-bottom: 20px;
    font-size: 9px;
  }

  .bla-project-info h3 {
    font-size: 29px;
  }

  .bla-project-info > p {
    font-size: 14px;
  }

  .bla-preview-sbz {
    padding: 40px 25px;
  }

  .bla-preview-sbz .bla-project-image-wrap {
    min-height: 240px;
  }

  .bla-preview-sbz .bla-project-image {
    width: 92%;
    max-height: 150px;
  }

  .bla-preview-book {
    padding: 22px;
  }

  .bla-preview-book .bla-project-image-wrap {
    min-height: 290px;
  }

  .bla-preview-book .bla-project-image,
  .bla-grafiche-france .bla-preview-book .bla-project-image {
    max-height: 310px;
  }

  .bla-method-grid {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .bla-method-item {
    min-height: 230px;
    padding: 29px 25px;
  }

  .bla-method-item > span {
    margin-bottom: 45px;
  }

  .bla-tech-list {
    gap: 8px;
  }

  .bla-tech-list span {
    min-height: 46px;
    padding: 10px 14px;
    font-size: 12px;
  }

  .bla-final-cta {
    padding: 30px 0 75px;
  }

  .bla-cta-box {
    min-height: 570px;
    align-items: flex-end;
    padding: 42px 25px;
    border-radius: 25px;
  }

  .bla-cta-content h2 {
    font-size: clamp(42px, 12vw, 59px);
  }

  .bla-cta-content p {
    font-size: 15px;
  }

}


/* =========================================================
   MOBILE PICCOLO
   ========================================================= */

@media (max-width: 420px) {

  .bla-container {
    width: min(100% - 22px, 1320px);
  }

  .bla-hero-content h1 {
    font-size: 41px;
  }

  .bla-stat {
    padding: 20px 11px;
  }

  .bla-project-preview,
  .bla-project-featured .bla-project-preview,
  .bla-grafiche-france .bla-project-preview {
    min-height: 300px;
  }

  .bla-featured-reverse .bla-project-preview {
    min-height: 410px;
  }

  .bla-project-info,
  .bla-project-featured .bla-project-info,
  .bla-grafiche-france .bla-project-info {
    padding: 25px 19px 28px;
  }

  .bla-preview-sbz {
    padding: 34px 20px;
  }

  .bla-preview-book {
    padding: 17px;
  }

}


/* =========================================================
   ACCESSIBILITÀ E RIDUZIONE ANIMAZIONI
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .bla-project-card,
  .bla-project-image,
  .bla-btn,
  .bla-btn span,
  .bla-project-link,
  .bla-tech-list span {
    transition: none;
  }

  .bla-project-card:hover,
  .bla-project-card:hover .bla-project-image,
  .bla-btn:hover,
  .bla-tech-list span:hover {
    transform: none;
  }

}/* End custom CSS */