@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
/* ==========================================================================
   Colors
   ========================================================================== */
/* Brand palette */
/* Brand tonal scale */
/* Neutral scale */
/* Semantic colors */
/* Feedback colors */
/* Transparent overlays */
/* Central color map used to generate utilities and CSS custom properties. */
/* CSS variables make the same palette available outside Sass partials. */
:root {
  --agena-color-blue: #005A93;
  --agena-color-blue-dark: #003F66;
  --agena-color-blue-light: #0078BF;
  --agena-color-yellow: #FDBA11;
  --agena-color-yellow-dark: #D99A00;
  --agena-color-yellow-light: #FFD56A;
  --agena-color-sky: #CBEBE7;
  --agena-color-sky-dark: #A6DAD5;
  --agena-color-sky-light: #E8F8F6;
  --agena-color-white: #FFFFFF;
  --agena-color-black: #000000;
  --agena-color-gray-dark: #333333;
  --agena-color-gray-50: #F7F7F7;
  --agena-color-gray-100: #F1F1F1;
  --agena-color-gray-200: #E5E5E5;
  --agena-color-gray-300: #D4D4D4;
  --agena-color-gray-400: #A3A3A3;
  --agena-color-gray-500: #737373;
  --agena-color-gray-600: #525252;
  --agena-color-gray-700: #404040;
  --agena-color-gray-800: #262626;
  --agena-color-gray-900: #171717;
  --agena-color-primary: #005A93;
  --agena-color-secondary: #CBEBE7;
  --agena-color-accent: #FDBA11;
  --agena-color-text: #333333;
  --agena-color-text-muted: #525252;
  --agena-color-border: #E5E5E5;
  --agena-color-surface: #FFFFFF;
  --agena-color-surface-muted: #F7F7F7;
  --agena-color-success: #198754;
  --agena-color-info: #0DCAF0;
  --agena-color-warning: #FFC107;
  --agena-color-danger: #DC3545;
  --agena-color-overlay-dark: rgba(0, 0, 0, 0.45);
  --agena-color-overlay-light: rgba(255, 255, 255, 0.72);
  --agena-color-shadow-blue: rgba(0, 90, 147, 0.16);
  --agena-color-shadow-dark: rgba(0, 0, 0, 0.18);
}

/* Background utility classes. Existing .bg-* names are preserved. */
.bg-blue,
.agena-bg-blue {
  background-color: #005A93;
}

.bg-blue-dark,
.agena-bg-blue-dark {
  background-color: #003F66;
}

.bg-blue-light,
.agena-bg-blue-light {
  background-color: #0078BF;
}

.bg-yellow,
.agena-bg-yellow {
  background-color: #FDBA11;
}

.bg-yellow-dark,
.agena-bg-yellow-dark {
  background-color: #D99A00;
}

.bg-yellow-light,
.agena-bg-yellow-light {
  background-color: #FFD56A;
}

.bg-sky,
.agena-bg-sky {
  background-color: #CBEBE7;
}

.bg-sky-dark,
.agena-bg-sky-dark {
  background-color: #A6DAD5;
}

.bg-sky-light,
.agena-bg-sky-light {
  background-color: #E8F8F6;
}

.bg-white,
.agena-bg-white {
  background-color: #FFFFFF;
}

.bg-black,
.agena-bg-black {
  background-color: #000000;
}

.bg-gray-dark,
.agena-bg-gray-dark {
  background-color: #333333;
}

.bg-gray-50,
.agena-bg-gray-50 {
  background-color: #F7F7F7;
}

.bg-gray-100,
.agena-bg-gray-100 {
  background-color: #F1F1F1;
}

.bg-gray-200,
.agena-bg-gray-200 {
  background-color: #E5E5E5;
}

.bg-gray-300,
.agena-bg-gray-300 {
  background-color: #D4D4D4;
}

.bg-gray-400,
.agena-bg-gray-400 {
  background-color: #A3A3A3;
}

.bg-gray-500,
.agena-bg-gray-500 {
  background-color: #737373;
}

.bg-gray-600,
.agena-bg-gray-600 {
  background-color: #525252;
}

.bg-gray-700,
.agena-bg-gray-700 {
  background-color: #404040;
}

.bg-gray-800,
.agena-bg-gray-800 {
  background-color: #262626;
}

.bg-gray-900,
.agena-bg-gray-900 {
  background-color: #171717;
}

.bg-primary,
.agena-bg-primary {
  background-color: #005A93;
}

.bg-secondary,
.agena-bg-secondary {
  background-color: #CBEBE7;
}

.bg-accent,
.agena-bg-accent {
  background-color: #FDBA11;
}

.bg-text,
.agena-bg-text {
  background-color: #333333;
}

.bg-text-muted,
.agena-bg-text-muted {
  background-color: #525252;
}

.bg-border,
.agena-bg-border {
  background-color: #E5E5E5;
}

.bg-surface,
.agena-bg-surface {
  background-color: #FFFFFF;
}

.bg-surface-muted,
.agena-bg-surface-muted {
  background-color: #F7F7F7;
}

.bg-success,
.agena-bg-success {
  background-color: #198754;
}

.bg-info,
.agena-bg-info {
  background-color: #0DCAF0;
}

.bg-warning,
.agena-bg-warning {
  background-color: #FFC107;
}

.bg-danger,
.agena-bg-danger {
  background-color: #DC3545;
}

/* Text color utility classes. Existing .text-* naming is paired with agena-prefixed aliases. */
.text-blue,
.agena-text-blue {
  color: #005A93;
}

.text-blue-dark,
.agena-text-blue-dark {
  color: #003F66;
}

.text-blue-light,
.agena-text-blue-light {
  color: #0078BF;
}

.text-yellow,
.agena-text-yellow {
  color: #FDBA11;
}

.text-yellow-dark,
.agena-text-yellow-dark {
  color: #D99A00;
}

.text-yellow-light,
.agena-text-yellow-light {
  color: #FFD56A;
}

.text-sky,
.agena-text-sky {
  color: #CBEBE7;
}

.text-sky-dark,
.agena-text-sky-dark {
  color: #A6DAD5;
}

.text-sky-light,
.agena-text-sky-light {
  color: #E8F8F6;
}

.text-white,
.agena-text-white {
  color: #FFFFFF;
}

.text-black,
.agena-text-black {
  color: #000000;
}

.text-gray-dark,
.agena-text-gray-dark {
  color: #333333;
}

.text-gray-50,
.agena-text-gray-50 {
  color: #F7F7F7;
}

.text-gray-100,
.agena-text-gray-100 {
  color: #F1F1F1;
}

.text-gray-200,
.agena-text-gray-200 {
  color: #E5E5E5;
}

.text-gray-300,
.agena-text-gray-300 {
  color: #D4D4D4;
}

.text-gray-400,
.agena-text-gray-400 {
  color: #A3A3A3;
}

.text-gray-500,
.agena-text-gray-500 {
  color: #737373;
}

.text-gray-600,
.agena-text-gray-600 {
  color: #525252;
}

.text-gray-700,
.agena-text-gray-700 {
  color: #404040;
}

.text-gray-800,
.agena-text-gray-800 {
  color: #262626;
}

.text-gray-900,
.agena-text-gray-900 {
  color: #171717;
}

.text-primary,
.agena-text-primary {
  color: #005A93;
}

.text-secondary,
.agena-text-secondary {
  color: #CBEBE7;
}

.text-accent,
.agena-text-accent {
  color: #FDBA11;
}

.text-text,
.agena-text-text {
  color: #333333;
}

.text-text-muted,
.agena-text-text-muted {
  color: #525252;
}

.text-border,
.agena-text-border {
  color: #E5E5E5;
}

.text-surface,
.agena-text-surface {
  color: #FFFFFF;
}

.text-surface-muted,
.agena-text-surface-muted {
  color: #F7F7F7;
}

.text-success,
.agena-text-success {
  color: #198754;
}

.text-info,
.agena-text-info {
  color: #0DCAF0;
}

.text-warning,
.agena-text-warning {
  color: #FFC107;
}

.text-danger,
.agena-text-danger {
  color: #DC3545;
}

/* Border color utility classes. */
.border-blue,
.agena-border-blue {
  border-color: #005A93;
}

.border-blue-dark,
.agena-border-blue-dark {
  border-color: #003F66;
}

.border-blue-light,
.agena-border-blue-light {
  border-color: #0078BF;
}

.border-yellow,
.agena-border-yellow {
  border-color: #FDBA11;
}

.border-yellow-dark,
.agena-border-yellow-dark {
  border-color: #D99A00;
}

.border-yellow-light,
.agena-border-yellow-light {
  border-color: #FFD56A;
}

.border-sky,
.agena-border-sky {
  border-color: #CBEBE7;
}

.border-sky-dark,
.agena-border-sky-dark {
  border-color: #A6DAD5;
}

.border-sky-light,
.agena-border-sky-light {
  border-color: #E8F8F6;
}

.border-white,
.agena-border-white {
  border-color: #FFFFFF;
}

.border-black,
.agena-border-black {
  border-color: #000000;
}

.border-gray-dark,
.agena-border-gray-dark {
  border-color: #333333;
}

.border-gray-50,
.agena-border-gray-50 {
  border-color: #F7F7F7;
}

.border-gray-100,
.agena-border-gray-100 {
  border-color: #F1F1F1;
}

.border-gray-200,
.agena-border-gray-200 {
  border-color: #E5E5E5;
}

.border-gray-300,
.agena-border-gray-300 {
  border-color: #D4D4D4;
}

.border-gray-400,
.agena-border-gray-400 {
  border-color: #A3A3A3;
}

.border-gray-500,
.agena-border-gray-500 {
  border-color: #737373;
}

.border-gray-600,
.agena-border-gray-600 {
  border-color: #525252;
}

.border-gray-700,
.agena-border-gray-700 {
  border-color: #404040;
}

.border-gray-800,
.agena-border-gray-800 {
  border-color: #262626;
}

.border-gray-900,
.agena-border-gray-900 {
  border-color: #171717;
}

.border-primary,
.agena-border-primary {
  border-color: #005A93;
}

.border-secondary,
.agena-border-secondary {
  border-color: #CBEBE7;
}

.border-accent,
.agena-border-accent {
  border-color: #FDBA11;
}

.border-text,
.agena-border-text {
  border-color: #333333;
}

.border-text-muted,
.agena-border-text-muted {
  border-color: #525252;
}

.border-border,
.agena-border-border {
  border-color: #E5E5E5;
}

.border-surface,
.agena-border-surface {
  border-color: #FFFFFF;
}

.border-surface-muted,
.agena-border-surface-muted {
  border-color: #F7F7F7;
}

.border-success,
.agena-border-success {
  border-color: #198754;
}

.border-info,
.agena-border-info {
  border-color: #0DCAF0;
}

.border-warning,
.agena-border-warning {
  border-color: #FFC107;
}

.border-danger,
.agena-border-danger {
  border-color: #DC3545;
}

/* Fill/stroke utilities are useful for inline SVG icons. */
.agena-fill-blue {
  fill: #005A93;
}

.agena-stroke-blue {
  stroke: #005A93;
}

.agena-fill-blue-dark {
  fill: #003F66;
}

.agena-stroke-blue-dark {
  stroke: #003F66;
}

.agena-fill-blue-light {
  fill: #0078BF;
}

.agena-stroke-blue-light {
  stroke: #0078BF;
}

.agena-fill-yellow {
  fill: #FDBA11;
}

.agena-stroke-yellow {
  stroke: #FDBA11;
}

.agena-fill-yellow-dark {
  fill: #D99A00;
}

.agena-stroke-yellow-dark {
  stroke: #D99A00;
}

.agena-fill-yellow-light {
  fill: #FFD56A;
}

.agena-stroke-yellow-light {
  stroke: #FFD56A;
}

.agena-fill-sky {
  fill: #CBEBE7;
}

.agena-stroke-sky {
  stroke: #CBEBE7;
}

.agena-fill-sky-dark {
  fill: #A6DAD5;
}

.agena-stroke-sky-dark {
  stroke: #A6DAD5;
}

.agena-fill-sky-light {
  fill: #E8F8F6;
}

.agena-stroke-sky-light {
  stroke: #E8F8F6;
}

.agena-fill-white {
  fill: #FFFFFF;
}

.agena-stroke-white {
  stroke: #FFFFFF;
}

.agena-fill-black {
  fill: #000000;
}

.agena-stroke-black {
  stroke: #000000;
}

.agena-fill-gray-dark {
  fill: #333333;
}

.agena-stroke-gray-dark {
  stroke: #333333;
}

.agena-fill-gray-50 {
  fill: #F7F7F7;
}

.agena-stroke-gray-50 {
  stroke: #F7F7F7;
}

.agena-fill-gray-100 {
  fill: #F1F1F1;
}

.agena-stroke-gray-100 {
  stroke: #F1F1F1;
}

.agena-fill-gray-200 {
  fill: #E5E5E5;
}

.agena-stroke-gray-200 {
  stroke: #E5E5E5;
}

.agena-fill-gray-300 {
  fill: #D4D4D4;
}

.agena-stroke-gray-300 {
  stroke: #D4D4D4;
}

.agena-fill-gray-400 {
  fill: #A3A3A3;
}

.agena-stroke-gray-400 {
  stroke: #A3A3A3;
}

.agena-fill-gray-500 {
  fill: #737373;
}

.agena-stroke-gray-500 {
  stroke: #737373;
}

.agena-fill-gray-600 {
  fill: #525252;
}

.agena-stroke-gray-600 {
  stroke: #525252;
}

.agena-fill-gray-700 {
  fill: #404040;
}

.agena-stroke-gray-700 {
  stroke: #404040;
}

.agena-fill-gray-800 {
  fill: #262626;
}

.agena-stroke-gray-800 {
  stroke: #262626;
}

.agena-fill-gray-900 {
  fill: #171717;
}

.agena-stroke-gray-900 {
  stroke: #171717;
}

.agena-fill-primary {
  fill: #005A93;
}

.agena-stroke-primary {
  stroke: #005A93;
}

.agena-fill-secondary {
  fill: #CBEBE7;
}

.agena-stroke-secondary {
  stroke: #CBEBE7;
}

.agena-fill-accent {
  fill: #FDBA11;
}

.agena-stroke-accent {
  stroke: #FDBA11;
}

.agena-fill-text {
  fill: #333333;
}

.agena-stroke-text {
  stroke: #333333;
}

.agena-fill-text-muted {
  fill: #525252;
}

.agena-stroke-text-muted {
  stroke: #525252;
}

.agena-fill-border {
  fill: #E5E5E5;
}

.agena-stroke-border {
  stroke: #E5E5E5;
}

.agena-fill-surface {
  fill: #FFFFFF;
}

.agena-stroke-surface {
  stroke: #FFFFFF;
}

.agena-fill-surface-muted {
  fill: #F7F7F7;
}

.agena-stroke-surface-muted {
  stroke: #F7F7F7;
}

.agena-fill-success {
  fill: #198754;
}

.agena-stroke-success {
  stroke: #198754;
}

.agena-fill-info {
  fill: #0DCAF0;
}

.agena-stroke-info {
  stroke: #0DCAF0;
}

.agena-fill-warning {
  fill: #FFC107;
}

.agena-stroke-warning {
  stroke: #FFC107;
}

.agena-fill-danger {
  fill: #DC3545;
}

.agena-stroke-danger {
  stroke: #DC3545;
}

.agena-fs-1 {
  font-size: 2.5rem;
}

.agena-fs-2 {
  font-size: 2rem;
}

.agena-fs-3 {
  font-size: 1.75rem;
}

.agena-fs-4 {
  font-size: 1.5rem;
}

.agena-fs-5 {
  font-size: 1.25rem;
}

.agena-fs-6 {
  font-size: 1rem;
}

.agena-fs-7 {
  font-size: 0.875rem;
}

.agena-fs-8 {
  font-size: 0.75rem;
}

.agena-fs-9 {
  font-size: 0.625rem;
}

.agena-text-xs {
  font-size: 0.75rem;
}

.agena-text-sm {
  font-size: 0.875rem;
}

.agena-text-base {
  font-size: 1rem;
}

.agena-text-lg {
  font-size: 1.125rem;
}

.agena-text-xl {
  font-size: 1.25rem;
}

.agena-text-2xl {
  font-size: 1.5rem;
}

.agena-text-3xl {
  font-size: 1.875rem;
}

.agena-text-4xl {
  font-size: 2.25rem;
}

.agena-text-5xl {
  font-size: 3rem;
}

/* Open Sans */
.fw-normal-400 {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.fw-italic-400 {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: italic;
}

.fw-light-300 {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.fw-bold-700 {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.fw-bold-800 {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}


html, body {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

a:hover,
a:focus {
  color: #FDBA11;
}

a:hover i,
a:focus i,
a:hover .bi,
a:focus .bi {
  color: #FDBA11;
}

a:hover svg,
a:focus svg {
  color: #FDBA11;
  fill: currentColor;
  stroke: currentColor;
}

/**
 * Size utilities.
 *
 * Utility classes with the "agena" prefix for fixed square dimensions.
 * Useful for icons, logos, thumbnails, badges, and small UI affordances.
 */
.agena-size-4 {
  width: 4px;
  height: 4px;
}

.agena-icon-4 {
  width: 4px;
  height: 4px;
  font-size: 4px;
  line-height: 1;
}

.agena-size-8 {
  width: 8px;
  height: 8px;
}

.agena-icon-8 {
  width: 8px;
  height: 8px;
  font-size: 8px;
  line-height: 1;
}

.agena-size-12 {
  width: 12px;
  height: 12px;
}

.agena-icon-12 {
  width: 12px;
  height: 12px;
  font-size: 12px;
  line-height: 1;
}

.agena-size-16 {
  width: 16px;
  height: 16px;
}

.agena-icon-16 {
  width: 16px;
  height: 16px;
  font-size: 16px;
  line-height: 1;
}

.agena-size-20 {
  width: 20px;
  height: 20px;
}

.agena-icon-20 {
  width: 20px;
  height: 20px;
  font-size: 20px;
  line-height: 1;
}

.agena-size-24 {
  width: 24px;
  height: 24px;
}

.agena-icon-24 {
  width: 24px;
  height: 24px;
  font-size: 24px;
  line-height: 1;
}

.agena-size-32 {
  width: 32px;
  height: 32px;
}

.agena-icon-32 {
  width: 32px;
  height: 32px;
  font-size: 32px;
  line-height: 1;
}

.agena-size-40 {
  width: 40px;
  height: 40px;
}

.agena-icon-40 {
  width: 40px;
  height: 40px;
  font-size: 40px;
  line-height: 1;
}

.agena-size-48 {
  width: 48px;
  height: 48px;
}

.agena-icon-48 {
  width: 48px;
  height: 48px;
  font-size: 48px;
  line-height: 1;
}

.agena-size-56 {
  width: 56px;
  height: 56px;
}

.agena-icon-56 {
  width: 56px;
  height: 56px;
  font-size: 56px;
  line-height: 1;
}

.agena-size-64 {
  width: 64px;
  height: 64px;
}

.agena-icon-64 {
  width: 64px;
  height: 64px;
  font-size: 64px;
  line-height: 1;
}

.agena-size-80 {
  width: 80px;
  height: 80px;
}

.agena-icon-80 {
  width: 80px;
  height: 80px;
  font-size: 80px;
  line-height: 1;
}

.agena-size-96 {
  width: 96px;
  height: 96px;
}

.agena-icon-96 {
  width: 96px;
  height: 96px;
  font-size: 96px;
  line-height: 1;
}

.agena-size-120 {
  width: 120px;
  height: 120px;
}

.agena-icon-120 {
  width: 120px;
  height: 120px;
  font-size: 120px;
  line-height: 1;
}

.agena-size-160 {
  width: 160px;
  height: 160px;
}

.agena-icon-160 {
  width: 160px;
  height: 160px;
  font-size: 160px;
  line-height: 1;
}

.agena-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.agena-fit-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.agena-fit-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Create button styles - blue, yellow, sky, gray-dark */
.btn,
.btn-primary,
.btn-blue,
.btn-yellow,
.btn-sky,
.btn-gray-dark {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.btn-primary,
.btn-blue {
  background-color: #005A93;
  color: #fff;
  border-color: #005A93;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-blue:hover,
.btn-blue:focus {
  background-color: rgb(0, 65.0204081633, 106.2);
  border-color: rgb(0, 65.0204081633, 106.2);
}

.btn-yellow {
  background-color: #FDBA11;
  color: #000;
  border-color: #FDBA11;
}

.btn-yellow:hover,
.btn-yellow:focus {
  background-color: rgb(227.29, 163.305, 1.91);
  border-color: rgb(227.29, 163.305, 1.91);
}

.btn-sky {
  background-color: #CBEBE7;
  color: #000;
  border-color: #CBEBE7;
}

.btn-sky:hover,
.btn-sky:focus {
  background-color: rgb(173.5333333333, 223.6666666667, 217.4);
  border-color: rgb(173.5333333333, 223.6666666667, 217.4);
}

.btn-gray-dark {
  background-color: #333333;
  color: #fff;
  border-color: #333333;
}

.btn-gray-dark:hover,
.btn-gray-dark:focus {
  background-color: rgb(30.6, 30.6, 30.6);
  border-color: rgb(30.6, 30.6, 30.6);
}

.servizi-grid {
  align-items: stretch;
  justify-content: center;
}

.service-card,
.convention-card,
.number-card,
.award-card,
.service-carousel-card,
.team-card {
  min-width: 0;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 13.25rem;
  padding: 1.15rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 1.25rem;
  background: #F7F7F7;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

.service-card__image-wrapper {
  width: 1.75rem;
  height: 1.75rem;
  margin-bottom: 0.5rem;
}

.service-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card__body,
.convention-card,
.number-card,
.award-card__body {
  min-width: 0;
}

.service-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.service-card__title,
.service-card__body p,
.convention-card__title,
.number-card__value,
.number-card__label,
.award-card__title,
.award-card__body p {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.service-card__title {
  margin: 0;
  color: #005A93;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.service-card__body p {
  margin: 0.45rem 0 0;
  color: #262626;
  line-height: 1.45;
}

.service-card a,
.convention-card a,
.award-card a,
.number-card a {
  overflow-wrap: anywhere;
}

.service-card__button {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  padding-top: 1.5rem;
  gap: 0.25rem;
  color: #005A93;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.service-card__button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FDBA11;
  font-size: 0.65rem;
  line-height: 1;
}

.image-text {
  margin: 4rem 0;
}
.image-text__content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.image-text__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 4rem);
  color: #00639b;
}
.image-text__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 2rem;
  overflow: hidden;
  background: #cfeeea;
  position: relative;
}
.image-text__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.image-text__text {
  margin-bottom: 2rem;
}
.image-text__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: #00639b;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.image-text__media {
  min-height: 360px;
}
.image-text__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-text--image-left .image-text__media {
  order: -1;
}

@media (max-width: 768px) {
  .image-text__inner {
    grid-template-columns: 1fr;
  }
  .image-text__inner::before {
    display: none;
  }
  .image-text__content {
    padding: 2rem;
  }
  .image-text__media {
    min-height: 260px;
  }
  .image-text--image-left .image-text__media {
    order: 0;
  }
}
/* Text pill widget */
.text-pill {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 1.6rem;
  background: #00639b;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.text-pill__kicker {
  display: block;
  font-size: 0.8rem;
  opacity: 0.9;
  text-transform: uppercase;
  font-weight: 700;
}

.text-pill__title {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
}

/* Section heading widget */
.section-heading {
  padding: 2rem 0 1.5rem;
}

.section-heading__title {
  margin: 0;
  color: #005A93;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
}

.section-heading__subtitle {
  margin: 0.5rem 0 0;
  color: #333;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.35;
}

/* Numbers widget */
.agena-numbers {
  padding: 4rem 0;
}

.agena-numbers__header {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.agena-numbers__title {
  margin: 0;
  color: #005A93;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
}

.agena-numbers__subtitle {
  margin: 0.5rem 0 0;
  color: #333;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
}

.agena-numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.agena-numbers__item {
  min-height: 150px;
  padding: 1.75rem 1rem 1.25rem;
  border-radius: 1.25rem;
  background: #005A93;
  color: #fff;
  text-align: center;
}

.agena-numbers__number {
  display: block;
  color: #FDBA11;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
}

.text-animation-right,
.text-animation-fadeIn,
.text-animation-fadeInUp {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.text-animation-right {
  transform: translateX(2rem);
}

.text-animation-fadeInUp {
  transform: translateY(1.5rem);
}

.slideInRight,
.fadeIn,
.fadeInUp {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 992px) {
  .agena-numbers__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 576px) {
  .agena-numbers {
    padding: 3rem 0;
  }
  .agena-numbers__grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
}
.awards-widget {
  padding: 4rem 0;
}
.awards-widget__row {
  justify-content: center;
}
.awards-widget__image {
  height: 100%;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border-radius: 2rem;
  background: #cfeeea;
}
.awards-widget__img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}
.awards-widget__content {
  position: relative;
  z-index: 1;
  margin-left: -5rem;
  padding: 2rem;
  border-radius: 1rem;
  background: #cbeee8;
  box-shadow: 0 1rem 2rem rgba(0, 90, 147, 0.08);
}
.awards-widget__title {
  margin: 0;
  color: #005A93;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.15;
  overflow-wrap: anywhere;
}
.awards-widget__text {
  margin-top: 0.35rem;
  color: #333;
  font-size: 1rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.awards-widget__text p {
  margin: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.awards-widget__carousel {
  margin-top: 1.5rem;
}
.awards-widget__button {
  margin-top: 2rem;
  padding-right: 1.75rem;
  padding-left: 1.75rem;
  border-radius: 999px;
  font-weight: 800;
}

.awards-carousel {
  width: 100%;
  overflow: hidden;
}
.awards-carousel__wrapper {
  display: flex;
}
.awards-carousel__slide {
  flex-shrink: 0;
  height: auto;
}

.award-card {
  height: 100%;
  min-height: 120px;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: #005A93;
  color: #fff;
}
.award-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  margin-bottom: 0.5rem;
}
.award-card__image img {
  max-width: 72px;
  height: auto;
}
.award-card__body {
  font-size: 0.65rem;
  line-height: 1.2;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.award-card__body p {
  margin: 0.15rem 0 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.award-card__title {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

@media (max-width: 991.98px) {
  .awards-widget__image, .awards-widget__img {
    min-height: 360px;
  }
  .awards-widget__content {
    margin-left: -2rem;
    padding: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .awards-widget {
    padding: 3rem 0;
  }
  .awards-widget__image {
    min-height: 300px;
    border-radius: 1.5rem 1.5rem 0 0;
  }
  .awards-widget__img {
    min-height: 300px;
  }
  .awards-widget__content {
    margin-left: 0;
    border-radius: 0 0 1.5rem 1.5rem;
  }
}
.services-carousel {
  overflow: visible;
}
.services-carousel__wrapper {
  display: flex;
}
.services-carousel__slide {
  flex-shrink: 0;
  height: auto;
}

.service-carousel-card {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  height: 100%;
  min-width: 0;
  padding: 1.25rem;
  border-radius: 1.5rem;
  background: #f3f3f3;
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.16);
}
.service-carousel-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.65rem;
}
.service-carousel-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service-carousel-card__title {
  margin: 0;
  color: #005A93;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.service-carousel-card__text {
  margin-top: 0.55rem;
  color: #111;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.service-carousel-card__text p {
  margin: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.service-carousel-card__button {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  width: fit-content;
  margin-top: auto;
  padding-top: 1.5rem;
  color: #005A93;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.service-carousel-card__button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.85rem;
  height: 0.85rem;
  border: 1px solid #FDBA11;
  border-radius: 0.15rem;
  color: #FDBA11;
  font-size: 0.6rem;
  line-height: 1;
}

@media (max-width: 575.98px) {
  .service-carousel-card {
    min-height: 230px;
  }
}
.team-carousel-section {
  padding: 2rem 0;
  overflow: hidden;
}

.team-carousel {
  overflow: visible;
}
.team-carousel__wrapper {
  display: flex;
}
.team-carousel__slide {
  flex-shrink: 0;
  height: auto;
}

.team-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 250px;
  padding: 1.25rem;
  border-radius: 1rem;
  background: #f4f4f4;
  box-shadow: 0 0.35rem 0.85rem rgba(0, 0, 0, 0.24);
}
.team-card__media {
  width: 8.5rem;
  height: 8.5rem;
  margin: 0 auto 1rem;
  overflow: hidden;
  border-radius: 50%;
  background: #d9d9d9;
}
.team-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}
.team-card__title {
  margin: 0;
  color: #005A93;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.1;
  overflow-wrap: anywhere;
}
.team-card__role {
  margin: 0.15rem 0 0;
  color: #404040;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.25;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.team-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  margin-top: auto;
  padding-top: 1.35rem;
  color: #005A93;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.team-card__link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 0.15rem;
  color: #FDBA11;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
}

@media (max-width: 575.98px) {
  .team-card {
    min-height: 230px;
  }
  .team-card__media {
    width: 7.5rem;
    height: 7.5rem;
  }
}
.conventions-box {
  padding: 3rem 0;
}
.conventions-box__inner {
  display: flex;
  align-items: center;
  min-height: 380px;
  padding: 1.5rem 2rem;
  overflow: hidden;
  border-radius: 2rem;
  background-color: #cfeeea;
  background-position: center;
  background-size: cover;
}
.conventions-box__content {
  width: min(100%, 430px);
  padding: 2rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(2px);
}
.conventions-box__title {
  margin: 0;
  color: #005A93;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
}
.conventions-box__text {
  margin-top: 0.75rem;
  color: #111;
  font-size: 1.05rem;
  line-height: 1.4;
}
.conventions-box__text p {
  margin: 0;
}
.conventions-box__button {
  margin-top: 3rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  border-radius: 999px;
  font-weight: 800;
}

@media (max-width: 767.98px) {
  .conventions-box {
    padding: 2.5rem 0;
  }
  .conventions-box__inner {
    align-items: flex-end;
    min-height: 420px;
    padding: 1rem;
    border-radius: 1.5rem;
  }
  .conventions-box__content {
    padding: 1.5rem;
    border-radius: 1.25rem;
  }
  .conventions-box__button {
    margin-top: 2rem;
  }
}
.content-box {
  margin: 2rem 0;
  color: #333333;
}
.content-box.col {
  margin-top: 0;
  margin-bottom: 0;
}
.content-box__inner {
  display: grid;
  gap: 0;
  align-items: center;
}
.content-box__content {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  background: #fff;
}
.content-box__media {
  margin: 0;
  min-height: clamp(320px, 42vw, 520px);
  overflow: hidden;
  border-radius: 1.5rem;
}
.content-box__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-box__title {
  margin: 0 0 1rem;
  color: inherit;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  overflow-wrap: anywhere;
}
.content-box__text {
  margin-bottom: 1.25rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.content-box__text :last-child {
  margin-bottom: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.content-box__accordion {
  margin-top: 1.5rem;
}
.content-box__accordion-content {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.content-box__accordion-content :last-child {
  margin-bottom: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.content-box__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.content-box--image-top .content-box__inner {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.content-box--image-left .content-box__inner, .content-box--image-right .content-box__inner {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.content-box--image-left .content-box__media {
  grid-column: 1/span 8;
  grid-row: 1;
}
.content-box--image-left .content-box__content {
  grid-column: 6/span 7;
  grid-row: 1;
}
.content-box--image-right .content-box__content {
  grid-column: 1/span 7;
  grid-row: 1;
}
.content-box--image-right .content-box__media {
  grid-column: 5/span 8;
  grid-row: 1;
}
.content-box--no-image .content-box__inner {
  grid-template-columns: 1fr;
}
.content-box--light .content-box__content {
  background: #fff;
}
.content-box--primary {
  color: #fff;
}
.content-box--primary .content-box__content {
  border-color: transparent;
  background: #005A93;
}
.content-box--primary .accordion-button,
.content-box--primary .accordion-body {
  color: #333333;
}
.content-box--secondary .content-box__content {
  border-color: transparent;
  background: #CBEBE7;
}

@media (max-width: 767.98px) {
  .content-box--image-left .content-box__inner, .content-box--image-right .content-box__inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .content-box--image-left .content-box__media,
  .content-box--image-left .content-box__content, .content-box--image-right .content-box__media,
  .content-box--image-right .content-box__content {
    grid-column: auto;
    grid-row: auto;
  }
  .content-box__media {
    min-height: 220px;
  }
}
.site-header {
  padding-top: 0.5rem;
}
.site-header__top {
  display: flex;
  justify-content: flex-end;
  padding: 1rem 5.5rem;
  background: #005A93;
}
.site-header__cta {
  padding: 0.35rem 1.4rem;
  border-radius: 999px;
  color: #111;
  font-size: 0.95rem;
  font-weight: 700;
}
.site-header__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.25rem 5.5rem;
  border-radius: 0 0 0.75rem 0.75rem;
  background: #f0f0f0;
}
.site-header__brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.site-header__brand img {
  width: auto;
  max-width: 190px;
  max-height: 72px;
}
.site-header__site-title {
  color: #005A93;
  font-size: 2rem;
  font-weight: 800;
  text-decoration: none;
}
.site-header__nav {
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}
.site-header__toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.7rem;
  border: 0;
  border-radius: 999px;
  background: #005A93;
}
.site-header__toggle span {
  display: block;
  height: 2px;
  margin: 0.25rem 0;
  background: #fff;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-menu a {
  color: #005A93;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.nav-menu a:hover,
.nav-menu .current-menu-item > a {
  color: #FDBA11;
}

@media (max-width: 1199.98px) {
  .site-header__top, .site-header__main {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .nav-menu {
    gap: 1rem;
  }
}
@media (max-width: 991.98px) {
  .site-header__main {
    position: relative;
    align-items: center;
  }
  .site-header__toggle {
    display: inline-block;
  }
  .site-header__nav {
    position: absolute;
    top: calc(100% - 0.5rem);
    right: 1rem;
    left: 1rem;
    z-index: 10;
    display: none;
    padding: 1.25rem;
    border-radius: 0.75rem;
    background: #f0f0f0;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.12);
  }
  .site-header__nav.is-open {
    display: block;
  }
  .nav-menu {
    display: grid;
    gap: 0.85rem;
  }
}
@media (max-width: 575.98px) {
  .site-header__top {
    padding: 0.75rem 1rem;
  }
  .site-header__main {
    padding: 1.4rem 1rem;
  }
  .site-header__brand img {
    max-width: 150px;
  }
}
.footer-cta {
  position: relative;
  z-index: 2;
  margin-bottom: -6rem;
  padding-top: 3rem;
}
.footer-cta__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  overflow: hidden;
  border-radius: 2rem;
  background-color: #333;
  background-position: center;
  background-size: cover;
  color: #fff;
  text-align: center;
}
.footer-cta__content {
  padding: 2rem;
}
.footer-cta__title {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
}
.footer-cta__subtitle {
  margin: 0.5rem 0 0;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 800;
  line-height: 1.2;
}
.footer-cta__button {
  margin-top: 1.25rem;
  border-radius: 999px;
  color: #111;
  font-weight: 800;
}

.site-footer {
  padding: 9rem 0 4rem;
  background: #cbeee8;
}
.site-footer__inner {
  max-width: 1180px;
}
.site-footer__brand {
  display: inline-flex;
  align-items: center;
  max-width: 170px;
  color: #005A93;
  font-size: 1.75rem;
  font-weight: 800;
  text-decoration: none;
}
.site-footer__brand a {
  color: inherit;
  text-decoration: none;
}
.site-footer__brand img {
  max-width: 100%;
  height: auto;
}
.site-footer__text {
  margin: 0.5rem 0 0;
  color: #111;
  font-size: 0.85rem;
  line-height: 1.5;
}
.site-footer__menu {
  display: grid;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer__menu a {
  color: #005A93;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}
.site-footer__legal {
  display: grid;
  gap: 0.45rem;
}
.site-footer__legal a {
  color: #005A93;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}
.site-footer__label {
  margin: 0 0 0.5rem;
  color: #111;
  font-size: 0.85rem;
  font-weight: 700;
}
.site-footer__social {
  display: flex;
  gap: 0.35rem;
}
.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  color: #005A93;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}
.site-footer__social a i {
  display: block;
  font-size: 1.25rem;
  line-height: 1;
}
.site-footer__button {
  margin-top: 2.5rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}
.site-footer__widgets {
  margin-top: 2rem;
}

@media (max-width: 767.98px) {
  .footer-cta {
    margin-bottom: -4rem;
  }
  .footer-cta__inner {
    min-height: 280px;
    border-radius: 1.5rem;
  }
  .site-footer {
    padding-top: 7rem;
  }
}
.hero-area {
  padding: 1rem 0 2.5rem;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 480px;
  margin: 0 auto;
  overflow: visible;
  background-color: #333;
  background-position: center;
  background-size: cover;
  border-radius: 2rem;
  color: #fff;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero__kicker {
  margin: 0 0 0.75rem;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
}

.hero__text {
  max-width: 620px;
  margin-top: 1rem;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.35;
}

.hero__text p {
  margin: 0;
}

.hero__button {
  margin-top: 1.75rem;
  border-radius: 999px;
  background: #fdba11;
  border-color: #fdba11;
  color: #111;
  font-size: 0.8rem;
}

.hero__pill {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  min-width: min(420px, 100% - 2rem);
  justify-content: center;
  text-align: center;
  transform: translate(-50%, 50%);
}

.hero__pill.text-pill {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.9rem 2rem 1rem;
}

@media (max-width: 768px) {
  .hero-area {
    padding-top: 0.75rem;
  }
  .hero {
    min-height: 420px;
    border-radius: 1.25rem;
  }
  .hero__content {
    padding-top: 3.5rem;
    padding-bottom: 5.5rem;
  }
  .hero__pill {
    min-width: calc(100% - 2rem);
  }
}
.servizi-page {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.servizi-page__title,
.servizi-page__subtitle {
  margin: 0;
  color: #005A93;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
}

.servizi-page__title {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
}

.servizi-page__subtitle {
  font-size: clamp(2rem, 3.6vw, 3rem);
}

.servizi-page__content {
  color: #404040;
  font-size: 0.95rem;
  line-height: 1.6;
}

.servizi-page__content > *:not(.alignfull) {
  max-width: 88rem;
  margin-right: auto;
  margin-left: auto;
}

.servizi-page__content p {
  margin: 0 0 1.5rem;
}

.servizi-page__content p:last-child {
  margin-bottom: 0;
}

.servizi-page__services {
  max-width: 44rem;
  margin: 0 auto;
}

.servizi-page__heading {
  margin-bottom: 1.75rem;
}

.servizi-page__heading p {
  margin: 0.35rem 0 0;
  color: #404040;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
}

html, body {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

/*# sourceMappingURL=style.css.map */
