/* BLOCK_001 */
/* SLIDER */

#block_001 {
  height: 72vh;
  display: flex;
  align-items: end;
  position: relative;
  overflow: hidden;
}

#block_001 .decoration {
  position: absolute;
  width: 75%;
  top: -950px;
  right: -150px;
  z-index: -1;
}

#block_001 h1 {
  font-size: clamp(42px, 3vw, 55px);
  color: var(--primary-color);
  font-weight: bold;
}

#block_001 h2 {
  font-size: clamp(28px, 2.5vw, 30px);
  font-family: var(--font-family2);
  font-weight: normal;
}

#block_001 .splide__arrow--prev {
  left: 18em;
}

#block_001 .splide__arrow--next {
  right: 18em;
}


@media screen and (min-width: 1201px) and (max-width: 1400px) {
  #block_001 {
    height: 53vh;
    display: flex;
    align-items: end;
    position: relative;
    overflow: hidden;
  }

  #block_001 .decoration {
    top: -550px;
  }
}

@media screen and (min-width: 990px) and (max-width: 1200px) {
  #block_001 {
    height: 48vh;
    display: flex;
    align-items: end;
    position: relative;
    overflow: hidden;
  }
}

@media screen and (max-width: 768px) {
  #block_001 {
    height: auto;
  }

  #block_001 .decoration {
    position: absolute;
    width: 186%;
    top: -500px;
    right: unset;
    z-index: -1;
    left: 47%;
    transform: translateX(-50%) rotate(87deg);
  }
}

/* BLOCK_002 */
/* LOOP SERVIZI */

#block_002 #box {
  transition: 0.2s ease-in-out;
  background-color: #ffffff;
  border: 2px solid transparent;
}

#block_002 #box h3 {
  font-size: 20px;
  font-weight: bold;
}

#block_002 #box .icona {
  height: 45px;
  transition: 0.2s ease-in-out;
}

#block_002 #box .icona i {
  font-size: 45px;
  color: var(--primary-color);
  transition: 0.2s ease-in-out;
}

#block_002 #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_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 {
  border: 2px solid var(--primary-color);
  background-color: #fffcfa;
  transform: scale(1.05);
}

#block_002 #box:hover .icona {
  transform: scale(1.3);
}

/* 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 #box {
  transition: 0.2s ease-in-out;
  background-color: #ffffff;
}

#block_005 .banner {
  background: transparent linear-gradient(100deg, #e6001b 0%, var(--unnamed-color-682525) 100%) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(100deg, #e6001b 0%, #682525 100%) 0% 0% no-repeat padding-box;
  margin-top: -100px;
}

#block_005 .splide__slide a {
  text-decoration: none;
}

#block_005 #box h3 {
  font-size: 20px;
  font-weight: bold;
  color: var(--dark);
}

#block_005 #box .icona {
  height: 50px;
  transition: 0.2s ease-in-out;
}

#block_005 #box .icona i {
  font-size: 45px;
  color: var(--primary-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 .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: 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_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(--primary-color);
  background-color: #fffcfa;
  transform: scale(1.05);
}

#block_007 #box:hover .icona {
  transform: scale(1.3);
}

/* BLOCK_008 */
/* LOOP DEI MARCHI */

#block_008 {}

/* BLOCK_009 */
/* INTESTAZIONE PAGINA */

#block_009.v6 .box-icona {
  height: 150px;
  width: 150px;
  background-color: #ffffff;
  box-shadow: 1px 1px 30px 25px rgba(81, 81, 81, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}

#block_009.v6 .icona {
  width: 55px;
}

#block_009 .box-icona i {
  font-size: 50px;
  color: var(--primary-color);
}

/* BLOCK_011 */
/* COSTI E PIANI */

#block_011 .icona i {
  font-size: 45px;
  color: var(--primary-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 .icona {
  height: 45px;
  font-size: 30px;
  color: var(--primary-color);
  transition: 0.2s ease-in-out;
}

#block_013 #box .icona i {
  font-size: 35px;
  color: var(--primary-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(--primary-color);
  background-color: #fffcfa;
  transform: scale(1.05);
}

#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;
}