/*(c) Nastrova International Limited Holdings*/
    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
    }

    header {
        background-color: transparent;
        color: #333; /* Cambié el color del texto para que sea visible sobre el fondo transparente */
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center; /* Ahora el contenido del header estará centrado horizontalmente */
    }

    .logo img {
        height: 100px; /* Ajusta el tamaño de la imagen según sea necesario */
    }

    .menu {
        display: flex;
    }

    .menu-item {
        margin-right: 20px;
        font-size: 0.5rem; /* Ajusta el tamaño de las letras a 12px */
        
        font-family:'Julius Sans One','Alex Brush';
    }

    @media (max-width: 768px) {
        .menu-item {
           
            display:none;
        }
    }
    .menu-item a:hover{
        text-decoration:none;
        color:gray;
    }

footer {
    display: flex;
    justify-content: space-between;
    background-color: white;
    color: black;
    padding: 20px;
}

.left-section {

    align-items: center; /* Para alinear verticalmente la imagen y el texto */
}

.left-section img {
    width: 50%; /* Ajusta el ancho según el tamaño de tu logo */
    margin-right: 10px; /* Espacio entre la imagen y el texto */
}

.right-section {
    color: black;
}

.top-right {
    display: flex;
    align-items: center; /* Para alinear verticalmente el slogan y los iconos */
    justify-content: space-between; /* Para separar el slogan y los iconos */
}

.social-icons img {
    width: 30px; /* Ajusta el tamaño de los iconos según tus necesidades */
    margin-left: 5px; /* Espacio entre los iconos */
}

.bottom-right {
    margin-top: 10px; /* Espacio entre las secciones */
}
