/*
 *
 * BY ing. Nicolò Chiellini n.chiellini@4sigma.it
 * dott. Valeria La Mantia v.lamantia@4sigma.it
 * dott. Livia Ranzini l.ranzini@4sigma.it
 *
 */
:root {
    --scrollbar-width: 0px;
    --vh: 1vh;
    --bianco: #fff;
    --bianco-sporco: #E8E6E4;
    --nero: #000;
    --grigio: #A3A2A1;
    --grigio-medio: #DBD7D5;
    --arancio-sigma: #E47700;
    --grigio-fumo: #354150;
    --verde-scuro: #243E36;
    --verde-medio: #7CA982;
    --verde-chiaro: #BBCC9B;

}
html {
    width: 100%;
    min-height: 100%;
    margin: 0px;
    float: left;
    padding: 0px;
    font-family: 'Poppins';
    font-size: 18px;
    line-height: 30px;
    background-color: var(--bianco);
    color: var(--nero);
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body {
    border: none;
    padding: 0px;
    margin: 0px;
    width: 100%;
    min-height: 100vh;
    float: left;
    -webkit-text-size-adjust: 100%;
    font-weight: 400;
    position: relative;
    color: var(--grigio-fumo);
    overflow-x: hidden;
}

td {
    border: none;
    text-align: left;
    margin: 0px;
    padding: 0px;
}
div, p, h1, h2, h3, h4, h5, h6, ul,
footer, header, nav, article, main, aside,
section, form, fieldset, marquee,
figure, figcation {
    float: left;
    margin: 0px;
    padding: 0px;
    width: 100%;
    text-align: left;
    text-decoration: none;
    -webkit-text-size-adjust: 100%;
}
img {
    text-decoration: none;
    border: none;
    vertical-align: middle;
}
svg {
    border: none;
    border-image-width: 0;
    stroke-width: 0px;
}
iframe {
    margin: 0px;
    padding: 0px;
    border: none;
    /*
    height: auto;
    width: 100%;
    */
}
video[poster] {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
video {
    max-width: 100%;
}
table, td, tr {
    margin: 0px;
    padding: 0px;
    border: none;
}
table {
    float: left;
}
label {
    cursor: pointer;
}
a {
    outline: none;
    text-decoration: none;
    cursor: pointer;
    /* TODO Colore Stile Link */
    color: var(--nerino);
    transition: color 0.2s;
    -webkit-transition: color 0.2s;
}
button {
    color: var(--nerino);
}
ul {
    display: block;
    float: left;
    list-style: disc;
    padding-left: 20px;
    box-sizing: border-box;
}
ol {
    display: block;
    float: left;
    list-style: decimal;
    padding-left: 20px;
    box-sizing: border-box;
}
li {
    outline: none;
}

i, em, .italic {
    font-style: italic;
    font-weight: inherit;
}
i strong, em strong {
    font-style: italic;
}
.underline {
    text-decoration: underline;
}
*:-placeholder
{
    color: var(--bianco);
}
button::-moz-focus-inner {
  border: 0;
}
a:focus {
    outline: none;
}
input:focus:-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder  { color:transparent; }

input,
textarea,
select,
button {
    outline: none;
    border: none;
    padding: 0px;
    -webkit-border-radius: 0px;
    font-family: 'Poppins';
}
select {
    -webkit-appearance: none;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAWCAYAAAAW5GZjAAAACXBIWXMAAAsSAAALEgHS3X78AAAAYElEQVQoke3SsQ2AMAxE0QsTMAIjZARG8WhsRDb6FJiIWERKRZVrotjvOidAo1mG5cQdvEnKHZN9X7FJOv19p50DAlagcMd8Zv4vvq84Fo4II46FBn7hp7BHCCjNq/sFX/gPmVKJZAovAAAAAElFTkSuQmCC');
    background-position: calc(100% - 15px) 50%;
    background-repeat: no-repeat;
    background-size: 11px 22px;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
    -moz-appearance:textfield;
}
input[type=date]::-webkit-inner-spin-button,
input[type=date]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=date] {
    -moz-appearance:textfield;
}
button {
    cursor: pointer;
    -webkit-appearance: none;
    background-color: transparent;
    font-family: 'Poppins';
}
input[type="checkbox"] {
    -webkit-appearance: checkbox;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    border-radius: 20px;
}
input[type="radio"] {
/*    -webkit-appearance: checkbox;
    -webkit-border-radius: auto;*/
    vertical-align: middle;
}
input[type=submit] {
    -webkit-border-radius:0px;
    -webkit-appearance: none;
}
.hidden {
    display: none;
}
.over_hidden {
    overflow: hidden;
}
.block {
    display: block;
}
.flex {
    display: flex;
}
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.justify-center {
    justify-content: center;
}
.justify-left {
    justify-content: flex-start;
}
.mobile {
    display: none;
}
.opacity_0 {
    opacity: 0;
}
.opacity_1 {
    opacity: 1;
}
.inline-block {
    display: inline-block;
}
.inline-desktop {
    display: inline;
}
.table {
    display: table;
    float: none;
    table-layout: fixed;
}
.table-cell {
    display: table-cell;
    float: none;
    vertical-align: middle;
}
.table-row {
    display: table-row;
    float: none;
}
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.pointer {
    cursor: pointer;
}
.wait {
    cursor: wait;
}
.left {
    float: left;
}
.right {
    float: right;
}
.none {
    float: none;
}
.clear {
    clear: both;
}
.v_top {
    vertical-align: top;
}
.text_top {
    vertical-align: text-top;
}
.v_middle {
    vertical-align: middle;
}
.v_bottom {
    vertical-align: bottom;
}
.m_auto {
    margin: 0px auto
}
.w_auto {
    width: auto;
}
.max_w100pe {
    max-width: 100%;
}
.max_w80pe {
    max-width: 80%;
}
.max_w75pe {
    max-width: 75%;
}
.max_w70pe {
    max-width: 70%;
}
.max_w50pe {
    max-width: 50%;
}
.w_33pe {
    width: 33.333333%;
}
.maxw_100pe {
    max-width: 100%;
}
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.text-justify {
    text-align: justify;
}
.text-truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.extralight {
    font-weight: 200;
}
.light {
    font-weight: 300;
}
.normal {
    font-weight: 400;
}
.style-normal {
    font-style: normal;
}
.strike {
    text-decoration: line-through;
}
.medium {
    font-weight: 500;
}
.semibold {
    font-weight: 600;
}
.bold,
strong,
b {
    font-weight: 700;
}
.extrabold {
    font-weight: 900;
}
.red {
    color: red;
}
.arancio {
    color: var(--arancio-sigma);
}
.verde-scuro {
    color: var(--verde-scuro);
}
.verde-medio {
    color: var(--verde-medio);
}
.verde-chiaro {
    color: var(--verde-chiaro);
}
.black,
.nero {
    color: var(--nero);
}
.white, .bianco {
    color: var(--bianco);
}
.bianco-sporco {
    color: var(--bianco-sporco);
}
.grigio {
    color: var(--grigio);
}
.cover {
    background-size: 100% 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.cover-picture img {
    object-fit: cover;
    width: 100%;
    height: auto;
}
.cover-picture-full img {
    object-fit: cover;
    min-width: 100%;
    height: 100%;
}
.uppercase {
    text-transform: uppercase;
}
.lowercase {
    text-transform: lowercase;
}
.capitalize {
    text-transform: capitalize;
}
.two-column {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
}
.ritch-cont {
    overflow: hidden;
}
.ritch-cont * {
}

.ritch-cont a {
    font-weight: bold;
}
.ritch-cont a[name] {
    color: #000000;
    font-weight: inherit;
}
.ritch-cont ul {
    width: 100%;
    box-sizing: border-box;
    list-style-type: disc;
    padding-left: 20px;
    display: block;
}
.ritch-cont ol {
    width: 100%;
    box-sizing: border-box;
    list-style-type:decimal;
    padding-left: 20px;
}
.ritch-cont li {
    float: left;
    width: 100%;
}
.ritch-cont img {
    max-width: 100% !important;
    height: auto !important;
}
.gen-text-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.flex-reverse-row {
    flex-direction: row-reverse;
}
.video-cover-image {
    display: none !important;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}
/* Honey POT anti SPAM */
.hnpt {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    background-color: transparent;
    height: 100%;
    z-index: 100;
}
#over-box {
    display: none;
    position: fixed;
    z-index: 9998;
    background-color: rgba(102,102,102, 0.6);
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}
#over-box.show {
    display: block;
}
#login-password.hide {
    display: none;
}
#switch-recupera-login.hide {
    display: none;
}
#switch-close.hide {
    display: none;
}
#login-form.hide {
    display: none;
}
#registration-form.hide {
    display: none;
}
.noscroll {
    position: fixed;
    overflow-y:scroll
}
.modal-box {
    display: none;
    position: fixed;
    background-color: var(--bianco);
    color: var(--nerino);
    text-align: center;
    z-index: 9999;
    top: -500px;
    opacity: 1;
    width: 680px;
    min-height: 355px;
    left: 50%;
    margin-left: -340px;
    border-radius: 10px;
    box-shadow: 0px 0px 25px 0px rgb(0 0 0 / 15%);
    max-height: 70vh;
}
#login-modal.show {
    display: block;
    top: calc((100vh - 405px) / 2);
}
#logo-modal {
    display: block;
    float: left;
    width: 60px;
}
#logo-modal img {
    width: 100%;
    border-radius: 10px 0px 0px 0px;
}
#btn-close-modal {
    display: block;
    float: right;
    margin: 20px 30px;
    font-size: 24px;
}
#modal-int {
    padding: 50px 100px 50px 100px;
    box-sizing: border-box;
}
#modal-int a {
    font-size: 12px;
    line-height: 15px;
    font-weight: 600;
    text-decoration: underline;
}
input:autofill,
input:auto-fill,
input:-webkit-autofill,
input:-webkit-auto-fill {
    background-color: transparent !important;
    background-image: none !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 40rem #ffff inset;
}

#id_nl-email:autofill,
#id_nl-email:auto-fill,
#id_nl-email:-webkit-autofill,
#id_nl-email:-webkit-auto-fill {
    background-color: var(--bianco) !important;
    background-image: none !important;
}

#id_nl-email:-webkit-autofill,
#id_nl-email:-webkit-autofill:hover,
#id_nl-email:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 40rem var(--bianco-sporco) inset;
}

.form-half-input-cont {
    width: calc(50% - 10px);
}
.form-half-input-cont:last-child {
    width: calc(50% - 10px);
    float: right;
}
.form-two-third-input-cont {
    width: calc(((100% - 10px) / 3) * 2 - 20px);
    margin-right: 10px;
}
.form-third-input-cont {
    width: calc(100% / 3);
}
.form-input,
.form-select {
    display: inline-block;
    width: 100%;
    height: 50px;
    color: var(--bianco);
    font-size: 20px;
    border: 2px solid var(--bianco);
    border-radius: 250px;
    padding: 0px 20px;
    box-sizing: border-box;
    background-color: transparent;
}
#contatti-form .form-input::placeholder,
#contatti-form .form-input-textarea::placeholder {
    color: var(--bianco);
}
#label-upload-recruiting input {
    display: none;
}

.form-input-textarea {
    display: block;
    width: 100%;
    height: 250px;
    border: 2px solid var(--bianco);
    color: var(--bianco);
    border-radius: 30px;
    font-size: 20px;
    line-height: 34px;
    padding: 15px 20px 20px 20px;
    box-sizing: border-box;
    background-color: transparent;
    resize: none;
}
.form-error .form-input {
    border: 0.5px solid red;
}
.form-error-span {
    display: block;
    float: left;
    margin-top: 5px;
    font-size: 12px;
    line-height: 15px;
    font-weight: bold;
    color: red;
}
.form-input:focus,
.form-input-textarea:focus {
}
.form-input-label {
    display: block;
    float: left;
    color: var(--bianco);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}
.label-input {
    display: block;
    float: left;
    color: var(--bianco);
    padding: 0px 20px;
    box-sizing: border-box;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 20px;
}
.btn {
    height: 70px;
    line-height: 70px;
    text-align: center;
    font-size: 21px;
    font-weight: 500;
    text-transform: uppercase;
    box-sizing: border-box;
    padding: 0px 30px;
}
.btn-square-75 {
    width: 75px;
    height: 75px;
    line-height: 75px;
    text-align: center;
    font-size: 21px;
    box-sizing: border-box;
}
/* MAIN */
.page {
    max-width: 1440px;
    float: none;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}
header {
    height: 100px;
    box-sizing: border-box;
    background-color: var(--grigio-fumo);
    position: fixed;
    z-index: 100;
    top: 0px;
    left: 0px;
}
#logo-header {
    display: block;
    float: left;
}
main {
    margin-top: 100px;
    min-height: calc(100vh - 100px);
}
nav {
    width: calc(1440px * 2 / 3 );
    max-width: calc(100vw * 2 / 3);
    float: right;
    display: flex;
    justify-content: space-between;
    font-size: 17px;
    line-height: 100px;
    font-weight: 700;
    color: white;
}
.nav-link.sel {
    color: var(--arancio-sigma);
}
#logo-header img {
    height: 60px;
    padding: 20px 0px;
}
#change-lang {
    color: var(--bianco);
    font-size: 14px;
    line-height: 100px;
    transition: color 0.2s;
    -webkit-transition: color 0.2s;
}
.lang-selector.sel {
    color: var(--arancio-sigma);
}
#footer {
    background-color: var(--grigio-fumo);
    color: var(--bianco);
    padding: 85px 0px;
    box-sizing: border-box;
}
#footer-cont-left {
    width: 50%;
    box-sizing: border-box;
    display: flex;
}
#footer-cont-right {
    width: 50%;
    box-sizing: border-box;
    /*padding-top: 45px;*/
}
.footer-text{
    font-size: 18px;
    line-height: 25px;
    font-weight: 400;
}
.footer-text-bold {
    font-size: 18px;
    line-height: 25px;
    font-weight: 700;
}
#logo-footer {
    display: block;
    float: left;
}
#logo-footer img{
    height: 85px;
    padding-right: 95px;
}
.footer-social {
    font-size: 50px;
    line-height: 70px;
}
.intro-cit {
    height: calc(100vh - 100px);
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 120px;
}
.cit-grigio-fumo {
    background: rgb(101,101,101);
    background: radial-gradient(circle, rgba(101,101,101,1) 50%, rgba(53,66,79,1) 100%);
}
.cit-verde-scuro {
    background: rgb(71,93,86);
    background: radial-gradient(circle, rgba(71,93,86,1) 50%, rgba(36,62,54,1) 100%);
}
.cit-verde-medio {
    background: rgb(124,169,130);
    background: radial-gradient(circle, rgba(124,169,130,1) 50%, rgba(145,165,150,1) 100%);
}
.cit-verde-chiaro {
    background: rgb(187,204,155);
    background: radial-gradient(circle, rgba(187,204,155,1) 50%, rgba(195,200,180,1) 100%);
}
.intro-cit h1 {
    font-size: 100px;
    line-height: 150px;
    color: var(--bianco);
    font-weight: 700;
}
#hp-sec-2 {
    display: flex;
    align-items: center;
    margin-bottom: 120px;
}
.parole-chiave-cont-left,
.intro-text-cont-right {
    width: 50%;
    float: left;
}
.parole-chiave-cont-left {
    padding-right: 20px;
    box-sizing: border-box;
}
.btn-scopri,
.btn-invia {
    display: block;
    float: left;
    min-width: 125px;
    padding: 0px 20px;
    box-sizing: border-box;
    text-align: center;
    font-size: 20px;
    line-height: 50px;
    font-weight: 600;
    border-radius: 250px;
    margin-top: 25px;
}
.btn-progetti {
    display: inline-block;
    float: none;
    min-width: 90px;
    padding: 0px 20px;
    box-sizing: border-box;
    text-align: center;
    font-size: 15px;
    line-height: 40px;
    font-weight: 600;
    border-radius: 40px;
}
.btn-arancio {
    border: 2px solid var(--arancio-sigma);
    color: var(--arancio-sigma);
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}
.btn-bianco {
    border: 2px solid var(--bianco);
    color: var(--bianco);
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}
.parole-chiave-cont-left p {
    font-size: 70px;
    line-height: 95px;
    color: var(--arancio-sigma);
    font-weight: 700;
}
.intro-text-cont-right p {
    font-size: 30px;
    line-height: 55px;
    color: var(--grigio-fumo);
    font-weight: 600;
}
.block-department,
.block-technology {
    padding: 50px 0px;
}
.block-department:nth-child(3n+1),
.block-technology:nth-child(3n+1) {
    background: rgb(36,62,54);
    background: radial-gradient(circle, rgba(36,62,54,1) 50%, rgba(71,93,86,1) 100%);
}
.block-department:nth-child(3n+2),
.block-technology:nth-child(3n+2) {
    background: rgb(124,169,130);
    background: radial-gradient(circle, rgba(124,169,130,1) 50%, rgba(145,165,150,1) 100%);
}
.block-department:nth-child(3n+3),
.block-technology:nth-child(3n+3) {
    background: rgb(187,204,155);
    background: radial-gradient(circle, rgba(187,204,155,1) 50%, rgba(195,200,180,1) 100%);
}
.block-department:last-child,
.block-technology:last-child {
    margin-bottom: 100px;
}
.accordion-title-cont,
.accordion-chisiamo-title-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.accordion-generico-cont .accordion-title-cont,
.accordion-generico-cont .accordion-text {
    background-color: var(--grigio-fumo);
    padding: 20px;
    box-sizing: border-box;
}
.accordion-generico-cont .accordion-title {
    font-size: 50px;
    line-height: 50px;
}
.accordion-generico-cont .accordion-chevron {
    line-height: 50px;
}
.accordion-generico-cont .accordion-text p {
    padding-top: 0px;
}
.accordion-title {
    display: block;
    float: left;
    font-size: 80px;
    line-height: 80px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--bianco);
}
.accordion-chevron {
    display: inline-block;
    font-size: 30px;
    line-height: 80px;
    font-weight: 700;
    color: var(--bianco);
}
.accordion-text {
    display: none;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--bianco);
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
}
.accordion-text p {
    padding-top: 40px;
    box-sizing: border-box;
}
.accordion-text.show {
    display: block;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
}
.accordion-chisiamo-title {
    display: block;
    float: left;
    font-size: 55px;
    line-height: 60px;
    font-weight: 700;
}
.accordion-chisiamo-chevron {
    display: inline-block;
    font-size: 20px;
    line-height: 80px;
    font-weight: 700;
}
.block-competenze:nth-child(3n+1) .accordion-chisiamo span {
    color: var(--verde-scuro);
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}
.block-competenze:nth-child(3n+2) .accordion-chisiamo span {
    color: var(--verde-medio);
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}
.block-competenze:nth-child(3n+3) .accordion-chisiamo span {
    color: var(--verde-chiaro);
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}
.accordion-chisiamo-text {
    font-size: 30px;
    line-height: 50px;
    font-weight: 400;
}
.accordion-chisiamo-text-plus-cont {
    display: none;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
}
.accordion-chisiamo-text-plus {
    width: 90%;
}
.accordion-chisiamo-text-100-plus {
    width: 100%;
}
.accordion-chisiamo-text-plus-cont.show {
    display: flex;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
}
.block-competenze:nth-child(3n+1) .accordion-chisiamo.bg-show {
    background-color: var(--verde-scuro);
}
.block-competenze:nth-child(3n+2) .accordion-chisiamo.bg-show {
    background-color: var(--verde-medio);
}
.block-competenze:nth-child(3n+3) .accordion-chisiamo.bg-show {
    background-color: var(--verde-chiaro);
}
.block-competenze:nth-child(3n+1) .accordion-chisiamo.bg-show span,
.block-competenze:nth-child(3n+2) .accordion-chisiamo.bg-show span,
.block-competenze:nth-child(3n+3) .accordion-chisiamo.bg-show span {
    color: #fff;
}
.accordion-chisiamo-ico {
    width: 10%;
    padding: 0px 20px;
    box-sizing: border-box;
}
.accordion-chisiamo-ico img {
    width: 100%;
}
.accordion-chisiamo {
    padding-top: 50px;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}
.team-cont:nth-child(1) .titoli-team {
    font-size: 50px;
    line-height: 55px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--verde-scuro);
}
.team-cont:nth-child(2) .titoli-team {
    font-size: 50px;
    line-height: 55px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--verde-medio);
}
.team-cont:nth-child(3) .titoli-team {
    font-size: 50px;
    line-height: 55px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--verde-chiaro);
}
.team-dep-cont {
    display: flex;
    justify-content: flex-start;
    gap: 25px;
    flex-wrap: wrap;
}
.team-dep {
    position: relative;
    width: calc((100% - 75px) / 4);
    height: 0px;
    padding-top: calc((100% - 75px) / 4);
}
.intestazione-projects,
.intestazione-projects-portfolio {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.titoli-arancio-half {
    display: block;
    width: auto;
    font-size: 48px;
    line-height: 55px;
    font-weight: 700;
    color: var(--arancio-sigma);
}
.titoli-arancio {
    display: block;
    font-size: 48px;
    line-height: 55px;
    font-weight: 700;
    color: var(--arancio-sigma);
}
.titoli-verde-scuro {
    font-size: 48px;
    line-height: 55px;
    font-weight: 700;
    color: var(--verde-scuro);
}
.titoli-verde-medio {
    font-size: 48px;
    line-height: 55px;
    font-weight: 700;
    color: var(--verde-medio);
}
.titoli-verde-chiaro {
    font-size: 48px;
    line-height: 55px;
    font-weight: 700;
    color: var(--verde-chiaro);
}
.titoli-blu {
    font-size: 48px;
    line-height: 80px;
    font-weight: 700;
    color: var(--grigio-fumo);
}
.text-link-arancio {
    display: block;
    width: auto;
    font-size: 20px;
    line-height: 80px;
    font-weight: 400;
    text-align: right;
    color: var(--arancio-sigma);
}
#hp-sec-4 {
    margin-bottom: 80px;
}
#hp-sec-5 {
    margin-bottom: 160px;
}
.new-projects-cont {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}
.single-project-cont {
    position: relative;
    display: block;
    float: left;
    width: calc((100% - 40px) / 2);
    height: 345px;
}
.overlay {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    top: 0px;
    left: 0px;
    height: 345px;
    width: 100%;
    opacity: 0;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}
.overlay-web {
    background-color: var(--verde-scuro);
}
.overlay-automation {
    background-color: var(--verde-medio);
}
.overlay-embedded {
    background-color: var(--verde-chiaro);
}
.tag-overlay-web {
    color: var(--verde-chiaro);
}
.tag-overlay-automation {
    color: var(--verde-scuro);
}
.tag-overlay-embedded {
    color: var(--verde-medio);
}
.title-overlay {
    display: block;
    float: left;
    width: 100%;
    padding: 0px 20px;
    box-sizing: border-box;
    color: var(--bianco);
    font-size: 35px;
    line-height: 45px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
}
.tag-overlay {
    display: block;
    float: left;
    width: 100%;
    padding: 0px 20px;
    box-sizing: border-box;
    /* color: var(--verde-chiaro); */
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}
.overlay-team {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    background-color: rgba(36,62,54, 0.7);
}
.title-overlay-portfolio {
    display: block;
    float: left;
    width: 100%;
    padding: 0px 20px;
    box-sizing: border-box;
    color: var(--bianco);
    font-size: 35px;
    line-height: 45px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 10px;
}
.overlay-verde-scuro {
    background-color: var(--verde-scuro);
}
.overlay-verde-medio {
    background-color: var(--verde-medio);
}
.overlay-verde-chiaro {
    background-color: var(--verde-chiaro);
}
.portfolio-project-name {
    display: block;
    float: left;
    width: 100%;
    color: var(--arancio-sigma);
    font-size: 25px;
    line-height: 30px;
    text-transform: uppercase;
    font-weight: 700;
}
.portfolio-project-text {
    max-height: 90px;
    overflow-y: hidden;
}
.portfolio-project-tag {
    font-weight: 700;
    text-transform: uppercase;
}
.text-overlay-team {
    padding: 0px 20px;
    box-sizing: border-box;
    position: absolute;
    top: 60%;
    left: 0px;
    text-align: center;
}
.name-overlay-team {
    color: var(--bianco);
    font-size: 22px;
    line-height: 25px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}
.mansion-overlay-team,
.mansion-overlay-team p {
    color: var(--bianco);
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    text-align: center;
}
.btn-projects-cont {
    display: block;
    text-align: right;
}
.anchor-abs {
    position: absolute;
    top: -150px;
}
/*
#corp-cont {
    width: calc(100% - 160px);
    width: 100%;
    height: 160px;
    animation: bannermove 20s linear infinite;
}
@keyframes bannermove {
    0% {
        left: 100%;
    }
    100% {
        left: 0;
        transform: translateX(-100%);
    }
}
*/
#navigate-corp-left {
    display: block;
    float: left;
    width: 0;
    height: 0;
    line-height: 0px;
    border-left: 80px solid var(--arancio-sigma);
    border-top: 80px solid transparent;
    border-bottom: 80px solid transparent;
    position: absolute;
    left: 0px;
    z-index: 10;
}
#navigate-corp-right {
    display: block;
    float: left;
    width: 0;
    height: 0;
    line-height: 0px;
    border-right: 80px solid var(--arancio-sigma);
    border-top: 80px solid transparent;
    border-bottom: 80px solid transparent;
    position: absolute;
    right: 0px;
    z-index: 10;
}
/*
.block-logo_cliente {
    width: auto;
    height: 160px;
    padding: 0px 50px;
    box-sizing: border-box;
}
.block-logo_cliente img {
    height: 100%;
}
*/
.titoli-big {
    font-size: 80px;
    line-height: 90px;
    font-weight: 700;
    color: var(--bianco);
}
#hp-sec-6 {
    background-color: var(--grigio-fumo);
    padding: 120px 0px 60px 0px;
}
#storia-cont-left {
    width: calc(50% - 20px);
    height: 0px;
    padding-top: calc(50% - 20px);
    margin-right: 20px;
}
#storia-cont-right {
    width: calc(50% - 20px);
    margin-left: 20px;
}
.contatti-cont-left {
    width: calc((100% / 3 ) * 2);
    box-sizing: border-box;
    float: left;
}
.contatti-cont-right {
    width: calc((100% - 25px ) / 3);
    box-sizing: border-box;
    float: left;
    padding-top: 365px ;
}
#privacy-label {
    font-size: 15px;
    line-height: 20px;
    font-weight: 300;
    color: var(--bianco);
}
#privacy-lnk {
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
    color: var(--bianco);
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}
/* CHECKBOX CUSTOM DA IMPLEMENTARE */
/* .form-checkbox-custom-cont input {
    visibility: hidden;
}
.form-checkbox-custom-cont {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
}
.form-checkbox-custom {
    width: 20px;
    height: 20px;
    padding: 4px;
    box-sizing: border-box;
    margin-left: 5px;
    line-height: 20px;
    text-align: center;
    display: inline-block;
    border-radius: 10px;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}
.form-checkbox-custom-ico {
    display: none;
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background-color: var(--arancio-sigma);
}*/
.hosting-cont {
    width: 100%;
    margin-top: 50px;
}
.hosting-cont-ico {
    display: block;
    float: left;
    width: 75px;
    height: 75px;
    border-radius: 75px;
    color: var(--bianco);
    font-size: 45px;
    line-height: 75px;
    text-align: center;
    margin-right: 30px;
}
.hosting-cont-text {
    display: block;
    float: left;
    width: 80%;
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
}
.ico-verde-scuro {
    background-color: var(--verde-scuro);
}
.ico-verde-medio {
    background-color: var(--verde-medio);
}
.ico-verde-chiaro {
    background-color: var(--verde-chiaro);
}
.page-contatti-cont-left {
    width: calc(50% - 50px);
    float: left;
    box-sizing: border-box;
}
.page-contatti-cont-left img {
    width: 100%;
}
.page-contatti-cont-right {
    width: 50%;
    float: right;
    box-sizing: border-box;
}
.cosa-facciamo-cont {
    width: calc(100% / 3);
    min-height: calc(100vh - 100px);
    position: relative;
    display: block;
    float: left;
    box-sizing: border-box;
}
.cosa-facciamo-cont h2 {
    font-size: 50px;
    line-height: 70px;
    font-weight: 700;
    color: white;
    padding: 60px 0px 0px 30px;
    box-sizing: border-box;
}
.cosa-facciamo-cont a {
    font-size: 55px;
    line-height: 80px;
    font-weight: 500;
    color: white;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 30px;
    box-sizing: border-box;
}
.intro-dep {
    height: calc(100vh - 100px);
    position: relative;
    align-items: center;
    margin-bottom: 120px;
}
.intro-dep h1 {
    font-size: 100px;
    line-height: 110px;
    color: var(--bianco);
    font-weight: 700;
    padding-top: 100px;
    box-sizing: border-box;
}
.intro-dep p {
    width: 55%;
    font-size: 30px;
    line-height: 50px;
    color: var(--bianco);
    font-weight: 400;
    position: absolute;
    bottom: 0;
    padding-bottom: 60px;
    box-sizing: border-box;
}
.intro-dep a {
    display: block;
    float: right;
    font-size: 55px;
    line-height: 80px;
    font-weight: 500;
    color: white;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 30px;
    box-sizing: border-box;
}
.img-cont {
    width: 100%;
}
.img-cont img {
    width: 100%;
}
.video-cont {
    position: relative;
    width: 100%;
    height: calc(1400px / 16 * 9);
}
.video-cont iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}
#burger-menu-mob {
    display: none;
}
/* Questo è delle pagine Portfolio ... */
.slider-cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
}
.slider-item-cont {
    width: calc((100% - 80px) / 5);
}
.slider-item {
    position: relative;
    width: 100%;
    height: 0px;
    padding-top: 56.25%;
    cursor: pointer;
    -webkit-box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.35);
    box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.35);
}
/* Questo è quello della home page */
#slider-cont {
    margin: 10px 0px 100px 0px;
    height: 160px;
    overflow: hidden;
}
#slider {
    height: 160px;
    float: none;
}
#slider-iw {
    margin-top: -6px !important;
}
.block-logo_cliente {
    display: block;
    float: none;
    width: 260px;  /* Bisogna Sommare 100 di Gutter */
    height: 160px;
}
.block-logo_cliente img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* End Slider Home Page */
.overlay-slider-item {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    background-color: rgba(53,65,80, 0.6);
}
.text-overlay-slider-item {
    padding: 0px 20px;
    box-sizing: border-box;
    position: absolute;
    top: calc(50% - 12.5px);
    left: 0px;
    text-align: center;
    color: var(--bianco);
    font-size: 25px;
    line-height: 25px;
    text-align: center;
}

/* Qui vanno gli eventi di Hover. Non metterli da altre parti!!!!! */
@media only screen and (min-width:1201px) and (max-width:10000px) {
    a:hover {
        transition: color 0.2s;
        -webkit-transition: color 0.2s;
        color: var(--arancio-sigma);
    }
    .btn-arancio:hover {
        background-color: var(--arancio-sigma);
        color: var(--bianco);
        transition: all 0.2s;
        -webkit-transition: all 0.2s;
    }
    .block-department:nth-child(3n+1) .btn-bianco:hover {
        background-color: var(--bianco);
        color: var(--verde-scuro);
        transition: all 0.2s;
        -webkit-transition: all 0.2s;
    }
    .block-department:nth-child(3n+2) .btn-bianco:hover {
        background-color: var(--bianco);
        color: var(--verde-medio);
        transition: all 0.2s;
        -webkit-transition: all 0.2s;
    }
    .block-department:nth-child(3n+3) .btn-bianco:hover {
        background-color: var(--bianco);
        color: var(--verde-chiaro);
        transition: all 0.2s;
        -webkit-transition: all 0.2s;
    }
    .accordion-generico-cont .btn-bianco:hover {
        background-color: var(--bianco);
        color: var(--grigio-fumo);
        transition: all 0.2s;
        -webkit-transition: all 0.2s;
    }
    #contacts-btn-cont button:hover {
        background-color: var(--bianco);
        color: var(--grigio-fumo);
        transition: all 0.2s;
        -webkit-transition: all 0.2s;
    }
    .single-project-cont:hover .overlay {
        opacity: 1;
    }
    .team-dep:hover .overlay-team {
        opacity: 1;
        transition: all 0.2s;
        -webkit-transition: all 0.2s;
    }
    .slider-item:hover .overlay-slider-item {
        opacity: 1;
        transition: all 0.2s;
        -webkit-transition: all 0.2s;
    }
    #privacy-lnk:hover {
        color: var(--arancio-sigma);
        transition: all 0.2s;
        -webkit-transition: all 0.2s;
    }
    .block-competenze:nth-child(3n+1) .accordion-chisiamo:hover {
        background-color: var(--verde-scuro);
        transition: all 0.2s;
        -webkit-transition: all 0.2s;
    }
    .block-competenze:nth-child(3n+2) .accordion-chisiamo:hover {
        background-color: var(--verde-medio);
        transition: all 0.2s;
        -webkit-transition: all 0.2s;
    }
    .block-competenze:nth-child(3n+3) .accordion-chisiamo:hover {
        background-color: var(--verde-chiaro);
        transition: all 0.2s;
        -webkit-transition: all 0.2s;
    }
    .block-competenze:nth-child(3n+1) .accordion-chisiamo:hover span,
    .block-competenze:nth-child(3n+2) .accordion-chisiamo:hover span,
    .block-competenze:nth-child(3n+3) .accordion-chisiamo:hover span {
        color: #fff;
        transition: all 0.2s;
        -webkit-transition: all 0.2s;
    }
}
@media only screen and (min-width:220px) and (max-width:1279px) {
}

/* Tablet Landscape */
@media only screen and (min-width:1024px) and (max-width:1279px) {
    #footer-cont-left {
        width: 80%;
    }
    #footer-cont-right {
        width: 20%;
    }
    .intro-cit h1 {
        font-size: 80px;
        line-height: 130px;
    }
    .intro-text-cont-right p {
        font-size: 25px;
        line-height: 50px;
    }
    .cosa-facciamo-cont h2 {
        font-size: 38px;
        line-height: 55px;
    }
    .intro-dep p {
        width: 80%;
    }
    .intro-dep h1 {
        padding-top: 60px;
    }
    .parole-chiave-cont-left p {
        font-size: 50px;
        line-height: 75px;
    }
    .accordion-title {
        font-size: 60px;
        line-height: 60px;
    }
    .accordion-chevron {
        font-size: 25px;
        line-height: 60px;
    }
    .accordion-generico-cont .accordion-chevron {
        font-size: 25px;
        line-height: 50px;
    }
    .titoli-big {
        font-size: 70px;
        line-height: 80px;
    }
    .overlay-team {
        opacity: 0.8;
    }
    #burger-menu-mob {
        display: none;
    }
    .slider-item-cont {
        width: calc((100% - 40px) / 3);
    }
    .intestazione-projects-portfolio {
        display: block;
    }
    .btn-projects-cont {
        text-align: left;
        margin-top: 20px;
    }
}
/* Tablet Portrait */
@media only screen and (min-width:768px) and (max-width:1023px) {
    #footer-cont-left {
        width: 80%;
    }
    #footer-cont-right {
        width: 20%;
    }
    .intro-cit h1,
    .intro-dep h1 {
        font-size: 70px;
        line-height: 120px;
    }
    .intro-text-cont-right p {
        font-size: 22px;
        line-height: 47px;
    }
    .cosa-facciamo-cont h2 {
        font-size: 30px;
        line-height: 47px;
    }
    .intro-dep p {
        width: 80%;
    }
    .intro-dep h1 {
        padding-top: 60px;
    }
    .parole-chiave-cont-left p {
        font-size: 40px;
        line-height: 65px;
    }
    .accordion-title {
        font-size: 45px;
        line-height: 45px;
    }
    .accordion-chevron {
        font-size: 25px;
        line-height: 45px;
    }
    .accordion-generico-cont .accordion-chevron {
        font-size: 20px;
        line-height: 40px;
    }
    .titoli-big {
        font-size: 50px;
        line-height: 60px;
    }
    .intro-dep p {
        font-size: 25px;
        line-height: 45px;
    }
    .overlay-team {
        opacity: 0.8;
    }
    .overlay-slider-item {
        opacity: 1;
    }
    .titoli-arancio-half,
    .titoli-arancio {
        font-size: 35px;
        line-height: 55px;
    }
    .text-link-arancio {
        line-height: 55px;
    }
    .single-project-cont {
        width: 100%;
        height: 0px;
        padding-top: 56.25%;
    }
    .overlay {
        display: none;
    }
    #hp-sec-4 .overlay {
        display: flex;
        height: 100%;
        opacity: 0.6;
    }
    .contatti-cont-left {
        width: 100%;
    }
    nav {
        width: calc(100% - 100px);
        max-width: unset;
    }
    .team-dep-cont {
        gap: 15px;
    }
    .team-dep {
        width: calc((100% - 15px) / 2);
        padding-top: calc((100% - 15px) / 2);
    }
    #sez-3-chisiamo .mb_80 {
        margin-bottom: 20px;
    }
    .intro-cit {
        margin-bottom: 40px;
    }
    #storia-cont-left {
        width: 100%;
        padding-top: 100%;
        margin-right: 0px;
    }
    #storia-cont-right {
        width: 100%;
        margin-left: 0px;
        margin-top: 20px;
    }
    .mb_120 {
        margin-bottom: 40px;
    }
    .accordion-chisiamo-title {
        font-size: 40px;
        line-height: 45px;
    }
    .accordion-chisiamo-chevron {
        line-height: 45px;
    }
    .accordion-chisiamo-ico {
        width: 15% !important;
        padding: 0px 10px !important;
    }
    .accordion-chisiamo-text-plus {
        width: 85%;
    }
    .cosa-facciamo-cont {
        width: 100%;
        min-height: calc((100vh - 100px) / 3 );
    }
    #logo-footer img {
        padding-right: 30px;
    }
    .intro-dep {
        margin-bottom: 40px;
    }
    .parole-chiave-cont-left, .intro-text-cont-right {
        width: 100%;
        padding-right: 0px;
        margin-bottom: 20px;
    }
    .parole-chiave-cont-left, .intro-text-cont-right {
        width: 100%;
    }
    #storia-cont-left {
        margin-left: 0px !important;
        margin-bottom: 20px;
    }
    .new-projects-cont {
        gap: 20px;
    }
    .project-portfolio-cont {
        width: 100% !important;
    }
    .page-contatti-cont-left {
        width: 100%;
    }
    .page-contatti-cont-right {
        width: 100%;
        margin-top: 40px;
    }
    .accordion-generico-cont .accordion-title {
        font-size: 30px;
        line-height: 40px;
    }
    #burger-menu-mob {
        display: none;
    }
    .slider-item-cont {
        width: calc((100% - 20px) / 2);
    }
    #slider-cont {
        height: 112px;
    }
    #slider {
        height: 112px;
    }
    .block-logo_cliente {
        width: 182px;  /* Bisogna Sommare 70 di Gutter */
        height: 112px;
    }
    .intestazione-projects-portfolio {
        display: block;
    }
    .btn-projects-cont {
        text-align: left;
        margin-top: 20px;
    }
}
/* Cellulari */
@media only screen and (min-width:220px) and (max-width:767px) {
    html {
        font-size: 15px;
        line-height: 25px;
    }
    .page.pt_30 {
        padding-top: 0px;
    }
    header {
        height: 90px;
    }
    main {
        margin-top: 90px;
    }
    #footer {
        padding: 40px 0px;
    }
    #footer-cont-left {
        width: 100%;
        display: block;
    }
    #footer-cont-left div {
        width: 50%;
    }
    #logo-footer {
        width: 100%;
        margin-bottom: 20px;
    }
    #footer-cont-right {
        width: 100%;
        margin-top: 20px;
    }
    #footer-cont-right .text-right {
        text-align: left;
    }
    .footer-social {
        font-size: 30px;
        line-height: 50px;
    }
    #hp-sec-2 {
        margin-bottom: 40px;
    }
    .intro-cit h1,
    .intro-dep h1 {
        font-size: 30px;
        line-height: 50px;
    }
    .parole-chiave-cont-left p {
        font-size: 22px;
        line-height: 32px;
    }
    .intro-text-cont-right p {
        font-size: 15px;
        line-height: 25px;
    }
    .cosa-facciamo-cont h2 {
        font-size: 20px;
        line-height: 40px;
    }
    .intro-dep p {
        width: 80%;
    }
    .intro-dep h1 {
        padding-top: 20px;
    }
    .accordion-title {
        font-size: 22px;
        line-height: 22px;
    }
    .accordion-chevron {
        font-size: 15px;
        line-height: 25px;
    }
    .accordion-generico-cont .accordion-chevron {
        font-size: 15px;
        line-height: 25px;
    }
    .accordion-text {
        font-size: 15px;
        line-height: 25px;
    }
    .titoli-big {
        font-size: 35px;
        line-height: 45px;
        margin-bottom: 20px;
    }
    .intro-dep p {
        font-size: 20px;
        line-height: 40px;
        padding-bottom: 20px;
    }
    .intro-dep a {
        font-size: 35px;
        line-height: 60px;
        padding: 20px;
    }
    .overlay-team {
        opacity: 0.8;
    }
    .overlay-slider-item {
        opacity: 1;
    }
    .titoli-arancio-half,
    .titoli-arancio {
        font-size: 20px;
        line-height: 40px;
    }
    .text-link-arancio {
        font-size: 15px;
        line-height: 25px;
        text-align: left;
    }
    .project-portfolio-cont {
        margin-bottom: 30px !important;
    }
    .single-project-cont {
        width: 100%;
        height: 0px;
        padding-top: 56.25%;
        margin-bottom: 20px !important;
    }
    .overlay {
        display: none;
    }
    #hp-sec-4 .overlay {
        display: flex;
        height: 100%;
        opacity: 0.6;
    }
    .contatti-cont-left {
        width: 100%;
    }
    #burger-menu-mob {
        display: inline-block;
        float: right;
        font-size: 25px;
        line-height: 90px;
        color: white;
    }
    nav {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        background-color: var(--grigio-fumo);
        position: fixed;
        top: 90px;
        right: -100vw;
        margin: 0px;
        height: calc(100vh - 90px);
        line-height: 60px;
        z-index: 100;
        width: 100vw;
        max-width: unset;
        opacity: 0;
        transition: all 0.2s;
        -webkit-transition: all 0.2s;
    }
    nav.open{
        right: 0;
        opacity: 1;
        transition: all 0.2s;
        -webkit-transition: all 0.2s;
    }
    #logo-header img {
        padding: 15px 0px;
    }
    .team-dep-cont {
        display: block;
    }
    .team-dep {
        width: 100%;
        padding-top: 100%;
        margin-bottom: 20px;
    }
    #sez-3-chisiamo .mb_80 {
        margin-bottom: 20px;
    }
    .intro-cit {
        margin-bottom: 40px;
    }
    #storia-cont-left {
        width: 100%;
        padding-top: 100%;
        margin-right: 0px;
    }
    #storia-cont-right {
        width: 100%;
        margin-left: 0px;
        margin-top: 20px;
    }
    .mb_120 {
        margin-bottom: 40px;
    }
    .accordion-chisiamo-title {
        font-size: 25px;
        line-height: 30px;
    }
    .accordion-chisiamo-text {
        font-size: 15px;
        line-height: 25px;
    }
    .accordion-chisiamo-chevron {
        line-height: 45px;
    }
    .accordion-chisiamo-text-plus-cont.show {
        display: block;
    }
    .accordion-chisiamo-ico {
        width: 100% !important;
        padding: 0px !important;
        margin-bottom: 20px;
    }
    .accordion-chisiamo-ico img {
        width: 30%;
    }
    .accordion-chisiamo-text-plus {
        width: 100%;
        font-size: 15px;
        line-height: 25px;
    }
    .cosa-facciamo-cont {
        width: 100%;
        min-height: calc((100vh - 100px) / 3 );
    }
    .cosa-facciamo-cont a {
        font-size: 35px;
        line-height: 60px;
        padding: 10px 20px;
    }
    #logo-footer img {
        height: 65px;
        padding-right: 30px;
    }
    .intro-dep {
        margin-bottom: 40px;
    }
    .parole-chiave-cont-left, .intro-text-cont-right {
        width: 100%;
        padding-right: 0px;
        margin-bottom: 20px;
    }
    .parole-chiave-cont-left, .intro-text-cont-right {
        width: 100%;
    }
    #storia-cont-left {
        margin-left: 0px !important;
        margin-bottom: 20px;
    }
    .new-projects-cont {
        gap: 20px;
    }
    .project-portfolio-cont {
        width: 100% !important;
    }
    .page-contatti-cont-left {
        width: 100%;
    }
    .page-contatti-cont-right {
        width: 100%;
        margin-top: 40px;
    }
    .accordion-generico-cont .accordion-title {
        font-size: 22px;
        line-height: 22px;
    }
    .block-department, .block-technology {
        padding: 30px 0px;
    }
    .intestazione-projects,
    .intestazione-projects-portfolio {
        display: block;
    }
    .btn-projects-cont {
        text-align: left;
        margin-top: 10px;
    }
    .btn-progetti.ml_10 {
        margin-left: 0px;
        margin-top: 10px;
    }
    .btn-progetti {
        min-width: 90px;
        padding: 0px 20px;
        box-sizing: border-box;
        text-align: center;
        font-size: 10px;
        line-height: 30px;
        font-weight: 600;
        border-radius: 30px;
    }
    .titoli-arancio-half {
        width: 100%;
    }
    .block-department:last-child, .block-technology:last-child {
        margin-bottom: 40px;
    }
    .mb_80 {
        margin-bottom: 40px;
    }
    .mb_40 {
        margin-bottom: 20px;
    }
    .mb_30 {
        margin-bottom: 15px;
    }
    .mb_50 {
        margin-bottom: 20px;
    }
    .mt_50 {
        margin-top: 20px;
    }
    .mt_100 {
        margin-top: 40px;
    }
    .mb_100 {
        margin-bottom: 40px;
    }
    .font_20 {
        font-size: 15px;
        line-height: 18px;
    }
    form .w_49pe {
        width: 100%;
    }
    form .mb_25 {
        margin-bottom: 0px;
    }
    form fieldset,
    #contacts-btn-cont {
        margin-top: 20px;
    }
    .title-overlay {
        font-size: 20px;
        line-height: 30px;
    }
    #hp-sec-5 {
        margin-bottom: 60px;
    }
    #hp-sec-6 {
        padding: 40px 0px;
    }
    .intro-cit,
    .intro-dep {
        height: calc(100vh - 90px);
    }
    .footer-text, .footer-text-bold {
        font-size: 12px;
        line-height: 18px;
    }
    .title-overlay-portfolio {
        font-size: 20px;
        line-height: 30px;
    }
    .titoli-verde-scuro,
    .titoli-verde-medio,
    .titoli-verde-chiaro {
        font-size: 30px;
        line-height: 35px;
    }
    .portfolio-project-name {
        font-size: 20px;
        line-height: 25px;
    }
    .btn-scopri, .btn-invia {
        font-size: 15px;
        line-height: 40px;
        min-width: 100px;
        padding: 0px 15px;
    }
    .slider-item-cont {
        width: 100%;
    }

    #slider-cont {
        height: 80px;
    }
    #slider {
        height: 80px;
    }
    .block-logo_cliente {
        width: 105px;  /* Bisogna Sommare 25 di Gutter */
        height: 80px;
    }
    .anchor-abs {
        top: -100px;
    }
}

/* media query per iframe */
@media only screen and (min-width:220px) and (max-width:1399px) {
    .video-cont {
        height: calc(100vw / 16 * 9);
    }
}
