/* BLOCK_001 */
/* SLIDER */

#block_001 .section-title {
  font-size: 56px;
  line-height: 60px;
  color: var(--dark);
}

#block_001 .section-subtitle {
  font-size: 36px;
  line-height: 45px;
  color: #83878a;
  font-weight: bold;
}

#block_001 .video iframe {
  width: 100% !important;
  border-radius: 10px;
  height: 500px;
}

#block_001 .border-top-left-rounded {
  border-top-left-radius: 20px;
}

#block_001 .border-top-right-rounded {
  border-top-right-radius: 20px;
}


#block_001 .border-bottom-left-rounded {
  border-bottom-left-radius: 20px;
}

#block_001 .border-bottom-right-rounded {
  border-bottom-right-radius: 20px;
}

#block_001 .border-bottom-left-angled {
  border-bottom-left-radius: 0;
}

#block_001 .border-bottom-right-angled {
  border-bottom-right-radius: 0;
}

#block_001 .banner-info {
  background-color: var(--first-color);
}

#block_001 .banner-info .title {
  font-size: 25px;
}

#block_001 .banner-info .border-left {
  border-left: 1px solid #f8f58c;
}

#block_001 .banner-info p {
  font-size: 20px;
}

#block_001 .banner-info .fade-text {
  height: 25px;
}

#block_001 .banner-info .fade-text .text-2,
#block_001 .banner-info .fade-text .text-1 {
  transition: .2s ease-in-out;
}

#block_001 .banner-info .fade-text .text-1 {
  transform: translateY(-28px);
}

#block_001 .banner-info .fade-text .text-2 {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-28px);
}

#block_001 .banner-info .fade-text:hover .text-1 {
  transform: translateY(0);
  visibility: hidden;
  opacity: 0;
}

#block_001 .banner-info .fade-text:hover .text-2 {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 1500px) {
  #block_001 .section-title {
    font-size: 45px;
    line-height: 50px;
    color: var(--dark);
  }

  #block_001 .section-subtitle {
    font-size: 30px;
    line-height: 38px;
    color: #83878a;
    font-weight: bold;
  }

  #block_001 .banner-info .title {
    font-size: 20px;
  }

  #block_001 .banner-info p {
    font-size: 18px;
  }

  #block_001 .video iframe {
    height: 380px;
  }
}

@media screen and (max-width: 1100px) {
  #block_001 .section-title {
    font-size: 50px;
  }
}

@media screen and (max-width: 768px) {
  #block_001 .section-title {
    font-size: 35px;
    line-height: 40px;
  }

  #block_001 .section-subtitle {
    font-size: 25px;
    line-height: 30px;
    color: #83878a;
    font-weight: bold;
  }

  #block_001 .video iframe {
    height: 217px;
  }

  #block_001 .splide__arrow--next {
    right: -2em;
  }

  #block_001 .splide__arrow--prev {
    left: -2em;
  }
}

/* BLOCK_002 */
/* LOOP SERVIZI */

#block_002 #box {
  transition: 0.2s ease-in-out;
  background-color: #ffffff;
}

#block_002 #box .title {
  font-size: 20px;
  font-weight: bold;
  color: var(--grey-color);
  transition: 0.2s ease-in-out;
}

#block_002 #box .text {
  color: var(--grey-color);
  font-size: 14px;
  transition: 0.2s ease-in-out;
}

#block_002 #box .icona {
  height: 45px;
  transition: 0.2s ease-in-out;
}

#block_002 #box .icona i {
  font-size: 40px;
  color: var(--second-color);
  transition: 0.2s ease-in-out;
}

#block_002 #box .link {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--grey-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}

#block_002 #box .link:after {
  content: "\f054";
  font-family: "Font Awesome 6 Pro";
  font-weight: normal;
  margin-left: 8px;
  margin-bottom: -4px;
}

#block_002 #box:hover {
  background-color: var(--second-color) !important;
  transform: scale(1.05);
}

#block_002 #box:hover .title {
  color: #ffffff;
}

#block_002 #box:hover .text {
  color: #ffffff;
}

#block_002 #box:hover .icona i {
  color: #ffffff;
}

#block_002 #box:hover .link {
  color: #ffffff;
}

/* BLOCK_003 */
/* FAQ */

#block_003 .section-label::before {
  position: absolute;
  top: -12px;
  left: 0;
  transform: translateX(0);
}

#block_003 .accordion {
  background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 99px #0000001a;
  opacity: 1;
  color: var(--dark);
  cursor: pointer;
  padding: 20px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 20px;
  font-weight: bold;
  transition: 0.4s;
  position: relative;
}

#block_003 .accordion:after {
  content: "\f105";
  font-family: "Font Awesome 6 Pro";
  font-size: 23px;
  font-weight: 300;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

#block_003 .active,
.accordion:hover {
  background: #ffffff !important;
}

#block_003 .panel {
  background: #ffffff !important;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

#block_003 .decoration {
  position: absolute;
  left: 60%;
  top: 30px;
  transform: translateX(-50%);
  height: 120%;
  max-height: 1000px;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  #block_003 .accordion {
    padding: 15px 45px 15px 15px;
    font-size: 15px;
  }

  #block_003 .decoration {
    position: absolute;
    left: 50%;
    top: unset;
    transform: translateX(-50%);
    height: auto;
    width: 150%;
    max-height: 1000px;
    z-index: -1;
    bottom: -30px;
  }

  #block_003 .panel #editor p {
    font-size: 14px;
  }
}

/* BLOCK_005 */
/* LOOP DEI SETTORI */

#block_005 .banner {
  background: linear-gradient(45deg, var(--second-color-sfumato) 35%, rgba(245, 245, 245, 0.84) 91%, rgba(245, 245, 245, 0.37) 100%);
  margin-top: -150px;
}

#block_005 #box {
  transition: 0.2s ease-in-out;
  background-color: #ffffff;
}

#block_005 .splide__slide a {
  text-decoration: none;
}

#block_005 #box .title {
  font-size: 20px;
  font-weight: bold;
  color: var(--grey-color);
}

#block_005 #box .icona {
  height: 50px;
  transition: 0.2s ease-in-out;
}

#block_005 #box .icona i {
  font-size: 45px;
  color: var(--second-color);
  transition: 0.2s ease-in-out;
}

#block_005 #box:hover .icona {
  transform: scale(1.25);
}

#block_005 #box .link {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

#block_005 #box .link:after {
  content: "\f054";
  font-family: "Font Awesome 6 Pro";
  font-weight: normal;
  margin-left: 8px;
  margin-bottom: -4px;
}

#block_005 .banner .title {
  font-size: 36px;
  color: var(--grey-color);
}

#block_005 .corousel {
  position: relative;
  z-index: 5;
}

#block_005 .splide__arrow--next {
  right: -6em;
}

#block_005 .splide__arrow--prev {
  left: -6em;
}

@media screen and (max-width: 1500px) {
  #block_005 .banner .title {
    font-size: 30px;
  }
}

@media screen and (max-width: 1100px) {
  #block_005 .splide__arrow--next {
    right: -3em;
  }
}

@media screen and (max-width: 768px) {
  #block_005 .banner {
    margin-top: -100px;
    padding: 110px 30px 40px 30px;
  }

  #block_005 .splide__arrow--next {
    right: 0.5em;
  }

  #block_005 .splide__arrow--prev {
    left: 0.5em;
  }

  #block_005 .splide__pagination {
    bottom: -20px !important;
  }
}

/* BLOCK_006 */
/* SEZIONE MEDIA / TEXT */

#block_006 .section-label::before {
  left: 0;
  transform: translateX(0);
}

/* BLOCK_007 */
/* LOOP CASI STUDIO */

#block_007 #box {
  transition: 0.2s ease-in-out;
  background-color: #ffffff;
  border: 2px solid transparent;
}

#block_007 #box h3 {
  font-size: 20px;
  font-weight: bold;
}

#block_007 #box .icona {
  height: 40px;
  transition: 0.2s ease-in-out;
}

#block_007 #box .link {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
}

#block_007 #box .link:after {
  content: "\f054";
  font-family: "Font Awesome 6 Pro";
  font-weight: normal;
  margin-left: 8px;
  margin-bottom: -4px;
}

#block_007 #box:hover {
  border: 2px solid var(--first-color);
  background-color: #fffcfa;
  transform: scale(1.05);
}

#block_007 #box:hover .icona {
  transform: scale(1.3);
}

/* BLOCK_008 */
/* LOOP DEI MARCHI */

#block_008 #box .icona {
  width: 200px;
}

#block_008 #box .title {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--dark);
}

#block_008 #box .img-placeholder {
  width: 200px;
  height: 100px;
}

/* BLOCK_009 */
/* INTESTAZIONE PAGINA */

#block_009 .page-title {
  font-size: 42px;
  font-weight: bold;
  color: var(--first-color);
}

#block_009 .page-subtitle {
  font-size: 36px !important;
  font-weight: bold !important;
  color: var(--grey-color) !important;
}

@media screen and (max-width: 1500px) {

  #block_009 .page-title {
    font-size: 40px !important;
  }

  #block_009 .page-subtitle {
    font-size: 32px !important;
  }
}

@media screen and (max-width: 1100px) {}

@media screen and (max-width: 768px) {}

/* BLOCK_010 */
/* BANNER CTA */

#block_010.v1 #banner-cta {
  height: 35vw;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

#block_010.v1 #banner-cta:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #045CB4;
  opacity: .6;
  border-radius: 1rem;
}

#block_010.v1 #banner-cta #editor p {
  color: #ffffff;
}

@media screen and (max-width: 1500px) {
  #block_010.v1 #banner-cta {
    height: auto;
  }
}

@media screen and (max-width: 1100px) {}

@media screen and (max-width: 768px) {}


/* BLOCK_011 */
/* COSTI E PIANI */

#block_011 .icona i {
  font-size: 45px;
  color: var(--first-color);
}

#block_011 .titolo,
#block_011 .descrizione {
  font-size: 20px;
}

#block_011 .item {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-bottom: 1px solid rgb(217, 217, 217);
}

#block_011 .item:last-child {
  border-bottom: none;
}

#block_011 .item p {
  font-size: 13px;
  line-height: 20px;
}

/* BLOCK_013 */
/* LOOP DI BOX GENERICO */

#block_013 #box {
  transition: 0.2s ease-in-out;
  border: 2px solid transparent;
  background-color: #ffffff;
}

#block_013 #box h3 {
  font-size: 20px;
  font-weight: bold;
}

#block_013 #box .immagine {
  height: 80px;
}

#block_013 #box .icona {
  font-size: 30px;
  color: var(--first-color);
  transition: 0.2s ease-in-out;
}

#block_013 #box .icona i {
  font-size: 35px;
  color: var(--first-color);
  transition: 0.2s ease-in-out;
}

#block_013 #box .link {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

#block_013 #box .link:after {
  content: "\f054";
  font-family: "Font Awesome 6 Pro";
  font-weight: normal;
  margin-left: 8px;
  margin-bottom: -4px;
}

#block_013 #box:hover {
  border: 2px solid var(--first-color);
  transform: scale(1.03);
}

#block_013 #box:hover .icona {
  transform: scale(1.3);
}

/* BLOCK_014 */
/* LOOP DELLE INTEGRAZIONI CENTRALINO */

#block_014 #box h3 {
  font-size: 20px;
  font-weight: bold;
}

#block_014 #box .icona {
  height: 90px;
}

#block_014 #box .link {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
}

#block_014 #box .link:after {
  content: "\f054";
  font-family: "Font Awesome 6 Pro";
  font-weight: normal;
  margin-left: 8px;
  margin-bottom: -4px;
}

/* BLOCK_015 */
/* LOOP DELLE MODALITA' CENTRALINO */

#block_015 #box h3 {
  font-size: 20px;
  font-weight: bold;
}

#block_015 #box p {
  font-size: 14px;
  line-height: 25px;
}


/* BLOCK_016 */
/* PARAGRAFO E CARDS */

#block_016 .position-sticky {
  position: sticky !important;
  top: 160px;
}

#block_016 .box-title {
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: bold;
}

#block_016 .circle-icon i {
  color: var(--second-color);
  font-size: 35px;
}



/* BLOCK_017 */
/* BANNER ZONE OPERATIVE */

#aree-map .display-zone {
  font-size: 12px;
}

#aree-map .display-zone span {
  font-weight: bolder;
  font-size: 12px;
  color: #808080;
}

@media screen and (max-width: 1500px) {}

@media screen and (max-width: 1100px) {}

@media screen and (max-width: 768px) {}


/* BLOCK_018 */
/* LOOP ARTICOLI NEWS BLOG */

#block_018 .splide__arrow--prev {
  left: -3em;
}

#block_018 .splide__arrow--next {
  right: -3em;
}

@media screen and (max-width: 1500px) {}

@media screen and (max-width: 1100px) {}

@media screen and (max-width: 768px) {
  #block_018 .splide__arrow--next {
    right: -1em;
  }

  #block_018 .splide__arrow--prev {
    left: -1em;
  }
}

/* BLOCK_019 */
/* VIDEO */

#block_019 video {
  width: 100%;
  height: auto;
}


/* BLOCK_020 */
/* CRONOSTORIA */

#block_020 .margin-negative {
  margin-top: -150px;
}

#block_020 .box-img {
  position: relative;
}

#block_020 .anno {
  font-size: 46px;
  font-weight: 900;
  color: #ffffff;
  position: absolute;
  bottom: 0;
  left: 20px;
  line-height: 30px;
}

#block_020 .box-line .line {
  width: 5px;
  height: 100%;
  background-color: var(--second-color);
}

#block_020 .box-line {
  position: relative;
}

#block_020 .box-line .icon {
  height: 60px;
  width: 60px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--second-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#block_020 .box-line .icon i {
  font-size: 35px;
  color: #ffffff;
}

#block_020 .cronostoria-item:first-child .line {
  height: 50%;
  transform: rotate(180deg);
  transform-origin: bottom center;
}

#block_020 .cronostoria-item:last-child .line {
  height: 50%;
}



/* BLOCK_022 */
/* LOOP DI BOX CON IMMAGINI */

#block_022 #box {
  transition: 0.2s ease-in-out;
  border: 2px solid transparent;
  background-color: #ffffff;
}

#block_022 #box h3 {
  font-size: 20px;
  font-weight: bold;
}

#block_022 .custom-rounded {
  border-radius: 1rem;
}

#block_022 #box .link {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

#block_022 #box .link:after {
  content: "\f054";
  font-family: "Font Awesome 6 Pro";
  font-weight: normal;
  margin-left: 8px;
  margin-bottom: -4px;
}

#block_022 #box:hover {
  border: 2px solid var(--first-color);
  transform: scale(1.03);
}

#block_022 #box:hover .icona {
  transform: scale(1.3);
}