body {
  margin: 0;
  font-family: Arial, sans-serif;
  box-sizing: border-box;

}

/* Slider */
@keyframes slide {
  from {
    transform: translateX(0);
  }

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

.logos {
  overflow: hidden;
  padding: 60px 0;
  /* background: white; */
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  /* background: linear-gradient(to left, rgba(255, 255, 255, 0), white); */
}

.logos:after {
  right: 0;
  /* background: linear-gradient(to right, rgba(255, 255, 255, 0), white); */
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}

.logos-slide img {
  height: 100px;
  margin: 0 40px;
}

/* Slider */
.emphasis {
  color: #42968c;
  font-size: small;
  font-family: 'Courier New', Courier, monospace;
}

.c-logos {
  font-family: 'Courier New', Courier, monospace;
  color: #42968c;

}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.4s ease;
  background: #0b1c34;

}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  line-height: 0.4em;
}

/* .white {
  color: white;
}

.secondary {
  color: #4fd1c5;
} */

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #4fd1c5;
}

.btn {
  background: #4fd1c5;
  padding: 8px 18px;
  border-radius: 6px;
  color: white;
  font-weight: 600;
}

a:hover .btn{
  color:white;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 20px;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.scrolled {
  background: rgba(10, 20, 40, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.open {
  display: flex;
  animation: slideDown 0.35s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */

@media(max-width:768px) {

  .nav-links {
    display: none;
  }

  .menu-btn {
    display: block;
  }

}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0b1c34;
  text-align: center;
}

/* Background */

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right,
      #0b1c34,
      rgba(11, 28, 52, 0.9),
      rgba(11, 28, 52, 0.7));
}

/* Decorative dots */

.dots {
  position: absolute;
  top: 80px;
  right: 40px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  opacity: 0.2;
}


/* Content */

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 0 20px;
  animation: fadeUp 0.8s ease forwards;
}

.hero-tag {
  color: #4fd1c5;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 64px;
  font-weight: 900;
  line-height: 0.95;
  margin: 5px 0;
}

.hero-title.white {
  color: white;
}

.hero-title.secondary {
  color: #4fd1c5;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  max-width: 650px;
  margin: 30px auto;
  line-height: 1.6;
}

/* Buttons */

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {

  background: #4fd1c5;
  color: white;
  /* background: #4fd1c5; */
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  box-shadow: 0 10px 25px rgba(88, 213, 241, 0.3);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  border-color: white;
}

/* Scroll indicator */

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  animation: bounce 2s infinite;
}

.scroll-indicator:hover {
  color: #4fd1c5;
}

/* Animations */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 10px);
  }
}

/* Responsive */

@media (max-width:768px) {

  .hero-title {
    font-size: 42px;
  }

  .hero-desc {
    font-size: 16px;
  }

}


.about-section {
  padding: 120px 20px;
  background: #f8fafc;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Intro */

.about-intro {
  max-width: 700px;
  margin: auto;
  text-align: center;
  margin-bottom: 100px;
}

.about-tag {
  color: #4fd1c5;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 16px;
}

.about-title {
  font-size: 48px;
  font-weight: 900;
  color: #0b1c34;
  margin-bottom: 20px;
}

.about-title span {
  color: #4fd1c5;
}

.divider {
  width: 60px;
  height: 4px;
  background: #4fd1c5;
  margin: 20px auto;
}

.about-text {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.8;
}

/* Grid */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.card {
  padding: 40px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: 0.4s;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.card p {
  line-height: 1.7;
}

/* Vision */

.vision {
  background: #0b1c34;
  color: white;
}

.vision p {
  color: rgba(255, 255, 255, 0.7);
}

/* Mission */

.mission {
  background: #e5e7eb;
  color: #0b1c34;
}

.mission p {
  color: #6b7280;
}

/* Icon */

.icon {
  width: 40px;
  height: 40px;
  color: #4fd1c5;
  margin-bottom: 20px;
}

/* Decorative circle */

.circle {
  position: absolute;
  width: 160px;
  height: 160px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 50%;
  top: -80px;
  right: -80px;
  transition: transform 0.7s;
}

.card:hover .circle {
  transform: scale(1.5);
}

/* Animations */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: 0.6s;
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: 0.6s;
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0);
}

/* Responsive */

@media(max-width:900px) {

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-title {
    font-size: 36px;
  }

}

.values-section {
  padding: 120px 20px;
  background: #e5e7eb;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Header */

.values-header {
  text-align: center;
  margin-bottom: 80px;
}

.values-tag {
  color: #4fd1c5;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 16px;
}

.values-title {
  font-size: 48px;
  font-weight: 900;
  color: #0b1c34;
}

.values-title span {
  color: #4fd1c5;
}

.divider {
  width: 60px;
  height: 4px;
  background: #4fd1c5;
  margin: 24px auto;
}

/* Grid */

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

/* Cards */

.value-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: 0.5s;
}

.value-card:hover {
  background: #0b1c34;
  box-shadow: 0 20px 40px rgba(11, 28, 52, 0.25);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: rgba(249, 115, 22, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin: auto;
  margin-bottom: 20px;
  transition: 0.3s;
}

.value-icon svg {
  width: 28px;
  height: 28px;
  color: #4fd1c5;
}

.value-card:hover .value-icon {
  background: rgba(249, 115, 22, 0.2);
}

.value-title {
  font-weight: 700;
  color: #0b1c34;
  margin-bottom: 10px;
  font-size: 14px;
}

.value-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

.value-card:hover .value-title {
  color: white;
}

.value-card:hover .value-desc {
  color: rgba(255, 255, 255, 0.7);
}

/* Animation */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media(max-width:1100px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:700px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:500px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.services-section {
  padding: 120px 20px;
  background: #f8fafc;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Header */

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.tag {
  color: #4fd1c5;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 12px;
}

.title {
  font-size: 46px;
  font-weight: 900;
  color: #0b1c34;
}

.title span {
  color: #4fd1c5;
}

.divider {
  width: 60px;
  height: 4px;
  background: #4fd1c5;
  margin: 20px auto;
}

/* Tabs */

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
}

.service-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: #e5e7eb;
  color: #6b7280;
  transition: 0.3s;
}

.service-tab.active {
  background: #0b1c34;
  color: white;
  box-shadow: 0 10px 25px rgba(11, 28, 52, 0.2);
}

.service-tab:hover {
  background: #d1d5db;
}

/* Grid */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Cards */

.service-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px;
  transition: 0.4s;
  opacity: 0;
  transform: translateY(20px);
}

.service-card.show {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  border-color: #4fd1c5;
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.1);
}

.icon-box {
  width: 40px;
  height: 40px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.icon-box svg {
  width: 20px;
  height: 20px;
  stroke: #4fd1c5;
}

.service-title {
  font-size: 18px;
  font-weight: 700;
  color: #0b1c34;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* Responsive */

@media(max-width:1000px) {

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width:600px) {

  .services-grid {
    grid-template-columns: 1fr;
  }

  .title {
    font-size: 34px;
  }

}

.partners-section {
  padding: 120px 20px;
  background: #0b1c34;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* Header */

.partners-header {
  text-align: center;
  margin-bottom: 70px;
}

.tag {
  color: #4fd1c5;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 12px;
}

.partnership-title {
  font-size: 46px;
  font-weight: 900;
  color: white;
}

.partnership-title span {
  color: #4fd1c5;
}

.divider {
  width: 60px;
  height: 4px;
  background: #4fd1c5;
  margin: 20px auto;
}

.subtitle {
  color: rgba(255, 255, 255, 0.6);
  max-width: 650px;
  margin: auto;
  font-size: 15px;
}

/* Grid */

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}


/* Reveal animation */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media(max-width:1000px) {

  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }

}

@media(max-width:700px) {

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .title {
    font-size: 34px;
  }

}

.industries-section {
  padding: 120px 20px;
  background: #e5e7eb;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Header */

.industries-header {
  text-align: center;
  margin-bottom: 70px;
}

.tag {
  color: #4fd1c5;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 12px;
}

.title {
  font-size: 46px;
  font-weight: 900;
  color: #0b1c34;
}

.title span {
  color: #4fd1c5;
}

.divider {
  width: 60px;
  height: 4px;
  background: #4fd1c5;
  margin: 20px auto;
}

/* Grid */

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Card */

.industry-card {
  background: white;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 28px;
  transition: 0.4s;
  opacity: 0;
  transform: translateY(20px);
}

.industry-card.show {
  opacity: 1;
  transform: translateY(0);
}

.industry-card:hover {
  border-color: #4fd1c5;
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.08);
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(11, 28, 52, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: 0.3s;
}

.industry-card:hover .icon-box {
  background: rgba(249, 115, 22, 0.1);
}

.icon-box svg {
  width: 24px;
  height: 24px;
  stroke: #0b1c34;
}

.industry-card:hover svg {
  stroke: #4fd1c5;
}

.industry-title {
  font-weight: 700;
  color: #0b1c34;
  margin-bottom: 10px;
}

.industry-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* Reveal animation */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media(max-width:1000px) {

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width:600px) {

  .industries-grid {
    grid-template-columns: 1fr;
  }

  .title {
    font-size: 34px;
  }

}

.stories-section {
  padding: 120px 20px;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Header */

.stories-header {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 800;
}

.tag {
  color: #4fd1c5;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 12px;
}

.title {
  font-size: 46px;
  font-weight: 900;
  color: #0b1c34;
}

.title span {
  color: #4fd1c5;
}

.divider {
  width: 60px;
  height: 4px;
  background: #4fd1c5;
  margin: 20px auto;
}

/* Grid */

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */

.story-card {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  background: white;
  transition: 0.4s;
  opacity: 0;
  transform: translateY(20px);
}

.story-card.show {
  opacity: 1;
  transform: translateY(0);
}

.story-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

/* Card Header */

.story-header {
  background:#0b1c34;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.story-header svg {
  width: 18px;
  height: 18px;
  stroke: #4fd1c5;
}

.story-sector {
  color: #4fd1c5;
  font-size: 15px;
  text-align: center;
  font-weight: 800;
  letter-spacing: 1px;
  align-self: center;
  text-transform: uppercase;
}

/* Card Body */

.story-body {
  padding: 12px;
}

.story-title {
  font-weight: 700;
  color: #0b1c34;
  margin-bottom: 18px;
}

.story-block {
  margin-bottom: 14px;
}

.story-label {
  color: #4fd1c5;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.story-text {
  color: #6b7280;
  font-size: 14px;
  margin-top: 4px;
  line-height: 1.6;
}

/* Reveal animation */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media(max-width:1000px) {

  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width:650px) {

  .stories-grid {
    grid-template-columns: 1fr;
  }

  .title {
    font-size: 34px;
  }

}

.contact-section {
  position: relative;
  padding: 120px 20px;
  background: #0b1c34;
  color: white;
  overflow: hidden;
}

.bg-image {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80") center/cover;
  opacity: 0.1;
}

.container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  z-index: 2;
}

/* Header */

.contact-header {
  text-align: center;
  margin-bottom: 70px;
}

.tag {
  color: #4fd1c5;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

.contact-title {
  font-size: 48px;
  font-weight: 900;
  margin-top: 10px;
  color: #ffffff;
}

.contact-title span {
  color: #4fd1c5;
}

.divider {
  width: 60px;
  height: 4px;
  background: #4fd1c5;
  margin: 20px auto;
}

/* Grid */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* Contact Info */

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.icon-box {
  width: 48px;
  height: 48px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box svg {
  width: 20px;
  height: 20px;
  stroke: #4fd1c5;
}

.info-item h3 {
  margin-bottom: 4px;
}

.info-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* Social */

.social {
  margin-top: 30px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-links a {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.social-links a:hover {
  background: rgba(249, 115, 22, 0.2);
  color: #4fd1c5;
}

/* CTA */

.cta-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 16px;
  backdrop-filter: blur(6px);
}

.cta-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Buttons */

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn-primary {
  background: #4fd1c5;
  padding: 14px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  color: white;
  font-weight: 600;
}

.btn-primary:hover {
  box-shadow: 0 10px 30px #4fd1c5;
  color: white;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 14px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  color: white;
  font-weight: 600;
}

.btn-outline:hover {
  border-color: white;
}

/* Animations */

.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: 0.6s;
}

.reveal {
  transform: translateY(30px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.active {
  opacity: 1;
  transform: none;
}

/* Responsive */

@media(max-width:900px) {

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .title {
    font-size: 36px;
  }

}

.footer {
  background: #0b1c34;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* Brand */

.footer-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
}

.brand-primary {
  color: white;
}

.brand-secondary {
  color: #4fd1c5;
}

.brand-muted {
  color: rgba(255, 255, 255, 0.4);
}

/* Copyright */

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* Responsive */

@media(max-width:700px) {

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

}