* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    box-shadow: none;
    outline: none;
    border: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    border-radius: 2px;
}
:focus:not(:active) {
    outline: 2px solid #0060ae;
    outline-offset: 2px;
}
html, body {
    width: 100%;
    height: 100%;
    background-color: #282828;
}
body {
    --font-size: 1.15vw;
    font-family: 'Manrope', sans-serif;
    background-color: var(--color-white);
    color: var(--color-grey-dark);
    color: #222;
    line-height: 1.2;
    font-size: var(--font-size);
}
img {
    display: block;
}
a:not(.button) {
    font-weight: 500;
    color: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.1s ease-in-out;
}
a:not(.button):hover {
    color: #e38f00 !important;
}
button, .button {
    --color: #e38f00;
    display: inline-grid;
    grid-template-columns: auto min-content;
    min-height: 60px;
    min-width: 60px;
    align-items: center;
    gap: 10px;
    background-color: var(--color);
    line-height: 20px;
    font-family: inherit;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    padding: 5px 5px 5px 20px;
    border-radius: 20px;
    text-decoration: none;
    vertical-align: middle;
    text-wrap: balance;
    cursor: pointer;
    transition: background-color 0.1s ease-in-out;
}
button:hover, a.button:hover {
    --color: #cf7e00;
}
button.blue, .button.blue {
    --color: #2fa0fb;
}
button.blue:hover, .button.blue:hover {
    --color: #0277bd;
}
button.grey, .button.grey {
    --color: #e8e8e8;
    --iconcolor: #bbb;
    color: #666;
    text-shadow: none;
}
button.grey:hover, .button.grey:hover {
    --color: #d4d4d4;
    --iconcolor: #999;
}
button div.icon, .button div.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    min-width: 50px;
    max-width: 50px;
    height: 50px;
    min-height: 50px;
    max-height: 50px;
    border-radius: 15px;
    background-color: #fff;
}
button div.icon svg, .button div.icon svg {
    color: var(--iconcolor, var(--color));
    transition: color 0.1s ease-in-out;
}
button.disabled, .button.disabled,
button.loading, .button.loading {
    opacity: 0.5;
    cursor: default;
}
button.loading, .button.loading {
    color: transparent;
    background-image: url(loading_white.svg);
    background-size: auto 70%;
    background-position: center;
    background-repeat: no-repeat;
}
@media (max-width: 1200px) {
    button, .button {
        font-size: 17px;
        min-height: 50px;
        min-width: 50px;
    }
    button div.icon, .button div.icon {
        width: 40px;
        min-width: 40px;
        max-width: 40px;
        height: 40px;
        min-height: 40px;
        max-height: 40px;
    }
}
header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: max-content auto max-content;
    align-items: center;
    gap: 20px;
    background-color: #fff;
    width: calc(100% - 160px);
    height: 110px;
    font-size: 22px;
    padding: 20px 80px;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
header a.logo img {
    height: 70px;
}
header nav.menu ul,
header ul.actions {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 45px;
}
header ul.actions {
    column-gap: 20px;
    justify-content: flex-end;
}
@property --shake {
    syntax: '<length>';
    inherits: false;
    initial-value: 0px;
}
header ul.actions li.register .button {
    position: relative;
    animation: 
        register_shake 1s linear infinite,
        register_shakeintensity 1s linear;
    animation-timeline: auto, scroll();
}
@keyframes register_shakeintensity {
    0%, 44.9% { --shake: 0px; }
    45%       { --shake: 2px; }
    100%      { --shake: 7px; }
}
@keyframes register_shake {
    0%, 100%  { left: 0; }
    8%        { left: calc(var(--shake) * -1); }
    16%       { left: var(--shake); }
    24%       { left: calc(var(--shake) * -1); }
    32%       { left: var(--shake); }
    40%       { left: calc(var(--shake) * -0.5); }
    48%       { left: calc(var(--shake) * 0.5); }
    56%, 100% { left: 0; }
}
header nav.menu ul li.selected,
menu.mobile div.container div.menu div {
    font-weight: bold;
}
header ul.actions a:not(.button) {
    color: #0060ae;
}
header ul.actions li.lang,
footer div.content div.info div.lang {
    position: relative;
}
footer div.content div.info div.lang {
    display: inline-block;
    margin-top: 15px;
}
header ul.actions li.lang div.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: none;
    opacity: 0;
}
footer div.content div.info div.lang div.dropdown {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 0;
    display: none;
    opacity: 0;
}
header ul.actions li.lang button.toggle,
footer div.content div.info div.lang button.toggle,
header ul.actions li.lang div.dropdown a.button,
footer div.content div.info div.lang div.dropdown a.button {
    grid-template-columns: min-content auto min-content;
    font-weight: normal;
}
header ul.actions li.lang button.toggle:before,
header ul.actions li.lang div.dropdown a.button:before,
footer div.content div.info div.lang button.toggle:before,
footer div.content div.info div.lang div.dropdown a.button:before {
    content: '';
    display: block;
    background-size: cover;
    height: 15px;
    min-height: 15px;
    max-height: 15px;
    width: 22px;
    min-width: 22px;
    max-width: 22px;
}
header ul.actions li.lang button.toggle[lang='it']:before,
header ul.actions li.lang div.dropdown a.button[lang='it']:before,
footer div.content div.info div.lang button.toggle[lang='it']:before,
footer div.content div.info div.lang div.dropdown a.button[lang='it']:before {
    background-image: url(icons/flag_it.png);
}
header ul.actions li.lang button.toggle[lang='en']:before,
header ul.actions li.lang div.dropdown a.button[lang='en']:before,
footer div.content div.info div.lang button.toggle[lang='en']:before,
footer div.content div.info div.lang div.dropdown a.button[lang='en']:before {
    background-image: url(icons/flag_en.png);
}
footer div.content div.info div.lang button.toggle div.icon svg {
    rotate: 180deg;
}
header ul.actions li.menuburger {
    display: none;
}
header ul.actions li.menuburger button {
    padding: 5px;
    gap: 0;
}
header ul.actions li.menuburger button div.icon {
    --color: #fff;
    background-color: initial;
}
menu.mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 18px;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
}
menu.mobile div.container {
    position: absolute;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 300px;
    max-height: calc(100% - 20px);
    background-color: #fff;
    padding: 20px;
    border-radius: 0 0 30px 30px;
    overflow: auto;
}
menu.mobile div.container button.close {
    align-self: end;
    padding: 5px;
    gap: 0;
    margin: -10px -10px 0 0;
}
menu.mobile div.container button.close div.icon {
    --color: #fff;
    background-color: initial;
}
menu.mobile div.container div.menu {
    display: flex;
    flex-direction: column;
}
menu.mobile div.container div.menu div,
menu.mobile div.container div.menu a:not(.button) {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 15px;
    border-bottom: 1px solid #f4f4f4;
}
menu.mobile div.container div.menu a.login {
    color: #0060ae;
    border-bottom: none;
    margin-bottom: 15px;
}
@media (max-width: 1600px) {
    header {
        padding-left: 30px;
        padding-right: 30px;
    }
    header nav.menu ul {
        column-gap: 30px;
    }
}
@media (max-width: 1400px) {
    header {
        width: calc(100% - 80px);
    }
    header a.logo img {
        height: 50px;
    }
    header nav.menu ul {
        column-gap: 20px;
    }
    header ul.actions {
        column-gap: 15px;
    }
}
@media (max-width: 1200px) {
    header {
        grid-template-columns: min-content auto;
    }
    header nav.menu {
        display: none;
    }
    header ul.actions li.menuburger {
        display: initial;
    }
}
@media (max-width: 1000px) {
    header a.logo img {
        height: 40px;
    }
}
@media (max-width: 850px) {
    header ul.actions li.login,
    header ul.actions li.register {
        display: none;
    }
}
@media (max-width: 600px) {
    header {
        width: calc(100% - 30px);
        height: 90px;
        padding-left: 20px;
        padding-right: 20px;
    }
    header ul.actions {
        gap: 10px;
    }
    menu.mobile div.container {
        width: calc(100% - 30px);
        right: 15px;
    }
}
@media (max-width: 550px) {
    header a.logo {
        width: 55px;
        overflow: hidden;
    }
}
main {
    display: block;
    --main-padding-top: 150px;
    --main-padding-bottom: 100px;
    --main-padding-horizontal: 80px;
    padding: var(--main-padding-top) var(--main-padding-horizontal) var(--main-padding-bottom) var(--main-padding-horizontal);
    background-color: #effaff;
}
@media (max-width: 1100px) {
    main {
        --main-padding-horizontal: 30px;
    }
    main section h1,
    main section div.caption,
    main section h2,
    main section div.subcaption {
        padding: 0;
    }
}
@media (max-width: 600px) {
    main {
        --main-padding-top: 130px;
    }
}
main section {
    position: relative;
}
main section h1,
main section div.caption,
main section h2,
main section div.subcaption {
    color: #2fa0fb;
    text-align: center;
    font-size: calc(1.82 * var(--font-size));
    line-height: 1;
    text-wrap: balance;
}
main section h1,
main section h2,
main section div.caption {
    font-weight: 700;
    font-size: calc(3.65 * var(--font-size));
}
main section div.subcaption {
    margin-top: 10px;
}
@media (max-width: 450px) {
    main section h1,
    main section h2,
    main section div.caption {
        font-size: calc(2.7 * var(--font-size));
    }
    main section div.subcaption {
        font-size: calc(1.5 * var(--font-size));
    }
}
footer {
    color: #fff;
    padding: 40px;
    background-color: #282828;
    background-image: url(footer_bg.svg);
    background-size: contain;
    background-position: top right;
    background-repeat: no-repeat;   
}
footer div.content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
    row-gap: 20px;
    margin: 0 auto;
}
footer div.content a.logo {
    align-self: start;
    justify-self: start;
}
footer div.content a.logo img {
    height: 70px;
}
footer div.content div.info {
    color: #939393;
    font-size: 14px;
}
footer div.content div.info div.name {
    font-size: 17px;
    font-weight: bold;
}
footer div.content div.info div.address {
    font-weight: 600;
}
footer div.content div.info div.details span {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    cursor: pointer;
    transition: color 0.1s ease-in-out;
}
footer div.content div.info div.details span:after {
    content: '';
    display: block;
    background-image: url(icons/footer_copy.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 9px;
    height: 11px;
    opacity: 0.2;
    transition: opacity 0.1s ease-in-out;
}
footer div.content div.info div.details span:hover {
    color: #fff;
}
footer div.content div.info div.details span:hover:after {
    opacity: 0.4;
}
footer div.content div.info div.details span.copied {
    color: #e38f00;
}
footer div.content div.buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
footer div.content div.buttons a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 120px;
    border: 1px solid #939393;
    border-radius: 15px;
    padding: 10px 10px 10px 15px;
    line-height: 30px;
    font-size: 20px;
    font-weight: 600;
    transition: background-color 0.1s ease-in-out, border-color 0.1s ease-in-out, color 0.1s ease-in-out;
}
footer div.content div.buttons a:hover {
    color: #fff !important;
    background-color: #cf7e00 !important;
    border-color: #cf7e00 !important;
}
footer div.content div.buttons a:before {
    content: '';
    display: block;
}
footer div.content div.buttons a.mail:before {
    content: 'info@netpub.media';
    padding-left: 30px;
    font-size: 70%;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.6);
    width: 100%;
    height: 20px;
    background-image: url(icons/footer_mail.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center left;
}
footer div.content div.buttons a.register {
    color: #282828;
    background-color: #fff;
    border-color: #fff;
}
footer div.content div.buttons a span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    line-height: 1.2;
}
footer div.content div.buttons a span div.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: end;
    width: 40px;
    min-width: 40px;
    max-width: 40px;
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    border-radius: 10px;
    background-color: #fff;
    color: #282828;
    transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
}
footer div.content div.buttons a:hover span div.icon {
    color: #e38f00;
}
footer div.content div.buttons a.register span div.icon {
    color: #fff;
    background-color: #e38f00;
}
footer div.content div.buttons a.register:hover span div.icon {
    color: #cf7e00;
    background-color: #fff;
}
footer div.content div.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
footer div.content div.links div.category {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #939393;
    font-size: 15px;
}
footer div.content div.links div.category div.list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 10px;
    color: #fff;
    font-size: 20px;
}
footer div.content div.links div.category div.list a,
footer div.content div.links div.category div.list div {
    white-space: nowrap;
}
footer div.content div.links div.category div.list div {
    font-weight: 800;
}
@media (max-width: 1500px) {
    body {
        --font-size: 1.3vw;
    }
}
@media (max-width: 1400px) {
    body {
        --font-size: 1.5vw;
    }
}
@media (max-width: 1000px) {
    footer div.content a.logo img {
        height: 50px;
    }
    footer div.content div.links div.category {
        font-size: 13px;
    }
    footer div.content div.links div.category div.list,
    footer div.content div.buttons a {
        font-size: 17px;
    }
}
@media (max-width: 900px) {
    footer div.content div.links div.category {
        font-size: 12px;
    }
    footer div.content div.links div.category div.list,
    footer div.content div.buttons a {
        font-size: 14px;
    }
}
@media (max-width: 850px) {
    body {
        --font-size: 2vw;
    }
}
@media (max-width: 750px) {
    footer div.content {
        grid-template-columns: auto;
    }
    footer div.content a.logo {
        justify-self: center;
    }
    footer div.content div.info {
        text-align: center;
    }
    footer div.content div.buttons {
        max-width: initial;
    }
}
@media (max-width: 600px) {
    body {
        --font-size: 2.5vw;
    }
    footer {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (max-width: 400px) {
    body {
        --font-size: 3vw;
    }
    footer div.content div.buttons {
        grid-template-columns: auto;
    }
    footer div.content div.buttons a {
        min-height: 100px;
    }
}