
:root {
  --surface:   rgba(255,255,255,0.03);
  --border:    rgba(255,255,255,0.08);
  --border-hi: rgba(255,255,255,0.18);
  --fg:        #343434;
  --fg-dim:    #343434;
  --fg-xdim:   #347cb9;
  --accent:    #3a7bbf;
  --accent2:   #6baed6;
  --gold:      #c9a96e;
  --gold-dim:  rgba(201,169,110,0.18);
}

#overview {
  background: url("/img/earth.png") no-repeat right 17%;
  background-color: #f4f4f4;
  -webkit-font-smoothing: antialiased;
    z-index: 1000; background-size: 380px;
    padding:0 0 4rem;
  }

i.icon-email, i.fas.fa-fax, i.fas.fa-phone{font-size: 1rem;}

/* ── Hero head ────────────────────────────────────────── */

.apita-title {
  font-size: clamp(36px, 7vw, 70px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 2rem;
  padding-top:2rem;
}

.apita-title > span {
  font-size: 3.5rem;
  color: var(--fg-dim);
  letter-spacing: 0.02em;
  line-height: 1;
}
.apita-title strong {
  font-weight: 700;
  font-style: normal;
  background: linear-gradient(135deg, #44a5ff 0%, #073a65 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.7;
}

/* ── Info grid ────────────────────────────────────────── */
.apita-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 3rem;
}
.apita-grid-full {
  grid-template-columns: 1fr;
}

.apita-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
      margin-bottom: 3rem;
}

.apita-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.apita-card-label {
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: var(--fg-xdim);
  margin-bottom: 8px;
}
.apita-card-value {
  font-size: clamp(15px, 2.2vw, 20px);
  font-weight: 400;
  color: var(--fg);
  line-height: 1.6;
}
.apita-card-value a {text-decoration: none;}
.apita-card-value a:hover {color:#27537d;}


/* Accent card for date */
.apita-card--accent {
  border-color: rgb(115 117 119 / 26%);
  background: rgb(255 255 255 / 58%)
}
.apita-card--accent:hover {
  border-color: rgba(98, 145, 195, 0.5);
  background: rgb(229 239 247 / 61%);
}


/* ── Animations ───────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fade-up-in 0.7s ease forwards;
}


.fade-up:nth-child(2) { animation-delay: 1.0s; }
.fade-up-line{  opacity: 0;transform: translateY(24px); animation: fade-up-in 0.7s ease forwards; animation-delay: 1.2s;}
.fade-up:nth-child(4) { animation-delay: 1.4s; }
.fade-up:nth-child(5) { animation-delay: 1.6s; }




@keyframes fade-up-in {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 600px) {
  .apita-grid { grid-template-columns: 1fr; }
}


  @media screen and (min-width: 768px) and (max-width: 1200px){
    .apita-grid {column-gap: 1.5rem;}
    .apita-card {margin-bottom: 1.5rem;}
    .apita-title > span {font-size: 2.5rem; letter-spacing: 0;}
    #overview {padding:2rem 0 3rem;}
  }


@media only screen and (max-width: 767px){
    .apita-card {margin-bottom: 2rem;}
    .apita-title > span {font-size: 1.6rem; letter-spacing: 0;}
    #overview {padding:2rem 0 3rem;}
}