@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* --- Reset y Estilos Globales --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f8fafc;
  color: #4b5563;
  line-height: 1.5;
}

.container {
  max-width: 80rem; /* 1280px */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem; /* 24px */
  padding-right: 1.5rem; /* 24px */
}

.text-center {
  text-align: center;
}

/* --- Clases de utilidad --- */
.bg-white {
  background-color: #ffffff;
}
.bg-light {
  background-color: #f8fafc;
}
.texto-verde {
  background: #03a64a;
  background-clip:  #03a64a;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bg-gradient-icsi {
  background: #03a64a;
}

/* --- Secciones Generales --- */
.section {
  padding-top: 3rem; /* 64px */
  padding-bottom: 3rem; /* 64px */
}

.section-title {
  font-size: 1.875rem; /* 30px */
  line-height: 2.25rem; /* 36px */
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #111827; /* gray-900 */
}

.section-subtitle {
  margin-top: 1.5rem; /* 24px */
  margin-left: auto;
  margin-right: auto;
  max-width: 48rem; /* 768px */
  font-size: 1.125rem; /* 18px */
  line-height: 1.75rem; /* 28px */
  color: #4b5563; /* gray-600 */
  text-align: center;
}
.section-subtitle-light {
  margin-top: 1rem; /* 16px */
  font-size: 1.125rem; /* 18px */
  color: #4b5563; /* gray-600 */
}

.section-header {
  margin-bottom: 3rem; /* 48px */
}



/* --- Hero Section --- */
.hero-section {
  position: relative;
  color: #ffffff;
  background-image: url("https://images.unsplash.com/photo-1621588105525-3347896173da?q=80&w=2670&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  padding-top: 8rem; /* 128px */
  padding-bottom: 8rem; /* 128px */
  text-align: center;
}

.hero-title {
  font-size: 40px; /* Equivalente a text-4xl */
  /*line-height: 3rem;*/
  font-weight: 800;
  letter-spacing: -0.025em;
}

.hero-subtitle {
  color: #03a64a;
}

.hero-text {
  margin-top: 1.5rem; /* 24px */
  max-width: 48rem; /* 768px */
  font-size: 1.125rem; /* 18px */
  color: #e5e7eb; /* gray-200 */
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  margin-top: 2.5rem; /* 40px */
  display: flex;
  flex-direction: column;
  gap: 1rem; /* 16px */
  justify-content: center;
}

/* --- About Us Section --- */
.about-company-name {
  font-size: 1rem; /* 16px */
  font-weight: 600;
  line-height: 1.75rem; /* 28px */
  color: #03a64a;;
}

.about-company-name + .section-title {
  margin-top: 0.5rem; /* 8px */
}

/* --- Services Section --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem; /* 32px */
}

.service-card {
  background-color: #ffffff;
  padding: 2rem; /* 32px */
  border-radius: 0.5rem; /* 8px */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}
.service-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.service-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem; /* 48px */
  width: 3rem; /* 48px */
  border-radius: 0.375rem; /* 6px */
  color: #ffffff;
  background: #03a64a;;
}

.service-title {
  margin-top: 1.5rem; /* 24px */
  font-size: 1.125rem; /* 18px */
  font-weight: 600;
  color: #111827; /* gray-900 */
}

.service-description {
  margin-top: 0.5rem; /* 8px */
  font-size: 1rem; /* 16px */
  color: #4b5563; /* gray-600 */
}

/* --- Stats Section --- */
.stats-section {
  text-align: center;
}

.stats-grid {
  margin-top: 3rem; /* 48px */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem; /* 20px */
}

.stat-card {
  background-color: #ffffff;
  padding: 25px 15px;
  border-radius: 15px;
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(3, 166, 74, 0.1);
}

.stat-icon {
  color: #03a64a;
  margin-bottom: 15px;
  height: 2.5rem; /* 40px */
  width: 2.5rem; /* 40px */
  margin-left: auto;
  margin-right: auto;
}

.stat-number-container {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}

.stat-label {
  font-size: 1rem;
  color: #4b5563;
  margin-top: 5px;
}

/* --- CTA Section --- */
.section-cta {
  background-color: #ffffff;
  padding: 4rem 1.5rem; /* 64px 24px */
}

.cta-banner {
  padding: 2rem; /* 32px */
  border-radius: 1rem; /* 16px */
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  background:#03a64a;;
}

.cta-title {
  font-size: 1.875rem; /* 30px */
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #ffffff;
}

.cta-text {
  margin-top: 1rem; /* 16px */
  max-width: 42rem; /* 672px */
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem; /* 18px */
  color: #e5e7eb; /* gray-200 */
}





/*-------------------------Sección de Comparación-------------------------*/

.comparison-section {
    max-width: 800px;
    width: 90%; 
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    margin-top: 100px;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
    /* Animación de entrada para la sección completa */
    animation: fadeIn 0.8s ease-out forwards;
}

.comparison-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: black; /* Azul más oscuro para el título */
    margin: 0 0 10px 0;
}

.subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

/* --- Estilos para Móvil (Por defecto) --- */
.comparison-header {
    display: none;
}

.comparison-table {
    padding: 0; 
}

.comparison-row {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    /* Preparamos las filas para la animación */
    opacity: 0;
    transform: translateY(20px);
    /* Aplicamos la animación de entrada */
    animation: fadeInUp 0.5s ease-out forwards;
}

/* Delay escalonado para cada fila */
.comparison-row:nth-child(2) { animation-delay: 0.2s; }
.comparison-row:nth-child(3) { animation-delay: 0.4s; }
.comparison-row:nth-child(4) { animation-delay: 0.6s; }
.comparison-row:nth-child(5) { animation-delay: 0.8s; }
.comparison-row:nth-child(6) { animation-delay: 1.0s; }
.comparison-row:nth-child(7) { animation-delay: 1.2s; }


.comparison-row:last-child {
    margin-bottom: 0;
}

.feature-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 15px;
}

.feature-values-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
    width: 100%; 
}

.feature-value {
    flex: 1; 
    padding: 0 5px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-label {
    display: block;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
    font-weight: 500;
}

.feature-value i {
    font-size: 1.6rem;
    /* Animación para los íconos */
    transform: scale(0);
    animation: popIn 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
    /* Delay para que aparezcan después de la fila */
    animation-delay: inherit; /* Hereda el delay de la fila padre */
}

.feature-value .fa-check-circle {
    color: #03a64a;
}

.feature-value .fa-times-circle {
    color: #d9534f;
}

.feature-value.our-company {
    background-color: rgba(3, 166, 74, 0.1);
    border-radius: 8px;
    padding: 10px 5px;
    margin: 0 5px;
}

.feature-value.our-company .mobile-label {
    color: #03a64a;;
    font-weight: 600;
}
/* --- Animaciones --- */
/* Animación de aparición suave */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Animación de deslizamiento hacia arriba y aparición */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animación de "Pop" para los íconos */
@keyframes popIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}


/* ------------------ Media Queries para Diseño Responsivo ----------------- */

/* sm: 640px */
@media (min-width: 640px) {
  .section {
    padding-top: 3rem; /* 96px */
    padding-bottom: 3rem; /* 96px */
  }
  .section-title {
    font-size: 2.25rem; /* 36px */
    line-height: 2.5rem; /* 40px */
  }
  .hero-content {
    padding-top: 10rem; /* 160px */
    padding-bottom: 10rem; /* 160px */
  }
  .hero-title {
    font-size: 3rem; /* 48px */
  }
  .hero-text {
    font-size: 1.25rem; /* 20px */
  }
  .hero-buttons {
    flex-direction: row;
  }
  .cta-banner {
    padding: 3rem; /* 48px */
  }
  .cta-title {
    font-size: 2.25rem; /* 36px */
  }
}

/* A partir de 768px (tablets) */
/* md: 768px */
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-banner {
    padding: 3rem; /* 48px */
  }
}

/* A partir de 1024px (escritorios) */
/* lg: 1024px */
@media (min-width: 1024px) {
  .container {
    padding-left: 2rem; /* 32px */
    padding-right: 2rem; /* 32px */
  }
  .hero-content {
    padding-top: 12rem; /* 192px */
    padding-bottom: 12rem; /* 192px */
    text-align: left;
  }
  .hero-title {
  font-size: 60px; /* Equivalente a text-4xl */
  line-height: 4rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

  .hero-text {
    margin-left: 0;
    margin-right: 0;
  }
  .hero-buttons {
    justify-content: flex-start;
  }
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .section-cta {
    padding: 6rem 2rem; /* 96px 32px */
  }
  .cta-banner {
    padding: 4rem; /* 64px */
  }
}



/* --- Estilos para Escritorio (Pantallas más anchas de 768px) --- */
@media (min-width: 768px) {
    h2 { font-size: 2.5rem; }
    .subtitle { font-size: 1.1rem; }

    .comparison-table {
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        overflow: hidden;
        padding: 0; 
    }
    
    .comparison-header {
        display: grid; 
        grid-template-columns: 2fr 1fr 1fr;
        background-color: #f8f9fa;
        font-weight: 600;
    }

    .header-item { padding: 15px 20px; text-align: center; }
    .header-item:first-child { text-align: left; }
    
    .our-company-header {
        background-color: #015a28;
        color: #ffffff;
    }

    .comparison-row {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        align-items: center;
        border: none;
        margin-bottom: 0;
        padding: 0; 
        border-radius: 0;
        border-bottom: 1px solid #e0e0e0;
        /* Transición suave para el efecto hover */
        transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    }
    
    .comparison-row:last-child { border-bottom: none; }

    .comparison-row:hover {
        /* Efecto de "levantar" la fila en hover */
        transform: scale(1.02);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .feature-name { text-align: left; padding: 15px 20px; margin-bottom: 0; }
    
    .feature-values-wrapper { display: contents; border-top: none; padding-top: 0; }
    
    .feature-value {
        padding: 15px 20px; 
        flex: none; 
        flex-direction: row;
        justify-content: center;
    }
    
    .mobile-label { display: none; }

    .feature-value.our-company {
        background-color: rgba(3, 166, 74, 0.05);
        border-right: 1px solid #f0f0f0; 
        padding: 15px 20px;
        margin: 0;
    }
    .feature-value.our-company .mobile-label { color: #555; font-weight: 500; }
    .feature-value.our-company .fa-check-circle { color: #03a64a; }
}







.logo_link {
  text-decoration: none;
  color: #0070c0;
  transition: color 0.3s ease;
  font-weight: 900;
  font-size: 1em;
}
.logo_link:hover {
  color: #03a64a;
  text-decoration: none;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(to right, #0070c0, #03a64a);
  -webkit-background-clip: text;
  background-clip: text;
}

/*
 * Footer
 */
footer {
  background-color: #e6e6e6;
  padding: 10px;
  text-align: justify;
  color: #646464;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/**
*HEADER 
*/

.contenedor {
  max-width: 100%;
  margin: auto;
}

.color_degradado_icsi {
  color: transparent;
  background: linear-gradient(to right, #0070c0, #03a64a);
  -webkit-background-clip: text;
  background-clip: text;
  
}

header {
  background-color: #1e1e1e;
  padding: 10px 20px; /* Añade un poco de padding en la parte superior e inferior */
}

header .textologo {
  font-weight: 900;
  font-size: 1.8em;
}

.contenedor_logo_y_texto {
  display: flex; /* Mantén flex para alinear los elementos en una fila */
  align-items: center; /* Alinea verticalmente los elementos en el centro */
  justify-content: space-between; /* Añade espacio entre los elementos */
  gap: 15px; /* Espacio entre el logo y el texto */
}

.contenedor_imagen_logo_header {
  background-image: url("../Recursos_Media/logoicsi.png");
  background-size: contain; /* Ajusta la imagen para que se contenga dentro del contenedor */
  background-repeat: no-repeat;
  background-position: right;
  width: 70px; /* Ajusta el tamaño del contenedor */
  height: 50px; /* Ajusta el tamaño del contenedor */
}

#menu_principal {
  display: flex; /* Utiliza flex para alinear los enlaces en una fila */
  gap: 15px; /* Añade espacio entre los elementos */
  padding: 0; /* Elimina el padding automático */
  margin: 0; /* Elimina el margen predeterminado */
}

header a {
    font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
  font-size: 18px;
  text-decoration: none;
  font-weight: 600;
  color: white;
  padding: 8px 10px 4px; /* Ajusta el padding para los enlaces */
  transition: color 0.3s ease, background 0.3s ease; /* Transiciones suaves para los hover */
}

header a:hover {
  background: linear-gradient(to right, #0070c0, #03a64a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.menu-toggle {
  display: none;
  font-size: 2.5rem;
  cursor: pointer;
  color: white;
}

.menu-toggle-icon {
  width: 32px;
  height: 32px;
}



/* Estilos responsivos para pantallas pequeñas */

/*---------------------Mobile design------------------------*/
@media (max-width: 768px) {
  #menu_principal {
    display: none;
    flex-direction: column;
    align-items: center; /* <-- AÑADE ESTA LÍNEA */
  gap: 0px; /* Añade espacio entre los elementos */

    width: 100%;
    text-align: center;
    position: absolute;
    top: 60px; /* Ajusta la posición para que no se superponga con el header */
    left: 0;
    background-color: #1e1e1e;
    box-shadow: 0 4px 10px rgba(247, 244, 244, 0.2);
    z-index: 100; /* <-- AÑADE ESTA LÍNEA */

  }

  #menu_principal.active {
    display: flex;
  }

  #menu_principal a {
    padding: 15px;
    border-bottom: 1px solid #333;
    width: 100%; /* <-- AÑADE ESTA LÍNEA */
  }
#menu_principal form {
  padding: 15px 0; /* <-- CAMBIA 20px POR 15px para que coincida con los enlaces */
}
  .menu-toggle {
    display: block;
  }

  .menu-toggle-icon {
    width: 32px; /* Define el ancho del ícono */
    height: 32px; /* Define la altura del ícono, manteniendo la proporción */
  }

  .header-container {
    justify-content: space-between;
  }

  .contenedor_imagen_logo_header {
    display: none;
  }
}


/* Estilos para pantallas medianas (769px a 1200px) */
@media (min-width: 769px) and (max-width: 1200px) {
  /* Estilos para el logo en pantallas de 769px o más */
  .logo {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .contenedor_imagen_logo_header {
    display: block; /* Muestra el logo */
    height: 42px; /* Tamaño del logo */
    width: auto;
  }
}

/**-------------------------------------*/
/* todo lo que esté dentro de .searchWidget NO se verá afectado por estilos globales */

.searchWidget .searchBox {
  position: relative;
  max-width: 200px;
  background: #2f3640;
  border-radius: 50px;
}

.searchWidget .searchInput {
  width: 100%;
  border: none;
  background: none;
  outline: none;
  color: white;
  font-size: 15px;
  padding: 12px 40px 12px 12px; /* deja espacio a la derecha (40px = ancho del botón) */
  box-sizing: border-box;
}
.searchWidget .searchInput::placeholder {
  color: rgb(218, 218, 218); /* O el color que desees */
}

.searchWidget .searchButton {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%); /* centra verticalmente */
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(90deg, #2af598 0%, #009efd 100%);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /* transición para animación */
  transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

/* hover effect */
.searchWidget .searchButton:hover {
  color: #fff;
  background-color: #1a1a1a;
  box-shadow: rgba(0, 0, 0, 0.5) 0 10px 20px;
  transform: translateY(-50%) translateY(-3px); /* mantiene centrado pero sube un poco */
}

/* button pressing effect */
.searchWidget .searchButton:active {
  box-shadow: none;
  transform: translateY(-50%) translateY(0); /* vuelve a su posición original */
}



/* ----------------------WHATSAPP--------------------------------------- */
/* Estilos para el botón flotante de WhatsApp */
.whatsapp-fab {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Estilos para la ventana de chat */
.whatsapp-chat-box {
  position: fixed;
  bottom: 120px;
  right: 40px;
  width: 350px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  z-index: 1001;
  display: none; /* Oculto por defecto */
  flex-direction: column;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

/* Cabecera de la ventana de chat */
.chat-header {
  background-color: #075e54;
  color: white;
  padding: 20px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.chat-header h3 {
  margin: 0;
  font-size: 18px;
}

.chat-header p {
  margin: 5px 0 0;
  font-size: 14px;
  opacity: 0.9;
}

/* Cuerpo del chat con el mensaje de bienvenida */
.chat-body {
  background-color: #e5ddd5;
  padding: 20px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAARMAAAARCAYAAAA/x3RRAAABcElEQVR4nO3SQQ3AIADDsJT7d/8sB+MgjAjo22Nk65EzZ84sCMGIBTFiwYgFYxYMWTBiwYgFYxYMWTBiwYgFYxYMWTBiwYgFYxYMWTBiwYgFYxYMWTBiwYgFYxYMWTBiwYgFYxYMWTBiwYgFYxYMWTBiwYgFYxYMWTBiwYgFYxYMWTBiwYgFYxYMWTBiwYgFYxYMWTBiwYgFYxYMWTBiwYgFYxYMWTBiwYgFYxYMWTBiwYgFYxYMWTBiwYgFYxYMWTBiwYgFYxYMWTBiwYgFYxYMWTBiwYgFYxYMWTBiwYgFYxYMWTBiwYgFYxYMWTBiwYgFYxYMWTBiwYgFYxYMWTBiwYgFYxYMWTBiwYgFYxYMWTBiwYgFYxYMWTBiwYgFYxYMWTBiwYgFYxYMWTBiwYgFYxYMWTBiwYgFYxYMWTBiwYgFYxYMWTBiwYgFYxYMWbBiARYsGLFgZMMGNkyYsWDExsAbBwMsegQ/xOQAAAAASUVORK5CYII=");
}

.welcome-message {
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.4;
  max-width: 90%;
}

/* Pie de la ventana de chat con el campo de texto y el botón */
.chat-footer {
  display: flex;
  padding: 10px;
  background-color: #f0f0f0;
}

.chat-footer input {
  flex-grow: 1;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 10px 15px;
  font-size: 14px;
  outline: none;
}

.whatsapp-chat-box .chat-footer button {
  /* Propiedades para anular el estilo general */
  background: #075e54; /* Usamos un color de WhatsApp para consistencia */
  border: none;
  box-shadow: none;
  padding: 0; /* Clave para mantener la forma circular */
  font-size: 20px; /* Mantenemos el tamaño del ícono */
  font-weight: normal; /* Anulamos el 'bold' del estilo general */

  /* Propiedades originales para la forma y alineación */
  color: white;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  margin-left: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease; /* Efecto hover suave */
}

/* Opcional: Un pequeño efecto al pasar el mouse */
.whatsapp-chat-box .chat-footer button:hover {
  background-color: #128c7e;
}


/* ======== FOOTER ======== */
/*
 * Footer
 */
footer {
  background-color: #e6e6e6;
  padding: 10px;
  text-align: center;
  color: #646464;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

footer p {
  margin-bottom: 0rem;
}
