@font-face {
    font-family: 'nexa-bolduploaded_file';
    src: url('/provvisorio/font/nexa_bold-webfont.woff2') format('woff2'),
         url('/provvisorio/font/nexa_bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

body {
    font-family: 'nexa-bolduploaded_file', sans-serif;
    color: #494646;
    font-size: 16px;
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}


a {
    color: #0096C9;
    text-decoration: none;
}

.indirizzo {
    /*text-transform: uppercase;*/
    position: relative;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    padding: 15px 0px;
}

.indirizzo:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 50%;
    width: 40px;
    height: 2px;
    background: #939598;
    transform: translateX(-50%);
}

.indirizzo:after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 40px;
    height: 2px;
    background: #939598;
    transform: translateX(-50%);
}

.legend {
    color: #939598;
}


.container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
}

.content {
  max-width: 980px;
  padding: 0px 20px;
}

.logo {
    max-width: 450px;
}

.under_costruction {
    display: block;
    padding: 10px 20px;
    text-align: center;
    background-color:#939598;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-radius: 2px;
}

@media only screen and (max-width: 600px) {
  .logo {
        max-width: 250px;
        margin: 0 auto;
    }
}

.download {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.download li a {
    display: block;
    position: relative;
    padding: 5px 10px;
    margin: 10px;
    transition: all linear 100ms;
    font-size: 12px;
}
.download li a:hover {
    color: #fff;
}

.download li a:after {
    content: "";
    width: 0px;
    height: 100%;
    background: #0096C9;
    position: absolute;
    top: 0;
    left: 0;
    transition: all linear 100ms;
    z-index: -1;
    border-radius: 2px;
}

.download li a:hover:after {
    width: 100%;
}