* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0a1628;
    color: #ffffff;
    overflow-x: hidden;
}

.nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0.5rem 5%;
    background: rgba(250, 250, 250, 0.5);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #22c55e, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #132462;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 4px;
    background: #05ada4;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}s

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 5% 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text .subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #05ADA4, #05ADA4);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(5,173,164,0.5);
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(5,173,164,0.5);
}

.hero-visual {
    position: relative;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.visual-card {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #22c55e, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.problem-section {
    padding: 4rem 5%;
    background: linear-gradient(180deg, #0a1628 0%, #0f1f3a 100%);
}

.section-content2 {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 50px;
    color: #22c55e;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.section-tag2 {
    display: inline-block;
    padding: 1rem 3rem;
    background: rgba(19, 36, 98, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.section-tag3 {
    display: inline-block;
    padding: 1rem 2rem;
    background: rgba(19, 36, 98, 0.1);
    border: 3px solid rgba(19, 36, 98, 0.7);
    border-radius: 50px;
    color: rgba(255,255,255,1);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.section-tag4 {
    display: inline-block;
    padding: 1rem 2rem;
    background: rgba(19, 36, 98, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.section-title2 {
    font-size: 4rem;
    color:#FFFFFF;
    font-weight: 700; 
    margin-bottom: 1.5rem;
}

.section-title4 {
    font-size: 3rem;
    color:#FFFFFF;
    font-weight: 700; 
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-description2 {
    font-size: 1.3rem;
    color: rgba(255,255,255, 1);
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.8;
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.problem-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(34, 197, 94, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s;
    text-align: center;
}

.problem-card:hover {
    transform: translateY(-10px);
    border-color: rgba(200, 200, 200, 0.5);
    box-shadow: 0 20px 40px rgba(5,173,164,0.5);
}

.problem-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #22c55e;
}

.problem-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.feature-card {
    background: linear-gradient(135deg, rgba(210, 225, 245, 1), rgba(170, 200, 240, 1));
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(8px);
    transition: all 0.3s;
}

.tsolution {
    color: #132462;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
}

.feature-icon3 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #132462, #132462);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.feature-icon2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #132462, #132462);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.impact-section {
    padding: 4rem 5%;
    background: linear-gradient(180deg, #0a1628 0%, #0f1f3a 100%);
}

.impact-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.impact-item {
    padding: 2rem;
}

.impact-item h3 {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #22c55e, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.impact-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.cta-section2 {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #0a1628, #0f1f3a);
    text-align: center;
}

.cta-section {
    padding: 6rem 5%;
    text-align: center;
    background-image:
        linear-gradient(135deg, rgba(10,22,40,0.7), rgba(15,31,58,0.7)),
        url("media/1234.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

footer {
    padding: 3rem 5%;
    background: #050f1e;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/*
.parallax-header {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    background: #00121f;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}
*/

/*=====Capas del parallax====*/
/*
.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}*/

/*
.layer-back {
    background-image: url('./media/cc8.png');
    z-index: 1;
    opacity: 0.6;
}

.layer-mid {
    background-image: url('./media/header1.png');
    z-index: -100;
    opacity: 0.55;
}

.layer-front {
    background-image: url('./media/header1.png');
    z-index: -101;
    opacity: 0.75;
}
*/

/*====Contenido====*/
/*
.header-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    text-align: center;
    padding: 20px;
}
*/

/*
.header-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 15px;
}
*/

/*
.header-content p {
    color: #cfe6f5;
    font-size: 1.1rem;
    margin-bottom: 25px;
}
*/

.highlight {
    color: var(--c-primary);
}

/*=====Botones=====*/
.header-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/*====Mobile====*/
@media (max-width: 600px) {
    .parallax-header {
        height: 70vh;
    }

    /*
    .header-content h1 {
        font-size: 2rem;
    }
    */
}

/*
.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.floating-icon {
  position: absolute;
  width: 40px;
  background-color: #132462;
  opacity: 1;
}
*/

.header {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 30, 0.7) 0%, rgba(20, 20, 50, 0.5) 100%);
    z-index: 2;
    pointer-events: none;
}

/*
.header-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 0 20px;
    color: white;
}
*/

.tprincipal2 {
    font-size: 100px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 10px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

/*
.header-content h3 {
    font-size: clamp(18px, 4vw, 40px);
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 900px;
    line-height: 1.4;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}
*/

/*
.header-buttons2 {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}
*/

/*
.cta-button {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}
*/

.btn-primary {
    background: linear-gradient(135deg, #05ADA4 0%, #037A74 100%);
    color: white;
    border: none;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    color: white;
    font-size: 18px;
    display: none;
}

@media (max-width: 768px) {
    /*
    .header-buttons2 {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    */

    .cta-button {
        width: 100%;
    }
}

.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    margin-bottom: 1.5rem;
}

.feature-icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.impact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.impact-row {
    display: flex;
    align-items: center;
    border-radius: 50px;
    padding: 10px 40px 10px 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.impact-row:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.impact-number {
    font-size: 72px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 30px;
    font-family: 'Arial', sans-serif;
    min-width: 100px;
    text-align: center;
}

.impact-text {
    flex: 1;
    color: white;
}

.impact-text h3 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.impact-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .impact-row {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        border-radius: 30px;
    }
    
    .impact-number {
        margin: 15px 0;
        font-size: 48px;
    }
    
    .impact-icon {
        width: 70px;
        height: 70px;
    }
}

.problem-icon i {
  font-size: 80px;
  text-shadow:
    0 0 4px rgba(255, 255, 255, 0.8),
    0 0 8px rgba(255, 255, 255, 0.6),
    0 0 12px rgba(255, 255, 255, 0.4);
}

.feature-icon4 i {
  font-size: 80px;
  text-shadow:
    0 0 4px rgba(255, 255, 255, 0.8),
    0 0 8px rgba(255, 255, 255, 0.6)
}


/* ===== SECCIÓN SOLUCIÓN ===== */
.solution-section {
  background: #05ada4;
  padding: 80px 20px;
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-tag6 {
  display: inline-block;
  color: #0a1628;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

/* ===== GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card4 {
    grid-column: span 1 !important;
  }
}

/*====Cards normales====*/
.feature-card4 {
  grid-column: span 2;
}

/*====Última fila centrada====*/
.feature-card4:nth-child(4) {
  grid-column: 2 / span 2;
}

.feature-card4:nth-child(5) {
  grid-column: 4 / span 2;
}
/*=====CARDS=====*/
.feature-card4 {
  background: #0a1628;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(10, 22, 40, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card4:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 40px rgba(10, 22, 40, 0.8);
}

/* ===== ICONO ===== */
.feature-icon4 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.feature-icon4 i {
  font-size: 80px;
  color: #ffffff;
}

/* ===== TITULOS ===== */
.tsolution4 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* ===== TEXTO ===== */
.feature-card4 p {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.6;
}

/* ===== FRASE FINAL ===== */
.solution-section h3 {
  color: #0a1628;
}




/*=====HERO=====*/
/* ====== HEADER BASE ====== */
.parallax-header {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ====== CAPAS PARALLAX ====== */
.parallax-layer {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  will-change: transform;
}

.layer-back {
    background-image: url('./media/mapac.png');
    z-index: 1;
    opacity: 0.5;
}

.layer-mid {
    background-image: url('./media/mapac.png');
    z-index: 2;
    opacity: 0.7;
}

.layer-front {
    background-image: url('./media/mapac.png');
    z-index: 3;
}

/* ====== CONTENIDO ====== */
.header-content {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  padding: 0 40px;
}

/* ====== TITULOS ====== */
.tprincipal {
  margin-bottom: 20px;
  font-size: 70px;
    font-family: 'Montserrat', sans-serif;
    color: white;
    text-shadow:
        -2px -2px 0 #132462,
        2px -2px 0 #132462,
        -2px 2px 0 #132462,
        2px 2px 0 #132462,
        -3px 0 0 #132462,
        3px 0 0 #132462,
        0 -3px 0 #132462,
        0 3px 0 #132462;
}

.tsecundario {
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    color: white;
    text-shadow:
        -2px -2px 0 #132462,
        2px -2px 0 #132462,
        -2px 2px 0 #132462,
        2px 2px 0 #132462
}

.header-content h3 {
  font-size: clamp(20px, 3vw, 40px);
  line-height: 1.3;
  margin-bottom: 40px;
}

/* ====== BOTONES ====== */
.header-buttons2 {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.header-buttons2 a {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 50px;
  white-space: nowrap;
}

/* ====== TABLET ====== */
@media (max-width: 1024px) {
  .parallax-header {
    min-height: 650px;
  }

  .header-content {
    padding: 0 30px;
  }
}

/* ====== MÓVIL ====== */
@media (max-width: 768px) {
  .parallax-header {
    min-height: 600px;
  }

  .header-content {
    padding: 60px 20px;
  }

  .header-buttons2 {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
  }

  .header-buttons2 a {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

    .tprincipal {
        font-size: clamp(48px, 8vw, 90px);
        margin-top: 150px;
    }

}

/* ====== MÓVIL PEQUEÑO ====== */
@media (max-width: 480px) {
  .parallax-header {
    min-height: 550px;
  }

  .header-content {
    padding: 60px 20px;
  }

  .header-content h3 br {
    display: none;
  }
}

.subt1 {
  text-align: center;
  margin-top: 100px;
  font-size: 22px;
  color: #ffffff;
  padding: 20px;
  display: inline-block;
  border-radius: 12px;
  border: 2px solid rgba(5, 173, 164, 0.6);
}

.subt2 {
  text-align: center;
  margin-top: 100px;
  font-size: 22px;
  color: #ffffff;
  padding: 20px;
  display: inline-block;
  box-shadow: 
    0 0 10px rgba(5, 173, 164, 0.6),
    0 0 20px rgba(5, 173, 164, 0.4);
  border-radius: 12px;
  border-color: rgba(5, 173, 164, 0.6);
}

.subt3 {
  text-align: center;
  font-size: 22px;
  color: #ffffff;
  margin-top:50px;
  letter-spacing: 0.5px;
  text-shadow:
    0 0 4px rgba(255, 255, 255, 0.8),
    0 0 8px rgba(255, 255, 255, 0.4);
}

.subt4 {
  text-align: center;
  font-size: 22px;
  color: #ffffff;
  margin-top:50px;
  letter-spacing: 0.5px;
  text-shadow:
    0 0 4px rgba(255, 255, 255, 0.8)
}