@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Diseño mobile first */
body {
    width: 100%;
    margin: 0 auto;
    font-family: 'Poppins' !important;
    color: rgb(73, 72, 72);
}
html {
    scroll-behavior: smooth;
}

.section {
    scroll-margin-top: 80px;
}
.quienes-somos {
    margin: 0 auto;
    margin-bottom: 20px;
    color: #03203c;
}
h1{
    font-size: 20px;
}

h2 {
    padding-bottom: 25px;/*Le pondria mas padding*/
    color:#03203c;
    font-size: 26px;
}
.izq-h2 {
    text-align: left;
}
header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 72px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    padding-bottom: 5px;
    background-color: #ffffff;
    transition: box-shadow 0.3s ease; 
    z-index: 1;
}
header.scrolled {
    box-shadow: 0px 5px 15px rgba(33,33,33, 0.3);
}
.header-login{
    position:relative;
}
/* Estilo al contador de visitas */
.visit-counter {
    font-size: 1.5em;
    color: #333;
    text-align: center;
    margin-top: 20px;
}

.visit-counter span {
    font-weight: bold;
    color: #007bff;
}

.logo {
    display: flex;
    align-items: center;
    text-align: center;
}
.logo img {
    width: 45px;
    margin-right: 10px;
}
.logo-crud {
    margin-bottom: 6px;
}
.vin {
    color: #05386B;
    font-weight: bolder;
    font-size: 30px;
    display: none;
}
.text-contacto .vin {
    display: block;    
}
.tech {
    color: #5CDB95;
    font-size: 30px;
    display: none;
}
.text-contacto .tech {
    display: block;    
}
.text-contacto {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centrar horizontalmente */
    text-align: center; /* Opcional: Centrar el texto dentro de los elementos */
}
.text-contacto .logo {
    margin-top: 20px;
}
.link-noticias {
    display: block;
}
.menu ul li:not(.menu-contacto) a:hover {
    color: #5CDB95;
}

.menu-contacto a:hover {
    color: #05386B;    
}
.menu {
    display: none;
}
.navbar {
    display: inline-block;
    width: 50%;
    vertical-align: top;
}
.menu-hamburguesa {
    background-color: white;
    padding: 5px 10px;
    border-radius: 50px;
}
.menu-hamburguesa button {
    background: none;
    border: none;
    font-size: 34px;
    cursor: pointer;
    color:#05386B;
}
.menu ul {
    list-style: none;
    display: block;
    text-align: center;
}

.menu ul li {
    margin: 0;
    padding: 0;
}

.menu ul li a {
    text-decoration: none;
    color: #333333;
    padding: 10px 20px;
    display: block;
    border-bottom: 2px solid transparent; /* Borde invisible inicialmente */
    transition: border-color 0.3s ease;
    border-radius: 5px;
}
 
.menu-noticias, 
.logout {
    margin-left: 50px;
    background-color: #f0f0f0;
    color: rgb(255, 255, 255); 
    width: 80px;
    padding: 50px 20px;
    border-radius: 5px;
}
.menu-noticias, .logout:hover {
    transition: background-color 0.2s ease;
    background-color: transparent;
    color: #5CDB95; /* Cambia el color del texto */
}

.inicio {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.content-noticias {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    margin-top: 70px;
    text-align: center;
}

.image-container {
    width: 100%;
    overflow: hidden; /* Asegura que la imagen no se salga del contenedor */ 
}

.image-container img { /*Imagen portada*/
    width: 100%;
    height: auto;
    display: block;
    margin-top: 30px;
    
}

.bordes-redondos {
    border-radius: 60px;
}
.text-container { /*Texto portada*/
    text-align: center;
    margin-top: 20px;
    width: 92%;

    
}
.text-container p{
    color: #03203c;

}

.show {
    display: block;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
/*------------------SERVICIOS--------------------------------*/

.container-servicios {
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container-servicios h2{
    font-size: 34px;
    margin-top: 25px;
    text-align: center;
}
.container-servicios p{
    text-align: center;
}

.ver-mas {
    background-color: #5CDB95;
    border-radius: 50px;
    padding: 10px;
    margin-top: 20px;
    margin-bottom: 10px; 
    width: 125px;
    display: inline-block;
    justify-content: center; 
    align-items: center; 
    text-align: center;
    color: #05386B;
    font-size: 1.2rem;
    opacity: 0; 
    transition: opacity 0.5s ease-out; 
    border: 2px solid #5CDB95; 
}

.ver-mas:hover {
    transition: background-color 0.2s ease;
    background-color: transparent;
    color: #05386B;
    border: 2px solid #05386B;
    font-weight: 500;
}
.sacar {
    text-decoration: none;
}
.sacar-decoracion {
    text-decoration: none;
    color: inherit;
}

.centrado-div {/*Conj texto e imagen de los servicios*/
    width: 80%;
    display: flex;
    justify-content: space-between;
}

.tarjeta-tipo-erp {
    flex: 1 1 30%;
    margin: 10px; 
    height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.container-tarjetas-servicios {
    display: flex;
    flex-wrap: wrap; 
    gap: 10px; 
}
.tarjeta-servicio {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribuye los elementos verticalmente */
    width: 100%; /* Asegura que la tarjeta ocupe todo el ancho del contenedor */
    text-align: center; /* Centra el texto */
    text-decoration: none; /* Elimina el subrayado de los enlaces */
    color: inherit; /* Mantiene el color del texto */
}
.section.servicios {
    padding-top: 110px;
    padding-bottom: 110px; 
}
.section.nosotros {
    padding-top: 110px;
    padding-bottom: 110px; 
}
.section.formulario {
    padding-top: 110px;
    padding-bottom: 110px; 
}
.alinear-izq {
    text-align: center;
}

.servicio,
.noticia {
    padding: 20px;
    max-width: 350px;
    min-width: 250px;
    /* Ancho máximo para los servicios */
    width: 94%;
    /* 100% del contenedor */
    text-decoration: none;
    color:#03203c;
}
.servicio {
    background-color: rgba(255, 255, 255, 0.1); /* Fondo blanco transparente */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Sombra suave */
    padding: 15px;
    border-radius: 10px;
    flex: 1 1 calc(25% - 20px); /* Tamaño flexible de las tarjetas */
}


.noticias-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* Apilar servicios en columna para móviles */
    align-items: center;
    justify-content: center;
}
.servios-container {
    display: flex;
    flex-wrap: wrap;
}
.servicios {
    padding: 30px;
    background-color:#f9f9f9;
    text-align: center;
    box-shadow: 0px -4px 6px rgba(0, 0, 0, 0.1);
}
.tarjeta-boton {
    flex: 1 1 calc(25% - 50px); /* Ajusta el tamaño de las tarjetas */
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra los elementos horizontalmente */    
}

.icono { /*iconos en tarjetas de servicios*/
    font-size: 3rem;
    color:#05386B;
}
.servicios h2{
    text-align: center;
}
h3 {/*Titulo servicios home y nuestros nombres*/
    margin-bottom: 10px;
}
.listas {/*Listado caracteristicas servicios - lo resaltado*/
    list-style-type: none;
}

/* Efecto de resaltado para los títulos */
.messy-highlight {
    background: linear-gradient(transparent 10%,#5CDB95 80%);
    display: inline-block;
    transform: rotate(-1deg);
}
.izquierda {/*Texto de los servicios*/
    width: 100%;
    font-size: 1rem;
    text-align: justify;
    line-height: 1.5;
}
.derecha {/*Imagenes de los servicios*/
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.arriba,
.abajo {/*Img de los servicios por separado*/
    flex: 1;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
img {
    width: 100%;
    height: auto;
}
.content-tipos-erp {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}


.nosotros {
    padding: 30px;
    background-color: white;
    text-align: center;
    box-shadow: 0px -4px 6px rgba(0, 0, 0, 0.1);
}


.equipo-container {
    display: flex;
    flex-direction: column;
    /* Apilar fotos en columna para móviles */
    align-items:start;
    justify-content: center;
    gap: 20px;
    /* Espacio entre miembros en móvil */
}
.miembro-equipo {
    background-color: white;
    width: 100%;
    padding: 0;
    border-radius: 8px;
    text-align: center;
    color:#03203c;
}
.miembro-equipo img {
    width: 200px;
    /* Ajusta el tamaño de las fotos según tu preferencia */
    height: 200px;
    /* Ajusta el tamaño de las fotos según tu preferencia */
}

/*------------------NOTICIAS--------------------------------*/
.noticia h3 a {
    text-decoration: none;
    color: black;
}
#noticias{
    display: block;
    background-color: #f9f9f9;
}
.parrafo-textarea { /*Desarrollo crear noticia*/
    white-space: pre-wrap;    
}
.text-justify {/*Desarrollo de noticia CRUD*/
    text-align: justify;
}
.contenedor-img {/*imagen de las noticias*/
    width: 700px;
    height: auto;
}
.contenedor-noticias {
    max-height: auto;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 30px;
}
.contenedor-img-noticia {
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Centra verticalmente */
}
.contenedor-crud {
    max-height: 500px;
    overflow-y: auto;
    margin-top: 100px; 
    margin-left: 0px;
    padding-left: 0px;
}
.custom-textarea { /*Edició desarrollo noticia*/
    height: 800px; 
}
.boton-crud {
    width: 100px;
    padding: 12px;
    /* Aumenta el padding del botón para más confort #5cdbd5*/
    background-color: #05386B;
    color:#5CDB95;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-right: 20px;
    text-decoration: none;   
    text-align: center;     
}
.boton-crud:hover {
    background-color: #5CDB95;
    color:#05386B;        
    text-decoration: none; 
}
/*------------------FORMULARIO CONSULTA--------------------------------*/
button[type="submit"] { /*Boton form consulta-Edición noticia-login-crear noticia*/
    width: 100%;
    padding: 12px;
    background-color: #05386B;
    color:white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;

}
button[type="submit"]:hover {/*Hover envio de formulario*/
    background-color: #5CDB95;
    color:#05386B;
}
.formulario {/*Consulta y login*/
    padding: 30px;
    background-color: #f9f9f9;
    text-align: center;
    box-shadow: 0px -4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form { /*Clase de form login y consulta*/
    max-width: 400px;
    margin: 20px auto;
    margin-top: 35px;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
textarea {/*Textarea form consulta y desarrollo noticia*/
    height: 100px;
    resize: none;
}
.form-group {
    margin-bottom: 15px;
    text-align: left;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #05386B;
    font-weight: bold;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: #f5f5f5;
    color: #05386B;
    box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: #5CDB95;
    outline: none;
    background-color: #fff;
}

/*------------------SECCION TECNOLOGIAS------------------*/
.logo-tecnologia {
    width: 80px;
    height: auto;
}

.section .content-logo-tecnologia {
    height: 100%;           
    display: flex;
    justify-content: flex-start; 
    align-items: center;        
    overflow-x: hidden;
}
.section .content-logo-tecnologia img {
    margin-right: 10px; /* Ajusta el espacio entre la imagen y el texto */
    flex: 0 0 auto;
}

/*------------------ADMIN--------------------------------*/
.logout-margin {
    padding: 25px;
    margin-top: 20px;
}



/*------------------FOOTER--------------------------------*/
footer {
    background-color: #5CDB95;
    color: #05386B;
    padding: 20px;
    box-shadow: 0px -4px 6px rgba(0, 0, 0, 0.1);
}
.footer-contenido {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 35px;
}
.footer-seccion {
    margin-bottom: 20px;
}
.footer-seccion h3,
.footer-seccion h4 {
    margin-bottom: 10px;
    font-weight: bold;
}
.footer-seccion p {
    margin-bottom: 20px;
    font-size: 14px;
}
.footer-redes a {
    color: #05386B;
    font-size: 24px;
    margin: 0 10px;
    text-decoration: none;
}
.footer-redes a:hover {
    color: #ffffff;
}
.footer-seccion ul {
    list-style: none;
    padding: 0;
}
.footer-seccion ul li {
    margin: 10px 0;
}
.footer-seccion ul li a {
    color: #05386B;
    text-decoration: none;
    font-size: 14px;
}
.footer-seccion ul li a:hover {
    color: #ffffff;
}
.footer-copyright {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    font-size: 14px;
}
.sacar-hipervinculo {
    text-decoration: none;
}

.titulos {
    font-size: 1.3rem;
}

@media (min-width: 768px) {
    body {
        padding-top: 80px;
        width: 100%;
    }
    header {
        padding: 15px 120px;
    }
    h1{
        font-size: 30px;
    }
    h2 {
        font-size: 50px;
    }
    .menu, .vin, .tech {
        display: block;
    }
    .titulos {
        font-size: 1.3rem;
    }
    /* Botón Contactanos del nav */
    
    .sacar {
        text-decoration: none;
    }

    .menu-contacto {
        background-color: #5CDB95;
        color: #05386B;
        padding: 50px;
        width: 150px;
        height: 40px;
        display: flex;
        justify-content: center; /* Centra horizontalmente */
        align-items: center; /* Centra verticalmente */
        text-align: center;
        border-radius: 50px;
        
    }
    
    .menu-contacto:hover{
        transition: background-color 0.2s ease;
        background-color: transparent;
        color: #05386B;
        border: none;
        border: 2px solid #05386B;
        
    }

    .menu-hamburguesa {
        display: none;
    }
    .menu ul {
        display: flex;
        align-items: center; /* Centra verticalmente los elementos del menú */
        justify-content: space-around; /* Distribuye los elementos uniformemente */
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .menu ul li {
        margin-left: 20px;
    }
    .menu ul li a {
        padding: 10px;
    }
    .menu ul li:not(.menu-contacto) a:hover {
        border-bottom: 2px solid #5CDB95;
    }
    
    .vin {
        color: #05386B;
        font-size: 30px;
    }
    .tech {
        color: #5CDB95;
        font-size: 30px;
    }
    .logo img {
        padding-top: 11px;
        width: 45px;
    }
    .section {
        scroll-margin-top: 100px;
    }
    .inicio {
        flex-direction: column; /* Cambiado de row a column */
        align-items: center; /* Cambiado de stretch a center */
        padding-bottom: 0px
    }
    .image-container {
        width: 100%; /* Cambiado de 50% a 100% */
        margin-top: 0;
        margin-left: 0;
        height: 600px;
    }
   
    .image-container img {
        width: 100%;
    }
    .text-container h2 {
        font-size: 60px;
        font-weight: 700;
        margin-left: 120px;
        margin-right: 120px;
    }
    .text-container p{
        font-size: 20px;
        font-weight: 400;
        margin-left: 120px;
        margin-right: 120px;
    }
    .container-servicios h2{
        text-align: left;
    }
    .container-servicios p{
        text-align: left;
    }
    .servicios-container p {
        text-align: center;
    }
    .alinear-izq {
        text-align: left;
    }
    .servicios {
        text-align: center;
        padding: 50px;
    }
   
    .noticias-container {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .servicios-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        justify-content: center;
    }

    .servicio {
        width: 600px;
    }
    .nosotros {
        text-align: center;
        padding: 50px;
    }
    .quienes-somos {
        margin: 0 auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 20px;
        padding-left: 100px;
        padding-right: 100px;
        color: #03203c;
    }
    .equipo-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .miembro-equipo {
        width: 25%;
    }
    .miembro-equipo img {
        width: 80%;
        height: 80%;
    }
    .formulario {
        padding: 50px;
        text-align: center;
    }
    .contact-form {
        max-width: 600px;
        padding: 30px;
    }
    .form-group input,
    .form-group textarea, .boton-crud {
        font-size: 18px;
        padding: 15px;
    }
    button[type="submit"] {
        padding: 15px;
        font-size: 18px;
    }
    .form-login {
        padding: 0;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .header-login {
        position: fixed;
        box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.1);
    }
    .footer-contenido {
        flex-direction: row;
        justify-content: space-evenly;
        text-align: center;
        align-items: flex-start;
    }
    .footer-seccion {
        margin-bottom: 0;
        width: 30%;
    }
    .footer-copyright {
        text-align: center;
    }
    .izquierda, .derecha{
        width: 50%;
    }
    .izquierda h2{
        text-align: start;
    }
    .izquierda{
        margin-right: 40px;
    }

    /*------------------SECCION TECNOLOGIAS------------------*/
.logo-tecnologia {
    width: 80px;
    height: auto;
}

.section .content-logo-tecnologia {
    height: 100%;           /* Asegúrate de que el contenedor tenga una altura definida */
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center;    /* Centra verticalmente */
    text-align: center;     /* Asegura que el texto esté centrado */
}

.section .content-logo-tecnologia img {
    margin-right: 10px; /* Ajusta el espacio entre la imagen y el texto */
}
.animated-image-sn.visible {
    animation: slideLeft 1s ease-out;
    opacity: 1;
}
/* Orden de texto y form en contacto */
.container-contacto {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-contacto {
    flex: 1;
    margin-right: 20px;

    display: flex;
    flex-direction: column;
    align-items: center; /* Centra horizontalmente */
    text-align: center; /* Opcional: centra el texto dentro de cada elemento */
}

.text-contacto p {
    font-size: 1.3rem;
    padding-left: 70px;
    padding-right: 50px;
}

.formulario-contacto {
    flex: 1;
}
}

@media (max-width: 768px){
    .centrado-div {
        flex-direction: column;
        align-items: center;
        display: flex;
    }
    .menu-noticias{
        margin-left: 0px;
        width: auto;
    }
    .container-servicios {
        margin-top: 100px;
    }
    
    .contenedor-noticias {
        margin-top: 100px;
    }
    
    .derecha { /* Imagenes de los servicios*/
        flex-direction: column;
    }
    
    .arriba,
    .abajo {
        width: 100%;
        padding: 20px;
    }

    .inicio {
        flex-direction: column; /* Cambiado de row a column */
        align-items: center; /* Cambiado de stretch a center */
        padding-bottom: 0px;
    }

    .text-container {
        margin-top: 70px; /* Margen superior */
        padding: 10px; /* Padding */
    }
    .image-container {
        margin-top: 0px; /* Margen superior */
        margin-bottom: 0px;
        
    }
    .servicios-container {
        display: flex;
        flex-direction: column;
        gap: 10px; /* Espacio entre las tarjetas */
        width: 100%; /* Ocupa todo el ancho del contenedor */
    }
    .tarjeta-boton {
        width: 100%; /* Asegúrate de que cada tarjeta ocupe el 100% del ancho del contenedor */
    }

}

/* ANIMACIONES */

/* TARJETAS */
.tarjeta-servicio {
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out; 
}

.tarjeta-servicio.visible {
    opacity: 1;
    transform: translateY(0);
}

/* BOTONES */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.ver-mas.visible {
    animation: fadeIn 1s ease-in-out; /* Aplica la animación */
    opacity: 1.5; /* Hace visible el botón */
}

/* IMAGENES EN SERVICIOS Y TIPOS DE ERPs */
.arriba img, .abajo img {
    opacity: 0;
    transform: scale(0.5);
    animation: zoomIn 1s forwards;
}

.arriba img {
    animation-delay: 0s;
}

.abajo img {
    animation-delay: 1s;
}

@keyframes zoomIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hidden {
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.visible {
    opacity: 1;
    transform: scale(1);
}

/* ANIMACIÓN IMAGEN DE PORTADA */

.animated-image {
    width: 100%;
    height: auto;
    animation: fadeIn 4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
} 

/* ANIMACIÓN TITULOS */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animated-text {
    opacity: 0;
    transition: opacity 1s ease-out;
}
.animated-text.visible {
    animation: slideDown 2s ease-out;
    opacity: 1;
}

/* ANIMACIÓN EN SOBRE NOSOTROS */
@keyframes slideLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animated-image-sn {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.animated-image-sn.visible {
    opacity: 1;
}

.animated-text-sn {
    opacity: 0;
    transition: opacity 5s ease-out;
}

.animated-text-sn.visible {
    animation: fadeIn 5s ease-out;
    opacity: 1;
}

/* ANIMACIÓN DEL FORMULARIO DE CONTACTO */
@keyframes slideRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.animated-element {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.animated-element.visible {
    animation: slideRight 1s ease-out;
    opacity: 1;
}




