/* xs */
@media (min-width: 475px) {
    .account {
        display: none;
    }

    .logo {
        display: none;
    }

    .imgG {
        width: 150px;
        height: auto;
    }

    .texts {
        text-align: center;
        width: 200px;
        justify-self: center;
    }

    .logoSite {
        display: none;
    }

}

/* sm */
@media (min-width: 640px) {}

/* md */
@media (min-width: 768px) {
    .account {
        display: flex;
    }

    .logoSite {
        display: flex;
    }

    .imgG {
        width: 200px;
        height: auto;
    }

    .texts {
        text-align: center;
        width: 200px;
        justify-self: center;
    }

    .logoSite {
        display: flex;
    }
}

/* lg */
@media (max-width: 1024px) {}

/* xl */
@media (min-width: 1280px) {}

/* 2xl */
@media (min-width: 1536px) {}