@charset "UTF-8";
body {
  background-color: var(--bg-main);
  color: var(--text-main);
  position: relative;
}

a {
  color: var(--color-accent-1);
}

button {
  background-color: var(--color-accent-1);
  color: var(--color-white);
}

button.btn-lf-secondary {
  background-color: var(--color-accent-2-hover);
  color: var(--color-white);
}

body:not(.path-homepage) main {
  padding-top: 2rem;
}

body.coming-soon main {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: #1a2238;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.coming-soon main .main-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
body.coming-soon main .main-content img {
  width: 500px;
  max-width: 100%;
  height: auto;
}
body.coming-soon main .main-content span {
  font-size: 3rem;
  color: white;
  font-family: "Space Grotesk";
}
body.coming-soon main .main-content .loader-linear {
  min-height: 20px;
  background: white;
  width: 100%;
  border-radius: 30px;
  position: relative;
}
body.coming-soon main .main-content .loader-linear .loading-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 79%;
  background: linear-gradient(to right, var(--color-accent-1), var(--color-accent-2));
  border-radius: 30px;
  animation: color 4s;
}
body.coming-soon main .main-content .loader-linear .loading-img {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 79%;
  background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/172299/bubbles-mask.gif);
  mix-blend-mode: color-dodge;
  z-index: 99999;
}

@keyframes color {
  from {
    width: 0;
  }
  to {
    width: 80%;
  }
}
:root {
  --color-primary: #1a2238; /* Deep Blue */
  --color-accent-1: #5bc0eb; /* Electric Blue */
  --color-accent-1-hover: #42b7e9; /* Electric Blue hover */
  --color-accent-2: #f25f5c; /* Coral Red */
  --color-accent-2-hover: #d95553; /* Coral Red hover */
  --color-accent-3: #ffd166; /* Solar Yellow */
  --color-accent-3-hover: #f9c855; /* Solar Yellow hover */
  --color-neutral-1: #f5f5f5; /* Light Gray */
  --color-neutral-2: #2e2e2e; /* Dark Gray */
  --color-white: #ffffff;
  --color-light-dark-blue: #27355e;
  /* Background and Text defaults (light mode) */
  --bg-main: var(--color-neutral-1);
  --text-main: var(--color-neutral-2);
}

.dark-theme {
  --bg-main: var(--color-primary); /* Deep Blue diventa sfondo */
  --text-main: var(--color-white); /* Testo diventa bianco */
}

.btn-lf {
  border: 0px;
  padding: 0.75rem 1rem;
  border-radius: 5px;
  font-size: 1rem;
  transition: all 0.4s;
  cursor: pointer;
}
.btn-lf:hover {
  transition: all 0.4s;
}
@media screen and (max-width: 767px) {
  .btn-lf {
    font-size: 0.9rem;
    padding: 0.65rem 0.85rem;
  }
}

.btn-lf-primary {
  background-color: var(--color-accent-1);
  color: var(--color-white);
}
.btn-lf-primary:hover {
  background-color: var(--color-accent-1-hover);
  color: var(--color-white);
}

.btn-lf-secondary {
  background-color: var(--color-accent-2);
  color: var(--color-white);
}
.btn-lf-secondary:hover {
  background-color: var(--color-accent-2-hover);
  color: var(--color-white);
}

.btn-lf-danger {
  background-color: var(--color-accent-2);
  color: var(--color-white);
}
.btn-lf-danger:hover {
  background-color: var(--color-accent-2-hover);
  color: var(--color-white);
}

.btn-lf-warning {
  background-color: var(--color-accent-3);
  color: var(--color-primary);
}
.btn-lf-warning:hover {
  background-color: var(--color-accent-3-hover);
  color: var(--color-primary);
}

@font-face {
  font-family: "Inter";
  src: url("../../fonts/Inter/Inter-VariableFont_opsz,wght.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../../fonts/Poppins/Poppins-Bold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../../fonts/Space_Grotesk/SpaceGrotesk-VariableFont_wght.ttf");
  font-display: swap;
}
body {
  font-family: "Inter";
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins";
}

p.review, button, a {
  font-family: "Space Grotesk";
}

header#header {
  height: 150px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header#header .main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header#header .main-header #block-header-left,
header#header .main-header #block-header-right {
  display: inline-block;
}
header#header .main-header #block-header-left img {
  width: 150px;
}
header#header .main-header #block-header-right {
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
header#header .main-header #block-header-right nav.navbar-menu {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header#header .main-header #block-header-right nav.navbar-menu ul.menu-items {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  height: 100%;
  align-items: center;
}
header#header .main-header #block-header-right nav.navbar-menu ul.menu-items li.menu-item {
  height: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
}
header#header .main-header #block-header-right nav.navbar-menu ul.menu-items li.menu-item a.link-item {
  position: relative;
  padding: 1rem 2rem;
  display: inline-block;
  color: var(--color-white);
  text-decoration: none;
  font-size: 1.5rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
}
header#header .main-header #block-header-right nav.navbar-menu ul.menu-items li.menu-item a.link-item:hover {
  transition: all 0.4s;
  font-weight: 600;
}
header#header .main-header #block-header-right nav.navbar-menu ul.menu-items li.menu-item a.link-item:hover::after {
  content: "";
  content: "";
  height: 3px;
  width: 0;
  bottom: 50%;
  transform: translateY(20px);
  position: absolute;
  background-color: var(--color-accent-1);
  transition: all 0.4s;
  animation: visible-line 0.3s linear forwards;
}
@media screen and (max-width: 767px) {
  header#header {
    height: 100px;
  }
  header#header .main-header #block-header-left a img {
    width: 100px;
    height: auto;
  }
  header#header .main-header #block-header-right {
    width: 100%;
    height: auto;
    position: absolute;
    background: var(--color-primary);
    display: block;
    left: 0;
    top: 0;
    transition: all 0.4s;
    transform: translateY(-100%);
  }
  header#header .main-header #block-header-right .navbar-menu .menu-items {
    flex-direction: column;
  }
  header#header .main-header #block-header-right.menu-opened {
    top: 100px;
    transform: translateY(0);
    transition: all 0.4s;
  }
}

@keyframes visible-line {
  from {
    width: 0;
  }
  to {
    width: 75%;
  }
}
.hamburger-menu {
  display: none;
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
  transition: all 0.4s;
  border: 0;
  background-color: transparent;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .hamburger-menu {
    display: block;
  }
}

body.path-homepage main {
  margin-top: 0;
}
body.path-homepage main section#hero-block .container-hero-block {
  position: relative;
}
body.path-homepage main section#hero-block .container-hero-block .img-hero {
  position: relative;
}
body.path-homepage main section#hero-block .container-hero-block .img-hero img {
  width: 100%;
  height: auto;
}
body.path-homepage main section#hero-block .container-hero-block .img-hero .overlay-hero {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
body.path-homepage main section#hero-block .container-hero-block .title-hero {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
}
body.path-homepage main section#hero-block .container-hero-block .title-hero h1 {
  color: white;
  font-size: 2.5rem;
  transform: scale(1.5);
}
body.path-homepage main section#hero-block .container-hero-block .title-hero > a {
  position: absolute;
  bottom: 10%;
}
@media screen and (max-width: 767px) {
  body.path-homepage main section#hero-block .container-hero-block .title-hero h1 {
    font-size: 1.3rem;
    transform: scale(1.3);
  }
}
body.path-homepage main section#about-us {
  padding: 3rem 0;
}
body.path-homepage main section#about-us .block-about-us {
  display: flex;
  justify-content: center;
  gap: 3rem;
}
body.path-homepage main section#about-us .block-about-us .image-about-us {
  width: 25%;
  border-radius: 50%;
  box-shadow: 0px 0px 10px 0px black;
  overflow: hidden;
}
body.path-homepage main section#about-us .block-about-us .image-about-us img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.path-homepage main section#about-us .block-about-us .description-about-us .list-items-about-us {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}
body.path-homepage main section#about-us .block-about-us .description-about-us .list-items-about-us .item-about-us {
  padding: 0.5rem 0;
  font-size: 1.2rem;
}
body.path-homepage main section#about-us .block-about-us .description-about-us .button-about-us {
  display: inline-flex;
  width: 100%;
}
@media screen and (max-width: 767px) {
  body.path-homepage main section#about-us .block-about-us {
    flex-direction: column;
  }
  body.path-homepage main section#about-us .block-about-us .image-about-us {
    width: 90%;
    margin: auto;
  }
  body.path-homepage main section#about-us .block-about-us .description-about-us h2 {
    text-align: center;
  }
  body.path-homepage main section#about-us .block-about-us .description-about-us .list-items-about-us .item-about-us {
    font-size: 1rem;
  }
  body.path-homepage main section#about-us .block-about-us .description-about-us .button-about-us {
    justify-content: center;
  }
}
body.path-homepage main #services {
  padding: 3rem 0;
  background-color: var(--color-white);
}
body.path-homepage main #services .block-services > div > div {
  gap: 3rem;
}
body.path-homepage main #services .block-services > div > div > div.v-separate {
  width: 1px;
  border-left: 1px solid;
  padding: 0;
}
body.path-homepage main #services .block-services > div > div > div.col {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  width: 50%;
  border: 1px solid;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 1px;
}
body.path-homepage main #services .block-services > div > div > div.col .image-service {
  text-align: center;
}
body.path-homepage main #services .block-services > div > div > div.col .image-service img {
  width: 80%;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  body.path-homepage main #services .block-services > div > div {
    flex-direction: column;
  }
  body.path-homepage main #services .block-services > div > div > div.v-separate {
    width: 90%;
    border-left: 0;
    border-bottom: 1px solid;
    margin: auto;
  }
  body.path-homepage main #services .block-services > div > div > div.col {
    width: 90%;
    margin: auto;
  }
  body.path-homepage main #services .block-services > div > div > div.col .image-service img {
    width: 100%;
  }
}
body.path-homepage main #services .block-services .services-button {
  padding: 2rem 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.path-homepage main #block-portfolio {
  padding: 3rem 0;
  background: white;
}
body.path-homepage main #block-portfolio h2 {
  text-align: center;
}
body.path-homepage main #block-portfolio .wrapper-portfolio {
  max-width: 100%;
  position: relative;
  margin: auto;
  overflow: hidden;
  padding: 2rem 0;
}
body.path-homepage main #block-portfolio .wrapper-portfolio .custom-card-container {
  display: flex;
  justify-content: space-around;
  min-height: 240px;
  height: 100%;
}
body.path-homepage main #block-portfolio .wrapper-portfolio .custom-card-container .custom-card-portfolio {
  width: 25%;
  transition: transform 0.5s ease-in-out;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 0px 10px 1px black;
}
body.path-homepage main #block-portfolio .wrapper-portfolio .custom-card-container .custom-card-portfolio .custom-card-portfolio-image {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
}
body.path-homepage main #block-portfolio .wrapper-portfolio .custom-card-container .custom-card-portfolio .custom-card-portfolio-image img {
  height: 100%;
  width: 100%;
}
body.path-homepage main #block-portfolio .wrapper-portfolio .custom-card-container .custom-card-portfolio .custom-card-portfolio-description {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  text-align: center;
  color: var(--color-white);
  transform: rotateY(90deg);
  transition: all 0.4s;
}
body.path-homepage main #block-portfolio .wrapper-portfolio .custom-card-container .custom-card-portfolio .custom-card-portfolio-description.rotate {
  transform: rotateY(0deg);
  transition: all 0.4s;
}
body.path-homepage main #block-portfolio .button-action {
  margin: 2rem auto;
  padding: 1rem 0;
  display: inline-block;
  margin-left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  body.path-homepage main section:not(:first-child) {
    padding: 2rem 0.5rem !important;
  }
  body.path-homepage main #block-portfolio .wrapper-portfolio .custom-card-container {
    min-height: 690px;
    flex-wrap: wrap;
    gap: 2rem;
  }
  body.path-homepage main #block-portfolio .wrapper-portfolio .custom-card-container .custom-card-portfolio {
    height: auto;
    width: 90%;
  }
  body.path-homepage main #block-portfolio .wrapper-portfolio .custom-card-container .custom-card-portfolio .custom-card-portfolio-description {
    transform: rotate(0);
  }
}

body {
  padding: 0%;
  margin: 0;
  overflow: hidden;
  overflow-y: scroll;
}
body main {
  margin-top: 150px;
}

#block-process {
  background-image: url("../../images/questa.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: local;
  padding: 3rem 0;
  background-position: center;
}
#block-process .wrapper-custom-cards {
  display: flex;
  gap: 2rem;
  flex-direction: column;
}
#block-process .wrapper-custom-cards .custom-card-steps {
  display: flex;
}
#block-process .wrapper-custom-cards .custom-card-steps .custom-card-details {
  align-self: center;
  width: 50%;
  animation-duration: 2s;
}
#block-process .wrapper-custom-cards .custom-card-steps .custom-card-image {
  width: 50%;
  text-align: center;
  animation-duration: 2s;
}
#block-process .wrapper-custom-cards .custom-card-steps .custom-card-image img {
  width: 60%;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 1px black;
}
#block-process .wrapper-custom-cards .custom-card-steps:nth-child(even) {
  flex-direction: row-reverse;
}
#block-process .wrapper-custom-cards .custom-card-steps:nth-child(even) .custom-card-details {
  animation-name: fadeInRight;
}
#block-process .wrapper-custom-cards .custom-card-steps:nth-child(even) .custom-card-image {
  animation-name: fadeInLeft;
}
@media screen and (max-width: 767px) {
  #block-process .wrapper-custom-cards .custom-card-steps {
    flex-direction: column-reverse;
    gap: 2rem;
  }
  #block-process .wrapper-custom-cards .custom-card-steps .custom-card-details {
    width: 90%;
    margin: auto;
  }
  #block-process .wrapper-custom-cards .custom-card-steps .custom-card-image {
    width: 90%;
    margin: auto;
  }
  #block-process .wrapper-custom-cards .custom-card-steps .custom-card-image img {
    width: 100%;
  }
  #block-process .wrapper-custom-cards .custom-card-steps:nth-child(even) {
    flex-direction: column-reverse;
  }
}

body.path-portfolio .main-content .wrapper-portfolio {
  display: flex;
  justify-content: space-between;
  padding: 2rem 0;
}
body.path-portfolio .main-content .wrapper-portfolio > div {
  width: 30%;
}
body.path-portfolio .main-content .wrapper-portfolio .card-portfolio {
  width: 30%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 0px 20px 0px black;
  position: relative;
}
body.path-portfolio .main-content .wrapper-portfolio .card-portfolio .card-portfolio-image {
  width: 100%;
  height: 270px;
}
body.path-portfolio .main-content .wrapper-portfolio .card-portfolio .card-portfolio-image img {
  width: 100%;
  height: 100%;
  transition: all 0.6s;
  transform: scale(1);
}
body.path-portfolio .main-content .wrapper-portfolio .card-portfolio .card-portfolio-description {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background: rgba(0, 0, 0, 0.65);
  color: white;
  padding: 2rem;
  transition: all 0.6s;
  transform: rotateY(90deg);
}
body.path-portfolio .main-content .wrapper-portfolio .card-portfolio .card-portfolio-description p {
  flex-grow: 1;
}
body.path-portfolio .main-content .wrapper-portfolio .card-portfolio .card-portfolio-description .card-portfolio-description-cta {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
body.path-portfolio .main-content .wrapper-portfolio .card-portfolio.hover .card-portfolio-image img {
  transition: all 0.6s;
  transform: scale(1.2);
}
body.path-portfolio .main-content .wrapper-portfolio .card-portfolio.hover .card-portfolio-description {
  transform: rotate(0);
  transition: all 0.6ss;
}

#block-faq {
  padding: 2rem 0;
}
#block-faq .container-accordion-faq .accordion-item-faq {
  margin-bottom: 0.5rem;
}
#block-faq .container-accordion-faq .accordion-item-faq .accordion-item-faq-header {
  cursor: pointer;
  padding: 1rem;
  background: var(--color-light-dark-blue);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-white);
  border-radius: 5px;
}
#block-faq .container-accordion-faq .accordion-item-faq .accordion-item-faq-header h3 {
  margin: 0;
}
@media screen and (max-width: 767px) {
  #block-faq .container-accordion-faq .accordion-item-faq .accordion-item-faq-header h3 {
    font-size: 1.2rem;
  }
}
#block-faq .container-accordion-faq .accordion-item-faq .accordion-item-faq-header i {
  font-size: 1rem;
  transition: all 0.5s;
}
#block-faq .container-accordion-faq .accordion-item-faq .accordion-item-faq-header i.rotate {
  transform: rotateZ(0.5turn);
  transition: all 0.5s;
}
#block-faq .container-accordion-faq .accordion-item-faq .accordion-item-faq-body {
  padding: 0;
  visibility: hidden;
  background-color: var(--color-white);
  height: 0;
  opacity: 0;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-left: 1px solid var(--color-light-dark-blue);
  border-right: 1px solid var(--color-light-dark-blue);
  border-bottom: 1px solid var(--color-light-dark-blue);
  transition: all 0.5s;
}
#block-faq .container-accordion-faq .accordion-item-faq.custom-accordion-open .accordion-item-faq-header {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
#block-faq .container-accordion-faq .accordion-item-faq.custom-accordion-open .accordion-item-faq-body {
  height: auto;
  padding: 2rem;
  visibility: visible;
  opacity: 1;
  transition: all 0.5s;
}

#block-quotation {
  padding: 2rem 0;
  text-align: center;
  min-height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-light-dark-blue);
  color: var(--color-white);
}
#block-quotation .wrapper-quotation {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
#block-quotation .wrapper-quotation .button-quotation {
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}
#block-quotation .wrapper-quotation .button-quotation a {
  font-size: 1.3em;
}
@media screen and (max-width: 767px) {
  #block-quotation .wrapper-quotation .button-quotation {
    flex-direction: column;
    align-items: center;
  }
  #block-quotation .wrapper-quotation .button-quotation a {
    padding: 0.65rem 0.85rem;
    font-size: 0.9rem;
  }
}

footer#footer {
  background-color: var(--color-primary);
  padding: 2rem;
}
footer#footer .Whatsapp-button-free {
  position: fixed;
  bottom: 5%;
  right: 2%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s;
}
footer#footer .Whatsapp-button-free a {
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #49d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border: 1px solid white;
  padding: 1rem;
  color: white;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
footer#footer .Whatsapp-button-free a:hover {
  transition: all 0.4s ease-in-out;
  background: #42bc5d;
}
footer#footer .Whatsapp-button-free.show {
  visibility: visible;
  opacity: 1;
  transition: all 0.4s;
}
footer#footer #footer-block-1 h2,
footer#footer #footer-block-1 h5,
footer#footer #footer-block-2 h2,
footer#footer #footer-block-2 h5 {
  color: var(--color-white);
  text-align: center;
}
footer#footer #footer-block-1 ul.footer-list-items,
footer#footer #footer-block-2 ul.footer-list-items {
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-top: 1rem;
}
footer#footer #footer-block-1 .footer-list-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
footer#footer #footer-block-1 .footer-list-items li a {
  width: 50px;
  height: 50px;
  display: inline-flex;
  background: var(--color-accent-2);
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 2rem;
  text-decoration: none;
  transition: all 0.4s;
  color: var(--color-white);
  border: 0;
  box-shadow: 0px 0px 10px 1px white;
}
footer#footer #footer-block-1 .footer-list-items li a:hover {
  transition: all 0.4s;
  background: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-accent-2);
  animation-name: rotateitem;
  animation-timing-function: 2s;
  animation-duration: 1s;
}
footer#footer #footer-block-2 ul {
  width: 50%;
  margin: 1rem auto !important;
}
footer#footer #footer-block-2 ul li a {
  color: var(--color-white);
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 0.4s;
}
footer#footer #footer-block-2 ul li a:hover {
  text-decoration: underline;
  transition: all 0.4s;
}
footer#footer .copyright-block {
  padding: 1.5rem 1.5rem 0 1.5rem;
  text-align: center;
  color: white;
  border-top: 1px solid white;
}
@media screen and (max-width: 767px) {
  footer#footer {
    padding: 2rem 0;
  }
  footer#footer #footer-block-1 {
    margin-bottom: 3rem;
  }
  footer#footer #footer-block-2 .footer-list-items {
    width: 90%;
  }
  footer#footer #footer-block-2 .footer-list-items li a {
    font-size: 1rem;
  }
  footer#footer .copyright-block span {
    font-size: 0.9rem;
  }
}

@keyframes rotateitem {
  0% {
    transform: rotateY(0deg);
  }
  25% {
    transform: rotateY(90deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  75% {
    transform: rotateY(270deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
.quote-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 9998;
  height: 0;
  transition: all 0.4s;
}
.quote-overlay.active {
  opacity: 1;
  visibility: visible;
  height: 100%;
  transition: all 0.4s;
}

.quote-popup {
  position: fixed;
  right: 50%;
  top: 50%;
  transform: translate(50%, -50%) scale(0.9);
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  width: 90%;
  max-width: 520px;
  height: 0;
  transition: all 0.4s;
}
.quote-popup.active {
  opacity: 1;
  height: 100%;
  visibility: visible;
  transform: translate(50%, -50%) scale(1);
  transition: all 0.4s;
}

.quote-wrapper {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.step {
  display: none;
  animation: fadeSlide 0.4s ease;
}
.step .options {
  display: flex;
  flex-direction: column;
}
.step.active {
  display: block;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(25px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.progress-container {
  margin-bottom: 25px;
  position: relative;
}

.progress-bar {
  position: absolute;
  top: 3px;
  width: 100%;
  height: 6px;
  background: #e6e6e6;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 10px;
}
.progress-bar .progress-fill {
  height: 100%;
  width: 0%;
  background: #1a73e8;
  transition: width 0.35s ease;
}

.progress-steps {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
}
.progress-steps .step-dot {
  width: 12px;
  height: 12px;
  background: #d0d0d0;
  border-radius: 50%;
  transition: 0.3s;
}
.progress-steps .step-dot.active {
  background: #1a73e8;
  transform: scale(1.2);
}

/* SWITCHES */
.service-switch-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-switch {
  display: flex;
  align-items: center;
  padding: 12px;
  background: #f6f6f6;
  border-radius: 12px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: 0.25s;
}
.service-switch input[type=checkbox] {
  display: none;
}
.service-switch:hover {
  background: #eef3ff;
}
.service-switch .switch-slider {
  width: 50px;
  height: 26px;
  background: #ccc;
  border-radius: 20px;
  margin-right: 12px;
  position: relative;
  transition: 0.25s;
}
.service-switch .switch-slider::after {
  content: "";
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 4px;
  top: 4px;
  transition: 0.25s;
}
.service-switch input:checked + .switch-slider {
  background: #1a73e8;
}
.service-switch input:checked + .switch-slider::after {
  transform: translateX(24px);
}
.service-switch .switch-label {
  font-size: 15px;
  font-weight: 500;
}
.service-switch input:checked ~ .switch-label {
  color: #1a73e8;
  font-weight: 600;
}

body.path-services .main-content .custom-package-items-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}
body.path-services .main-content .custom-package-items-container .custom-package-items {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid;
  border-radius: 35px;
  width: 35%;
  box-shadow: 0px 0px 10px 0px black;
}
body.path-services .main-content .custom-package-items-container .custom-package-items .bg-overlay-button {
  background: linear-gradient(90deg, var(--color-primary), var(--color-light-dark-blue));
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 35px;
  transition: all 0.4s;
}
body.path-services .main-content .custom-package-items-container .custom-package-items .custom-package-item {
  display: inline-flex;
  width: 100%;
  flex-grow: 1;
  flex-basis: 100%;
}
body.path-services .main-content .custom-package-items-container .custom-package-items .custom-package-item .custom-package-item-link {
  position: relative;
  padding: 1rem;
  border-radius: 35px;
  transition: all 0.4s;
  overflow: hidden;
  color: var(--color-primary);
  width: 100%;
  text-align: center;
}
body.path-services .main-content .custom-package-items-container .custom-package-items .custom-package-item .custom-package-item-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 35px;
  border: 2px solid var(--color-accent-1);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s ease;
}
body.path-services .main-content .custom-package-items-container .custom-package-items .custom-package-item .custom-package-item-link.active {
  color: white;
  font-weight: bold;
}
body.path-services .main-content .custom-package-items-container .custom-package-items .custom-package-item .custom-package-item-link.active:hover::before {
  /* Si “disegna” tutto il bordo */
  clip-path: inset(0 0 0 0);
}
@media screen and (max-width: 767px) {
  body.path-services .main-content .custom-package-items-container .custom-package-items {
    width: 90%;
  }
}
body.path-services .main-content .services-container {
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  body.path-services .main-content .services-container {
    padding: 2rem 0.5rem;
  }
}
body.path-services .main-content .services-container .service-block {
  visibility: hidden;
  opacity: 0;
  width: 0;
  height: 0;
  transform: translateX(100%);
  transition: all 0.4s;
}
body.path-services .main-content .services-container .service-block .custom-services-container {
  display: flex;
  justify-content: space-between;
}
body.path-services .main-content .services-container .service-block .custom-services-container .custom-service-card {
  width: 30%;
  border: 1px solid;
  border-radius: 35px;
  box-shadow: 0px 0px 10px 0px black;
}
body.path-services .main-content .services-container .service-block .custom-services-container .custom-service-card > div {
  padding: 1rem;
}
body.path-services .main-content .services-container .service-block .custom-services-container .custom-service-card .custom-service-card-header {
  border-bottom: 1px solid;
}
body.path-services .main-content .services-container .service-block .custom-services-container .custom-service-card .custom-service-card-header h2 {
  text-align: center;
  padding: 1rem 0;
}
body.path-services .main-content .services-container .service-block .custom-services-container .custom-service-card .custom-service-card-header p.service-description {
  font-size: 0.9rem;
  font-style: italic;
  padding: 1rem;
  min-height: 100px;
}
body.path-services .main-content .services-container .service-block .custom-services-container .custom-service-card .custom-service-card-header p.service-price {
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0 1rem;
}
body.path-services .main-content .services-container .service-block .custom-services-container .custom-service-card .custom-service-card-body ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
body.path-services .main-content .services-container .service-block .custom-services-container .custom-service-card .custom-service-card-body ul li::before {
  content: "✓";
  margin-right: 5px;
  color: var(--color-accent-2);
}
body.path-services .main-content .services-container .service-block.active {
  visibility: visible;
  opacity: 1;
  width: 100%;
  height: 100%;
  transform: translateX(0);
  transition: all 0.4s;
}
@media screen and (max-width: 767px) {
  body.path-services .main-content .services-container .service-block .custom-services-container {
    flex-direction: column;
    gap: 2rem;
  }
  body.path-services .main-content .services-container .service-block .custom-services-container .custom-service-card {
    width: 90%;
    margin: 0 auto;
  }
}
body.path-services .main-content .faq-cta {
  padding: 2rem 0;
  text-align: center;
  background-image: url("../../images/questa.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
body.path-services .main-content .faq-cta a {
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.4s;
}
body.path-services .main-content .faq-cta a:hover {
  font-size: 1.3rem;
  transition: all 0.4s;
}

@keyframes border {
  0% {
    border-bottom: 2px solid var(--color-accent-1);
  }
  33% {
    border-bottom: 2px solid var(--color-accent-1);
    border-right: 2px solid var(--color-accent-1);
  }
  66% {
    border-bottom: 2px solid var(--color-accent-1);
    border-right: 2px solid var(--color-accent-1);
    border-top: 2px solid var(--color-accent-1);
  }
  100% {
    border-bottom: 2px solid var(--color-accent-1);
    border-right: 2px solid var(--color-accent-1);
    border-top: 2px solid var(--color-accent-1);
    border-left: 2px solid var(--color-accent-1);
  }
}
body.error-page .error-container {
  min-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}
body.error-page .error-container h1 {
  font-size: 6rem;
  margin: 0;
  color: var(--color-primary);
}
body.error-page .error-container h2 {
  font-size: 2rem;
  margin: 1rem 0;
}
body.error-page .error-container p {
  max-width: 400px;
  opacity: 0.8;
  margin-bottom: 2rem;
}
body.error-page .error-container .btn-primary {
  padding: 0.75rem 2rem;
  border-radius: 30px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-light-dark-blue));
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease;
}
body.error-page .error-container .btn-primary:hover {
  transform: translateY(-2px);
}

body.path-project .main-content .wrapper-project {
  display: flex;
  justify-content: space-around;
  padding: 2rem;
}
body.path-project .main-content .wrapper-project > div {
  width: 45%;
}
body.path-project .main-content .wrapper-project .project-images .project-images-carousel-container {
  width: 100%;
  height: 500px;
  overflow: hidden;
  box-shadow: 0px 0px 10px 1px black;
  border-radius: 10px;
}
body.path-project .main-content .wrapper-project .project-images .project-images-carousel-container .project-images-carousel-items {
  width: 100%;
  height: 100%;
  display: flex;
}
body.path-project .main-content .wrapper-project .project-images .project-images-carousel-container .project-images-carousel-items .project-images-carousel-item {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}
body.path-project .main-content .wrapper-project .project-images .project-images-carousel-container .project-images-carousel-items .project-images-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*# sourceMappingURL=main.css.map */
