:root {
  --navy: #0f1e3c;
  --navy-mid: #1a3160;
    --gold: #3c8bda; 
    --gold-lt: #589bdf;
  --cream: #f8f6f1;
  --warm-white: #fdfcfa;
  --text: #1e1e1e;
  --text-mid: #4a4a4a;
  --text-lt: #7a7a7a;
  --border: rgba(15, 30, 60, 0.12);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
  --ease: cubic-bezier(.25, .46, .45, .94);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  background: var(--warm-white);
  color: var(--text);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.label {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

.display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.1;
  color: var(--navy);
}

.body-text {
  font-family: var(--sans);
  font-weight: 300;
  font-size: .95rem;
  line-height: 1.8;
  color: var(--text-mid);
}

.section-inner,
.hero-inner,
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
}

.gold-line {
  display: block;
  width: 48px;
  height: 1.5px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

/* NAVBAR */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 72px;
  background: #fff;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s var(--ease);
}

nav.scrolled {
  box-shadow: 0 4px 32px rgba(15, 30, 60, .07);
}

.nav-brand {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-brand-name {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: .02em;
}

.nav-brand-sub {
  font-family: var(--sans);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-lt);
}

.nav-links {
  position: absolute;
  left: 5vw;
  right: 5vw;
  top: 0;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto auto 1fr;
  align-items: center;
  column-gap: 3rem;
  list-style: none;
  pointer-events: none;
}

.nav-links li:nth-child(1) {
  grid-column: 2;
}

.nav-links li:nth-child(2) {
  grid-column: 3;
}

.nav-links li:nth-child(3) {
  grid-column: 4;
  justify-self: end;
}

.nav-links a {
  pointer-events: auto;
}

.nav-links a {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-mid);
  position: relative;
  transition: color .25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .55rem 1.6rem;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  transition: background .25s, color .25s;
}

.nav-cta:hover {
  background: var(--navy);
  color: #fff;
}

.hamburger {
  position: relative;
  z-index: 2;
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--navy);
  transition: all .3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 99;
  padding: 2rem 5vw;
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--navy);
}

/* HOME */
#home {
  min-height: 100vh;
  padding-top: 72px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

#home::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(184,151,90,.10) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(26,49,96,.8) 0%, transparent 60%);
  pointer-events: none;
}

#home::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background-image:
    linear-gradient(rgba(184,151,90,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,151,90,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 72px);
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: .91rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  margin-top: 1.8rem;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .3s forwards;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 5.4vw, 4.7rem);
  line-height: 1.08;
  color: #fff;
  max-width: 820px;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-lt);
}

.hero-subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: rgba(255,255,255,.78);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .7s forwards;
}

.hero-tagline {
  max-width: 650px;
  font-size: 1.08rem;
  line-height: 1.9;
  color: rgba(255,255,255,.5);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .9s forwards;
}

.hero-tagline strong {
  font-weight: 500;
  color: rgba(255,255,255,.8);
}

.hero-cta-row {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp .9s var(--ease) 1.1s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .9rem 2.4rem;
  background: var(--gold);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: background .25s, transform .2s;
}

.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .9rem 2.4rem;
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.7);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: border-color .25s, color .25s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* PAGE HERO */
.page-hero {
  padding: 8rem 0 4rem;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.page-title {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  margin-bottom: 1rem;
}

.page-intro {
  max-width: 740px;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-mid);
}

/* GENERIC PAGE SECTION */
.page-section {
  padding: 6rem 0 8rem;
}

/* CHI SONO */
.chi-sono-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}

.chi-sono-title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin-bottom: 2.5rem;
  color: var(--navy);
}

.chi-sono-p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 1.4rem;
}

.chi-sono-highlight {
  margin-top: 2.5rem;
  padding: 1.8rem 2rem;
  border-left: 2px solid var(--gold);
  background: var(--cream);
}

.chi-sono-highlight p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--navy);
}

.chi-sono-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.profile-card {
  background: var(--navy);
  padding: 2.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.profile-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(184,151,90,.2);
  border-radius: 50%;
}

.profile-card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(184,151,90,.1);
  border-radius: 50%;
}

.profile-name {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: .3rem;
}

.profile-role {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.profile-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.stat-number {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: .3rem;
}

.stat-label {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  line-height: 1.4;
}

.sector-list {
  padding: 2rem 2.5rem;
  border: 1px solid var(--border);
  background: var(--cream);
}

.sector-list-title {
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.sectors {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.sector-tag {
  padding: .35rem .9rem;
  border: 1px solid var(--border);
  font-size: .72rem;
  letter-spacing: .08em;
  color: var(--navy);
  background: white;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: .5rem;
  transition: color .25s;
}

.linkedin-link:hover {
  color: var(--gold);
}

/* COSA OFFRO */
.cosa-offro-wrap {
  background: var(--cream);
}

.cosa-offro-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  margin-bottom: 5rem;
  align-items: end;
}

.cosa-offro-title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--navy);
}

.cosa-offro-intro {
  font-size: .95rem;
  line-height: 1.9;
  color: var(--text-mid);
}

.offer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
}

.offer-card {
  background: var(--warm-white);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  transition: background .25s;
}

.offer-card:hover {
  background: white;
}

.offer-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--gold);
  transition: height .4s var(--ease);
}

.offer-card:hover::after {
  height: 100%;
}

.offer-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--navy);
}

.offer-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
}

.offer-body {
  font-size: .88rem;
  line-height: 1.85;
  color: var(--text-mid);
  flex: 1;
}

.offer-tag {
  align-self: flex-start;
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: .5rem;
}

.value-strip {
  margin-top: 4rem;
  padding: 3rem;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 3rem;
  align-items: center;
}

.vstrip-text {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255,255,255,.85);
}

.vstrip-text strong {
  color: var(--gold-lt);
  font-weight: 600;
}

.divider-v {
  width: 1.5px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  justify-self: center;
}

/* COMPETENZE */
.aree-wrap {
  background: var(--warm-white);
}

.aree-header {
  margin-bottom: 4.5rem;
  max-width: 600px;
}

.aree-title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.aree-subtitle {
  font-size: .9rem;
  color: var(--text-lt);
  line-height: 1.7;
}

.competency-area {
  display: grid;
  grid-template-columns: 280px 1fr;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: box-shadow .3s;
}

.competency-area:hover {
  box-shadow: 0 8px 40px rgba(15,30,60,.08);
}

.area-label-col {
  background: var(--navy);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .6rem;
}

.area-number {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(255,255,255,.3);
  line-height: 1;
}

.area-name {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.4;
}

.area-name span {
  display: block;
  color: var(--gold);
}

.area-items-col {
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
  align-items: center;
  background: white;
}

.area-item {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--border);
  transition: border-color .25s, background .25s;
}

.area-item:hover {
  border-color: var(--gold);
  background: var(--cream);
}

.area-item-name {
  font-size: .78rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.35;
}

/* CONTATTI */
.contatti-wrap {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.contatti-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image:
    linear-gradient(rgba(184,151,90,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,151,90,.05) 1px, transparent 1px);
  background-size: 50px 50px;
}

.contatti-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}

.contatti-title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: #fff;
  margin-bottom: 2rem;
}

.contatti-text {
  font-size: .9rem;
  line-height: 1.9;
  color: rgba(255,255,255,.5);
  margin-bottom: 3rem;
  max-width: 420px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(184,151,90,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-info-label {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: .3rem;
}

.contact-info-value {
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  font-weight: 300;
}

.contact-info-value a {
  color: rgba(255,255,255,.85);
  transition: color .2s;
}

.contact-info-value a:hover {
  color: var(--gold);
}

.contatti-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form-label {
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

.contact-panel {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 3rem;
}

.contact-panel h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: .8rem;
}

.contact-panel p {
  font-size: .85rem;
  line-height: 1.8;
  color: rgba(255,255,255,.45);
  margin-bottom: 2rem;
}

.contact-panel-links {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.contact-panel-link {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: .85rem 1.2rem;
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  letter-spacing: .1em;
  transition: border-color .25s, color .25s, background .25s;
}

.contact-panel-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,151,90,.04);
}

/* FOOTER */
footer {
  background: #0a1428;
  padding: 2rem 5vw;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: rgba(255,255,255,.4);
}

.footer-copy {
  font-size: .65rem;
  letter-spacing: .12em;
  color: rgba(255,255,255,.2);
  text-align: center;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .chi-sono-grid,
  .cosa-offro-header,
  .contatti-grid,
  .value-strip,
  .competency-area {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .offer-cards {
    grid-template-columns: 1fr;
  }

  .divider-v {
    display: none;
  }

  .area-label-col {
    padding: 1.5rem 2rem;
  }
}

@media (max-width: 600px) {
  .hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  footer {
    flex-direction: column;
    gap: .8rem;
    text-align: center;
  }
}

/* CORREZIONI PDF */
strong {
  font-weight: 600;
  color: inherit;
}

.accent-blue {
  color: var(--gold-lt);
  font-weight: 600;
}

nav {
  background: #fff;
}

.mobile-nav {
  background: #fff;
}

.nav-links {
  gap: 3.4rem;
}

.hero-eyebrow {
  font-size: .91rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: clamp(1.8rem, 2.8vw, 2.3rem);
  font-weight: 700;
  color: rgba(255,255,255,.82);
}

.hero-tagline {
  font-size: 1.08rem;
}

.page-intro,
.cosa-offro-intro,
.chi-sono-p,
.offer-body,
.aree-subtitle,
.contatti-text {
  font-size: 1.05rem;
}

.vstrip-text {
  font-size: 1.3rem;
}

.area-item-name {
  font-size: .9rem;
}

@media (max-width: 900px) {
  nav {
    display: flex;
    justify-content: space-between;
  }
}

/* POPUP COMPETENZE */
.area-popup-trigger {
  width: 100%;
  min-height: 100%;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  color: inherit;
  background: white;
}

.area-popup-trigger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.area-popup-trigger:active {
  transform: translateY(1px);
}

body.modal-open {
  overflow: hidden;
}

.competenza-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 6rem 5vw 3rem;
}

.competenza-modal.open {
  display: flex;
}

.competenza-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 40, .78);
  backdrop-filter: blur(8px);
}

.competenza-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  max-height: calc(100vh - 7rem);
  padding: 0rem;
  background: var(--warm-white);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 24px 80px rgba(0,0,0,.32);
  animation: modalFadeUp .25s var(--ease) both;
}

.competenza-modal-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--navy);
  padding-right: 0rem;
  margin-bottom: 0rem;
}

.competenza-modal-image {
  width: 150%;
  max-height: calc(100vh - 12rem);
  object-fit: contain;
  background: white;
}

.competenza-modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 38px;
  height: 38px;
  border: 0px solid var(--border);
  background: none;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: color .2s, border-color .2s, transform .2s;
}

.competenza-modal-close:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.competenza-modal-close:active {
  transform: scale(.96);
}

@keyframes modalFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .competenza-modal {
    padding: 5.5rem 1rem 1.5rem;
  }

  .competenza-modal-dialog {
    padding: 1rem;
  }

  .competenza-modal-image {
    max-height: calc(100vh - 13rem);
  }
}

