/*----------------------------------------------------------------
	Canvas: Business
-----------------------------------------------------------------*/
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
:root {
  --cnvs-themecolor: #163a56;
  --cnvs-themecolor-rgb: 24, 31, 56;

  --cnvs-themecolor-2: #871910;
  --cnvs-themecolor-2-rgb: 105, 9, 13;

  --cnvs-primary-font: "Satoshi", sans-serif;
  --cnvs-body-font: "Satoshi", sans-serif;
  --cnvs-secondary-font: var(--cnvs-body-font);
}
.primary-color {
  color: var(--cnvs-themecolor) !important;
}
.secondary-color {
  color: var(--cnvs-themecolor-2) !important;
}
.bg-themecolor-1 {
  background-color: var(--cnvs-themecolor) !important;
  color: #fff !important;
  position: relative;
}
.bg-themecolor-2 {
  background-color: var(--cnvs-themecolor-2) !important;
  color: #fff !important;
  position: relative;
}

.dark {
  background-color: var(--cnvs-themecolor) !important;
}

.button-border-white {
  border: 2px solid #fff !important;
  color: #fff !important;
  background-color: transparent !important;
}

.button-border-white:hover {
  background-color: #fff !important;
  color: #000 !important;
  border-color: #fff !important;
}

.bg-themecolor-2::before {
  content: "";
  position: absolute;
  top: 5%;
  right: 5%;
  width: 150%;
  height: 150%;
  background-image: url('/immagini/trasparent-logo.svg');
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: auto 90%;
  z-index: 0;
  pointer-events: none;
}

/* Stili per i box service linkabili */
.service-box-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-box-link:hover {
    text-decoration: none;
    color: inherit;
}

.service-box-link:focus {
    text-decoration: none;
    color: inherit;
    outline: 2px solid var(--cnvs-themecolor);
    outline-offset: 2px;
}

/* Impedisce il ridimensionamento delle immagini nei service box durante l'hover */
.service-icon img {
    width: 80px !important;
    height: 80px !important;
    object-fit: contain;
    transition: none !important;
    flex-shrink: 0;
}

.service-box-link:hover .service-icon img,
.hover-lift:hover .service-icon img,
.transition-all:hover .service-icon img {
    transform: none !important;
    scale: 1 !important;
    width: 80px !important;
    height: 80px !important;
}

/* Assicura che anche l'icona container mantenga le dimensioni */
.service-icon {
    width: 80px;
    min-width: 80px;
    max-width: 80px;
}

/* Animazione fade ritardata per l'h3 dello slider */
.slider-subtitle-fade {
    animation: slideSubtitleFadeIn 1s ease-out 1.5s both;
    opacity: 0;
}

@keyframes slideSubtitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Nasconde il logo di sfondo su mobile */
@media (max-width: 768px) {
  .bg-themecolor-2::before {
    display: none;
  }
}


.bg-themecolor-2 h1,
.bg-themecolor-2 h2 {
  color: #fff !important;
  position: relative;
  z-index: 2;
}

.bg-themecolor-2 .page-title-content,
.bg-themecolor-2 .breadcrumb {
  position: relative;
  z-index: 2;
}

.bg-themecolor-2 .breadcrumb-item a {
  color: #fff !important;
}
.bg-themecolor-2 .breadcrumb-item::before {
  color: #fff !important;
}

#header {
  --cnvs-primary-menu-font-weight: 900;
  --cnvs-primary-menu-font-size: 1rem;
  --cnvs-primary-menu-tt: none;
  --cnvs-primary-menu-ls: 0;
  --cnvs-primary-menu-submenu-font-size: 0.875rem;
  --cnvs-primary-menu-submenu-font-weight: 400;
  --cnvs-primary-menu-submenu-hover-font-weight: 500;
  --cnvs-primary-menu-submenu-tt: none;
}

a {
  transition: color 0.6s ease;
}
a:hover {
  transition: color 0.6s ease;
}

p {
  font-weight: normal;
  color: var(--cnvs-themecolor);
}

.fw-bolder {
  font-weight: 900 !important;
}
a {
  text-decoration: none;
}
#content a {
  text-decoration: underline;
}

/*	Primary Menu Header size
-----------------------------------------------------------------*/
@media (min-width: 992px) {
  .menu-link {
    text-transform: none;
    font-weight: 500;
  }

  .menu-container > .menu-item > .menu-link div {
    position: relative;
  }

  .dark .menu-container > .menu-item > .menu-link div::after {
    background: url("/immagini/border-white.svg") no-repeat;
  }

  .menu-container > .menu-item.active > .menu-link > div::after,
  .menu-container > .menu-item:hover > .menu-link > div::after {
    bottom: -1px;
    opacity: 1;
  }

  img.man {
    margin-left: 100px;
  }
  .section.parallax {
    padding: 160px 0;
  }
}

@media (max-width: 1499px) {
  .logo-default {
    width: 200px;
  }
}

/* Slider Area
-----------------------------------------------------------------*/
.slider-caption h2 {
  text-transform: none;
  letter-spacing: 0;
  line-height: 1;
  font-size: 72px;
  line-height: 1.3;
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .slider-caption h2 {
    font-size: 36px;
  }
}

.slider-caption p {
  font-size: 18px;
  margin-bottom: 20px;
}

.slider-caption h2,
.slider-caption p,
.slider-caption .button {
  opacity: 0;
  transform: scale(0.9);
  -webkit-transform-origin: 50% 50% 0px;
  transform-origin: 50% 50% 0px;
  transition: -webkit-transform 0.05s ease-out;
  transition: transform 0.05s ease-out;
  transition: transform 0.05s ease-out, -webkit-transform 0.05s ease-out;
  backface-visibility: hidden;
}

.swiper-slide.swiper-slide-active .slider-caption h2,
.swiper-slide.swiper-slide-active .slider-caption p,
.swiper-slide.swiper-slide-active .slider-caption .button {
  opacity: 1;
  transition: transform 1s, opacity 1.05s;
  transform: scale(1);
  backface-visibility: hidden;
}

.swiper-slide.swiper-slide-active .slider-caption p {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.swiper-slide.swiper-slide-active .slider-caption .button {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

/* Slider Button Hover Transitions
-----------------------------------------------------------------*/
.slider-caption .button {
  transition: all 0.6s ease !important;
}

/* Specific button transitions for slider */
.slider-caption .button.button-rounded {
  transition: all 0.6s ease !important;
}

.slider-caption .button.button-border {
  transition: all 0.6s ease !important;
}

.slider-caption .button.button-border:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
}

.one-page-arrow {
  bottom: 30px;
}
.one-page-arrow .animated {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.slider-arrow-left i,
.slider-arrow-right i {
  font-size: 34px;
  transition: all 0.3s ease;
}

.slider-arrow-left,
.slider-arrow-right,
.owl-carousel-full .owl-nav [class*="owl-"] {
  transition: all 0.3s ease;
  transform: scale(1);
}

.slider-arrow-left:hover,
.slider-arrow-right:hover,
.owl-carousel-full .owl-nav [class*="owl-"]:hover {
  background-color: transparent !important;
  transform: scale(1.3);
}

/* Feaured Carousel
-----------------------------------------------------------------*/
#oc-features .owl-item:not(.active) {
  opacity: 0.4;
}

#oc-features .owl-item p {
  font-size: 16px;
  font-weight: normal;
  color: #0a0f20;
}

/* Button-link
-----------------------------------------------------------------*/
.button-link {
  display: inline-block;
  position: relative;
  color: #333;
  font-weight: 600;
  margin-top: 10px;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.dark .button-link {
  color: #fff;
}

.button-link:hover {
  color: var(--cnvs-themecolor);
}

.button-link::after {
  content: "";
  background: url("/immagini/border.svg") no-repeat;
  position: absolute;
  bottom: -4px;
  left: 0;
  margin-bottom: 0;
  width: 100%;
  height: 8px;
  transition: bottom 0.3s ease;
}

.button-link.border-0::after {
  content: none;
}
.button-link:hover::after {
  bottom: 3px;
}

/* Owl Carousel - Controls - Arrows
-----------------------------------------------------------------*/
.owl-carousel-full .owl-nav [class*="owl-"] {
  left: 150px !important;
  height: 60px;
  line-height: 60px;
  border: none;
  color: #333;
  background-color: transparent;
  font-size: 28px;
  border-radius: 0;
}

.owl-carousel .owl-nav .owl-next {
  left: auto;
  right: -155px;
}

.owl-carousel-full .owl-nav .owl-next {
  left: auto !important;
  right: 155px !important;
  border-radius: 0;
}

.owl-carousel-full .owl-nav [class*="owl-"]:hover {
  color: #333 !important;
}

/* Owl Carousel - Responsive
-----------------------------------------------------------------*/
.device-lg .owl-carousel .owl-nav .owl-prev,
.device-md .owl-carousel .owl-nav .owl-prev,
.device-sm .owl-carousel .owl-nav .owl-prev,
.device-xs .owl-carousel .owl-nav .owl-prev {
  left: 2px !important;
}

.device-lg .owl-carousel-full .owl-nav .owl-next,
.device-md .owl-carousel-full .owl-nav .owl-next,
.device-sm .owl-carousel-full .owl-nav .owl-next,
.device-xs .owl-carousel .owl-nav .owl-next {
  right: 2px !important;
}

/* Grid Filter
-----------------------------------------------------------------*/
.grid-filter li.activeFilter a {
  font-weight: normal;
}
.grid-overlay {
  background-color: rgba(0, 0, 0, 0.75);
}

/* Testimonial
-----------------------------------------------------------------*/
.testimonials-rating {
  margin-top: 15px;
  color: #ffd700;
  font-size: 18px;
  line-height: 1;
}

.testi-content p {
  font-size: 16px;
  color: #666;
  font-style: normal;
}

.testi-content p::before,
.testi-content p::after {
  display: none;
}

.testi-meta::before {
  display: none;
}
.testi-meta span {
  padding-left: 0;
}

.testimonial .flex-control-nav {
  bottom: 8px;
  right: 0px;
}
.testimonial .flex-control-nav li a {
  background-color: #333;
}

/* Footer
-----------------------------------------------------------------*/
.widget > h4 {
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
}

.widget_links li,
.widget_links li a {
  background-image: none !important;
  padding-left: 0;
  color: var(--cnvs-themecolor);
  font-size: 13px;
  padding-top: 1px;
  transition: color 0.3s ease;
}

.widget_links li a:hover {
  color: var(--cnvs-themecolor-2);
}

.social-icon.si-mini {
  --cnvs-socialicon-size: 1.75rem;
  --cnvs-socialicon-fontsize: 0.75rem;
  margin-bottom: 0;
}

/* Misc
-----------------------------------------------------------------*/
#header,
#header-wrap,
#logo img {
  transition: all 0.4s ease;
}

.feature-box h3 span.subtitle {
  font-size: 14px;
}

.feature-box.fbox-plain .fbox-icon img {
  height: 50px;
}

.col-padding {
  padding: 100px 60px !important;
}

.heading-block::before {
  content: attr(data-heading);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  color: var(--cnvs-contrast-200);
  z-index: -1;
  font-family: var(--cnvs-primary-font);
  font-weight: bold;
  font-size: 90px;
  line-height: 0.3;
}

.heading-block.center::before {
  right: 0;
  left: 0;
  margin: auto;
}

.text-rotater {
  display: inline-block;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.7;
  color: var(--cnvs-contrast-600);
}

/* Mobile Menu Activation at 1500px */
@media (max-width: 1499px) {
  body:not(.is-expanded-menu) {
    --cnvs-body-classes: "device-lg device-md device-sm device-xs";
  }
}

/* Page Title Custom Styles */
.page-title-custom {
  padding: 400px 0 100px;
  background-color: #ef1520;
  position: relative;
  margin-bottom: -1px;
}

.page-title-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.2)
  );
  pointer-events: none;
  z-index: 1;
}

.page-title-content-wrapper {
  position: relative;
  z-index: 2;
}

/* Dark Banner Styles */
.banner-dark {
  background-color: var(--cnvs-themecolor);
}

.banner-dark h1,
.banner-dark h2,
.banner-dark h3,
.banner-dark h4,
.banner-dark h5,
.banner-dark h6,
.banner-dark p,
.banner-dark span,
.banner-dark div {
  color: #ffffff !important;
}

.banner-dark .button-link {
  color: #ffffff !important;
}

.banner-dark .button-link:hover {
  color: #ffffff !important;
}

.banner-dark .button-link::after {
  background: url("/immagini/border-white.svg") no-repeat;
}

.banner-dark.banner-with-bg {
  background-image: url("/immagini/bg-cta.gif");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: auto 100%; /* Desktop: altezza piena, larghezza automatica */
}

/* Mobile responsive per il banner background */
@media (max-width: 991px) {
  .banner-dark.banner-with-bg {
    background-size: 150% auto; /* Mobile: larghezza piena, altezza automatica */
    background-position: bottom left;
  }
}

/* Team Images - Square Format */
.team .team-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1; /* Forza il formato quadrato */
  overflow: hidden;
  border: 1px solid #e1e1e1;
}

.team .team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Adatta l'immagine mantenendo le proporzioni */
  object-position: center; /* Centra l'immagine nel contenitore */
}
.content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.content ul li {
  position: relative;
  margin-bottom: 0.3rem;
  padding-left: 2rem;
  line-height: 1.6;
  font-size: 1.2rem;
  color: var(--cnvs-contrast-800, #333);
}

.content ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--bs-red, #dc3545);
  font-size: 1.5rem;
  font-weight: bold;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: item-counter;
}

.content ol li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 2rem;
  line-height: 1.6;
  font-size: 1rem;
  color: var(--cnvs-contrast-800, #333);
  counter-increment: item-counter;
}

.content ol li:before {
  content: counter(item-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--bs-red, #dc3545);
  font-size: 1rem;
  font-weight: bold;
  width: 1.5rem;
  display: flex;
  align-items: center;
}
/* Stile semplice per le liste come nell'immagine */
.member-content ul,
#content ul {
  margin: 20px;
  padding: 0;
  list-style: none;
}

.member-content ul li,
#content ul li {
  position: relative;
  margin-bottom: 0.3rem;
  padding-left: 2rem;
  line-height: 1.6;
  font-size: 1.1rem;
  color: var(--cnvs-contrast-800, #333);
}

.member-content ul li:before,
#content ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--bs-red, #dc3545);
  font-size: 1.5rem;
  font-weight: bold;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-content ol,
#content ol {
  margin: 20px;
  padding: 0;
  list-style: none;
  counter-reset: item-counter;
}

.member-content ol li,
#content ol li {
  position: relative;
  margin-bottom: 0.3rem;
  padding-left: 2rem;
  line-height: 1.6;
  font-size: 1.1rem;
  color: var(--cnvs-contrast-800, #333);
  counter-increment: item-counter;
}

.member-content ol li:before,
#content ol li:before {
  content: counter(item-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--bs-red, #dc3545);
  font-size: 1rem;
  font-weight: bold;
  width: 1.5rem;
  display: flex;
  align-items: center;
}

.member-content h5,
.member-content h6,
#content h5,
#content h6 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 800;
}

.member-content strong,
.member-content b,
#content strong,
#content b {
  font-weight: 800;
}

/* Liste annidate */
.member-content ul ul,
.member-content ol ol,
#content ul ul,
#content ol ol {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
}

.member-content ul ul li:before,
#content ul ul li:before {
  content: "•";
  color: var(--cnvs-contrast-600, #666);
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .member-content ul li,
  .member-content ol li,
  #content ul li,
  #content ol li {
    padding-left: 1.8rem;
  }

  .member-content ul li:before,
  .member-content ol li:before,
  #content ul li:before,
  #content ol li:before {
    width: 1.3rem;
  }
}
.table-content table {
  --bs-table-color-type: initial;
  --bs-table-bg-type: initial;
  --bs-table-color-state: initial;
  --bs-table-bg-state: initial;
  --bs-table-color: var(--bs-emphasis-color);
  --bs-table-bg: var(--bs-body-bg);
  --bs-table-border-color: var(--bs-border-color);
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: var(--bs-emphasis-color);
  --bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), 0.05);
  --bs-table-active-color: var(--bs-emphasis-color);
  --bs-table-active-bg: rgba(var(--bs-emphasis-color-rgb), 0.1);
  --bs-table-hover-color: var(--bs-emphasis-color);
  --bs-table-hover-bg: rgba(var(--bs-emphasis-color-rgb), 0.075);
  width: 100%;
  margin-bottom: 1rem;
  vertical-align: top;
  border-color: var(--bs-table-border-color);
}

.table-content table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  color: var(
    --bs-table-color-state,
    var(--bs-table-color-type, var(--bs-table-color))
  );
  background-color: var(--bs-table-bg);
  border-bottom-width: var(--bs-border-width);
  box-shadow: inset 0 0 0 9999px
    var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));
}

.table-content table > tbody {
  vertical-align: inherit;
}

.table-content table > thead {
  vertical-align: bottom;
}

/* Stili per le spunte nella tabella */
.table-content table td {
  text-align: center;
  vertical-align: middle;
  padding: 1rem 0.5rem;
}

.table-content table td:first-child {
  text-align: left;
  font-size: 1rem;
  font-weight: normal;
  color: var(--bs-emphasis-color);
}

/* Stilizza tutte le celle che contengono solo spunte o simboli simili */
.table-content table td:not(:first-child) {
  font-size: 2rem;
  font-weight: bold;
  color: var(--bs-red, #dc3545) !important;
  line-height: 1;
}

/* Stili specifici per celle con prezzi (che contengono RMB o numeri) */
.table-content table td:not(:first-child):not(:empty) {
  font-size: 2rem;
  font-weight: 600;
  color: var(--bs-emphasis-color);
}

/* Selettore per celle che contengono solo caratteri di spunta */
.table-content table td:not(:first-child):not([class]):empty::after,
.table-content table td:not(:first-child)[data-check]::after {
  content: "✓";
  color: var(--bs-red, #dc3545);
  font-size: 2rem;
  font-weight: bold;
}

/* Per le celle dell'header */
.table-content table th {
  text-align: center;
  vertical-align: middle;
  font-weight: 600;
  padding: 1rem 0.5rem;
}

.table-content table th:first-child {
  text-align: left;
}

.table-content table p {
  font-size: 16px;
}

.table-content table h4 {
  margin-bottom: 10px;
}

/* Stili per i link nella tabella - esattamente come button del template */
.table-content table a {
  display: inline-block;
  position: relative;
  cursor: pointer;
  outline: none;
  white-space: nowrap;
  margin: 5px;
  padding: 0.5rem 3rem;
  /* px-5 */
  font-size: 1rem;
  line-height: calc(1rem * 1.6);
  text-align: center;
  background-color: var(--cnvs-contrast-900, #212529);
  color: #fff !important;
  font-weight: 800;
  /* fw-bolder */
  text-transform: uppercase;
  /* text-uppercase */
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 2rem;
  /* button-rounded con bordi molto arrotondati */
  transition: all 0.2s ease-in-out;
  overflow: hidden;
  vertical-align: top;
}

/* Effetto hover - senza trasformazioni, solo colore */
.table-content table a:hover {
  background-color: var(--cnvs-themecolor, #1abc9c);
  color: #fff !important;
  border-color: transparent !important;
}

/* Struttura per button-text-effect button-text-flip-x */
.table-content table a .button-inner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.table-content table a .button-inner span {
  transition: all 0.3s cubic-bezier(0.17, 0.75, 0.8, 1);
  display: inline-block;
}

.table-content table a .button-inner span:nth-child(1) {
  opacity: 1;
  transform: translate(0, 0);
}

.table-content table a .button-inner span:nth-child(2) {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translate(-100%, 0);
}

.table-content table a:hover .button-inner span:nth-child(1) {
  opacity: 0;
  transform: translate(100%, 0);
}

.table-content table a:hover .button-inner span:nth-child(2) {
  opacity: 1;
  transform: translate(0, 0);
}

/* Responsive per i link */
@media (max-width: 768px) {
  .table-content table a {
    padding: 0.5rem 2rem;
    font-size: 0.75rem;
  }
}
.ratio {
  position: relative;
  width: 100%;
}

.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}

.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.857142857%;
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio (9/16 = 0.5625) */
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
#content h4 {
  margin-top: 40px;
}

#content h3 {
  margin-top: 60px;
}
.box-group p {
  text-align: justify;
}

.specs p {
  text-align: left;
}

#content p:last-child {
  margin-bottom: 0 !important;
}

/* Ultimo paragrafo del div specs senza padding-bottom */
.specs p:last-child {
	padding-bottom: 0 !important;
}

/* Stili moderni per i card box dei progetti */
.card.transition-all:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 30px rgba(0,0,0,0.15) !important;
}

.card.transition-all:hover img {
	transform: scale(1.05);
}

.btn-icon-circle {
	width: 36px;
	height: 36px;
	background-color: var(--cnvs-themecolor-2, #69090d);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.card.transition-all:hover .btn-icon-circle {
	background-color: var(--cnvs-themecolor, #181f38);
	transform: scale(1.1);
}

.line-height-sm {
	line-height: 1.3;
}

.btn-icon-circle-small {
	width: 24px;
	height: 24px;
	background-color: var(--cnvs-themecolor-2, #69090d);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	flex-shrink: 0;
	font-size: 0.75rem;
}

.card.transition-all:hover .btn-icon-circle-small {
	background-color: var(--cnvs-themecolor, #181f38);
	transform: scale(1.1);
}

/* Modern service cards */
.hover-lift {
	transition: all 0.3s ease;
}

.hover-lift:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}

.service-icon .icon-wrapper {
	transition: all 0.3s ease;
}

.card:hover .service-icon .icon-wrapper {
	transform: scale(1.1);
}

/* Icon color variations */
.bg-primary.bg-opacity-10 {
	background-color: rgba(13, 110, 253, 0.1) !important;
}

.bg-success.bg-opacity-10 {
	background-color: rgba(25, 135, 84, 0.1) !important;
}

.bg-warning.bg-opacity-10 {
	background-color: rgba(255, 193, 7, 0.1) !important;
}

.bg-info.bg-opacity-10 {
	background-color: rgba(13, 202, 240, 0.1) !important;
}

.bg-danger.bg-opacity-10 {
	background-color: rgba(220, 53, 69, 0.1) !important;
}

.bg-secondary.bg-opacity-10 {
	background-color: rgba(108, 117, 125, 0.1) !important;
}
.box-home p {
  margin-bottom: 0;
}

/* Equal Heights for OwlCarousel 2 */
    .owl-carousel .owl-stage {
        display: flex;
    }
    .owl-carousel .owl-item {
        display: flex;
        flex: 1 0 auto;
    }
    
    /* Altezze uguali e allineamento contenuto */
    #oc-features-carousel .feature-box {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    #oc-features-carousel .fbox-content {
        display: flex;
        flex-direction: column;
        flex: 1;
    }
    
    #oc-features-carousel .fbox-content h3 {
        flex-grow: 1;
        margin-bottom: auto;
    }
    
    #oc-features-carousel .button-link {
        margin-top: auto;
        align-self: flex-start;
    }
    
    /* Posizionamento frecce navigazione al 50% altezza */
    #oc-features-carousel {
        position: relative;
    }
    
    #oc-features-carousel .owl-nav {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        pointer-events: none;
    }
    
    #oc-features-carousel .owl-nav button {
        position: absolute;
        pointer-events: auto;
    }
    
    #oc-features-carousel .owl-nav .owl-prev {
        left: -40px;
    }
    
    #oc-features-carousel .owl-nav .owl-next {
        right: -40px;
    }
    .owl-carousel .owl-stage-outer {
        padding: 50px 0;
    }

/* Hover Box - Universal hover effect for clickable boxes */
.hover-box {
	transition: all 0.3s ease;
}
.hover-box:hover {
	background-color: var(--cnvs-themecolor) !important;
	color: #fff !important;
}
.hover-box:hover h1,
.hover-box:hover h2,
.hover-box:hover h3,
.hover-box:hover h4,
.hover-box:hover h5,
.hover-box:hover h6 {
	color: #fff !important;
}
.box-tag {background-color:#f8f9fa;}
.promo p {
  color: white;
}