/* -------------------------------------------------------------------------- */
/* CSS Variables & Theme Setup */
/* -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --color-primary: #31207D;
  /* Deep purple base replacing violet */
  --color-primary-dark: #1E124C;
  --color-primary-light: #765CDB;

  --color-secondary: #9FE1DC;
  /* Fresh teal base replacing turquoise */
  --color-secondary-dark: #5CBDB6;
  --color-secondary-light: #E0F7F5;

  --color-aqua: #F51A7D;
  /* Hot pink accent for energy */
  --color-lilac: #FFB6D9;
  /* Soft pink replacing soft lilac */

  /* Gradients */
  --gradient-main: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  --gradient-violet: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-light) 100%);
  --gradient-aqua: linear-gradient(135deg, var(--color-lilac) 0%, var(--color-aqua) 100%);
  --gradient-turquoise: linear-gradient(135deg, var(--color-secondary) 0%, #FFFFFF 100%);

  /* Backgrounds */
  --bg-matte: #FAFAFA;
  /* Notion-style clean bg */
  --bg-neutral: #F1F4F8;
  --bg-dark: #0A0A0A;
  /* Deep dark for Apple-style contrasts */
  --bg-glass: rgba(255, 255, 255, 0.7);
  --bg-glass-dark: rgba(10, 10, 10, 0.7);

  /* Text */
  --text-main: #1C1D21;
  --text-muted: #6B7280;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows & Depth */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 10px 40px rgba(118, 92, 219, 0.15);
  /* var(--color-primary-light) */
  --shadow-glow: 0 0 25px rgba(159, 225, 220, 0.4);
  /* var(--color-secondary) */

  /* Borders */
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-xl: 32px;
}

/* -------------------------------------------------------------------------- */
/* Reset & Base Styles */
/* -------------------------------------------------------------------------- */
body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-matte);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-outfit {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.text-balance {
  text-wrap: balance;
}

.tracking-wider {
  letter-spacing: 0.1em;
}

.section-padding {
  padding: 100px 0;
}

/* Color Utils */
.text-violet {
  color: var(--color-primary) !important;
}

.text-violet-light {
  color: var(--color-primary-light) !important;
}

.text-turquoise {
  color: var(--color-secondary) !important;
}

.text-aqua {
  color: var(--color-aqua) !important;
}

.bg-matte {
  background-color: var(--bg-matte);
}

.bg-neutral {
  background-color: var(--bg-neutral);
}

.bg-gradient-primary {
  background: var(--gradient-main);
}

.bg-black {
  background-color: var(--bg-dark);
}

/* Typography Gradients */
.text-gradient {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* -------------------------------------------------------------------------- */
/* Header & Navigation (Glassmorphism) */
/* -------------------------------------------------------------------------- */
.glass-header {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  padding: 15px 0;
}

.glass-header.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.85);
}

.navbar-brand .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-main);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-main);
  letter-spacing: -0.03em;
}

.nav-link {
  font-weight: 500;
  color: var(--text-muted) !important;
  margin: 0 8px;
  position: relative;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-main) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 20px;
}

.search-btn {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  transition: all 0.3s;
  color: var(--text-main);
}

.search-btn:hover {
  background: white;
  border-color: #E5E7EB;
  box-shadow: var(--shadow-soft);
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* -------------------------------------------------------------------------- */
/* Buttons */
/* -------------------------------------------------------------------------- */
.btn {
  border-radius: var(--border-radius-md);
  font-weight: 600;
  padding: 12px 28px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-primary {
  background: var(--color-primary);
  border: none;
  color: white;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
}

.btn-glow {
  position: relative;
  z-index: 1;
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: var(--gradient-main);
  z-index: -1;
  transition: opacity 0.3s;
  opacity: 0;
}

.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  color: white;
}

.btn-glow:hover::before {
  opacity: 1;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  color: white;
}

.link-arrow {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.link-arrow i {
  transition: transform 0.3s;
  margin-left: 6px;
}

.link-arrow:hover {
  color: var(--color-primary-dark);
}

.link-arrow:hover i {
  transform: translateX(4px);
}

/* -------------------------------------------------------------------------- */
/* Hero Section */
/* -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  background-color: var(--bg-dark);
  overflow: hidden;
  padding-top: 80px;
}

/* Abstract lighting effect */
.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(118, 92, 219, 0.4) 0%, rgba(10, 10, 10, 0) 70%);
  /* color-primary-light based */
  filter: blur(80px);
  z-index: 0;
  animation: pulse-light 8s infinite alternate;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(159, 225, 220, 0.3) 0%, rgba(10, 10, 10, 0) 70%);
  /* color-secondary based */
  filter: blur(60px);
  z-index: 0;
  animation: pulse-light 10s infinite alternate-reverse;
}

@keyframes pulse-light {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.1) translate(20px, -20px);
    opacity: 1;
  }
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.2) 100%);
  z-index: 1;
}

.hero-section h1 {
  color: white;
  line-height: 1.1;
}

.hero-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
}

.badge-pill {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: white;
}

.gradient-border {
  position: relative;
  background-clip: padding-box;
  border: 1px solid transparent;
}

.gradient-border::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -1px;
  border-radius: inherit;
  background: var(--gradient-main);
}

/* -------------------------------------------------------------------------- */
/* Surface Textures (Cards) */
/* -------------------------------------------------------------------------- */
.card-glass {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-glossy {
  background: #ffffff;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.card-glossy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity 0.3s;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.card-glossy.hover-lift:hover::before {
  opacity: 1;
}

/* -------------------------------------------------------------------------- */
/* Shared Hero Background (Child Pages) */
/* -------------------------------------------------------------------------- */
.shared-hero-bg {
  background: var(--bg-dark) !important;
  position: relative;
  overflow: hidden;
}

/* Layer overlaps / Glow Logic identical to Hero Section */
.shared-hero-bg::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(118, 92, 219, 0.4) 0%, rgba(10, 10, 10, 0) 70%);
  /* color-primary-light based */
  filter: blur(80px);
  z-index: 0;
  animation: pulse-light 8s infinite alternate;
  pointer-events: none;
}

.shared-hero-bg::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(159, 225, 220, 0.3) 0%, rgba(10, 10, 10, 0) 70%);
  /* color-secondary based */
  filter: blur(60px);
  z-index: 0;
  animation: pulse-light 10s infinite alternate-reverse;
  pointer-events: none;
}

.shared-hero-bg>.container {
  position: relative;
  z-index: 2;
}

/* Ensure readability of core text against dark bg */
.shared-hero-bg h1,
.shared-hero-bg h2,
.shared-hero-bg h3,
.shared-hero-bg h1.text-dark {
  color: white !important;
}

.shared-hero-bg p.text-muted {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* -------------------------------------------------------------------------- */
/* Sections and Features */
/* -------------------------------------------------------------------------- */
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.section-subtitle {
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

/* What is OpenLab */
.content-card {
  padding: 2rem;
}

.card-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s;
}

.content-card:hover .card-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

/* Activities Group Cards */
.activity-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 380px;
}

.activity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  border-radius: inherit;
  padding: 3px;
  background: var(--gradient-main);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.activity-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.activity-card:hover::before {
  opacity: 1;
}

.card-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.activity-card:hover .card-image {
  transform: scale(1.05);
}

.glass-panel-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.badge-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Background blobs */
.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  opacity: 0.4;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: var(--color-primary-light);
  top: -100px;
  right: -100px;
}

.blob-2 {
  width: 300px;
  height: 300px;
  background: var(--color-secondary-light);
  bottom: -50px;
  left: -100px;
}

/* News List */
.news-img-wrapper {
  aspect-ratio: 1/1;
}

.news-list-card {
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Collaboration Section */
.collab-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.collab-shapes .shape-1 {
  width: 600px;
  height: 600px;
  top: -300px;
  left: -200px;
}

.collab-shapes .shape-2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  right: -100px;
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-glow-light {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Metrics */
.metrics-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(to right, #0A0A0A, #1A1A1A);
}

/* Footer */
.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--color-secondary);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  margin-right: 0.5rem;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-3px);
}

/* -------------------------------------------------------------------------- */
/* Nav Pills (Innovation Formats Tabs) */
/* -------------------------------------------------------------------------- */
.nav-pills .nav-link {
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
  background-color: rgba(118, 92, 219, 0.1);
  /* var(--color-primary-light) with low opacity */
  color: var(--color-primary) !important;
}

.nav-pills .nav-link.active,
.nav-pills .nav-link.active:hover {
  background: var(--gradient-main) !important;
  color: #ffffff !important;
  box-shadow: var(--shadow-glow);
}

/* -------------------------------------------------------------------------- */
/* Responsive Adjustments */
/* -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .hero-section {
    padding-top: 100px;
    text-align: center;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
    margin-right: 0 !important;
  }

  .navbar-collapse {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-radius: var(--border-radius-md);
    margin-top: 15px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-soft);
  }
}

/* -------------------------------------------------------------------------- */
/* Aliados Marquee */
/* -------------------------------------------------------------------------- */
.aliados-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.aliados-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  animation: scroll 30s linear infinite;
  will-change: transform;
}

.aliados-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.aliados-item {
  flex: 0 0 auto;
}

.aliados-item img {
  max-height: 60px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all .3s ease;
}

.aliados-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .aliados-track {
    gap: 2rem;
    animation-duration: 45s;
  }
}

/* -------------------------------------------------------------------------- */
/* Shared Filters & Editorial Components */
/* -------------------------------------------------------------------------- */
.filter-scroller {
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.filter-scroller::-webkit-scrollbar {
  display: none;
}

.filter-pill {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 50rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-main);
  background: var(--bg-glass);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--bg-matte);
  color: var(--color-primary);
  border-color: var(--color-primary-light);
  box-shadow: 0 4px 12px rgba(157, 77, 255, 0.1);
}

.activity-img-placeholder {
  background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
  aspect-ratio: 16/9;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  position: relative;
  overflow: hidden;
}

.activity-img-placeholder i {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.activity-card:hover .activity-img-placeholder i {
  transform: scale(1.2);
  color: var(--color-primary);
  opacity: 0.9 !important;
  filter: drop-shadow(0 0 15px rgba(157, 77, 255, 0.5));
}

.activity-featured-placeholder {
  background: linear-gradient(45deg, #2a2a2a, #1a1a1a);
  height: 100%;
  min-height: 400px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.activity-featured-placeholder:hover {
  background: linear-gradient(45deg, #1f1f1f, #0d0d0d);
  box-shadow: inset 0 0 40px rgba(157, 77, 255, 0.1);
}

.activity-featured-placeholder i {
  transition: all 0.5s ease;
}

.activity-featured-placeholder:hover i {
  transform: scale(1.1);
  color: var(--color-secondary);
  opacity: 0.8 !important;
}

.badge-category {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  padding: 0.4rem 1rem;
  border-radius: 50rem;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.badge-category.dark-theme {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.activity-card {
  display: flex;
  flex-direction: column;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #fff;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(157, 77, 255, 0.12);
  border-color: transparent;
}

.activity-card .card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.activity-meta {
  font-size: 0.8rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1rem;
}
/* -------------------------------------------------------------------------- */
/* Hero Activities Page */
/* -------------------------------------------------------------------------- */
.hero-activities {
  position: relative;
  min-height: 860px;
  display: flex;
  align-items: center;
  padding: 210px 0 140px;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.hero-activities .row {
  min-height: 100%;
  align-items: center;
}

.hero-activities h1 {
  line-height: 1.05;
  margin-bottom: 2rem;
}

.hero-activities p.lead {
  max-width: 600px;
  margin-bottom: 3rem;
}

@media (max-width: 991px) {
  .hero-activities {
    min-height: 720px;
    padding: 170px 0 100px;
  }
}

@media (max-width: 768px) {
  .hero-activities {
    min-height: 640px;
    padding: 150px 0 90px;
  }
}
