@charset "UTF-8";
/*###################### Html5 css Reset #############################*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: inherit;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/*###################### Animation #############################*/
@-webkit-keyframes imageAnimation {
  0% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
}
@keyframes imageAnimation {
  0% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
}

@-webkit-keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/*########### Header Main ###############################################*/
header.headerMain {
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  color: #000;
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

header.headerMain .inner {
  position: relative;
  width: calc(100% - 160px);
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
}

header.headerMain .inner .logo {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 180px;
  height: 46px;
  margin-top: 6px;
  background-image: url("../img/WElogo.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

header.headerMain .navLanguage {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100px;
  line-height: 60px;
  overflow: hidden;
  text-transform: capitalize;
  text-align: right;
  font-weight: 700;
}

header.headerMain .navLanguage li {
  display: inline;
  padding-right: 10px;
}

header.headerMain .navLanguage li a {
  color: #ddd;
}

header.headerMain .navLanguage li a:hover {
  color: #ccc;
}

header.headerMain .navLanguage li.current-lang a {
  color: #333;
}

header.headerMain .navSocial {
  display: none;
}

@media only screen and (min-width: 640px) {
  header.headerMain .navSocial {
    position: absolute;
    top: 0;
    right: 100px;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 60px;
    font-size: 1.4em;
    border-right: 1px dotted #ddd;
    padding-right: 10px;
  }
  header.headerMain .navSocial a {
    padding: 0 8px;
    color: #999;
  }
}

nav.navMain {
  display: none;
  margin: 0 auto 20px;
  text-align: center;
  font-weight: 700;
}

nav.navMain li {
  display: inline;
  line-height: 1.4em;
}

nav.navMain li a {
  color: #333;
}

@media only screen and (min-width: 768px) {
  nav.navMain {
    display: block;
  }
  nav.navMain li {
    display: inline;
    line-height: 1.4em;
  }
  nav.navMain li a {
    color: #333;
  }
  nav.navMain li + li {
    border-left: 1px solid #ccc;
    padding-left: 10px;
    margin-left: 10px;
  }
}

body.admin-bar header.headerMain {
  top: 32px;
}

/*########### Infolab ###############################################*/
header.category {
  margin: 0 auto 20px;
}

header.category .maincategory {
  display: block;
  background-color: #f0f0f0;
  padding: 10px 20px;
}

header.category .maincategory .logo {
  display: block;
  width: 200px;
  height: 80px;
  background-image: url("../img/ILlogo.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 auto;
}

header.category .subcategorySelector {
  text-align: center;
}

header.category .subcategorySelector li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 4px 2px;
  font-weight: 700;
  font-size: 1.6em;
}

header.category .subcategorySelector li a {
  display: block;
  color: #fff;
  padding: 40px 20px;
}

header.category .subcategorySelector li a.color1 {
  background-color: #F24343;
}

header.category .subcategorySelector li a.color2 {
  background-color: #F2BA13;
}

header.category .subcategorySelector li a.color3 {
  background-color: #0387A5;
}

@media only screen and (min-width: 768px) {
  header.category .subcategorySelector {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

header.category .subcategory {
  padding: 20px;
  margin-top: 4px;
  font-size: 1.6em;
  font-weight: 700;
  text-align: center;
}

header.category .subcategory a {
  display: block;
  color: #fff;
}

/* NAV MOBILE  */
.navMobileBtn {
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 60px;
  padding: 14px 18px;
  cursor: pointer;
  border-right: 1px dotted #ddd;
}

.navMobileBtn span {
  display: block;
  width: 25px;
  height: 4px;
  margin: 5px 0;
  background-color: #999;
  -webkit-transition: opacity ease-in-out 350ms,transform ease-in-out 350ms;
  -webkit-transition: opacity ease-in-out 350ms,-webkit-transform ease-in-out 350ms;
  transition: opacity ease-in-out 350ms,-webkit-transform ease-in-out 350ms;
  transition: opacity ease-in-out 350ms,transform ease-in-out 350ms;
  transition: opacity ease-in-out 350ms,transform ease-in-out 350ms,-webkit-transform ease-in-out 350ms;
}

.navMobile {
  z-index: 98;
  position: fixed;
}

.navMobile .inner {
  height: 100%;
  margin: 0 auto;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.navMobile > div {
  display: none;
  position: fixed;
  top: 60px;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  overflow: auto;
  border-top: 1px dotted rgba(255, 255, 255, 0.2);
  padding-top: 40px;
}

.navMobile > div ul ul {
  margin: -20px 0 20px;
}

.navMobile > div ul ul a {
  padding: 10px;
}

.navMobile > div.active {
  display: block;
}

.navMobile .neomenu-dd {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 1.6em;
  cursor: pointer;
  text-align: center;
}

.navMobile ul li {
  position: relative;
}

.navMobile ul li ul {
  display: none;
}

.navMobile ul .active {
  display: block;
}

.navMobile ul .active + .neomenu-dd {
  display: none;
}

.navMobile ul .active + .neomenu-dd + .neomenu-dd {
  display: none;
}

.navMobile ul + .neomenu-dd {
  display: block;
}

.navMobile ul + .neomenu-dd + .neomenu-dd {
  display: none;
}

.navMobile .navSimple {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1.2em;
}

.navMobile .navSimple .area-heading {
  text-transform: uppercase;
  color: #999;
  text-align: center;
  padding: 20px;
  font-size: 2em;
  letter-spacing: 4px;
}

.navMobile .navSimple ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  margin-bottom: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 1px dotted #ddd;
  padding-bottom: 20px;
}

.navMobile .navSimple ul li {
  text-align: center;
}

.navMobile .navSimple ul li a {
  display: block;
  color: #000;
  margin: 0 0 8px 0;
  text-align: center;
  padding: 10px;
  font-weight: 700;
}

.navMobile .navSocial {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 60px;
  text-align: center;
  font-size: 2.4em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.navMobile .navSocial a {
  padding: 0 8px;
  color: #999;
}

.navOpen .navMobile > div {
  display: block;
  -webkit-transition: all ease-in 3s;
  transition: all ease-in 3s;
}

.navOpen .navMobileBtn span:nth-child(1) {
  -webkit-transform: translateY(7px) rotateZ(-45deg);
  transform: translateY(7px) rotateZ(-45deg);
}

.navOpen .navMobileBtn span:nth-child(2) {
  opacity: 0;
}

.navOpen .navMobileBtn span:nth-child(3) {
  -webkit-transform: translateY(-11px) rotateZ(45deg);
  transform: translateY(-11px) rotateZ(45deg);
}

/*########### Block ###############################################*/
.block {
  display: -ms-grid;
  display: grid;
  margin: 0 auto;
  position: relative;
  -ms-flex-line-pack: center;
      align-content: center;
}

.block.text h1 {
  font-family: "Roboto", sans-serif;
  font-size: 2em;
  line-height: 1.2em;
}

@media only screen and (min-width: 640px) {
  .block.text h1 {
    font-size: 3em;
  }
}

.block.text h2 {
  font-family: "Roboto", sans-serif;
  font-size: 2.8em;
  font-weight: 700;
}

.block.text h3 {
  font-family: "Roboto", sans-serif;
  font-size: 2.4em;
  font-weight: 700;
}

.block.text h4 {
  font-size: 1.4em;
  line-height: 1.2em;
}

.block.text h6 {
  font-size: 0.8em;
  line-height: 1.2em;
}

.block.text p {
  line-height: 1.6em;
  font-weight: 300;
}

.block.text strong, .block.text b {
  font-weight: 700;
}

.block.text ul {
  font-weight: 700;
}

.block.text ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.block.text ul li:before {
  content: '';
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  width: 10px;
  height: 10px;
  border: 1px solid #ccc;
  margin-right: 10px;
}

.block.text * + * {
  margin-top: 10px;
}

@media only screen and (min-width: 768px) {
  .block.text * + * {
    margin-top: 20px;
  }
}

.block.text.dropcap p:first-of-type:first-letter {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  float: left;
  font-size: 7em;
  line-height: 1;
  padding: 8px 10px 0 0;
  margin-bottom: 0;
}

.block.text.col-2 p {
  -webkit-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 20px;
          column-gap: 20px;
}

.block.quote blockquote {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 6fr;
      grid-template-columns: 1fr 6fr;
  grid-gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
      grid-template-areas: "icon text" ".    cite";
}

.block.quote blockquote i {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: icon;
  text-align: center;
  font-size: 3em;
}

.block.quote blockquote p {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: text;
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 2.4em;
  letter-spacing: -2px;
  line-height: 1.1em;
}

.block.quote blockquote cite {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: cite;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
      grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-style: normal;
}

.block.quote blockquote cite:before {
  content: '―';
  display: inline-block;
  width: 20px;
  margin-right: 10px;
}

.block.media figure img {
  max-width: 100%;
}

.block.media figure.background-image {
  z-index: 3;
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.block.media figure.background-image-fixed {
  background-attachment: fixed;
}

@media only screen and (max-width: 767px) {
  .block.media figure.background-image-fixed {
    background-attachment: scroll;
  }
}

.block.media video {
  max-width: 100%;
}

.block.column {
  grid-gap: 10px;
}

@media only screen and (min-width: 768px) {
  .block.column.column-2 {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
  }
}

@media only screen and (min-width: 768px) {
  .block.column.column-2-1 {
    -ms-grid-columns: 3fr 1fr;
        grid-template-columns: 3fr 1fr;
    grid-gap: 20px;
  }
}

@media only screen and (min-width: 768px) {
  .block.column.column-2-2 {
    -ms-grid-columns: 1fr 3fr;
        grid-template-columns: 1fr 3fr;
    grid-gap: 20px;
  }
}

@media only screen and (min-width: 768px) {
  .block.column.column-3 {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
  }
}

@media only screen and (min-width: 768px) {
  .block.column.column-4 {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
  }
}

@media only screen and (min-width: 1024px) {
  .block.column.column-4 {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 20px;
  }
}

.block .block {
  z-index: 4;
  position: relative;
  width: 100%;
  padding: 0 !important;
}

.block.width-full {
  max-width: 100%;
}

.block.width-wide {
  max-width: 1600px;
}

.block.width-large {
  max-width: 1400px;
}

.block.width-normal {
  max-width: 1200px;
}

.block.width-medium {
  max-width: 980px;
}

.block.width-small {
  max-width: 700px;
}

.block.width-mini {
  max-width: 600px;
}

.block.width-micro {
  max-width: 400px;
}

.block.height-full {
  min-height: 100vh;
}

.block.height-big {
  min-height: 80vh;
}

.block.height-normal {
  min-height: 600px;
}

.block.height-medium {
  min-height: 400px;
}

.block:not(.width-full) {
  padding: 0 10px;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-text-size-adjust: none;
}

html {
  font-size: 14px;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 50px;
}

body.navOpen {
  overflow: hidden;
}

@media only screen and (min-width: 1024px) {
  body {
    font-size: 1.14em;
  }
}

/*########### Generic ###############################################*/
a {
  text-decoration: none;
  color: #333;
}

a:focus {
  outline: none;
}

li {
  list-style: none inside;
}

textarea {
  resize: none;
}

.spacer {
  height: 30px;
}

.separator {
  border-top: 1px dotted #ddd;
  margin-top: 0 !important;
}

/*------- Container ----------------------*/
.container {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
}

/*########### Main ###############################################*/
main {
  min-height: calc(100vh - 750px);
}

main > * + * {
  margin-top: 20px !important;
}

@media only screen and (min-width: 768px) {
  main > * + * {
    margin-top: 30px !important;
  }
}

@media only screen and (min-width: 1024px) {
  main > * + * {
    margin-top: 40px !important;
  }
}

@media only screen and (min-width: 1248px) {
  main > * + * {
    margin-top: 50px !important;
  }
}

main.column-2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3fr 1fr;
      grid-template-columns: 3fr 1fr;
  grid-gap: 30px;
}

.switcher {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 10px;
  margin: 0 10px;
}

.switcher a {
  height: 100%;
  min-height: 300px;
  background-color: #eee;
}

.switcher a .inner {
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 20px;
}

.switcher a .inner h2 {
  font-family: "Frank Ruhl Libre", serif;
  font-size: 3em;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.switcher a .inner p {
  font-size: 1em;
  line-height: 1.4em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #333;
}

@media only screen and (min-width: 768px) {
  .switcher a .inner {
    background-color: transparent;
  }
}

.switcher .publishing {
  background-image: url("../img/Creazioni-MyView.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
}

.switcher .infolab {
  background-image: url("../img/Infolab-MyView.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
  text-align: right;
}

.switcher .infolab .logo {
  float: right;
  width: 200px;
  height: 70px;
  background-image: url("../img/ILlogo.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 10px;
}

@media only screen and (min-width: 640px) {
  .switcher {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    height: 40vh;
    min-height: 400px;
  }
}

@media only screen and (min-width: 1024px) {
  .switcher {
    height: 60vh;
    min-height: 600px;
  }
}

@media only screen and (min-width: 1920px) {
  .switcher {
    max-width: 1900px;
    margin: 0 auto;
  }
}

/*########### New List ###############################################*/
.caseList {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 20px;
  margin: 30px 0;
}

.caseList article {
  position: relative;
  background-color: #f5f5f5;
  border: 1px solid #eee;
  -webkit-transition: 1s background-color ease;
  transition: 1s background-color ease;
}

.caseList article a {
  color: #000;
}

.caseList article figure {
  height: 120px;
  text-align: center;
  margin-bottom: 10px;
}

.caseList article figure i {
  font-size: 4em;
  line-height: 120px;
  color: #393939;
}

.caseList article header {
  height: auto;
  padding: 0 20px 20px;
}

.caseList article header .article-title {
  display: block;
  font-size: 1.4em;
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom: 10px;
}

.caseList article header p {
  font-size: 0.9em;
  font-weight: 300;
  color: #333;
  line-height: 1.2em;
}

.caseList article .call2action {
  display: block;
  width: 120px;
  padding: 6px;
  background-color: #333;
  color: #fff;
  text-align: center;
  margin: 0 auto 20px;
  border-radius: 10px;
  font-weight: 700;
}

.caseList article:hover {
  background-color: #ddd;
}

@media only screen and (min-width: 480px) {
  .caseList {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
  .caseList article header {
    height: 180px;
  }
}

@media only screen and (min-width: 1024px) {
  .caseList {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .caseList article header {
    height: 220px;
  }
}

.customers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  margin-top: -20px !important;
  padding-bottom: 40px;
}

.customers > div {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 140px;
          flex: 1 1 140px;
  height: 100px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 10px;
}

.contacts a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #f5f5f5;
  border-radius: 40px;
}

.contacts a i {
  font-size: 1.8em;
  display: block;
  width: 80px;
  height: 80px;
  line-height: 58px;
  border: 10px solid #ddd;
  background-color: #fff;
  border-radius: 50%;
  text-align: center;
  margin-right: 10px;
  -webkit-transition: 1s all ease;
  transition: 1s all ease;
}

.contacts a span {
  font-weight: 300;
  font-size: 0.8em;
}

.contacts a span strong {
  display: block;
  font-weight: 700;
  font-size: 1.6em;
}

.contacts a:hover i {
  border-color: #bbb;
}

@media only screen and (max-width: 767px) {
  .contacts a {
    margin: 10px auto;
  }
}

@media only screen and (min-width: 768px) {
  .contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .contacts a {
    margin: 0 10px;
  }
}

.contacts .waBTN {
  margin-bottom: 20px;
}

.contacts .waBTN i {
  font-size: 2.4em;
}

/*########### Article Detail ###############################################*/
.articleDetail article {
  margin: 30px auto 40px;
}

.articleDetail article figure {
  margin-bottom: 10px;
}

.articleDetail article figure img {
  max-width: 100%;
  height: auto;
}

.articleDetail article header .entity-section {
  display: inline-block;
  background-color: #000;
  padding: 6px 8px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.articleDetail article header .article-datetime {
  display: none;
}

.articleDetail article header .article-category {
  display: none;
}

.articleDetail article header h1 {
  display: block;
  font-size: 2em;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1em;
}

.articleDetail article figure.articleCover {
  margin: 0 auto 30px;
}

.articleDetail article figure.articleCover img {
  width: 100%;
  height: auto;
}

.articleDetail article .articleContent img {
  max-width: 100%;
  height: auto;
}

.articleDetail article .articleContent p {
  color: #333;
}

.articleDetail article .articleContent ul {
  color: #333;
}

.articleDetail article .articleContent ol {
  color: #333;
}

.articleDetail article .articleContent iframe {
  width: 100%;
  max-width: 100%;
  min-height: 500px;
}

.pagination {
  margin: 30px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pagination > * {
  display: block;
  padding: 8px;
  border: 1px solid #ddd;
  margin: 2px;
  white-space: nowrap;
  color: #333;
  font-weight: 700;
}

.pagination > *.current {
  background-color: #333;
  color: #fff;
}

.pagination ul li.active a {
  background-color: #333;
  border-color: #333;
  color: #fff;
}

.tagList {
  margin: 40px 0;
}

.tagList > h3 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.4em;
  margin-bottom: 6px;
}

.tagList > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-weight: 700;
}

.tagList > div a {
  display: block;
  padding: 6px;
  border: 1px solid #ddd;
  margin: 0 4px 4px 0;
  white-space: nowrap;
  color: #333;
}

/* Search */
.searchform label {
  display: block;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 0.9em;
}

.searchform input[type="text"] {
  width: calc(100% - 100px);
  padding: 8px;
  font-weight: 400;
  font-size: 1.1em;
}

.searchform input[type="submit"] {
  cursor: pointer;
  width: 90px;
  padding: 10px;
  border: none;
  font-size: 1.2em;
  font-weight: 700;
  background-color: #333;
  color: #fff;
}

/* Comments */
.comments {
  margin: 40px 0;
  padding-top: 40px;
  border-top: 1px dotted #ddd;
}

.comments h3 {
  font-weight: 700;
  font-size: 1.4em;
  margin-bottom: 6px;
}

.comments .commentlist {
  margin-bottom: 40px;
}

.comments .commentlist li {
  margin-bottom: 20px;
}

.comments .commentlist li .comment-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.comments .commentlist li .comment-author > * + * {
  margin-left: 10px;
}

.comments .commentlist li .comment-author cite {
  font-weight: 700;
}

.comments .commentlist li .comment-meta {
  margin-bottom: 10px;
  font-weight: 700;
}

.comments .commentlist li p {
  font-size: 1em;
  line-height: 1.4em;
  margin-bottom: 10px;
}

.comments .comment-respond p {
  margin-bottom: 10px;
}

.comments .comment-respond label {
  display: block;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 0.9em;
}

.comments .comment-respond textarea {
  width: 100%;
  padding: 10px;
  font-weight: 400;
}

.comments .comment-respond input[type="text"] {
  min-width: 300px;
  padding: 10px;
  font-weight: 400;
  font-size: 1.1em;
}

.comments .comment-respond .comment-form-cookies-consent label {
  display: inline;
}

.comments .comment-respond .form-submit {
  margin-top: 30px;
}

.comments .comment-respond .form-submit input {
  cursor: pointer;
  padding: 20px;
  border-radius: 6px;
  border: none;
  font-size: 1.2em;
  font-weight: 700;
  background-color: #333;
  color: #fff;
}

.comments .nocomments {
  font-size: 1.2em;
}

/*########### Sidebar ###############################################*/
aside.sidebar {
  padding-left: 30px;
  border-left: 1px solid #eee;
}

aside.sidebar > div + div {
  margin-top: 40px;
}

aside.sidebar > div > h3 {
  font-weight: 700;
  font-size: 1.4em;
  margin-bottom: 20px;
}

aside.sidebar > div > ul > li {
  margin-bottom: 20px;
}

aside.sidebar > div > ul > li > a {
  font-size: 1.2em;
}

aside.sidebar > div > ul > li > ul {
  margin: 10px 0 0 20px;
}

aside.sidebar > div > ul > li > ul > li {
  margin-bottom: 10px;
}

aside.sidebar > div > ul > li > ul > li > a {
  font-size: 1.1em;
}

aside.sidebar > div > ul > li > ul > li > ul {
  margin: 10px 0 0 20px;
}

aside.sidebar > div > ul > li > ul > li > ul > li {
  margin-bottom: 4px;
}

/*########### Footer Main ###############################################*/
.footerMain {
  text-align: center;
  background-color: #333;
  color: #fff;
  padding: 30px 0;
  margin-top: 40px;
}

.footerMain .logo {
  display: none;
}

.footerMain p {
  font-size: 0.8em;
  line-height: 1.4em;
  color: #ddd;
}

.footerMain p strong {
  font-weight: 700;
}

.footerMain .navMain {
  display: block;
  margin: 40px auto;
  padding: 30px 20px;
  border-top: 1px dotted rgba(255, 255, 255, 0.1);
  border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
}

.footerMain .navMain a {
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .footerMain .navMain li {
    display: block;
    margin-bottom: 10px;
  }
}

.footerMain .networkList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footerMain .networkList a {
  width: 240px;
  height: 50px;
}

.footerMain .networkList a.creazioni {
  background-image: url("../img/CElogoWhite.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.footerMain .networkList a.icdl {
  background-image: url("../img/icdl.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.footerMain .partner {
  padding: 0 20px 30px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
  margin-bottom: 40px;
}

.footerMain .partner .ansaLogo {
  display: block;
  width: 80px;
  height: 100px;
  background-image: url("../img/ansa.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 auto;
}

.layer-special {
  background: -webkit-gradient(linear, right top, left top, from(#E40079), to(#72003D));
  background: linear-gradient(270deg, #E40079, #72003D);
  background-size: 1000% 1000%;
  -webkit-animation: gradientAnimation 30s ease infinite;
          animation: gradientAnimation 30s ease infinite;
}

.hpIntro {
  position: relative;
  height: 200px;
  background-color: #F2BA13;
  overflow: hidden;
  background-image: url("../img/cover2.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding: 40px;
}

.myGrid {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.myGrid p {
  margin-top: 10px !important;
  line-height: 1.3em !important;
  font-size: 0.9em;
}

.publishingImage1 {
  height: 100%;
  background-image: url("../img/Creazioni-MyView.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  background-color: #E40079;
}

.covidBtn {
  display: inline-block;
  padding: 20px;
  border: 1px solid #cf1515;
  color: #cf1515;
  font-weight: 700;
  margin: 0 auto;
  border-radius: 20px;
  background-color: rgba(207, 21, 21, 0.1);
  font-size: 1.1em;
}

.newsletter {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.newsletter p {
  line-height: 1em;
}

.newsletter .indicates-required {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dotted #ddd;
}

.newsletter .mc-field-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}

.newsletter .mc-field-group input {
  width: 100%;
  padding: 10px;
  font-size: 1.1em;
  -webkit-appearance: none;
  border: 1px solid #ddd;
}

.newsletter .clear {
  margin-top: 20px;
}

.newsletter .clear input {
  padding: 10px 30px;
  border-radius: 20px;
  border: none;
  font-size: 1.2em;
  font-weight: 700;
  background-color: #F24343;
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
}

.newsletter .clear input:hover {
  background-color: #ef1313;
}

.icdlTop {
  height: 91px;
  background-color: #439ed9;
  background-image: url("../img/icdl-white.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 76px;
}

@media print {
  @page {
    size: portrait;
  }
  * {
    -moz-print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  body {
    margin: 0.5cm;
    background-color: transparent;
  }
}

@media (max-width: 1023px) {
  header.headerMain .navMain {
    display: none;
  }
  .newsList.newsHp {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
  body.paged .newsList.newsHp article:nth-child(1),
  body.paged .newsList.newsHp article:nth-child(2) {
    grid-column: span 1;
  }
  main.column-2 {
    -ms-grid-columns: auto;
        grid-template-columns: auto;
  }
  aside.sidebar {
    padding: 0;
    border: none;
  }
}

@media (max-width: 767px) {
  .videoHp .opening {
    max-width: none;
    margin: 10px;
  }
  .promo {
    -ms-grid-columns: auto;
        grid-template-columns: auto;
  }
}

@media (max-width: 479px) {
  header.headerInfo .inner {
    padding: 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .videoHp {
    min-height: 80vh;
  }
  .videoHp .opening h2 {
    font-size: 3em;
    margin-bottom: 20px;
  }
  .servicesHp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  .newsList {
    -ms-grid-columns: auto !important;
        grid-template-columns: auto !important;
  }
  body:not(.paged) .newsList.newsHp article:nth-child(1),
  body:not(.paged) .newsList.newsHp article:nth-child(6) {
    grid-column: span 1;
  }
  .comments .comment-respond input[type="text"] {
    width: 100%;
    min-width: 0;
  }
}
/*# sourceMappingURL=core.css.map */