:root {
  /* Colors - Derived from Logo (Deep Royal Blue to Sky Blue) */
  --primary: #0284c7;
  /* Sky-600: Vibrant Blue */
  --primary-dark: #0c4a6e;
  /* Sky-900: Deep Navy */
  --secondary: #38bdf8;
  /* Sky-400: Lighter Blue */
  --accent: #f59e0b;
  /* Amber-500: Warm Gold/Orange for contrast */

  --bg-white: #ffffff;
  --bg-light: #f0f9ff;
  /* Very faint blue tint background */
  --bg-dark: #0f172a;
  /* Slate-900 */

  --text-dark: #0f172a;
  /* Slate-900 */
  --text-gray: #475569;
  /* Slate-600 */
  --text-light: #f1f5f9;
  /* Slate-100 */

  /* Spacing */
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 4rem;

  /* Container Width */
  --container-width: 1200px;

  /* Shadows representing "Alai" or Waves - Soft Blue Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(2, 132, 199, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(2, 132, 199, 0.1), 0 2px 4px -1px rgba(2, 132, 199, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(2, 132, 199, 0.1), 0 4px 6px -2px rgba(2, 132, 199, 0.05);

  /* Radii - Rounder for Friendliness */
  --radius-md: 0.75rem;
  --radius-lg: 1.5rem;
  /* Very rounded */
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Quicksand', sans-serif;
  /* Rounded & Soft - High Readability but Fun */
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Fredoka', sans-serif;
  /* Funky, Rounded, Engaging */
  margin-bottom: var(--spacing-md);
  color: var(--primary-dark);
  line-height: 1.2;
}

p {
  margin-bottom: var(--spacing-md);
}

/* Utility Classes */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-xl) 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: var(--spacing-lg);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-title span {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.section-title span::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--secondary);
  opacity: 0.3;
  z-index: -1;
  border-radius: 4px;
}


/* Footer Consistency Reset */
.footer {
  font-size: 16px;
  /* Reset font size to standard */
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  /* Pill shape */
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-family: 'Fredoka', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 14px 0 rgba(2, 132, 199, 0.39);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.23);
}

.btn-secondary {
  background: var(--accent);
  /* Pop of color */
  color: white;
  box-shadow: 0 4px 14px 0 rgba(245, 158, 11, 0.39);
}

.btn-secondary:hover {
  background: #d97706;
  /* Amber-600 */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.23);
}

/* Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: var(--spacing-md) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(2, 132, 199, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--primary-dark);
  font-family: 'Fredoka', sans-serif;
}

.logo-img {
  height: 65px;
  /* Slightly bigger logo */
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  color: var(--text-gray);
  transition: color 0.3s;
  font-size: 1rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links .btn {
  margin-left: var(--spacing-sm);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary-dark);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(15, 23, 42, 0.3), rgba(15, 23, 42, 0.3)), url('assets/background.png');
  background-size: cover;
  background-position: center;
  padding: 8rem 0 6rem;
  /* Extra padding top */
  text-align: center;
  position: relative;
  overflow: hidden;
  color: white;
  /* Standardize white text for hero */
}

.hero::before {
  /* Abstract Wave Shape */
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: var(--secondary);
  opacity: 0.1;
  border-radius: 50%;
  filter: blur(80px);
}

.hero::after {
  /* Another Shape */
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 250px;
  height: 250px;
  background: var(--primary);
  opacity: 0.1;
  border-radius: 50%;
  filter: blur(60px);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 4.5rem;
  /* Big Friendly Text */
  margin-bottom: var(--spacing-md);
  color: white;
  /* Force white for contrast */
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  letter-spacing: -0.04em;
}

.hero p {
  font-size: 1.5rem;
  max-width: 700px;
  margin: 0 auto var(--spacing-lg);
  color: #f1f5f9;
  /* Slate-100 for high readability */
  font-weight: 500;
}

/* Card Grid - Shared for Vision/Mission/Events */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-lg);
}

.card {
  background: var(--bg-white);
  padding: 0;
  /* Let image fill */
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  /* Round top only */
}

.card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-dark);
}

.card-text {
  color: var(--text-gray);
  font-size: 1rem;
  flex-grow: 1;
}

/* Contact Form */
.contact-form {
  background: var(--bg-white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--spacing-md);
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
}

.contact-section {
  color: white;
}

.contact-section .section-title,
.contact-section p,
.contact-section h3 {
  color: white !important;
}

/* Footer */
.footer {
  background: var(--primary-dark);
  color: white;
  padding: var(--spacing-xl) 0 var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.footer-col h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #cbd5e1;
  /* Slate-300 */
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem;
  border-radius: 50%;
  display: flex;
  transition: background 0.3s;
  color: white;
}

.social-links a:hover {
  background: var(--primary);
}

.copyright {
  text-align: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  /* Slate-400 */
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    flex-direction: column;
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
  }

  .nav-links.active {
    display: flex;
  }
}

/* Team Section Styles - Merged & Updated */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  /* Slightly smaller min-width */
  gap: 2rem;
  margin-top: 2rem;
}

.team-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  padding: 2.5rem 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(2, 132, 199, 0.05);
  /* Slight blue border */
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

/* Team Image: Gradient Border effect */
.team-img-wrapper {
  width: 160px;
  height: 160px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  padding: 5px;
  /* Spacing for border */
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  /* Gradient border */
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid white;
  /* Inner white border */
}

.team-name {
  font-size: 1.5rem;
  /* Outfit Font */
  margin-bottom: 0.25rem;
  color: var(--primary-dark);
}

.team-role {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.team-bio {
  font-size: 1rem;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.team-social a {
  color: #94a3b8;
  transition: all 0.3s ease;
}

.team-social a:hover {
  color: var(--primary);
  transform: scale(1.1);
}

/* Articles Slider */
.slider-wrapper {
  position: relative;
  max-width: 60%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: white;
  border: 4px solid white;
}

.slider-container {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
}

.slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Aspect Ratio Utilities */
.aspect-4-3 .slide img {
  aspect-ratio: 4/3;
  object-fit: cover;
}

.aspect-16-9 .slide img {
  aspect-ratio: 16/9;
  object-fit: cover;
}

.articles-slider-wrapper {
  max-width: 50%;
  background: white;
  border: none;
  box-shadow: none;
  aspect-ratio: 3 / 4;
}

.articles-slider-wrapper .slide {
  background: white;
  height: 100%;
}

.articles-slider-wrapper .slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-dark);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.slider-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

.slider-indicators {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .slider-btn {
    width: 40px;
    height: 40px;
  }

  .slider-btn.prev {
    left: 10px;
  }

  .slider-btn.next {
    right: 10px;
  }
}

/* Sponsors Section */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  align-items: center;
  justify-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

.sponsor-logo {
  width: 100%;
  max-width: 200px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid rgba(2, 132, 199, 0.1);
}

.sponsor-logo:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.sponsor-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.sponsor-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 768px) {
  .sponsors-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
  }

  .sponsor-logo {
    max-width: 150px;
    height: 100px;
  }
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(2, 132, 199, 0.1);
  display: flex;
  flex-direction: column;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.gallery-card-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.gallery-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-card-img {
  transform: scale(1.05);
}

.gallery-overlay {
  /* Renamed concept: This is now the text container below the image */
  position: relative;
  background: white;
  padding: 1.5rem;
  text-align: center;
  border-top: 1px solid var(--bg-light);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  /* Always visible */
}

.gallery-album-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-family: 'Fredoka', sans-serif;
}

.gallery-photo-count {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin: 0;
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--bg-light);
  border-radius: 20px;
  font-weight: 500;
}

/* Slideshow Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 48px;
  font-weight: bold;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 2001;
  line-height: 1;
  padding: 0;
}

.modal-close:hover {
  color: var(--accent);
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slideshow-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.slideshow-container img {
  max-width: 100%;
  max-height: calc(90vh - 100px);
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.slideshow-caption {
  color: white;
  text-align: center;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.slideshow-caption #slideshowTitle {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: 'Fred oka', sans-serif;
}

.slideshow-caption #slideshowCounter {
  font-size: 1rem;
  color: #94a3b8;
}

.slideshow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: var(--primary-dark);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2001;
}

.slideshow-btn:hover {
  background: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.slideshow-btn.prev {
  left: 20px;
}

.slideshow-btn.next {
  right: 20px;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .modal-close {
    top: 10px;
    right: 20px;
    font-size: 36px;
  }

  .slideshow-btn {
    width: 50px;
    height: 50px;
  }

  .slideshow-btn.prev {
    left: 10px;
  }

  .slideshow-btn.next {
    right: 10px;
  }

  .slider-caption #slideshowTitle {
    font-size: 1.2rem;
  }

  .slider-wrapper,
  .articles-slider-wrapper {
    max-width: 100%;
  }
}

/ *   R e f a c t o r e d   U t i l i t y   C l a s s e s   f r o m   I n l i n e   S t y l e s   * /         / *   N a v b a r   &   L o g o   * /     . l o g o - t e x t - w r a p p e r    {
               d i s p l a y :    b l o c k ;
       
}

         . l o g o - s u b t i t l e    {
               d i s p l a y :    b l o c k ;
               f o n t - s i z e :    0 . 6 r e m ;
               f o n t - w e i g h t :    4 0 0 ;
               c o l o r :    v a r ( - - t e x t - g r a y ) ;
               o p a c i t y :    0 . 8 ;
               m a r g i n - t o p :    2 p x ;
       
}

         / *   H e r o   S e c t i o n   * /     . h e r o - b t n - c o n t a i n e r    {
               d i s p l a y :    f l e x ;
               g a p :    1 r e m ;
               j u s t i f y - c o n t e n t :    c e n t e r ;
               f l e x - w r a p :    w r a p ;
       
}

         . b t n - w h i t e    {
               b a c k g r o u n d - c o l o r :    w h i t e ;
               c o l o r :    v a r ( - - p r i m a r y ) ;
       
}

         / *   V i d e o   S e c t i o n   * /     . v i d e o - w r a p p e r - l g    {
               m a x - w i d t h :    8 0 0 p x ;
               m a r g i n :    0   a u t o ;
               b o r d e r - r a d i u s :    v a r ( - - r a d i u s - l g ) ;
               o v e r f l o w :    h i d d e n ;
               b o x - s h a d o w :    v a r ( - - s h a d o w - l g ) ;
               a s p e c t - r a t i o :    1 6 / 9 ;
       
}

         . v i d e o - c o v e r    {
               w i d t h :    1 0 0 % ;
               h e i g h t :    1 0 0 % ;
               o b j e c t - f i t :    c o v e r ;
               d i s p l a y :    b l o c k ;
       
}

         / *   T e x t   C o n t a i n e r s   * /     . t e x t - c o n t a i n e r - l g    {
               m a x - w i d t h :    8 0 0 p x ;
               m a r g i n :    0   a u t o ;
               t e x t - a l i g n :    c e n t e r ;
               f o n t - s i z e :    1 . 1 5 r e m ;
               c o l o r :    v a r ( - - t e x t - g r a y ) ;
               l i n e - h e i g h t :    1 . 8 ;
       
}

         . t e x t - c o n t a i n e r - m d    {
               m a x - w i d t h :    8 0 0 p x ;
               m a r g i n :    0   a u t o ;
               c o l o r :    v a r ( - - t e x t - g r a y ) ;
               f o n t - s i z e :    1 . 1 r e m ;
               l i n e - h e i g h t :    1 . 8 ;
       
}

         . t e x t - c o n t a i n e r - s m    {
               m a x - w i d t h :    7 0 0 p x ;
               m a r g i n :    0   a u t o   v a r ( - - s p a c i n g - l g ) ;
               c o l o r :    v a r ( - - t e x t - g r a y ) ;
       
}

         / *   M i s s i o n   I c o n s   * /     . m i s s i o n - i c o n - w r a p p e r    {
               w i d t h :    6 0 p x ;
               h e i g h t :    6 0 p x ;
               b o r d e r - r a d i u s :    5 0 % ;
               d i s p l a y :    f l e x ;
               a l i g n - i t e m s :    c e n t e r ;
               j u s t i f y - c o n t e n t :    c e n t e r ;
               m a r g i n :    0   a u t o   1 r e m ;
               c o l o r :    w h i t e ;
       
}

         . b g - p r i m a r y    {
               b a c k g r o u n d :    v a r ( - - p r i m a r y ) ;
       
}

         . b g - s e c o n d a r y    {
               b a c k g r o u n d :    v a r ( - - s e c o n d a r y ) ;
       
}

         / *   F e a t u r e   V i d e o   /   I f r a m e   * /     . i f r a m e - w r a p p e r    {
               d i s p l a y :    f l e x ;
               j u s t i f y - c o n t e n t :    c e n t e r ;
               b o x - s h a d o w :    v a r ( - - s h a d o w - l g ) ;
               b o r d e r - r a d i u s :    v a r ( - - r a d i u s - l g ) ;
               o v e r f l o w :    h i d d e n ;
               m a x - w i d t h :    5 0 0 p x ;
               m a r g i n :    0   a u t o ;
       
}

         . i f r a m e - v i d e o    {
               b o r d e r :    n o n e ;
               o v e r f l o w :    h i d d e n ;
       
}

         / *   S e c t i o n   S p e c i f i c s   * /     . s e c t i o n - b g - w h i t e    {
               b a c k g r o u n d - c o l o r :    v a r ( - - b g - w h i t e ) ;
       
}

         . s e c t i o n - p t - 2    {
               p a d d i n g - t o p :    2 r e m ;
       
}

         . t e x t - c e n t e r    {
               t e x t - a l i g n :    c e n t e r ;
       
}

         . c a r d - p a d d e d    {
               t e x t - a l i g n :    c e n t e r ;
               p a d d i n g :    2 r e m ;
       
}

     / *   C o n t a c t   P a g e   S t y l e s   * /     . c o n t a c t - h e a d e r    {
               b a c k g r o u n d - c o l o r :    v a r ( - - b g - w h i t e ) ;
               p a d d i n g - b o t t o m :    2 r e m ;
       
}

         . c o n t a c t - g r i d    {
               d i s p l a y :    f l e x ;
               f l e x - w r a p :    w r a p ;
               j u s t i f y - c o n t e n t :    c e n t e r ;
               g a p :    v a r ( - - s p a c i n g - l g ) ;
       
}

         . c o n t a c t - i n f o - c o l    {
               f l e x :    1 ;
               m i n - w i d t h :    3 0 0 p x ;
               m a x - w i d t h :    5 0 0 p x ;
       
}

         . c o n t a c t - i n f o - c a r d    {
               b a c k g r o u n d :    r g b a ( 0 ,    0 ,    0 ,    0 . 3 ) ;
               p a d d i n g :    2 r e m ;
               b o r d e r - r a d i u s :    v a r ( - - r a d i u s - l g ) ;
               b a c k d r o p - f i l t e r :    b l u r ( 1 0 p x ) ;
       
}

         . c o n t a c t - c a r d - t i t l e    {
               f o n t - s i z e :    1 . 7 5 r e m ;
               m a r g i n - b o t t o m :    1 . 5 r e m ;
               c o l o r :    w h i t e ;
               f o n t - w e i g h t :    7 0 0 ;
       
}

         . c o n t a c t - i t e m    {
               d i s p l a y :    f l e x ;
               g a p :    1 r e m ;
               m a r g i n - b o t t o m :    1 . 5 r e m ;
               a l i g n - i t e m s :    f l e x - s t a r t ;
       
}

         . c o n t a c t - i c o n    {
               c o l o r :    v a r ( - - a c c e n t ) ;
               f l e x - s h r i n k :    0 ;
       
}

         . c o n t a c t - l a b e l    {
               f o n t - w e i g h t :    6 0 0 ;
               c o l o r :    w h i t e ;
               m a r g i n - b o t t o m :    0 . 5 r e m ;
               f o n t - s i z e :    1 . 1 r e m ;
       
}

         . c o n t a c t - t e x t    {
               c o l o r :    r g b a ( 2 5 5 ,    2 5 5 ,    2 5 5 ,    0 . 9 ) ;
               l i n e - h e i g h t :    1 . 6 ;
               m a r g i n - b o t t o m :    0 . 5 r e m ;
       
}

         . c o n t a c t - l i n k    {
               c o l o r :    r g b a ( 2 5 5 ,    2 5 5 ,    2 5 5 ,    0 . 9 ) ;
               t e x t - d e c o r a t i o n :    n o n e ;
               b o r d e r - b o t t o m :    1 p x   s o l i d   r g b a ( 2 5 5 ,    2 5 5 ,    2 5 5 ,    0 . 5 ) ;
       
}

         . c o n t a c t - l i n k - a c c e n t    {
               c o l o r :    v a r ( - - a c c e n t ) ;
               f o n t - s i z e :    0 . 9 5 r e m ;
               t e x t - d e c o r a t i o n :    n o n e ;
               b o r d e r - b o t t o m :    1 p x   s o l i d   v a r ( - - a c c e n t ) ;
               d i s p l a y :    i n l i n e - b l o c k ;
       
}

         . c o n t a c t - m a p - c o l    {
               f l e x :    1 ;
               m i n - w i d t h :    3 0 0 p x ;
               b o r d e r - r a d i u s :    v a r ( - - r a d i u s - l g ) ;
               o v e r f l o w :    h i d d e n ;
               b o x - s h a d o w :    v a r ( - - s h a d o w - l g ) ;
               h e i g h t :    4 5 0 p x ;
       
}

     / *   T e a m   P a g e   S t y l e s   * /     . t e a m - h e r o - t e x t    {
               m a x - w i d t h :    6 0 0 p x ;
               m a r g i n :    0   a u t o ;
               c o l o r :    w h i t e ;
       
}

         . t e a m - g r i d - c e n t e r e d    {
               j u s t i f y - c o n t e n t :    c e n t e r ;
               m a x - w i d t h :    4 0 0 p x ;
               m a r g i n :    0   a u t o ;
       
}

         . t e a m - c a r d - o p a c i t y    {
               o p a c i t y :    0 . 8 ;
       
}

         . t e a m - i m g - p l a c e h o l d e r    {
               b a c k g r o u n d :    # e 2 e 8 f 0 ;
               d i s p l a y :    f l e x ;
               a l i g n - i t e m s :    c e n t e r ;
               j u s t i f y - c o n t e n t :    c e n t e r ;
       
}

         . a p p l y - l i n k    {
               c o l o r :    v a r ( - - s e c o n d a r y ) ;
               f o n t - w e i g h t :    6 0 0 ;
       
}

     