    /* Reset and base styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #ffffff;
    }

    /* Top Social Bar */
    .top-social-bar {
      background-color: #ffffff; /* Burgundy */
      padding: 12px 20px;
      display: flex;
      justify-content: flex-end;
      align-items: center;
    }

    .social-icons a {
      color: #970303; /* Light cream */
      margin-left: 16px;
      font-size: 20px;
      text-decoration: none;
      transition: transform 0.3s ease, color 0.3s ease;
    }

    .social-icons a:hover {
      color: #ffd700; /* Gold */
      transform: scale(1.2);
    }

    /* Responsive */
    @media (max-width: 600px) {
      .top-social-bar {
        justify-content: center;
      }

      .social-icons a {
        margin-left: 12px;
        font-size: 18px;
      }
    }

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

/* Ticker Banner Wrapper */
.ticker-banner {
  background-color: #800020; /* Burgundy */
  color: #fffde8; /* Soft cream */
  height: 32px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  border-bottom: 1px solid #eee;
}

/* The scrolling text */
.ticker-content {
  white-space: nowrap;
  position: absolute;
  will-change: transform;
  animation: scrollTicker 50s linear infinite;
}

/* Smooth right-to-left scroll animation */
@keyframes scrollTicker {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsive for small devices */
@media (max-width: 600px) {
  .ticker-banner {
    font-size: 0.8rem;
    height: 28px;
  }
}


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
}

.main-header {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 15px 5%;
  position: sticky;
  top: 0;
  z-index: 999;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
}

.logo span {
  color: #800020;
  font-weight: 600;
  font-size: 1.4rem;
}

/* Nav */
.nav {
  display: flex;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #800020;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  display: none;
  flex-direction: column;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  z-index: 999;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-menu li {
  padding: 10px 20px;
}

.dropdown-menu a {
  color: #333;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background-color: #f8f8f8;
  color: #800020;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 1.8rem;
  color: #800020;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    background: #fff;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
  }

  .nav.show {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 20px;
  }

  .dropdown:hover .dropdown-menu {
    position: static;
    box-shadow: none;
    background: #f9f9f9;
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
  }

  .dropdown:hover .dropdown-menu {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.4);
}

.hero-content {
  max-width: 90%;
  padding: 0 20px;
  animation: fadeIn 2s ease-in;
}

.hero-question {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  min-height: 2.5rem;
}

.question-text {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.question-text.show {
  opacity: 1;
}

.hero-taglines {
  font-size: 1.2rem;
  margin-bottom: 30px;
  min-height: 1.6rem;
}

.tagline-text {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.tagline-text.show {
  opacity: 1;
}

.cta-button {
  background-color: #FFD700;
  color: #000;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #e0c000;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(30px);}
  to {opacity: 1; transform: translateY(0);}
}

@media (max-width: 768px) {
  .hero-question {
    font-size: 1.4rem;
  }
  .hero-taglines {
    font-size: 1rem;
  }
}




.quick-links {
  position: relative;
  top: -100px;
  z-index: 10;
  padding: 0 20px;
}

.quick-links-wrapper {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px 10px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  justify-content: flex-start; /* allow full scroll */
}

.quick-links-wrapper::-webkit-scrollbar {
  display: none;
}



.quick-link-card {
  flex: 0 0 auto;
  width: 220px; /* Ensures fixed width across devices */
  height: 280px;
  background: white;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  scroll-snap-align: start;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  overflow: hidden;
}

.quick-link-card .icon {
  font-size: 2.5rem;
  color: #b30000;
  margin-top: 30px;
}

.quick-link-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 15px 0;
  color: #333;
}

.quick-link-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(255, 215, 0, 0.9), transparent);
  color: #000;
  padding: 20px 10px;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
  font-size: 0.95rem;
}

.quick-link-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.quick-link-card:hover .overlay {
  transform: translateY(0);
}

.quick-link-card .overlay a {
  display: inline-block;
  margin-top: 10px;
  background-color: #b30000;
  color: #fff;
  padding: 6px 16px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  transition: background-color 0.3s ease;
}

.quick-link-card .overlay a:hover {
  background-color: #800000;
}

@media (max-width: 768px) {
  .quick-link-card {
    flex: 0 0 85%;
  }
}

.quick-links-wrapper {
  -webkit-overflow-scrolling: touch; /* Smooth scroll on iOS */
  padding-left: 10px;
  padding-right: 10px;
  scroll-behavior: smooth;
  touch-action: pan-x;
}

.quick-links::after {
  content: '';
  display: block;
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.05), transparent);
  margin-top: -1px;
}



.about-section {
  background: #fefefe;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 50px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.about-section.show .about-content {
  opacity: 1;
  transform: translateY(0);
}

.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0a2239;
}

.about-text h2 span {
  color: #b30000;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}

.about-text .quote {
  font-style: italic;
  color: #800000;
  font-weight: 600;
}

.btn-learn-more {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 24px;
  background: #b30000;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease;
  font-weight: 500;
}

.btn-learn-more:hover {
  background: #800000;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column-reverse;
    gap: 30px;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .about-image img {
    max-width: 100%;
  }
}




/* Section */
.future-bright-section {
  background: #fff8f3;
  padding: 80px 20px;
  text-align: center;
  color: #0a2239;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container */
.future-bright-section .container {
  max-width: 900px;
  margin: auto;
}

/* Fade in animation */
.text-block {
  animation: fadeIn 1.2s ease forwards;
  opacity: 0;
  transform: translateY(40px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.future-bright-section.show .text-block {
  opacity: 1;
  transform: translateY(0);
}

/* Heading */
.bright-heading {
  position: relative;
  font-size: 3rem;
  font-weight: 900;
  color: #b30000;
  margin-bottom: 60px;
  display: inline-block;
}

/* Custom CSS underline effect */
.underline-shape {
  position: absolute;
  left: 50%;
  bottom: -20px;
  width: 160px;
  height: 25px;
  background: radial-gradient(circle at center, #ffd700 40%, transparent 41%),
              radial-gradient(circle at left center, #ffd700 40%, transparent 41%),
              radial-gradient(circle at right center, #ffd700 40%, transparent 41%);
  background-size: 50% 100%;
  background-repeat: no-repeat;
  background-position: center, left, right;
  transform: translateX(-50%) scaleY(0.6);
  opacity: 0.9;
}

/* Paragraph */
.future-bright-section p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #333;
  max-width: 700px;
}

.future-bright-section p strong {
  color: #b30000;
}

.future-bright-section p em {
  color: #800000;
  font-style: normal;
  font-weight: 600;
}

/* Animation keyframes */
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .bright-heading {
    font-size: 2.2rem;
  }

  .underline-shape {
    width: 100px;
    height: 20px;
  }

  .future-bright-section p {
    font-size: 1rem;
  }
}


.our-school {
  padding: 80px 20px;
  background: #ffecec;
  text-align: center;
}

.section-heading {
  font-size: 2.8rem;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 40px;
}

.school-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  justify-items: center;
}

.school-card {
  position: relative;
  width: 100%;
  max-width: 300px;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.school-card:hover {
  transform: translateY(-5px);
}

.card-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  position: relative;
}

.card-content i {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: gold;
}

.card-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.card-hover {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  color: #111;
  width: 100%;
  height: 100%;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card-hover p {
  font-size: 1rem;
  margin-bottom: 15px;
  text-align: center;
}

.card-hover a {
  background: #b30000;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.card-hover a:hover {
  background: #8a0000;
}

.school-card:hover .card-hover {
  transform: translateY(0);
}


/* ...existing styles above remain unchanged... */

@media (max-width: 768px) {
  .school-card-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 10px 0;
    scroll-padding: 20px;
  }

  .school-card {
    flex: 0 0 80%;
    scroll-snap-align: center;
    max-width: unset;
    min-width: 250px;
  }
}


.why-clarus {
  padding: 80px 20px;
  background: #f9f7f4;
  text-align: center;
}

.section-heading {
  font-size: 2.5rem;
  color: #a00000;
  font-weight: 800;
  margin-bottom: 50px;
  position: relative;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-box {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeUp 0.8s ease both;
}

.value-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.value-box i {
  font-size: 2.5rem;
  color: #d40000;
  margin-bottom: 15px;
}

.value-box h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: #222;
}

.value-box p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile View */
@media (max-width: 768px) {
  .value-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-box {
    padding: 25px 15px;
  }
}


.principal-section {
  background: linear-gradient(to right, #fff8f5, #fff);
  padding: 80px 20px;
}

.principal-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.principal-image img {
  width: 300px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  animation: fadeInLeft 1s ease-in-out;
}

.principal-message {
  max-width: 600px;
  animation: fadeInRight 1s ease-in-out;
}

.section-heading {
  font-size: 2.2rem;
  color: #8a0000;
  font-weight: 800;
  margin-bottom: 20px;
}

.intro-text {
  font-size: 1.1rem;
  font-style: italic;
  color: #444;
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
}

.intro-text::before {
  content: "“";
  font-size: 3rem;
  color: #d40000;
  position: absolute;
  left: 0;
  top: -10px;
  line-height: 1;
}

.principal-note {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

.cta-button {
  background: #a00000;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #7e0000;
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .principal-container {
    flex-direction: column;
    text-align: center;
  }

  .principal-image img {
    width: 220px;
  }

  .intro-text {
    padding-left: 0;
  }

  .intro-text::before {
    left: 50%;
    transform: translateX(-50%);
  }
}





.events-section {
  background: #fffaf5;
  padding: 80px 20px;
}

.events-title {
  text-align: center;
  font-size: 2.2rem;
  color: #8a0000;
  font-weight: bold;
  margin-bottom: 40px;
}

.events-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.event-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.07);
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-8px);
}

.event-title {
  font-size: 1.2rem;
  color: #b00000;
  font-weight: 600;
  margin-bottom: 10px;
}

.event-date {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 15px;
}

.event-desc {
  font-size: 1rem;
  color: #444;
  margin-bottom: 15px;
}

.read-more-btn {
  background: #a00000;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.read-more-btn:hover {
  background: #7e0000;
}

.event-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}


@media (max-width: 600px) {
  .events-wrapper {
    grid-template-columns: 1fr;
  }
}





.apply-cta-parallax {
  background-image: url('/images/homerrr.jpg'); /* Replace with your image path */
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.apply-cta-overlay {
  background: rgba(0, 0, 0, 0.5); /* Soft dark overlay */
  width: 100%;
  height: 100%;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.apply-cta-content {
  max-width: 800px;
  animation: fadeInUp 1.2s ease forwards;
}

.apply-cta-title {
  font-size: 2.7rem;
  font-family: 'Playfair Display', serif;
  font-weight: bold;
  margin-bottom: 20px;
}

.apply-cta-text {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
}

.apply-cta-button {
  background: #fff;
  color: #800000;
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.apply-cta-button:hover {
  background: #fce5c4;
  color: #600000;
  transform: scale(1.05);
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .apply-cta-title {
    font-size: 2rem;
  }

  .apply-cta-text {
    font-size: 1rem;
  }

  .apply-cta-button {
    width: 100%;
  }
}




.clarus-footer {
  background-color: #800020; /* Burgundy */
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 60px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1 1 300px;
  min-width: 280px;
}

/* Map */
.footer-section.map {
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
}

/* Center */
.footer-section.center h2 {
  font-size: 1.8rem;
  color: #ffd700;
  margin-bottom: 5px;
}

.footer-section.center .motto {
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 15px;
  color: #fdf6e3;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: #f0f0f0;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ffd700;
}

.footer-socials a {
  color: #fff;
  font-size: 1.2rem;
  margin-right: 12px;
  transition: 0.3s ease;
}

.footer-socials a:hover {
  color: #ffd700;
  transform: scale(1.2);
}

/* Newsletter */
.footer-section.newsletter h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #ffd700;
}

.footer-section.newsletter p {
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: #eee;
}

.footer-section.newsletter form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-section.newsletter input {
  padding: 10px;
  border: none;
  border-radius: 6px;
  flex: 1;
  min-width: 180px;
}

.footer-section.newsletter button {
  padding: 10px 18px;
  background-color: #ffd700;
  border: none;
  border-radius: 6px;
  color: #800020;
  cursor: pointer;
  transition: 0.3s ease;
}

.footer-section.newsletter button:hover {
  background-color: #ffdb4d;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #ccc;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-section.map {
    width: 100%;
    height: 250px;
  }

  .footer-section.newsletter form {
    flex-direction: column;
  }

  .footer-section.newsletter input,
  .footer-section.newsletter button {
    width: 100%;
  }

  .footer-socials {
    justify-content: center;
  }
}
