*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body
{
    font-family: 'open sans';
}

.contenedor
{
    padding: 60px 0;
    width: 90%;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
}

.titulo
{
    color:lightcoral;
    font-size: 30px;
    text-align: center;
    margin-bottom: 60px;
}

header
{
    width: 100%;
    height: auto; /* Cambiado de 630px fijo a auto */
    min-height: 500px; /* Altura mínima para pantallas grandes */
    background: #FF512F;
    background: -webkit-linear-gradient(to right, hsla(35, 88%, 52%, 0.788), hsla(10, 100%, 59%, 0.815)), url(../IMAGENES/FONDO.PNG); 
    background: linear-gradient(to right, hsla(35, 88%, 52%, 0.788), hsla(10, 100%, 59%, 0.822)), url(../IMAGENES/FONDO.PNG); 
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

/* Indices */
nav
{
    box-shadow: 0 10px 6px 0 rgba(0, 0, 0, 0.6);
    text-align: right;
    padding: 20px 0px 15px 0;
    background: #FF512F;
    background: -webkit-linear-gradient(to right, rgb(240, 150, 25), rgb(255, 81, 46)); 
    background: linear-gradient(to right, rgb(240, 150, 25), rgb(255, 81, 46)); 
}


nav > a
{
    color:white;
    font-weight: 300;
    text-decoration: none;
    margin-right: 40px;
}

/* Indices, cuando pase el mouse */
nav > a:hover
{
    font-weight: underline;
    color: black;
    text-decoration: underline; 
}

header .textos-header
{
    display: flex;
    height: 430px;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.textos-header h1
{
    font-size: 60px;
    color: whitesmoke;

}

.textos-header h2
{
    font-size: 40px;
    font-weight: 300;
    color: whitesmoke;
    
}

.wape
{
    position: absolute;
    bottom: 0;
    width: 100%;
}

.contenedor-sobre-nosotros
{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap; /* Agregado para responsividad */
}

.imagen-about-sobre_nosotros
{
    width: 100%; /* Cambiado de 25% a 100% para móviles */
    margin-bottom: 20px;
}

.imagen-about-us
{
    width: 100%; /* Cambiado de 48% a 100% para móviles */
    margin-bottom: 20px;
}

.sobre-nosotros .contenido-textos
{
    width: 100%; /* Cambiado de 48% a 100% para móviles */
}

.contenido-textos h3 span
{
    background: skyblue;
    color: whitesmoke;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    width: 30px;
    height: 30px;
    padding: 3px;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 5);
    margin-right: 5px;
}

.contenido-textos p
{
    padding: 0px 0px 30px 15px;
    font-weight: 300;
    text-align: justify;

}
.portafolio{
    background: #f2f2f2; 
}

.galeria-port{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.imagen-port{
    width: 24%;
    margin-bottom: 10px;
    height: 150px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, .5);
}
.imagen-port > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hover-galeria{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    transform: scale(0);
    background: hsla(16, 100%, 50%, 0.753);
    transition: transform .5s;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;    
}
.hover-galeria img{
    width: 50px;
}
.hover-galeria p{
    color: white;
}
.imagen-port:hover .hover-galeria{
    transform: scale(1);
}


.cards
{
    display:flex;
    justify-content: space-evenly;
}
.cards .card{
    background: #ff8c42; /* Naranja más claro y atractivo */
    display: flex;
    width: 46%;
    min-height: 200px; /* Altura mínima en lugar de fija */
    height: auto; /* Permite que crezca según el contenido */
    align-items: center;
    justify-content: space-evenly;
    border-radius: 10px; /* Bordes más redondeados */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Sombra más suave */
    padding: 20px; /* Añadir padding interno */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transición suave */
    margin-bottom: 15px; /* Espacio entre tarjetas cuando se apilan */
}

.cards .card:hover {
    transform: translateY(-5px); /* Efecto de elevación al pasar el mouse */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4); /* Sombra más pronunciada al hover */
}

.cards .card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 3px solid #fff;
    border-radius: 50%;
    display: block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra para la imagen */
    margin-right: 15px; /* Espacio entre imagen y texto */
}

.cards .card > .contenido-texto-card {
    width: 65%; /* Un poco más de espacio para el texto */
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cards .card > .contenido-texto-card h4 {
    margin-bottom: 10px; /* Espacio entre título y párrafo */
    font-size: 18px; /* Tamaño de fuente más grande para el título */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); /* Sombra sutil para el texto */
}

.cards .card > .contenido-texto-card p {
    font-weight: 300;
    padding-top: 5px;
    line-height: 1.4; /* Mejor espaciado entre líneas */
    font-size: 14px; /* Tamaño de fuente ligeramente más pequeño para que quepa más texto */
}
.about-services
{
    background: #f2f2f2;
    padding-bottom: 30px;
}
.servicio-cont
{
    display:flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Agregado para responsividad */
}
.servicio-ind{
    width: 100%; /* Cambiado de 28% a 100% para móviles */
    text-align: center;
    margin-bottom: 30px;
}
.servicio-ind img
{
    width: 90%;
}
.servicio-ind h3
{
    margin:10px;
}
.servicio-ind p
{
    font-weight: 300;
    text-align: justify;
}

footer
{
    background: black;
    padding: 60px 0 30px 0;
    margin: auto;
    overflow: hidden;
}

.contenedor-footer
{
    display: flex;
    width: 90%;
    justify-content: space-evenly;
    margin: auto;
    padding-bottom: 40px;
    border-bottom: 1px solid white;
}

.content-foo
{
    text-align: center;    
}

.content-foo h4
{
    color: white;
    border-bottom: 3px solid violet;
    padding: 5px;
    margin-bottom: 10px;
}

.content-foo p > a
{
    color: gray;
    text-decoration: none;
}

.content-foo p > a:hover
{
    font-weight: 400;
    color: darkred;
}

.titulo-final
{
    text-align: center;
    font-size: 24px;
    margin: 20px 0 0 0;
    color: gray;
}

/* Modern Navigation Styles */
.animated-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%; /* Cambiado de 90% a 100% */
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    box-sizing: border-box; /* Agregado */
}

.animated-nav.scrolled {
    padding: 10px 5%;
    background: rgba(0, 0, 0, 0.9);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: rotate(10deg) scale(1.1);
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-item {
    position: relative;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 15px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.nav-item:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.nav-item:hover {
    color: #feb47b;
}

.nav-item:hover:before {
    transform: translateX(0);
}

.nav-item span {
    position: relative;
    z-index: 2;
}

.login-btn {
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
    border-radius: 30px;
    color: white;
    padding: 8px 20px;
    box-shadow: 0 4px 15px rgba(255, 126, 95, 0.4);
    transition: all 0.3s ease;
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 126, 95, 0.6);
    color: white;
}

.login-btn:before {
    display: none;
}

.hamburger {
    display: none; /* Oculto por defecto */
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .animated-nav {
        padding: 10px 5%; /* Reducido el padding en móviles */
    }
    
    .logo img {
        height: 35px; /* Reducido el tamaño del logo */
    }
    
    .nav-links {
        position: absolute;
        top: 100%; /* Cambiado de 70px a 100% */
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95); /* Más opaco */
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        transform: translateY(-100%); /* Mejor animación */
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-item {
        margin: 10px 0;
        width: 90%;
        text-align: center;
    }
    
    .hamburger {
        display: flex; /* Mostrar en móviles */
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}
/* Estilos para la nueva sección de galería */
.galeria-seccion {
    background: linear-gradient(to right, rgba(255, 165, 0, 0.1), rgba(255, 140, 0, 0.2));
    padding: 60px 0;
}

.galeria-contenedor {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
}

.galeria-item {
    width: 48%;
    height: 300px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.galeria-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 128, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.galeria-hover h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 10px;
    transform: translateY(-20px);
    transition: transform 0.5s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.galeria-hover p {
    color: white;
    font-size: 16px;
    transform: translateY(20px);
    transition: transform 0.5s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.galeria-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.galeria-item:hover img {
    transform: scale(1.1);
}

.galeria-item:hover .galeria-hover {
    opacity: 1;
}

.galeria-item:hover .galeria-hover h3,
.galeria-item:hover .galeria-hover p {
    transform: translateY(0);
}

/* Adaptación para dispositivos móviles */
@media screen and (max-width: 768px) {
    .galeria-item {
        width: 100%;
        height: 250px;
    }
}

/* Media Queries mejoradas para responsividad completa */
@media screen and (max-width: 768px) {
    /* Header responsivo */
    header {
        min-height: 400px;
        background-attachment: scroll; /* Mejor rendimiento en móviles */
    }
    
    .textos-header h1 {
        font-size: 3rem;
        padding: 0 20px;
        text-align: center;
    }

    .textos-header h2 {
        font-size: 1.5rem;
        padding: 0 20px;
        text-align: center;
    }

    /* Navegación ya está configurada */
    
    /* Sección sobre nosotros */
    .contenedor-sobre-nosotros {
        flex-direction: column;
        align-items: center;
    }

    .imagen-about-sobre_nosotros,
    .imagen-about-us,
    .sobre-nosotros .contenido-textos {
        width: 90%;
        margin-bottom: 20px;
    }

    /* Galería de cursos */
    .galeria-port {
        flex-direction: column;
        align-items: center;
    }

    .imagen-port {
        width: 90%;
        height: 200px;
        margin-bottom: 15px;
    }

    /* Cards responsivas */
    .cards {
        flex-direction: column;
        align-items: center;
    }

    .cards .card {
        width: 90%;
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .cards .card img {
        margin-right: 0;
        margin-bottom: 15px;
        width: 80px;
        height: 80px;
    }

    .cards .card > .contenido-texto-card {
        width: 100%;
    }

    /* Servicios */
    .servicio-cont {
        flex-direction: column;
        align-items: center;
    }

    .servicio-ind {
        width: 90%;
    }

    /* Footer */
    .contenedor-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .content-foo {
        margin-bottom: 20px;
        width: 90%;
    }

    /* Galería nueva sección */
    .galeria-item {
        width: 100%;
        height: 250px;
        margin-bottom: 15px;
    }
}

/* Media query para pantallas muy pequeñas */
@media screen and (max-width: 480px) {
    .contenedor {
        width: 95%;
        padding: 40px 0;
    }
    
    header {
        min-height: 350px;
    }
    
    .textos-header h1 {
        font-size: 2.5rem;
    }

    .textos-header h2 {
        font-size: 1.2rem;
    }

    .titulo {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .cards .card {
        width: 95%;
        padding: 10px;
    }
    
    .imagen-port {
        width: 95%;
        height: 180px;
    }
    
    .galeria-item {
        height: 200px;
    }
    
    nav {
        padding: 15px 0px 10px 0;
    }
    
    nav > a {
        margin-right: 20px;
        font-size: 14px;
    }
}

/* Media query para tablets */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .contenedor-sobre-nosotros {
        flex-direction: column;
        align-items: center;
    }
    
    .imagen-about-sobre_nosotros,
    .imagen-about-us {
        width: 60%;
        margin-bottom: 20px;
    }
    
    .sobre-nosotros .contenido-textos {
        width: 80%;
    }
    
    .cards .card {
        width: 45%;
        margin-bottom: 20px;
    }
    
    .imagen-port {
        width: 30%;
    }
    
    .servicio-ind {
        width: 45%;
    }
    
    .galeria-item {
        width: 48%;
    }
}

/* Modern Navigation Styles */
.animated-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 90%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.animated-nav.scrolled {
    padding: 10px 5%;
    background: rgba(0, 0, 0, 0.9);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: rotate(10deg) scale(1.1);
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-item {
    position: relative;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 15px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.nav-item:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.nav-item:hover {
    color: #feb47b;
}

.nav-item:hover:before {
    transform: translateX(0);
}

.nav-item span {
    position: relative;
    z-index: 2;
}

.login-btn {
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
    border-radius: 30px;
    color: white;
    padding: 8px 20px;
    box-shadow: 0 4px 15px rgba(255, 126, 95, 0.4);
    transition: all 0.3s ease;
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 126, 95, 0.6);
    color: white;
}

.login-btn:before {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: all 0.3s ease;
}
/* Responsive Navigation */
@media (max-width: 768px) {
    .animated-nav {
        padding: 10px 5%; /* Reducido el padding en móviles */
    }
    
    .logo img {
        height: 35px; /* Reducido el tamaño del logo */
    }
    
    .nav-links {
        position: absolute;
        top: 100%; /* Cambiado de 70px a 100% */
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95); /* Más opaco */
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        transform: translateY(-100%); /* Mejor animación */
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-item {
        margin: 10px 0;
        width: 90%;
        text-align: center;
    }
    
    .hamburger {
        display: flex; /* Mostrar en móviles */
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Ajuste para el contenido principal */
body {
    padding-top: 70px; /* Espacio para la navegación fija */
}

@media (max-width: 768px) {
    body {
        padding-top: 60px; /* Menos espacio en móviles */
    }
}
/* Estilos para la nueva sección de galería */
.galeria-seccion {
    background: linear-gradient(to right, rgba(255, 165, 0, 0.1), rgba(255, 140, 0, 0.2));
    padding: 60px 0;
}

.galeria-contenedor {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
}

.galeria-item {
    width: 48%;
    height: 300px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.galeria-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 128, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.galeria-hover h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 10px;
    transform: translateY(-20px);
    transition: transform 0.5s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.galeria-hover p {
    color: white;
    font-size: 16px;
    transform: translateY(20px);
    transition: transform 0.5s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.galeria-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.galeria-item:hover img {
    transform: scale(1.1);
}

.galeria-item:hover .galeria-hover {
    opacity: 1;
}

.galeria-item:hover .galeria-hover h3,
.galeria-item:hover .galeria-hover p {
    transform: translateY(0);
}

/* Adaptación para dispositivos móviles */
@media screen and (max-width: 768px) {
    .galeria-item {
        width: 100%;
        height: 250px;
    }
}

/* Typography Enhancements */
body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.textos-header h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    letter-spacing: 1px;
}

.textos-header h2 {
    font-size: 2rem;
    font-weight: 500;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.4);
}

.titulo {
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.titulo::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
    bottom: -10px;
    left: 20%;
    border-radius: 10px;
}

.contenido-textos h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contenido-textos p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.card p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.content-foo h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.content-foo p a {
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.content-foo p a:hover {
    color: #ff7e5f;
}

.titulo-final {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Animation classes for ScrollReveal */
.reveal-left {
    visibility: hidden;
}

.reveal-right {
    visibility: hidden;
}

.reveal-up {
    visibility: hidden;
}

.reveal-down {
    visibility: hidden;
}

.reveal-zoom {
    visibility: hidden;
}

.reveal-rotate {
    visibility: hidden;
}

/* Animation for page load */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-item {
    animation: fadeInDown 0.5s ease forwards;
    opacity: 0;
}

.nav-item:nth-child(1) { animation-delay: 0.1s; }
.nav-item:nth-child(2) { animation-delay: 0.2s; }
.nav-item:nth-child(3) { animation-delay: 0.3s; }
.nav-item:nth-child(4) { animation-delay: 0.4s; }
.nav-item:nth-child(5) { animation-delay: 0.5s; }
