@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;600;700&family=Open+Sans:wght@400;700&display=swap");
/*###################### 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 #############################*/
@keyframes imageAnimation {
  0% {
    animation-timing-function: ease-in;
  }
  100% {
    transform: scale(1.4);
  }
}
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
html {
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
}

body {
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: rgba(0, 0, 0, 0.95);
}
body.navOpen {
  overflow: hidden;
}
@media only screen and (min-width: 1024px) {
  body {
    font-size: 1.06em;
  }
}
@media only screen and (min-width: 1248px) {
  body {
    font-size: 1.14em;
  }
}

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

/*########### Main ###############################################*/
/* main{

    .inner{
        max-width:1600px;
        min-height: calc(100vh - 400px);
        margin:0 auto;
    } 
} */
/*########### Header Main ###############################################*/
header.headerMain {
  transition: height ease-in-out 350ms;
  padding: 0 10px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
}
header.headerMain .inner {
  display: flex;
  padding: 10px;
  margin: 0 auto;
  max-width: 1200px;
  color: rgba(255, 255, 255, 0.86);
}
header.headerMain .inner .navTop {
  display: none;
}
header.headerMain .inner a {
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
}
header.headerMain .inner a:hover {
  color: #09CE41;
}
header.headerMain .inner .logo {
  display: flex;
  align-items: center;
}
header.headerMain .inner .logo .logoIcon {
  width: 100px;
  height: 50px;
  background-image: url("../img/HelioLogo_White.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center left;
}
header.headerMain .inner .logo .text {
  margin: 3px 0 0 20px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.6em;
  font-weight: 300;
}
header.headerMain .navMobileBtn {
  z-index: 9999;
  position: absolute;
  top: 18px;
  right: 10px;
  width: 40px;
  cursor: pointer;
  transition: all ease-in-out 350ms;
}
header.headerMain .navMobileBtn span {
  display: block;
  width: 32px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.86);
  margin: 5px 0;
  border-radius: 1px;
  transition: opacity ease-in-out 350ms, transform ease-in-out 350ms;
}
header.headerMain .navMobileBtn:hover span {
  background-color: #09CE41;
}
.navOpen header.headerMain .navMain {
  display: none;
}

.navSmall header.headerMain {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.9);
}
.navSmall header.headerMain .inner {
  /* .navMobileBtn{

      span{background-color:#000;}
  } */
}
.navSmall header.headerMain .inner .logo .logoIcon {
  background-image: url("../img/HelioLogo_Fade.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.navSmall header.headerMain .inner .logo .text {
  color: #1dad45;
}

@media only screen and (max-width: 767px) {
  .navOpen header.headerMain .inner {
    color: rgba(255, 255, 255, 0.86);
    /* .navMobileBtn{

        span{background-color:$whiteAlpha;}
    } */
  }
  .navOpen header.headerMain .inner .navTop {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease-in 3s;
    z-index: 9998;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: auto;
    text-align: center;
    padding: 40px;
    background-color: #0d0d0d;
    font-size: 2em;
    line-height: 1.8em;
    /* a{color:$whiteAlpha;} */
  }
  .navOpen .navMobileBtn span:nth-child(1) {
    transform: translateY(7px) rotateZ(-45deg);
  }
  .navOpen .navMobileBtn span:nth-child(2) {
    opacity: 0;
  }
  .navOpen .navMobileBtn span:nth-child(3) {
    transform: translateY(-9px) rotateZ(45deg);
  }
}
@media only screen and (min-width: 480px) {
  header.headerMain .inner .logo {
    width: 300px;
  }
}
@media only screen and (min-width: 768px) {
  header.headerMain .inner {
    justify-content: space-between;
    align-items: center;
  }
  header.headerMain .inner .navMobileBtn {
    display: none;
  }
  header.headerMain .inner .logo {
    width: 400px;
  }
  header.headerMain .inner .logo svg {
    width: 400px;
  }
  header.headerMain .inner .navTop {
    display: block;
    font-size: 1.1em;
    white-space: nowrap;
  }
  header.headerMain .inner .navTop ul {
    display: flex;
  }
  header.headerMain .inner .navTop ul li {
    cursor: pointer;
  }
  header.headerMain .inner .navTop ul li + li {
    margin-left: 10px;
    border-left: 1px solid;
    padding-left: 10px;
  }
}
@media only screen and (min-width: 1024px) {
  header.headerMain .navMain {
    display: none;
  }
  header.headerMain .inner .logo {
    width: 500px;
  }
}
@media only screen and (min-width: 1248px) {
  header.headerMain .inner .logo {
    width: 600px;
  }
}
* {
  box-sizing: border-box;
  -webkit-text-size-adjust: none;
}

/*########### Generic ###############################################*/
a {
  text-decoration: none;
  color: #393939;
}
a:hover {
  color: #202020;
}
a:focus {
  outline: none;
}

li {
  list-style: none inside;
}

textarea {
  resize: none;
}

strong {
  font-weight: 700;
}

.spacer {
  height: 0;
}

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

.home main {
  position: relative;
  padding-top: 500px;
}
@media only screen and (min-width: 768px) {
  .home main {
    padding-top: 700px;
  }
}

.page main {
  position: relative;
  padding-top: 70px;
}

.subheader {
  background: linear-gradient(90deg, #2E7341 0%, #09CE41 100%);
  margin-bottom: 40px;
}
.subheader .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.subheader .inner h1 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 2em;
  font-weight: 300;
  color: #fff;
}

.opening {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  height: 500px;
}
.opening-close .opening {
  display: none;
}
.opening .owl-carousel {
  height: 100%;
}
.opening .owl-carousel .owl-stage-outer {
  height: 100%;
}
.opening .owl-carousel .owl-stage-outer .owl-stage {
  height: 100%;
}
.opening .owl-carousel .owl-stage-outer .owl-stage .owl-item {
  height: 100%;
}
.opening .item {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.opening .item header {
  color: rgba(255, 255, 255, 0.86);
  max-width: 1200px;
  padding: 130px 20px 0;
  position: relative;
  z-index: 10;
  text-align: left;
  margin: 0 auto;
  height: 100%;
}
.opening .item header h2 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 2.6em;
  font-weight: 300;
  margin-bottom: 20px;
}
.opening .item header h2 br {
  display: none;
}
.opening .item header p {
  position: absolute;
  bottom: 30px;
  left: 20px;
  right: 20px;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.1em;
  font-weight: 300;
  text-align: justify;
}
.opening .item header p strong {
  font-weight: 600;
}
.opening .item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
@media only screen and (min-width: 560px) {
  .opening .item header {
    padding: 200px 20px 0;
  }
  .opening .item header h2 {
    font-size: 3.2em;
  }
  .opening .item header p {
    font-size: 1.2em;
  }
}
@media only screen and (min-width: 768px) {
  .opening {
    height: 700px;
  }
  .opening .item header {
    padding: 300px 20px 0;
  }
  .opening .item header h2 {
    font-size: 4em;
  }
  .opening .item header h2 br {
    display: block;
  }
  .opening .item header p {
    bottom: 60px;
    font-size: 1.4em;
  }
}
@media only screen and (min-width: 1248px) {
  .opening .item header {
    padding: 300px 10px 0;
  }
  .opening .item header p {
    left: 10px;
    right: 10px;
  }
}

.scroll {
  padding: 30px 20px;
  border-bottom: 2px solid #2E7341;
  border-top: 2px solid #2E7341;
  background: radial-gradient(ellipse, rgba(9, 206, 55, 0.3), rgb(0, 0, 0));
  background-size: 150% 150%;
  background-repeat: no-repeat;
  animation: gradient-animation 10s ease infinite;
  margin-bottom: 40px;
}

.scrollContainer {
  padding: 30px 20px;
  border-bottom: 2px solid #2E7341;
  border-top: 2px solid #2E7341;
  background: radial-gradient(ellipse, rgba(9, 206, 55, 0.3), rgb(0, 0, 0));
  background-size: 150% 150%;
  background-repeat: no-repeat;
  background-color: #000;
  animation: gradient-animation 10s ease infinite;
  position: relative;
}
.scrollContainer > figure {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url("../img/bg/scroll.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: grayscale(100);
  mix-blend-mode: multiply;
}
@media only screen and (min-width: 768px) {
  .scrollContainer {
    padding: 30px 40px;
  }
}

.technologyV3 {
  position: relative;
  z-index: 2;
  padding: 30px 0;
  margin-bottom: 20px;
}
.technologyV3 h2 {
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
  padding: 24px 20px 20px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 3em;
  font-weight: 300;
  margin-bottom: 20px;
}
.technologyV3 h2 a {
  color: rgba(255, 255, 255, 0.86);
}
.technologyV3 .list {
  display: grid;
  grid-gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.technologyV3 .list .item {
  display: flex;
  flex-flow: column;
  align-items: center;
  background-color: rgb(18, 18, 18);
  color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 0 40px rgba(29, 173, 69, 0.4196078431), 0 0 24px #000 inset;
  padding: 30px;
  border-radius: 30px;
  position: relative;
  z-index: 4;
  transition: all 0.2s ease-in-out;
}
.technologyV3 .list .item header .icon {
  width: 120px;
  height: 100px;
  margin: 0 auto 20px;
}
.technologyV3 .list .item header h3 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 2em;
  font-weight: 300;
  letter-spacing: -1px;
  margin-bottom: 20px;
  text-align: center;
}
.technologyV3 .list .item header p {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.1em;
  font-weight: 300;
  line-height: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
}
.technologyV3 .list .item header .cta {
  width: 160px;
  padding: 2px;
  font-weight: 700;
  border-radius: 20px;
  text-align: center;
  background: linear-gradient(90deg, #09CE41 0%, #2E7341 100%);
}
.technologyV3 .list .item header .cta span {
  display: block;
  padding: 10px 20px;
  background-color: #fff;
  border-radius: 20px;
}
.technologyV3 .list .item.modeling header .icon {
  background-image: url("../img/icons/techB1.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.technologyV3 .list .item.forecast header .icon {
  background-image: url("../img/icons/techB2.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.technologyV3 .list .item.bigdata header .icon {
  background-image: url("../img/icons/techB3.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.technologyV3 .list .item:hover {
  z-index: 5;
  transform: scale(1.06);
}
@media only screen and (min-width: 1024px) {
  .technologyV3 .list {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
  }
}

.servicesV3 {
  position: relative;
  z-index: 2;
  margin-bottom: 80px;
  padding: 30px 0;
}
.servicesV3 h2 {
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
  padding: 24px 20px 20px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 3em;
  font-weight: 300;
  margin-bottom: 20px;
}
.servicesV3 h2 a {
  color: rgba(255, 255, 255, 0.86);
}
.servicesV3 .list {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  max-width: 1200px;
}
.servicesV3 .list .item {
  background-color: rgb(18, 18, 18);
  color: rgba(255, 255, 255, 0.86);
  padding: 40px 40px;
  font-family: "Josefin Sans", sans-serif;
  box-shadow: 0 0 40px rgba(29, 173, 69, 0.4196078431), 0 0 24px #000 inset;
  padding: 30px;
  border-radius: 30px;
  display: flex;
  flex-flow: column;
  align-items: center;
  position: relative;
  z-index: 4;
  transition: all 0.2s ease-in-out;
}
.servicesV3 .list .item .icon {
  width: 100%;
  height: 40px;
  margin: 0 auto 16px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.servicesV3 .list .item .title {
  display: none;
}
.servicesV3 .list .item p {
  line-height: 1.1em;
  font-size: 1.1em;
  font-weight: 300;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
}
.servicesV3 .list .item:hover {
  z-index: 5;
  transform: scale(1.06);
}
@media only screen and (max-width: 767px) {
  .servicesV3 .list {
    margin: 20px 0 0;
  }
}
@media only screen and (min-width: 560px) {
  .servicesV3 .list.list4 {
    grid-template-columns: 1fr 1fr;
  }
  .servicesV3 .list.list5 {
    grid-template-columns: 1fr 1fr;
  }
  .servicesV3 .list.list6 {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 768px) {
  .servicesV3 .list {
    grid-gap: 30px;
    margin: 40px auto 0;
  }
  .servicesV3 .list.list3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .servicesV3 .list.list4 {
    grid-template-columns: 1fr 1fr;
  }
  .servicesV3 .list.list5 {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .servicesV3 .list.list6 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.team {
  position: relative;
  background-color: #0d0d0d;
  padding-top: 40px;
}
.team .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.team h2 {
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  font-size: 3em;
  font-weight: 300;
  margin-bottom: 20px;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.86);
}
.team .list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
  padding: 0 10px;
}
.team .list .item {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.9);
  color: rgba(255, 255, 255, 0.86);
  padding: 30px 10px 20px;
  border-radius: 20px;
}
.team .list .item figure {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 10px;
}
.team .list .item figure img {
  width: 100%;
}
.team .list .item .name {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 4px;
}
.team .list .item .role {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1em;
  font-weight: 300;
  line-height: 1.2em;
}
@media only screen and (min-width: 560px) {
  .team .list {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 640px) {
  .team .list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media only screen and (min-width: 1024px) {
  .team .list {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}
.partners {
  position: relative;
  background-color: #0d0d0d;
  padding-top: 40px;
}
.partners .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.partners h2 {
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  font-size: 3em;
  font-weight: 300;
  margin-top: 40px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.86);
}
.partners .list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Aggiornamento qui */
  grid-gap: 30px;
  padding: 0 10px;
}
.partners .list .item {
  height: 50px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(34deg) brightness(105%) contrast(101%);
}
.partners .list .item:hover {
  filter: grayscale(0);
  opacity: 1;
}
.news {
  position: relative;
  background-color: #0d0d0d;
  padding-top: 40px;
}
.news .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}
.news h2 {
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  font-size: 3em;
  font-weight: 300;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.86);
}
.news .list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}
.news .list article {
    color: rgba(255, 255, 255, 0.86);
}
.news .list article a {
  color: rgba(255, 255, 255, 0.86);
}
.news .list article a:hover {
  color: #1dad45;
}
.news .list article figure {
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #393939;
  margin-bottom: 20px;
}
.news .list article figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news .list article header .category {
  text-transform: uppercase;
  margin-bottom: 10px;
}
.news .list article header .title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 10px;
}
.news .list article header .summary {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
  line-height: 1.2em;
}
@media only screen and (min-width: 640px) {
  .news .list {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 1024px) {
  .news .list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.newsDetail {
  padding: 30px 20px 0;
  max-width: 1200px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
}
.newsDetail article header {
  margin-bottom: 30px;
}
.newsDetail article header h1 {
  font-size: 3em;
  line-height: 1.1em;
}
.newsDetail article header h2 {
  font-size: 1.6em;
  line-height: 1.1em;
  margin-top: 10px;
}
.newsDetail article header .datetime {
  font-size: 0.9em;
  margin-top: 10px;
  color: #1dad45;
}

.newsDetail emph {
  font-weight: 600;
  color: #1dad45;
}

.newsDetail article figure {
  margin-bottom: 40px;
  text-align: center;
}

.newsDetail article figure img {
  width: 600px;
  height: 400px;
  object-fit: cover;
  object-position: center center;
  box-shadow: 0 0 100px rgba(29, 173, 69, 0.2196078431), 0 0 24px #000 inset;
  border-radius: 30px;
}

.newsDetail article .newsContent p {
  font-size: 1.2em;
  line-height: 1.2em;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
}
.newsDetail article .newsContent > * + * {
  margin-top: 20px;
}
.newsDetail article .newsContent ul {
  font-size: 1.2em;
  line-height: 1.2em;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
}
.newsDetail article .newsContent ul li {
  list-style: square inside;
}
.newsDetail article .newsContent ol {
  font-size: 1.2em;
  line-height: 1.2em;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
}
.newsDetail article .newsContent ol li {
  list-style: decimal inside;
}
.newsDetail article .newsContent a {
  color: #1dad45;
}
.newsDetail article .newsContent a:hover {
  border-bottom: 1px dotted #1dad45;
}
.newsDetail article .newsContent h3 {
  font-size: 1.6em;
}
.newsDetail article .newsContent h4 {
  font-size: 1.4em;
}
.newsDetail article + article {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px dotted #666;
  margin-bottom: 40px;
}

.pageGrid {
  padding: 0 20px;
  counter-reset: card;
}
.pageGrid .block {
  max-width: 1200px;
  margin: 0 auto 40px;
  background-color: #0d0d0d;
  padding: 20px 10px;
}
.pageGrid .block figure {
  background-color: rgb(18, 18, 18);
  color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 0 100px rgba(29, 173, 69, 0.2196078431), 0 0 24px #000 inset;
  border-radius: 30px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 240px;
  margin: 0 0 30px;
}

.pageGrid emph {
  font-weight: 600;
  color: #1dad45;
}

.pageGrid .block header {
  color: rgba(255, 255, 255, 0.86);
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
}
.pageGrid .block header > .icon {
  width: 120px;
  height: 100px;
  margin: 0 auto 20px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.pageGrid .block header h2 {
  font-size: 2.6em;
  margin-bottom: 20px;
  text-align: center;
}
.pageGrid .block header h2 .icon {
  width: 100%;
  height: 40px;
  margin: 0 auto 20px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.pageGrid .block header h3 {
  font-size: 1.4em;
  line-height: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
}
.pageGrid .block header p {
  font-size: 1.1em;
  line-height: 1.1em;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
}
.pageGrid .block header p + p {
  margin-top: 20px;
}
.pageGrid .block.modeling header .icon {
  background-image: url("../img/icons/techB1.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.pageGrid .block.forecast .icon {
  background-image: url("../img/icons/techB2.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.pageGrid .block.bigdata header .icon {
  background-image: url("../img/icons/techB3.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (min-width: 1024px) {
  .pageGrid .block {
    padding: 20px;
    margin-bottom: 80px;
    display: flex;
  }
  .pageGrid .block figure {
    flex: 4;
    position: sticky;
    top: 100px;
    margin: 0 40px 0 0;
    height: 400px;
  }
  .pageGrid .block header {
    flex: 3;
    padding: 0 40px;
  }
  .pageGrid .block.forecast figure, .pageGrid .block.right figure {
    order: 2;
    margin: 0 0 0 40px;
  }
  .pageGrid .block.forecast header, .pageGrid .block.right header {
    order: 1;
  }
}

/*########### Footer Main ###############################################*/

/* --- Stili Generali del Footer --- */
.footerMain {
    margin-top: 60px;
    padding: 40px 20px; /* Un po' più di padding verticale */
    color: rgba(255, 255, 255, 0.86);
    border-top: 2px solid #2E7341;
    background: radial-gradient(ellipse, rgba(9, 206, 55, 0.6), rgba(0, 0, 0, 0.9));
    background-size: 260% 200%;
    background-repeat: no-repeat;
    animation: gradient-animation 24s ease infinite;
}

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

.footerMain a {
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
}

/* --- Contenitore Principale --- */
.footerMain .inner {
    margin: 0 auto;
    max-width: 1200px;
    /* Su mobile, i figli (.footer-col-*) si impilano di default */
}

/* --- Colonne (la struttura base) --- */
/* (Nessuno stile specifico per mobile, si comportano come normali div) */


/* --- Stili "Get in Touch" --- */
.footerMain .getintouch h2 {
    font-size: 1.4em;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footerMain .getintouch .list a {
    display: flex;
    align-items: center;
}

.footerMain .getintouch .list a + a {
    margin-top: 20px;
}

.footerMain .getintouch .list a .icon {
    width: 40px; /* Leggermente più piccolo per un look più pulito */
    height: 40px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 15px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(34deg) brightness(105%) contrast(101%);
}

.footerMain .getintouch .list a.location .icon {
    background-image: url("../img/icons/location.png");
}

.footerMain .getintouch .list a.mail .icon {
    background-image: url("../img/icons/mail.png");
}

/* --- Stili Navigazione, Info Legali e Copyright --- */
.footerMain .navBottom ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footerMain .navBottom ul li a {
    cursor: pointer;
    font-size: 1.1em;
}

.footerMain .legal-info {
    font-size: 13px;
    line-height: 1.6;
    color: #cccccc;
}

.footerMain .legal-info a {
    color: #ffffff;
    text-decoration: underline;
}

.footerMain .copy {
    font-size: 13px;
    color: #cccccc;
}

/*#########################################################################*/
/* --- LAYOUT MOBILE (fino a 767px) --- */
@media only screen and (max-width: 767px) {
    .footerMain .footer-col-left {
        margin-bottom: 40px;
    }

    .footerMain .navBottom {
        margin-bottom: 30px;
    }

    .footerMain .navBottom ul li + li {
        margin-top: 10px;
    }

    .footerMain .legal-info {
        margin-bottom: 30px;
    }
}
/*#########################################################################*/


/*#########################################################################*/
/* --- LAYOUT DESKTOP (da 768px in su) --- */
@media only screen and (min-width: 768px) {
    .footerMain .inner {
        display: flex; /* Attiva Flexbox per creare le colonne */
        justify-content: space-between; /* Spinge le colonne ai lati */
        align-items: flex-start; /* Allinea il contenuto in alto */
        gap: 40px; /* Spazio tra le colonne */
    }

    .footerMain .footer-col-left {
        flex: 1; /* Occupa lo spazio necessario */
    }

    .footerMain .footer-col-right {
        flex: 1; /* Occupa lo spazio necessario */
        display: flex;
        flex-direction: column; /* Impila gli elementi verticalmente */
        align-items: flex-end; /* Allinea tutto a destra */
        text-align: right;
    }

    .footerMain .navBottom {
        margin-bottom: 24px;
    }
    
    .footerMain .navBottom ul {
        display: flex; /* Mette le voci di menu in orizzontale */
        flex-wrap: wrap; /* Permette di andare a capo se non c'è spazio */
        justify-content: flex-end; /* Allinea a destra */
    }

    .footerMain .navBottom ul li + li {
        margin-left: 12px;
        border-left: 1px solid rgba(255, 255, 255, 0.5);
        padding-left: 12px;
    }

    .footerMain .legal-info {
        margin-bottom: 24px;
    }
}
/*#########################################################################*/


/* --- Stili per la Stampa --- */
@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;
    }
    .headerMain,
    .footerMain {
        display: none;
    }
}
