.breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 5px 1rem !important;
    margin-bottom: 1rem;
    list-style: none;
    /* background-color: hsl(210deg 16% 93% / 65%) !important; */
    border-radius: 0.25rem;
    width:fit-content;
    margin: 0 auto;
    color: #FFF;
    font-weight: bold;
    text-shadow: 2px 2px 4px #000000;
}

/* Box Principale Valutazione Google */
.google-rating-box {
  margin-top: 25px;
  padding: 15px;
  border-left: 4px solid #6098f3;
  border-radius: 4px;
  /* background: #f8f9fa; -> mantenuto disattivato come da tua bozza */
}

/* Icona Google */
.google-rating-box .google-icon {
  color: #4285F4;
  font-size: 24px;
  margin-right: 10px;
}

/* Titolo del Box */
.google-rating-box .rating-title {
  font-weight: bold;
  font-size: 16px;
  color: #ffffff;
}
.google_review {
  margin-right: 10px;
  height: 32px;
  width: 32px;
}
/* Contenitore delle Stelle */
.google-rating-box .rating-stars {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Valutazione numerica (5.0) */
.google-rating-box .rating-score {
  font-weight: bold;
  font-size: 18px;
  color: #ffffff;
  margin-right: 5px;
}

/* Icone Stelle Singole */
.google-rating-box .star-filled {
  color: #ffc107;
}

/* Testo del footer */
.google-rating-box .rating-footer-text {
  font-size: 13px;
  color: #ffffff;
  margin: 5px 0 0 0;
}
.testimonial-item .logo_feedback {
  width: 21px !important;
  height: 21px;
  margin: 0 auto;
}
.breadcrumb a {
    color: #FFF;
    font-weight: bold;
}
.breadcrumb i {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 6px;
}
/* Container Principale in basso a destra */
.support-widget-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    font-family: sans-serif;
}
section.heading-page h1 {
  text-shadow: 2px 2px 4px #000000;
}
/* Pulsante Trigger Principale */
.support-trigger {
    width: 60px;
    height: 60px;
    background-color: #E91E63; /* Riprende il tuo scuro dell'overlay */
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 33px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.support-trigger:hover {
    transform: scale(1.05);
}

/* Effetto impulso radar per dare dinamismo */
.pulse-ring {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    border: 2px solid #1f272b;
    border-radius: 50%;
    animation: support-pulse 2s infinite;
    opacity: 0.6;
}

@keyframes support-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Menu Opzioni (Doppia scelta) */
.support-options {
    position: absolute;
    bottom: 80px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Quando il menu &#65533; attivo */
.support-options.open {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
}

/* Singoli pulsanti di risposta */
.support-btn {
    white-space: nowrap;
    padding: 12px 20px;
    border-radius: 30px;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}

.support-btn:hover {
    transform: translateX(-5px);
}

.support-btn.call i {
    font-size: 17px;
}
.support-btn.whatsapp i {
    font-size: 21px;
}

.support-btn.whatsapp {
    background-color: #25D366; /* Verde ufficiale WhatsApp */
}

.support-btn.call {
    background-color: #007bff; /* Blu Telefono Standard */
}

.services .owl-item .down-content.mt-60 {
    margin-top: 85px;
}

/*SUB HEADER CONCTS LEFT*/
.call_now {
    color: #FFF;
    font-size: 14px;
    margin-right: 20px;
    text-decoration: none;
    line-height: 41px;
}
.call_now i {
    font-size: 12px;
}
.contact_now {
    color: #FFF;
    text-decoration: none;
    font-size: 14px;
    line-height: 41px;
}
/* Pulsante Scroll to Top */
#scrollToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px; /* Posizionato a sinistra per non impattare sul widget di supporto a destra */
    z-index: 9999;
    width: 50px;
    height: 50px;
    background-color: #1f272b; /* Stesso scuro elegante dell'overlay video e del supporto */
    color: #ffffff;
    border: none;
    /* border-radius: 50%; */
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Stato iniziale: nascosto tramite opacit&#65533; e leggermente traslato verso il basso */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    border: 1px solid #fff;
}

/* Stato attivo quando l'utente scrolla */
#scrollToTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Effetto Hover dinamico */
#scrollToTopBtn:hover {
    background-color: #111619; /* Si scurisce leggermente */
    transform: translateY(-5px); /* Un piccolo scatto verso l'alto molto fluido */
}


section#testimonials {
  /* background-image: url(../../../../bozza/assets/images/facts-bg.jpg); */
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 0px 125px 0px;
  background-color: #3c4345;
  background-color: #1f262c;
}

.footer {
    background-color: #000;
}

/* 1. Reset e impostazione del box principale */
.services .item {
  position: relative;
  overflow: hidden; /* Fondamentale: nasconde il testo che esce dai bordi in basso prima dell'hover */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 20px;
  height: 280px; /* Imposta un'altezza fissa per far funzionare l'allineamento inferiore */
  padding: 0 !important; /* Resettiamo il vecchio padding per gestire lo spazio internamente alla fascia */
  cursor: pointer;
}

/* 2. La fascia di testo che fa anche da overlay scuro omogeneo */
.services .item .down-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(31, 39, 43, 0.75); /* Overlay scuro omogeneo protettivo per il testo */
  padding: 12px 25px 12px;
  text-align: center;
  box-sizing: border-box;
  
  /* Transizione fluida dell'altezza e dello spostamento */
  transform: translateY(70px); /* Di base spinge la descrizione sotto il bordo visibile */
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* 3. Gestione del Titolo H4 */
.services .item .down-content h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 20px;
  margin-top: 0px;
}

/* 4. Gestione della descrizione (Tag P) */
.services .item .down-content p {
  color: #e0e0e0;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  opacity: 0; /* Nasconde il testo visivamente prima dell'hover */
  transition: opacity 0.3s ease;
}

/* ==========================================================================
   STATO HOVER (Quando il mouse passa sopra il box .item)
   ========================================================================== */

/* Il contenitore del testo sale verso l'alto svelando il suo contenuto */
.services .item:hover .down-content {
  transform: translateY(0);
}

/* Il testo P diventa visibile in dissolvenza mentre la fascia sale */
.services .item:hover .down-content p {
  opacity: 1;
  transition-delay: 0.1s; /* Un micro ritardo per rendere l'effetto pi&#65533; elegante */
}
/*NAVIGATION BAR MEN&#65533;*/
.header-area .main-nav .nav li a {
  height: 50px !important;
}
/* ==========================================================================
   STYLING LINEA HOVER MENU (CORRETTO PER STICKYBAR)
   ========================================================================== */

/* 1. Prepariamo i link principali eliminando conflitti */
.header-area .main-nav .nav > li > a {
  position: relative !important;
  text-decoration: none !important;
}

/* 2. Creiamo la linea ancorata al fondo del tag A */
.header-area .main-nav .nav > li > a::after {
  content: '';
  position: absolute;
  bottom: -5px;          /* Sposta la linea leggermente sotto il testo */
  left: 50%;
  width: 0;              /* Parte da zero */
  height: 3px;           /* Spessore linea */
  background-color: #fff; /* Arancione del template */
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99;
}

/* Espansione della linea all'hover o se il link &#65533; attivo */
.header-area .main-nav .nav > li:hover > a::after,
.header-area .main-nav .nav > li a.active::after {
  width: 100%;
}

/* ==========================================================================
   FIX COMPLETO FRECCETTA SOTTOMENU (MENU STATICO & STICKYBAR)
   ========================================================================== */

/* Forza la freccia a posizionarsi correttamente a destra della voce "Pages" */
.header-area .main-nav .nav li.has-sub::after {
  font-family: 'FontAwesome' !important;
  content: "\f107" !important;
  font-size: 12px !important;
  position: absolute !important;
  right: -5px;           /* Sposta la freccia fuori dal testo per non sovrapporsi */
  top: 12px !important;  /* Allineamento verticale nativo */
  display: block !important;
  transition: color 0.3s ease;
}

/* 1. Colore della freccia quando il menu &#65533; trasparente (Inizio pagina) */
.header-area .main-nav .nav li.has-sub::after {
  color: #fff !important; /* Freccia bianca su sfondo scuro/trasparente */
}

/* 2. FIX STICKYBAR: Colore della freccia quando compare la barra bianca (.background-header) */
.header-area .background-header .nav li.has-sub::after {
  color: #1e1e1e !important; /* Forza la freccia a diventare scura e visibile! */
}

/* Cambia il colore della freccia anche quando passi il mouse sopra */
.header-area .main-nav .nav li.has-sub:hover::after {
  color: #f5a425 !important;
}

/* ==========================================================================
   ESCLUSIONE SOTTO-MENU (Dropdown)
   ========================================================================== */
/* Evita che la linea compaia dentro le voci interne del dropdown "Pages" */
.header-area .main-nav .nav li.has-sub ul.sub-menu li a::after {
  display: none !important;
}

/*TESTIMONIAL SLIDER*/
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .info h3 {
  font-weight: 700;
  font-size: 32px;
  color: #fff;
}

.testimonials .info p {
  color: #c6c1c1;
}

.testimonials .swiper {
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
  background-color: var(--surface-color);
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 200px;
  position: relative;
  margin: 30px;
  background-color: #3c4345;
  padding: 20px 30px;
  margin-bottom: 0px !important;
}
/* Container Principale in basso a destra */
.support-widget-container {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9999;
  font-family: sans-serif;
}

/* Pulsante Trigger Principale */
.support-trigger {
  width: 60px;
  height: 60px;
  background-color: #E91E63; /* Riprende il tuo scuro dell'overlay */
  color: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 33px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.support-trigger:
  hover {
    transform: scale(1.05);
}

/* Effetto impulso radar per dare dinamismo */
.pulse-ring {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px solid #1f272b;
  border-radius: 50%;
  animation: support-pulse 2s infinite;
  opacity: 0.6;
}
  @keyframes support-pulse {
    0% { transform: scale(1);
  opacity: 0.6; }
    100% {
  transform: scale(1.4);
  opacity: 0; }
}

/* Menu Opzioni (Doppia scelta) */
.support-options {
  position: absolute;
  bottom: 80px;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Quando il menu &#65533; attivo */
.support-options.open {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

/* Singoli pulsanti di risposta */
.support-btn {
  white-space: nowrap;
  padding: 12px 20px;
  border-radius: 30px;
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

.support-btn:
  hover {
    transform: translateX(-5px);
}

.support-btn.call
  i {
    font-size: 17px;
}
.support-btn.whatsapp
  i {
    font-size: 21px;
}

.support-btn.whatsapp {
  background-color: #25D366; /* Verde ufficiale WhatsApp */
}

.support-btn.call {
  background-color: #007bff; /* Blu Telefono Standard */
}

.services .owl-item .down-content.mt-60 {
  margin-top: 85px;
}

/*SUB HEADER CONCTS LEFT*/
.call_now {
  color: #FFF;
  font-size: 14px;
  margin-right: 20px;
  text-decoration: none;
  line-height: 41px;
}
.call_now
  i {
    font-size: 12px;
}
.contact_now {
  color: #FFF;
  text-decoration: none;
  font-size: 14px;
  line-height: 41px;
}
/* Pulsante Scroll to Top */
#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px; /* Posizionato a sinistra per non impattare sul widget di supporto a destra */
  z-index: 9999;
  width: 50px;
  height: 50px;
  background-color: #1f272b; /* Stesso scuro elegante dell'overlay video e del supporto */
  color: #ffffff;
  border: none;
  /* border-radius: 50%; */
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
    
    /* Stato iniziale: nascosto tramite opacit&#65533; e leggermente traslato verso il basso */
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  border: 1px solid #fff;
}

/* Stato attivo quando l'utente scrolla */
#scrollToTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Effetto Hover dinamico */
#scrollToTopBtn:
  hover {
    background-color: #111619; /* Si scurisce leggermente */
  transform: translateY(-5px); /* Un piccolo scatto verso l'alto molto fluido */
}
  section#testimonials {
  /* background-image: url(../../../../bozza/assets/images/facts-bg.jpg); */
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 0px 125px 0px;
  background-color: #3c4345;
  background-color: #1f262c;
}

.footer {
  background-color: #000;
}

/* 1. Reset e impostazione del box principale */
.services .item {
  position: relative;
  overflow: hidden; /* Fondamentale: nasconde il testo che esce dai bordi in basso prima dell'hover */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 20px;
  height: 280px; /* Imposta un'altezza fissa per far funzionare l'allineamento inferiore */
  padding: 0 !important; /* Resettiamo il vecchio padding per gestire lo spazio internamente alla fascia */
  cursor: pointer;
}

/* 2. La fascia di testo che fa anche da overlay scuro omogeneo */
.services .item .down-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(31, 39, 43, 0.75); /* Overlay scuro omogeneo protettivo per il testo */
  padding: 12px 25px 12px;
  text-align: center;
  box-sizing: border-box;
  
  /* Transizione fluida dell'altezza e dello spostamento */
  transform: translateY(70px); /* Di base spinge la descrizione sotto il bordo visibile */
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* 3. Gestione del Titolo H4 */
.services .item .down-content
  h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 20px;
  margin-top: 0px;
}

/* 4. Gestione della descrizione (Tag P) */
.services .item .down-content
  p {
  color: #e0e0e0;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  opacity: 0; /* Nasconde il testo visivamente prima dell'hover */
  transition: opacity 0.3s ease;
}

/* ==========================================================================
   STATO HOVER (Quando il mouse passa sopra il box .item)
   ========================================================================== */

/* Il contenitore del testo sale verso l'alto svelando il suo contenuto */
.services .item:
  hover .down-content {
  transform: translateY(0);
}

/* Il testo P diventa visibile in dissolvenza mentre la fascia sale */
.services .item:
  hover .down-content p {
  opacity: 1;
  transition-delay: 0.1s; /* Un micro ritardo per rendere l'effetto pi&#65533; elegante */
}

/*TESTIMONIAL SLIDER*/
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .info
  h3 {
  font-weight: 700;
  font-size: 32px;
  color: #fff;
}

.testimonials .info
  p {
  color: #c6c1c1;
}

.testimonials .swiper {
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
  background-color: var(--surface-color);
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 200px;
  position: relative;
  margin: 30px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  margin-right: 10px;
}

.testimonials .testimonial-item
  h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item
  h4 {
  color: color-mix(in srgb, #fff, transparent 40%);
  font-size: 14px;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars
  i {
  color: #ffc107;
  margin: 0 1px;
  font-size: 14px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item
  p {
  font-style: italic;
  margin: 15px auto 15px auto;
  color: #fff;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
  border: none;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}
  @media (max-width: 767px) {

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
  margin: 15px;
  }
}

/* ==========================================================================
   PAGINAZIONE OWL CAROUSEL (OWL DOTS) MODERNIZZATI
   ========================================================================== */

/* Il contenitore generale dei pallini */
.owl-dots {
  text-align: center;
  margin-top: 30px;
  width: 100%;
}

/* Struttura base del singolo bottone pulsante */
.owl-dot {
  background: none !important; /* Rimuove lo sfondo nativo del bottone */
  border: none !important;     /* Rimuove i bordi nativi del bottone */
  padding: 0 !important;
  cursor: pointer;
  outline: none;
}

/* L'elemento interno (lo span) che disegna fisicamente il pallino */
.owl-dot
  span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 6px;
  background-color: #cccccc; /* Colore del pallino non attivo */
  border-radius: 20px;       /* Lo rende perfettamente rotondo */
  
  /* Transizione fluida per il cambio colore e per l'allungamento */
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ==========================================================================
   STATI ATTIVI E HOVER
   ========================================================================== */

/* Effetto quando l'utente passa il mouse sopra un pallino non attivo */
.owl-dot:
  hover span {
  background-color: #fff; /* Diventa scuro (antracite come il tuo layout) */
}

/* Il pallino attivo (della slide corrente) */
.owl-dot.active
  span {
  background-color: #fff; /* Colore pieno della slide attiva */
  width: 26px;               /* Si allunga creando un effetto pillola moderno */
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 0px;
  border: 6px solid var(--background-color);
  margin-right: 10px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
  text-transform: capitalize;
}

.testimonials .testimonial-item h4 {
  color: color-mix(in srgb, #fff, transparent 40%);
  font-size: 14px;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
  font-size: 14px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 18px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 5px auto 15px auto;
  color: #fff;
}

.testimonials .testimonial-item p span {
  font-size: 18px;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
  border: none;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    margin: 15px;
  }
}

/* ==========================================================================
   PAGINAZIONE OWL CAROUSEL (OWL DOTS) MODERNIZZATI
   ========================================================================== */

/* Il contenitore generale dei pallini */
.owl-dots {
  text-align: center;
  margin-top: 30px;
  width: 100%;
}

/* Struttura base del singolo bottone pulsante */
.owl-dot {
  background: none !important; /* Rimuove lo sfondo nativo del bottone */
  border: none !important;     /* Rimuove i bordi nativi del bottone */
  padding: 0 !important;
  cursor: pointer;
  outline: none;
}

/* L'elemento interno (lo span) che disegna fisicamente il pallino */
.owl-dot span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 6px;
  background-color: #cccccc; /* Colore del pallino non attivo */
  border-radius: 20px;       /* Lo rende perfettamente rotondo */
  
  /* Transizione fluida per il cambio colore e per l'allungamento */
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ==========================================================================
   STATI ATTIVI E HOVER
   ========================================================================== */

/* Effetto quando l'utente passa il mouse sopra un pallino non attivo */
.owl-dot:hover span {
  background-color: #fff; /* Diventa scuro (antracite come il tuo layout) */
}

/* Il pallino attivo (della slide corrente) */
.owl-dot.active span {
  background-color: #fff; /* Colore pieno della slide attiva */
  width: 26px;               /* Si allunga creando un effetto pillola moderno */
}

.count-area-content i {
  color: #fff;
  font-size: 23px;
}
/*FOOTER*/
.site-footer {
  background-color: #000;
  padding: 102px 0 201px;
}
.site-footer p {
  color: #bab9b9;
}
.site-footer .fs-widget p {
  border-left: 4px solid #6098f3;
  padding: 0px 15px;
}
.site-footer h3 {
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 40px;
}
.social_follow {
  height: 41px;
  width: 41px;
  display: block;
  float: left;
  background: #4c5b68;
  border-radius: 50%;
  position: relative;
  margin-right: 10px;
  /* border: 1px solid #FFF; */
  text-align: center;
}
.social_follow:hover {
  background: #c6c3c3;
  color: #000000;
  /* border: 1px solid #FFF; */
}
.social_follow:hover i {
  color: #000000 !important;
}
.social_follow span {
    line-height: 50px;
    color: #FFF;
    position: absolute;
    font-size: 23px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #1f56a8 !important;
}
.img_footer {
  height: 64px;
  width: auto;
}
.footer-about {
  color: #bab9b9;
  font-size: 14px;
  line-height: 25px;
}
.email_footer {
  color: #bab9b9;
}
.email_footer:hover {
  color: #fff;
  text-decoration: underline !important;
}
.copyright__text {
  text-align: left;
}
.site-footer ul.list-unstyled li a {
  
  color:#bab9b9;
}
.site-footer ul.list-unstyled li {
  margin-bottom: 7px;
}

.div_follow_ft .social_follow i {
  font-size: 23px; /* Regola la dimensione a tuo piacimento */
  vertical-align: middle;
  transition: color 0.3s ease;
  line-height: 41px;
  color: #dcd8d8;
}

/* ==========================================================================
   MENU CON ICONE DI DESTRA/FRECCE VIA CSS (FONT AWESOME 6)
   ========================================================================== */

/* Struttura base della lista */
.site-footer .list-unstyled {
  padding-left: 0;
  list-style: none;
}

.site-footer .list-unstyled li {
  margin-bottom: 12px; /* Spaziatura verticale tra i link */
}

/* Stile base del Link */
.site-footer .list-unstyled li a {
  font-size: 14px;
  color: #1f272b; /* Il tuo colore antracite */
  text-decoration: none; /* Rimuove la sottolineatura di default */
  display: inline-block;
  transition: color 0.3s ease;
}

/* Generazione dell'icona Font Awesome tramite pseudo-elemento */
.site-footer .list-unstyled li a::before {
  /* Codice unicode di Font Awesome 6 (Es: fa-chevron-right o fa-angle-right) */
  content: "\f105"; 
  
  /* Dichiarazione fondamentale per Font Awesome 6 */
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* Richiesto per le icone Solid */
  
  /* Esclude l'icona dall'underline e permette la spaziatura */
  display: inline-block; 
  text-decoration: none !important; 
  
  margin-right: 10px; /* Spazio tra l'icona e l'inizio del testo */
  color: #3f8ecc;     /* Colore dell'icona (es. il tuo giallo/oro) */
  
  transition: transform 0.3s ease, color 0.3s ease;
}

/* ==========================================================================
   STATO HOVER (Passaggio del mouse)
   ========================================================================== */

.site-footer .list-unstyled li a:hover {
  color: #fff; /* Il link cambia colore */
  text-decoration: underline !important; /* La sottolineatura apparir&#65533; SOLO sulla scritta */
}

/* Opzionale: un leggero scatto dell'icona verso destra all'hover */
.site-footer .list-unstyled li a:hover::before {
  transform: translateX(4px);
  color: #1f272b; /* L'icona pu&#65533; cambiare colore all'hover se ti piace */
}

.site-footer .btn_newsl {
  font-size: 13px;
  color: #fff !important;
  background-color: #4c5b68;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 22px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all .3s;
  margin-top: 15px;
}
.site-footer .btn_newsl:hover {
  background: #c6c3c3 !important;
  color: #000000 !important;
  font-weight: bold;
}

.analytics-count {
    display: none;
}

/*Copyright*/
.copyright {
  background: #000;
  padding: 20px 0 20px;
  /*margin-top: 40px;*/
  line-height: 0px;
  text-align: center;
}

.copyright__text {
  margin-bottom: 0;
  font-size: 14px;
  color: #bdb8b8 !important;
  /* line-height: 19px; */
}
.copyright__text i {
  color: #f08632;
}
.copyright__text a {
  color: #bdb8b8;
}
.copyright__text a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.copyright__widget {
  text-align: right;
}
.copyright__widget ul li {
  list-style: none;
  display: inline-block;
  margin-right: 30px;
  position: relative;
}
.copyright__widget ul li:after {
  position: absolute;
  right: -18px;
  top: 0;
  content: "|";
  color: #888888;
}
.copyright__widget ul li:last-child {
  margin-right: 0;
}
.copyright__widget ul li:last-child:after {
  display: none;
}
.copyright__widget ul li a {
  font-size: 14px;
  color: #bdb8b8;
}

.copyright__widget ul li a:hover {
  font-size: 14px;
  color: #fff;
  text-decoration: underline;
}
.accordion-body {
  padding: 0px !important;
}
.accordion .accordion-head span:first-child {
    padding-right: 15px;
}
@media (max-width: 767.98px) {
  .sub-header {
    display: none;
  }
  .header-area {
    background-color: #1f272b !important;
    top: 0px !important;
  }
  .header-area .logo {
    margin-left: 0px !important;
  }
  .header-area .main-nav .menu-trigger span, .header-area .main-nav .menu-trigger span:before, .header-area .main-nav .menu-trigger span:after {
    background-color: #fff !important;
  }
  .header-area a.logo img {
    height: 66px !important;
  }
  .header-area .main-nav .menu-trigger {
    right: 21px !important;
  }
  section.upcoming-meetings {
    padding-left: 15px;
    padding-right: 15px;
  }
  .accordion-body > .content {
    padding: 0px !important;
  }
  .accordion-head {
    padding: 12px 0px 12px 0px !important;
    font-size: 16px !important;
  }
  .accordions {
    padding: 15px !important;
    margin-left: 45px;
  }
  #apply .accordions .accordion {
    /* margin-bottom: 15px !important; */
  }
  section.apply-now .item {
    padding: 15px !important;
  }
  section#testimonials {
    padding: 15px !important;
  }
  #testimonials .col-lg-7 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  #testimonials .col-lg-5.info {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .testimonials .testimonial-item p {
    font-size: 12px !important;
    line-height: 20px !important;
  }
  .testimonials .testimonial-item p span {
    font-size: 16px;
  }
  .site-footer {
    background-color: #000;
    padding: 102px 20px 201px;
  }
  #apply .accordion-body .content p {
    padding-bottom: 15px !important;
  }
  .count-title {
      font-size: 14px !important;
  }
  .count-digit {
      font-size: 30px !important;
  }
  .support-widget-container {
    left: 15px;
    bottom: 15px;
  }
  section.upcoming-meetings .categories {
    padding: 20px !important;
  }
  section.heading-page h1 {
    font-size: 23px !important;
  }
  #scrollToTopBtn {
    bottom: 20px;
    right: 20px;
  }
  .site-footer h3 {
    text-align: center;
    margin-top: 15px;
  }
  section.our-facts h2 {
    font-size: 23px !important;
    line-height: 32px !important;
    text-align: center;
  }
  .section-heading h2 {
    font-size: 23px !important;
    line-height: 32px !important;
    text-align: center;
    margin-bottom: 20px !important;
  }
  section.our-courses {
      padding-top: 30px !important;
      padding-bottom: 80px !important;
  }
  .testimonials .info h3 {
    font-size: 23px !important;
    line-height: 32px !important;
    text-align: center;
    margin-top: 25px;
    margin-bottom: 20px;
  }
  .div_follow_ft {
    margin: 0 auto !important;
    width: fit-content;
  }
  .site-footer .main_menu {
    width: max-content;
    margin-left: calc(50% - 52.08px);
  }
  .site-footer .ps-5 {
    padding-left: 0px !important;
  }
  .site-footer .serv_menu {
    width: max-content;
    margin-left: calc(50% - 125.64px);
  }
  .site-footer .direct_link {
    width: max-content;
    margin-left: calc(50% - 56.65px);
  }
  .img_footer {
    margin-top: 30px;
  }
  .btn_newsl {
    margin: 0 auto !important;
    margin-top: 15px !important;
    margin-bottom: 25px !important;
    display: table !important;
  }
  .footer-about.dati_az .fa-ul {
    width: fit-content;
    margin-left: calc(50% - 84.11px);
  }
}




