.techno {
    display: block;
    position: relative;
    text-align: center;
    background-color: var(--bg_footer);
    color: var(--font);
    font-size: 20px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
}

.techno .extra a {
    line-height: 65px;
    margin: 0 20px;
    opacity: .6;
    text-transform: uppercase;
    display: inline-block;
    font-size: 18px;
    position: relative;
    text-decoration: none;
    color: inherit;

}

.techno .extra a:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 8px;
    height: 2px;
    background: var(--font);
    transition: all .3s ease-out;
    width: 0;
}

.techno .extra a:hover:after {
    width: 100%;
}

.techno .prog {
    display: block;
    position: relative;
    height: 55px;
    line-height: 55px;
}

.techno .prog .code {
    padding: 0 18px;
    opacity: .6;
}

.techno .prog .code:hover {
    opacity: .8;
}

.techno .bottom {
    display: block;
    position: relative;
    height: 45px;
    line-height: 45px;
    background: var(--font);
    color: white;
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
    max-width: 1200px;
    margin: auto;
    border-bottom: 2px solid var(--bleu);
}

.techno .bottom svg {
    vertical-align: middle;
    display: inline-block;

}

@media only screen and (max-width: 1028px) {
    .extra{display: none;}
}