/* ============================================================
   ICONS – custom.css
   Aligned to reference site (icons innovative consulting)
   Primary: #0068B3  |  Dark navy: #1a2c5b  |  Font: Lato
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@200;300;400;800;900&display=swap');

/* ── RALEWAY OVERRIDES ── */
body { font-family: 'Raleway', sans-serif; }
h1,.h1,h2,.h2,h3,.h3,h4,.h4,h5,.h5,h6,.h6 { font-family: 'Raleway', sans-serif; }
.btn, button { font-family: 'Raleway', sans-serif; font-weight: 800; }
header .mod-menu a, header .mod-menu__heading,
header ul.mod-menu li a, header ul.mod-menu li span,
.navbar-nav > li > a { font-family: 'Raleway', sans-serif; font-weight: 800; }
.eyebrow-number, .stat-title, .nspText,
.caratteristica-testo { font-family: 'Raleway', sans-serif; font-weight: 300; }
.stat-number, .slide_introtext h1,
#homeSlider .carousel-caption h1 { font-family: 'Raleway', sans-serif; font-weight: 900; }
footer, footer h3, footer p, footer a,
footer .mod-menu li a { font-family: 'Raleway', sans-serif; }
/* ============================================================
   BASE
   ============================================================ */
body {
  color: #333333;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  padding-left: 20px;
  padding-right: 21px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.btn-primary {
  background-color: #0068b3 !important;
  border-color: #0068b3 !important;
  letter-spacing: 0.5px;
  color: #ffffff !important;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #1a2c5b !important;
  border-color: #1a2c5b !important;
  color: #ffffff !important;
}

.btn-secondary {
  background-color: #0068b3;
  border-color: #0068b3;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
  background-color: #0068b3 !important;
  border-color: #0068b3 !important;
  color: #ffffff !important;
}

.btn-alternative {
  border: 2px solid #0068b3;
  border-radius: 4px;
  text-align: center;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0068b3;
  background: #fff;
  padding: 12px 28px;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-alternative:hover {
  background: #0068b3;
  color: #fff;
}

/* ============================================================
   HEADER – matches reference: tall, white, logo left, nav right
   ============================================================ */
header {
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1050;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

/* Remove the top-header strip — reference site has no top bar */
/* header .top-header {
  display: none;
} */

/* Navbar wrapper */
header nav.navbar,
.navbar {
  padding: 0;
  min-height: 100px;
}

header .container {
  max-width: 1366px;
  width: 100%;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ============================================================
   LOGO – reference site shows large logo with tagline visible
   ============================================================ */
.navbar-brand {
  padding: 18px 0;
  margin-right: 40px;
  flex-shrink: 0;
}

.navbar-brand img,
header .navbar-brand img {
  max-height: 72px;
  width: auto;
}

/* ============================================================
   MAIN NAV – uppercase, letter-spaced, bold like reference
   ============================================================ */
header .mod-menu,
header ul.mod-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: auto;
}

header ul.mod-menu li {
  float: none;
  position: relative;
}

/* Top-level nav links */
header .mod-menu__heading,
header .mod-menu a,
header ul.mod-menu li a,
header ul.mod-menu li span {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #1a1a2e;
  text-decoration: none;
  padding: 10px 16px;
  display: block;
  transition: color 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}

header .mod-menu a:hover,
header .mod-menu__heading:hover,
header ul.mod-menu li a:hover {
  color: #0068b3;
  text-decoration: none;
}

/* Active / current nav item — blue underline like reference */
header ul.mod-menu li.active > a,
header ul.mod-menu li.current > a,
header .mod-list li.active > a {
  color: #0068b3;
  position: relative;
}

header ul.mod-menu li.active > a::after,
header ul.mod-menu li.current > a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 16px;
  right: 16px;
  height: 3px;
  /* background: #0068b3; */
  border-radius: 2px 2px 0 0;
}

/* ============================================================
   DROPDOWN SUBMENU
   ============================================================ */
.mod-menu__sub {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #ffffff;
  padding: 8px 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border-top: 3px solid #0068b3;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 1000;
}

.deeper:hover > .mod-menu__sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mod-menu__sub::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 12px;
}

.mod-menu__sub li {
  width: 100%;
  padding: 0;
  position: relative;
}

.mod-menu__sub a {
  display: block;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: none;
  color: #333333;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s, color 0.15s;
}

.mod-menu__sub a:hover {
  background: #f5f8fc;
  color: #0068b3;
}

/* Level 2+ submenus */
.mod-menu__sub .mod-menu__sub {
  top: 0;
  left: 100%;
  right: auto;
  border-top: none;
  border-left: 3px solid #0068b3;
}

.mod-menu__sub.submenu-left {
  left: auto !important;
  right: 100% !important;
}

.mod-menu__sub .deeper:hover > .mod-menu__sub {
  opacity: 1;
  visibility: visible;
}

/* Parent arrow indicator */
.nav-item.parent > .mod-menu__heading::after,
.nav-item.parent > a::after {
  content: "▾";
  margin-left: 4px;
  font-size: 12px;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}

.nav-item.parent > .mod-menu__heading::after {
  right: 0;
}

.mod-list li .mod-menu__sub {
  padding: 0;
}

/* ============================================================
   NAVBAR COLLAPSE (mobile panel)
   ============================================================ */
header .navbar-toggler {
  border: 2px solid #0068b3;
  border-radius: 4px;
  padding: 6px 10px;
}


header .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230068b3' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-collapse {
  flex-grow: 0;
}

/* ============================================================
   NAVBAR-NAV (Bootstrap wrapper around mod-menu)
   ============================================================ */
.navbar-nav {
  align-items: center;
  gap: 0;
}

.navbar-nav > li {
  position: relative;
}

.navbar-nav > li > a,
.mod-menu__heading {
  display: block;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #1a1a2e;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s;
}

.navbar-nav > li > a:hover,
.mod-menu__heading:hover {
  color: #0068b3;
}

/* ============================================================
   TOP BAR — keep hidden on desktop (reference has no strip)
   Social / LinkedIn icon shown inline in navbar area if needed
   ============================================================ */
/* .top-header {
  display: none !important;
} */

/* If you re-enable the top bar, style it minimally: */
/* 
.top-header {
  background: #f8f9fa;
  border-bottom: 1px solid #e8e8e8;
  font-size: 12px;
  color: #666;
  padding: 6px 0;
}
*/

/* Language switcher */
.container-topbar-b .mod-languages .btn {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: transparent;
  border: 0;
  color: #333333;
  padding-right: 20px;
  /* background-image: url(/images/caratteristiche/Icona-Lingua.svg); */
  background-repeat: no-repeat;
  background-size: 22px;
  background-position: 0px 7px;
  padding-left: 30px;
}

div.mod-languages .btn-group .btn:focus,
div.mod-languages .btn-group .btn:active {
  border: 0 !important;
  box-shadow: none;
}

/* ============================================================
   HERO / SLIDER
   ============================================================ */
.slidehome {
  padding-top: 120px;
  padding-bottom: 80px;
  overflow: hidden;
}

.slide_content {
  z-index: 9;
  position: relative;
}

.slidehome .slide_introtext {
  margin-bottom: 40px;
}

.slidehome .container {
  position: relative;
}

img.desktop-img {
  position: absolute;
  z-index: 0;
  right: 0;
  height: 690px;
  width: auto;
  top: -351px;
}

/* Slider heading — bold, uppercase feel like reference */
.slide_introtext h1 {
  font-family: "Raleway", sans-serif;
  font-weight: 900;
  font-size: 42px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #1a2c5b;
  text-transform: uppercase;
}

.slidehome.slider_new {
  position: relative;
  padding: 0;
}

.slidehome.slider_new .slide_content,
.slidehome.slider_new .slide_image {
  padding-top: 60px;
  padding-bottom: 60px;
}

.slidehome.slider_new .slide_content {
  background: rgba(0, 104, 179, 0.04);
}

.slider_new img.desktop-img.d-none.d-lg-block.lazyload {
  position: static;
  width: auto;
  height: auto;
}

.slidehome.slider_new .slide_image .mobile-img.d-lg-none {
  position: static;
  max-width: 80%;
  margin: 0 auto;
  width: 100%;
  display: flex;
}

.slidehome.slider_new .slide_introtext * {
  line-height: 1.4;
}

.slidehome.slider_new .slide_bottone .btn-alternative {
  border: 2px solid #0068b3;
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .slidehome.slider_new::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(120deg, #0068b3 10%, #0068b3 45%, transparent 45%, transparent 100%);
    opacity: 0.04;
    z-index: 1;
  }

  .slidehome.slider_new .slide_image img {
    animation: floating 3s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 104, 179, 0.15));
  }

  @keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-16px); }
  }

  .slidehome.slider_new .slide_content {
    background: transparent;
  }
}

/* ============================================================
   SECTION BACKGROUNDS
   ============================================================ */
#top-a,
#top-c {
  background: #f5f8fc;
  padding-top: 60px;
  padding-bottom: 60px;
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */
#top-a h3,
.caratteristiche .carat_titolo h3,
#top-c h3 {
  text-align: center;
  font-family: "Raleway", sans-serif;
  line-height: 1.4;
  letter-spacing: -0.2px;
  color: #1a2c5b;
  margin-bottom: 14px;
}

.caratteristiche .carat_sottotitolo {
  text-align: center;
  font-size: 17px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 40px;
}

.btn-little {
  padding-top: 6px;
  padding-bottom: 7px;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-width: 1.5px;
}

.caratteristica {
  text-align: center;
  margin-bottom: 24px;
  padding: 28px 20px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 104, 179, 0.10);
  border-radius: 6px;
  position: relative;
  border-top: 3px solid #0068b3;
  min-width: 275px;
  height: auto !important;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.caratteristica:hover {
  box-shadow: 0 8px 32px rgba(0, 104, 179, 0.18);
  transform: translateY(-2px);
}

.caratteristica-icona img {
  width: 56px;
  text-align: center;
  margin: 0 auto 20px;
}

.caratteristica-titolo {
  text-align: center;
  font-family: "Raleway", sans-serif;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0.2px;
  color: #0068b3;
  margin-bottom: 10px;
  margin-top: 12px;
  text-transform: uppercase;
}

.caratteristica-testo {
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: #555555;
}

.caratteristica-bottone {
  margin-top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid #0068b3;
  color: #0068b3;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.caratteristica-bottone:hover {
  background: #0068b3;
  color: #fff;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.mod-breadcrumbs__wrapper {
  margin-top: 20px !important;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #545454;
  padding-left: 0 !important;
  margin-left: 0;
}

.breadcrumb a {
  color: #545454;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #0068b3;
}

.breadcrumb-item + .breadcrumb-item:before {
  content: "›";
  color: #aaa;
}

/* ============================================================
   CONTAINER SPACING
   ============================================================ */
.container-component > :first-child,
.container-sidebar-left > :first-child,
.container-sidebar-right > :first-child,
.container-component > * + *,
.container-sidebar-left > * + *,
.container-sidebar-right > * + * {
  margin-top: 25px;
}

#top-c.module-different {
  padding: 50px 0 50px;
}

#top-c.module-different .caratteristica_2 {
  margin-bottom: 24px;
}

/* ============================================================
   MISC LAYOUT HELPERS
   ============================================================ */
.col-xs-12.col-md-3.d-none.d-lg-block {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.col-xs-12.col-md-3.d-none.d-lg-block .container-topbar-a a.btn {
  white-space: nowrap;
  box-shadow: none;
  border: none;
}

li.nav-item.item-189 {
  display: none;
}

header .navbar-light button {
  float: right;
}

header .menu-desktop {
  padding: 0;
}

.container-topbar-a {
  margin-top: 0;
}

.container-topbar-a-mobile {
  margin-top: 50px;
  margin-bottom: 25px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 335px;
}

.container-topbar-a-mobile .btn {
  padding: 11px 7px;
  margin: 0;
}

.container-topbar-b {
  margin-top: 0;
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.absolute-mobile {
  position: fixed;
  bottom: 0;
  z-index: 99;
}

.absolute-mobile .btn {
  padding-top: 20px;
  width: 100%;
  margin: 0;
  border-radius: 0;
  padding-bottom: 20px;
}

.absolute-mobile,
col-6 {
  padding: 0;
  margin: 0;
}

.absolute-mobile .col-6 {
  margin: 0;
  padding: 0;
}

/* ============================================================
   BACKGROUND IMAGE HERO BLOCKS
   ============================================================ */
.background_image_text {
  width: 100vw;
  min-height: 200px;
  margin-left: calc(-50vw + 50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.background_image_text::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 44, 91, 0.5);
  z-index: 1;
}

.background_image_text > * {
  position: relative;
  z-index: 2;
  color: #fff;
}

.titletextabove_image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 20px;
  min-height: 280px;
}

.titletextabove_image .image_title h3 {
  color: #ffffff;
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.titletextabove_image .image_text {
  font-size: 20px;
  font-weight: 600;
}

/* ============================================================
   CAROUSEL / NSP
   ============================================================ */
.carosello_home {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
}

.carosello_home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  background-color: #f5f8fc;
  z-index: -1;
}

.carosello_home .nspMain {
  position: relative;
  padding: 18px 0 0 !important;
}

.carosello_home .nspTopInterface {
  width: 100%;
  position: absolute !important;
  left: 0;
  right: 0;
  height: 20px;
  bottom: -5px;
}

.carosello_home .nspPagination {
  width: fit-content;
  text-align: center;
  margin: auto !important;
  float: none;
  display: block !important;
}

.nspArt h4.nspHeader {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #1a2c5b;
}

.nspInfo1 {
  margin-top: 20px;
}

a.readon {
  text-transform: uppercase;
  margin-top: 30px;
  font-weight: 700;
  letter-spacing: 0.8px;
  font-size: 13px;
}

.nspArts.bottom {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nspPagination li {
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  float: left;
  height: 7px;
  margin: 1px 7px 0 0 !important;
  width: 7px;
  margin-top: 5px !important;
}

.nspPagination li.active {
  background-color: #0068b3 !important;
  width: 10px;
  height: 10px;
  display: flex;
  margin-top: 3px !important;
}

.nspBotInterface,
.nspTopInterface {
  clear: both;
  float: right;
  margin: 5px 14px 0;
  overflow: hidden;
  position: absolute;
  bottom: 30px;
}

.nspArt p.nspText {
  width: 100%;
}

.nspArts.bottom .nspTopInterface .nspPrev,
.nspArts.bottom .nspTopInterface .nspNext {
  display: none;
}

/* ============================================================
   MISC COMPONENTS
   ============================================================ */
.mb-40 {
  margin-bottom: 40px;
}

.headingTitle {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1a2c5b;
}

div#qx-node-1783 {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.moduletable.documents_module ul {
  list-style-type: none;
}

.moduletable.documents_module ul li a::before {
  content: "\f0ed";
  margin-right: 5px;
  font-family: "FontAwesome";
}

.moduletable.ask_for_a_demo {
  float: left;
  border-right: 4px double #0068b3;
  padding-right: 7%;
}

.moduletable.documents_module {
  display: inline-block;
}

/* ============================================================
   ACCORDION
   ============================================================ */
.artical-accordions {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

[data-rlta-element=container][data-rlta-state=ready][data-rlta-theme=neutral][data-rlta-type=accordions] > [data-rlta-element=button] {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0;
}

.artical-accordions h3 {
  border-bottom: 2px solid #0068b3;
  text-align: left !important;
  color: #0068b3 !important;
}

[data-rlta-element=container] > [data-rlta-element=button] > [data-rlta-element=heading] {
  border-bottom: 2px solid #0068b3;
  text-align: left !important;
  color: #0068b3 !important;
  box-shadow: none !important;
  padding: 8px 20px 8px 0px !important;
  line-height: 1.5;
  font-weight: 700 !important;
  position: relative;
}

[data-rlta-element="panel-content"] {
  padding: 1.25em 0 0 !important;
  text-align: left;
}

[data-rlta-element=container][data-rlta-type=accordions] {
  margin-top: 20px;
}

[data-rlta-element=container] > [data-rlta-element=button][data-rlta-state=closed] > [data-rlta-element=heading]::after {
  content: "\25be";
  float: right;
  position: absolute;
  right: 0;
  top: 5px;
}

[data-rlta-element=container] > [data-rlta-element=button][data-rlta-state=open] > [data-rlta-element=heading]::after {
  content: "\25be";
  float: right;
  transform: rotate(180deg) !important;
  -webkit-transform: rotate(180deg);
  position: absolute;
  right: 0;
  top: 5px;
}

/* ============================================================
   SOLO TESTO / CONTENT SECTIONS
   ============================================================ */
.solotesto {
  position: relative;
  display: block;
}

.solotesto ul {
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  gap: 10px 200px;
  list-style: none;
}

.solotesto p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
}

.titolo_testo .shadow-sm {
  box-shadow: none !important;
}

/* ============================================================
   SUBCATEGORY / LIST
   ============================================================ */
.itemListSubCategories {
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: center;
}

.subCategory {
  position: relative;
}

.subCategory h2 {
  margin: 0;
  position: absolute;
  z-index: 999;
  bottom: 5%;
  right: 10%;
  width: 30%;
  background-color: #0068b3;
  color: #fff !important;
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.subCategory h2 a {
  color: #fff !important;
}

/* ============================================================
   REQUEST DEMO / TABS
   ============================================================ */
.request-demo#tabs {
  padding: 50px 16px 0;
}

.request-demo .nav.nav-tabs {
  background: transparent;
}

.request-demo .nav.nav-tabs .nav-item {
  margin: 10px 10px 10px 0;
}

.request-demo .nav.nav-tabs .nav-item .nav-link {
  border-radius: 5px !important;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 24px;
}

.request-demo .nav.nav-tabs + .tab-content {
  background: #f5f8fc;
  border: 1px solid #e0eaf5;
  box-shadow: 0 0 20px rgba(0, 104, 179, 0.10);
  border-radius: 8px;
}

.request-demo .nav.nav-tabs + .tab-content * {
  line-height: 1.25;
}

/* ============================================================
   BOTTOM-A CTA
   ============================================================ */
#bottom-a:has(.bottom-demo-cta) {
  display: flex;
}

#bottom-a .bottom-demo-cta {
  padding: 0 12px !important;
}

#bottom-a .bottom-demo-cta .mod-custom {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 6px;
  height: 100%;
  padding: 28px;
}

/* ============================================================
   PRICING TABLE
   ============================================================ */
.pricing-table {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.price-list {
  min-height: 100px;
  border: 1px dotted #0068b3;
  display: inline-flex;
  align-items: center;
  padding: 10px;
  font-size: 18px;
  font-weight: 700;
}

/* ============================================================
   FORMS / REGISTRATION
   ============================================================ */
form#user-registration legend {
  line-height: 1.5;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.com-content-category-blog__navigation.w-100 {
  margin-top: 50px;
}

.pagination__wrapper li.page-item span,
.pagination__wrapper li.page-item a {
  min-height: 38px;
}

.pagination__wrapper .page-item .page-link {
  color: #0068b3;
}

.pagination__wrapper .page-item.active .page-link {
  color: #fff;
  background-color: #0068b3;
  border-color: #0068b3;
}

span.icon-angle-right::before { content: "›"; }
span.icon-angle-double-right::before { content: "»"; }
span.icon-angle-left::before { content: "‹"; }
span.icon-angle-double-left::before { content: "«"; }

.com-content-category-blog__pagination .disabled span.page-link {
  background-color: #f2f1f1 !important;
}

/* ============================================================
   MODULES – image layout
   ============================================================ */
.image_centre .col-md-6:nth-child(1) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.image_centre .col-md-6:nth-child(2) {
  text-align: center;
}

.row.small_image.immaginesin_testo .col-md-6:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.row.small_image.immaginesin_testo .col-md-6:nth-child(1) {
  text-align: center;
}

.row.small_image.immaginesin_testo img {
  width: 500px;
}

/* ============================================================
   PRICING PAGE OVERRIDES
   ============================================================ */
body.pricing_page .caratteristiche {
  padding-bottom: 70px;
}

body.pricing_page .caratteristica-titolo {
  font-family: "Raleway", sans-serif;
  font-weight: 900;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.5px;
  color: #fff;
  padding: 10px 15px;
  background-color: #0068b3;
  min-height: 72px;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  text-transform: uppercase;
}

body.pricing_page .caratteristica-testo {
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: #333333;
  margin-top: -5px;
}

body.pricing_page .pricing-table {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

body.pricing_page .price-list {
  min-height: 100px;
  border: 1px solid #c3c3c3;
  display: grid;
  align-items: center;
  padding: 10px;
  font-size: 18px;
  font-weight: 700;
  width: 100%;
}

body.pricing_page .caratteristica {
  padding: 0;
  margin-bottom: 25px;
}

.caratteristiche.py-5.service_desk_basic {
  position: relative;
  z-index: 1;
  margin-top: -50px;
}

.caratteristiche.py-5.service_desk_basic::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  background-color: #fff;
  z-index: -1;
}

/* ============================================================
   COMPLEMENTARY MODULES
   ============================================================ */
.moduletable.complementary_modules.py-5 {
  position: relative;
  z-index: 1;
}

.moduletable.complementary_modules.py-5:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  background-color: #fff;
  z-index: -1;
}

/* ============================================================
   CONVERT FORMS
   ============================================================ */
div.convertforms.cf {
  margin-bottom: 50px;
}

.separator_section.titolo_testo:before {
  background-color: rgba(0, 104, 179, 0.08);
}

/* ============================================================
   NEWS / BLOG
   ============================================================ */
.com-content-article.item-pagenews_listing .page-header h1 {
  margin-bottom: 10px;
  display: none !important;
}

.com-content-article.item-pagenews_listing .com-content-article__body {
  float: right;
  width: 100%;
}
.com-content-article.item-pagenews_listing .com-content-article__body h2 {
    margin-bottom: 30px;
    margin-top: 15px;
}
.cloud-effectiveness p {
  font-size: 17px;
  line-height: 1.7;
}

.cloud-effectiveness h3 {
  font-size: 28px;
  font-weight: 900;
  color: #1a2c5b;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.policy-content.solotesto table td {
  padding: 5px;
  border: 1px solid #c3c3c3;
}

.solotesto .shadow-sm {
  box-shadow: none !important;
}

/* ============================================================
   DROPDOWN SUBMENU – second level border
   ============================================================ */
.navbar-collapse > ul > li.deeper:hover > ul ul {
  border-top: 3px solid #0068b3;
  border-radius: 0;
  padding: 0;
  border-bottom: 1px solid #ededed;
  border-left: 1px solid #ededed;
  border-right: 1px solid #ededed;
}
.com-content-category-blog.blog .blog-items .blog-item .readmore a.btn-secondary:hover {
  background-color: #fff !important;
  border-color: #0068b3 !important;
  color: #0068b3 !important;
}
/* ============================================================
   RESPONSIVE – TABLET  max-width: 1199px
   ============================================================ */
@media (max-width: 1199px) {
  .navbar-collapse > ul > li.deeper:hover > ul ul {
    border: none;
    padding-left: 16px;
  }

  header button.navbar-toggler {
    padding: 6px 10px;
    outline: 0 !important;
    box-shadow: none !important;
  }

  body:has(.navbar-collapse.show),
  html:has(.navbar-collapse.show) {
    overflow: hidden;
  }

  body:has(.navbar-collapse.show)::after {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.30);
    z-index: 9;
  }

  .navbar-collapse {
    max-height: 100dvh;
    overflow-y: auto;
    position: fixed;
    left: 0;
    max-width: 500px;
    top: 0;
    bottom: 0;
    background: #fff;
    transition: none;
    border-right: 1px solid #e5e7eb;
    z-index: 1100;
  }

  .navbar-nav {
    align-items: flex-start;
    width: 100%;
  }

  .navbar-nav > li {
    width: 100%;
  }

  .navbar-nav > li > a,
  .mod-menu__heading {
    width: 100%;
    padding: 14px 20px;
    border-bottom: 1px solid #e8e8e8;
    font-size: 12px;
    letter-spacing: 1px;
  }

  .nav-item.parent > .mod-menu__heading::after,
  .nav-item.parent > a::after {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
  }

  .mod-menu__sub {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 0;
    display: none;
    border-top: none;
  }

  .mod-menu__sub .nav-item a {
    padding: 10px 20px 10px 32px;
    border-bottom: 0;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: none;
  }

  .deeper:hover > .mod-menu__sub,
  .mod-menu__sub .deeper > .mod-menu__sub {
    display: block !important;
    padding-left: 0;
    opacity: 1;
    visibility: visible;
  }

  .deeper > .mod-menu__sub > li.parent > a {
    font-weight: 700;
    padding-right: 32px;
  }

  .mod-menu__sub a {
    padding: 10px 20px 10px 32px;
  }

  .deeper > a::after,
  .deeper > .mod-menu__heading::after {
    content: "▾";
  }
  
}
/* ============================================================
   LINKEDIN ICON IN NAVBAR
   ============================================================ */
.navbar-linkedin {
  display: flex;
  align-items: center;
  margin-left: 12px;
  flex-shrink: 0;
}

.navbar-linkedin a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #0a66c2;
  border-radius: 4px;
  transition: background 0.2s;
  text-decoration: none;
}

.navbar-linkedin a:hover {
  background: #1a2c5b;
}

/* ============================================================
   HERO CAROUSEL — diagonal split style matching reference
   ============================================================ */
#homeSlider {
  position: relative;
  overflow: hidden;
}

#homeSlider .carousel-item {
  position: relative;
  min-height: 520px;
  max-height: 620px;
}

#homeSlider .carousel-item img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center;
}

#homeSlider .carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
}

#homeSlider .carousel-caption {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  text-align: left;
  width: 45%;
  z-index: 2;
  bottom: auto;
  right: auto;
  padding: 0;
}

#homeSlider .carousel-caption h1,
#homeSlider .carousel-caption h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  text-align: left;
  color: #1d1d1f;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  text-shadow: none;
}

#homeSlider .carousel-caption h2 {
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 6px;
  opacity: 0.85;
}

#homeSlider .carousel-caption h1 {
  font-size: 34px;
  line-height: 1.15;
  margin-bottom: 16px;
}

#homeSlider .carousel-caption p {
  font-size: 15px;
  line-height: 1.6;
  color: #1d1d1f;
  margin-bottom: 24px;
  max-width: 380px;
}

#homeSlider .carousel-caption .btn-slider,
#homeSlider .btn-slider {
  background-color: #0068b3;
  color: #ffffff;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  border-radius: 0;
  display: inline-block;
  text-decoration: none;
  transition: background 0.2s;
}

#homeSlider .btn-slider:hover {
  background-color: #1a2c5b;
  color: #fff;
}

#homeSlider .carousel-indicators {
  bottom: 20px;
}

#homeSlider .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.5);
  border: none;
  margin: 0 5px;
  transition: background 0.2s, transform 0.2s;
}

#homeSlider .carousel-indicators button.active {
  background-color: #0068b3;
  transform: scale(1.3);
}

#homeSlider .carousel-control-prev,
#homeSlider .carousel-control-next {
  width: 48px;
  opacity: 0.7;
  z-index: 3;
}

#homeSlider .carousel-control-prev:hover,
#homeSlider .carousel-control-next:hover {
  opacity: 1;
}
.chi-siamo-section p{
  line-height: 1.8;
  font-size: 22px;
}
@media (max-width: 991px) {
  #homeSlider .carousel-item {
    min-height: 340px;
    max-height: 400px;
  }

  #homeSlider .carousel-item img {
    height: 400px;
  }

  #homeSlider .carousel-item::before {
    width: 100%;
    clip-path: none;
    /* background: rgba(20, 30, 60, 0.65); */
  }

  #homeSlider .carousel-caption {
    left: 5%;
    width: 88%;
    top: 50%;
  }

  #homeSlider .carousel-caption h1 {
    font-size: 22px;
  }

  #homeSlider .carousel-caption h2 {
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .navbar-collapse {
    max-width: 300px;
  }
}

/* ============================================================
   RESPONSIVE – MOBILE max-width: 991px
   ============================================================ */
@media (max-width: 991px) {
  .row > * {
    padding-right: 16px;
    padding-left: 16px;
  }

  .slide_introtext h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  a.brand-logo {
    margin-left: 0;
  }

  .slidehome {
    padding-top: 50px;
    padding-bottom: 225px;
  }

  .slidehome .slide_introtext,
  .slidehome .slide_bottone {
    margin-left: 0;
  }

  .mobile-img.d-lg-none {
    position: absolute;
    bottom: -225px;
    width: 411px;
    left: 0;
    right: 0;
    z-index: 1;
  }

  .slidehome .slide_content {
    z-index: 2;
    position: relative;
  }

  #top-a,
  #top-c {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .mod-breadcrumbs__wrapper {
    margin-top: 40px !important;
  }

  div#mobileNav .mod-languages__select.btn-group {
    width: 100%;
    display: block !important;
    text-align: center;
  }

  #mobileNav div.mod-languages .btn-group ul {
    position: relative !important;
    transform: none !important;
    float: none !important;
    z-index: 0;
    border: 0;
  }

  #mobileNav div.mod-languages .btn-group .btn:after {
    float: right;
    margin-right: 30px;
    margin-top: 5px;
  }

  div#mobileNav div.mod-languages ul li.lang-active a {
    background: #fff;
    color: #333;
  }

  #mobileNav div.mod-languages .btn-group .btn {
    flex: none;
    white-space: normal !important;
    width: 100%;
    float: none !important;
    text-align: left;
    background: transparent;
    border: 0;
    color: #333;
    padding: 0;
    margin-left: 15px;
    margin-top: 25px;
  }

  #mobileNav div.mod-languages .btn-group ul li {
    padding: 0;
    margin-left: 16px;
    margin-top: 25px;
    margin-bottom: 25px;
  }

  header .container {
    position: relative;
  }

  nav.navbar-light {
    padding-right: 55px;
  }

  header .language-dropdown .mod-languages {
    position: absolute;
    top: 0;
    right: 16px;
  }

  header .language-dropdown .mod-languages .btn-group .btn {
    padding: 1px 0;
    background: none;
  }

  #top-c.module-different {
    padding: 50px 0;
  }

  .solotesto ul {
    grid-template-columns: 1fr;
  }

  .slidehome.slider_new .slide_image {
    padding-top: 0;
    padding-bottom: 0;
  }
}
/* ===== SERVICE PAGE - REUSABLE STRUCTURE ===== */

/* Hero */
.service-hero img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  margin-bottom: 30px;
}

/* Title */
.service-title {
  font-size: 26px;
  font-weight: 700;
  color: #222;
  margin-top: 30px;
  margin-bottom: 8px;
}

.service-divider {
  border: none;
  border-top: 1px solid #ccc;
  margin-bottom: 20px;
}

/* Subtitle */
.service-subtitle {
  color: #0068b3;
  font-weight: 700;
  margin-bottom: 30px;
}

/* Sections */
.service-section {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  padding: 20px;
  background: #f5f5f5;
}

.service-section.reverse {
  flex-direction: row-reverse;
  /*background: #ffffff;*/
}

.service-image {
  flex: 0 0 45%;
}

.service-image img {
  width: 100%;
  height: auto;
  display: block;
}

.service-content {
  flex: 1;
}

.service-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.service-content p,
.service-content li {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.service-content ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.service-content .btn-link,
.btn-section .btn-link  {
  color: #ffffff;
  background-color: #0068b3;
  padding: 8px 20px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  margin-top: 10px;
}

.service-content .btn-link:hover {
  background-color: #004f8a;
}

/* ===== TABLE LAYOUT - for unique article ===== */
.service-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 14px;
}

.service-table th {
  background-color: #0068b3;
  color: #ffffff;
  padding: 12px 15px;
  text-align: left;
}

.service-table td {
  padding: 10px 15px;
  border-bottom: 1px solid #ddd;
  color: #555;
}

.service-table tr:nth-child(even) {
  background-color: #f5f5f5;
}

.service-table tr:hover {
  background-color: #e8f0f8;
}

/* ===== CHI SIAMO Section ===== */
  .chi-siamo-sec {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px 10px;
      background: #fff;
  }

  .chi-siamo-sec .section-heading {
      text-align: center;
      font-size: 26px;
      font-weight: 800;
      color: #1a1a1a;
      text-transform: uppercase;
      margin-bottom: 40px;
      letter-spacing: 1px;
  }

  .chi-siamo-sec .content-row {
      display: flex;
      align-items: center;
      gap: 40px;
  }

  .chi-siamo-sec .mission-text {
      flex: 1;
  }

  .chi-siamo-sec .mission-text h3 {
      font-size: 28px;
      font-weight: 800;
      color: #0056b3;
      line-height: 1.3;
  }

  .chi-siamo-sec .description-cols {
      flex: 2;
      display: flex;
      gap: 30px;
  }

  .chi-siamo-sec .description-cols p {
      flex: 1;
      font-size: 14px;
      line-height: 1.8;
      color: #444;
  }

  .chi-siamo-sec .description-cols p strong {
      color: #1a1a1a;
  }
/* ============================================================
   FIX 1 — Remove gap between header and hero
   top-header div adds spacing even when hidden
   ============================================================ */
.top-header {
  display: block !important;
  background: #ffffff;
  border-bottom: 1px solid #e8eef5 !important;
  padding: 6px 0 !important;
}

/* Language switcher — align right in top header */
.top-header .container {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
}

.top-header .text-end {
  width: auto !important;
}
/* Hide topbar-a (login/logout) but keep topbar-b (language) visible */
.top-header .login-logout {
  display: none !important;
}
header {
  border-bottom: none !important;
}

#slide,
#homeSlider {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* ============================================================
   FIX 2 — Language switcher: clean outlined style in navbar
   Overrides the blue pill from critical.css with higher specificity
   ============================================================ */
.container-topbar-b .mod-languages__select.btn-group button.btn.dropdown-toggle,
.container-topbar-b .mod-languages .btn-group .btn.dropdown-toggle {
  background-color: transparent !important;
  background-image: none !important;
  border: 1.5px solid #0068b3 !important;
  color: #0068b3 !important;
  font-family: 'Raleway', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  padding: 6px 12px 6px 12px !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  transition: background 0.2s, color 0.2s !important;
}

.container-topbar-b .mod-languages__select.btn-group button.btn.dropdown-toggle:hover {
  background-color: #0068b3 !important;
  color: #ffffff !important;
}

/* Dropdown menu */
.container-topbar-b .mod-languages .dropdown-menu,
.container-topbar-b .mod-languages ul.lang-block {
  min-width: 160px !important;
  border: 1px solid #e8eef5 !important;
  border-top: 3px solid #0068b3 !important;
  border-radius: 0 0 4px 4px !important;
  box-shadow: 0 8px 24px rgba(26,44,91,0.10) !important;
  padding: 4px 0 !important;
  background: #fff !important;
}

.container-topbar-b .mod-languages ul li a {
  font-family: 'Raleway', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  color: #333 !important;
  padding: 8px 16px !important;
  display: block !important;
  text-align: left !important;
}

.container-topbar-b .mod-languages ul li a:hover {
  color: #0068b3 !important;
  background: #f5f8fc !important;
}

.container-topbar-b .mod-languages ul li.lang-active a {
  color: #0068b3 !important;
  font-weight: 700 !important;
}

/* Hide flag images if present — text only */
.container-topbar-b .mod-languages .lang-image {
  display: none !important;
}


/*---------------*/
.lavora-cu-sec {
    display: flex;
    width: 100%;
    margin: 0 auto;
    gap: 0;
}

/* Left Panel - Text + CTA */
.lavora-cu-sec .left-panel {
    flex: 1;
    background-color: #00406E;
    padding: 60px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lavora-cu-sec .left-panel p {
    font-size: 14px;
    line-height: 1.7;
    color: #fff;
    margin-bottom: 25px;
}

.lavora-cu-sec .btn-contattaci {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid #fff;
    color: #1a3a5c;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: fit-content;
    background-color: #fff;
}

.lavora-cu-sec .btn-contattaci:hover {
    background-color: #1a3a5c;
    color: #fff;
}

/* Right Panel - Job Cards */
.lavora-cu-sec .right-panel {
    background-image: url(/images/it-service2.webp);
    flex: 2;
    position: relative;
    display: flex;
    overflow: hidden;
}

.lavora-cu-sec .right-panel-title {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    z-index: 2;
    white-space: nowrap;
}

.lavora-cu-sec .job-card {
    flex: 1;
    position: relative;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 20px 30px;
    overflow: hidden;
}

.lavora-cu-sec .job-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.lavora-cu-sec .job-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 45, 80, 0.75);
    z-index: 1;
}

.lavora-cu-sec .job-card-content {
    position: relative;
    z-index: 2;
}

.lavora-cu-sec .job-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.lavora-cu-sec .job-role {
    color: #ddd;
    font-size: 13px;
    margin-bottom: 4px;
}

.lavora-cu-sec .job-location {
    color: #ddd;
    font-size: 13px;
    margin-bottom: 18px;
}

.lavora-cu-sec .btn-vedi {
    display: inline-block;
    padding: 10px 22px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.lavora-cu-sec .btn-vedi:hover {
    background-color: #fff;
    color: #1a3a5c;
}
/*--------------------*/

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .service-section,
  .service-section.reverse {
    flex-direction: column;
  }

  .service-image {
    flex: 0 0 100%;
  }

  .service-table {
    display: block;
    overflow-x: auto;
  }

  .lavora-cu-sec {
    flex-direction: column;
  }

  .lavora-cu-sec .right-panel {
      flex-direction: column;
  }

  .lavora-cu-sec .job-card {
      min-height: 200px;
  }

  .lavora-cu-sec .right-panel-title {
      top: 10px;
      font-size: 18px;
  }

  .chi-siamo-sec {
      padding: 40px 20px;
  }

  .chi-siamo-sec .content-row {
      flex-direction: column;
      gap: 25px;
  }

  .chi-siamo-sec .mission-text h3 {
      font-size: 22px;
      text-align: center;
  }

  .chi-siamo-sec .description-cols {
      flex-direction: column;
      gap: 20px;
  }
}



/* Table wrap */
.service-table-wrap {
  overflow-x: auto;
  margin-bottom: 30px;
}

.service-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #dedede;
  box-shadow: 0 0 10px #0068b3;
  font-size: 13px;
}

.service-table th {
  background-color: #0068b3;
  color: #ffffff;
  padding: 12px 15px;
  text-align: center;
}

.service-table td {
  padding: 10px 15px;
  border-bottom: 1px solid #ddd;
  color: #555;
  vertical-align: middle;
}

.service-table td.text-center {
  text-align: center;
}

.service-table tr:nth-child(even) {
  background-color: #f5f5f5;
}

.service-table tr:hover {
  background-color: #e8f0f8;
}

.service-table ul {
  padding-left: 15px;
  margin: 5px 0;
}

/* Blue Banner */
.service-blue-banner {
  margin-top: 50px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

.service-blue-overlay {
  background: rgba(0, 104, 179, 0.85);
  padding: 40px 20px;
}

.service-blue-grid {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.service-blue-box {
  flex: 1;
  background: rgba(0, 104, 179, 0.7);
  color: #fff;
  padding: 40px;
  min-height: 240px;
}

.service-blue-box p,
.service-blue-box li {
  color: #fff;
  font-size: 14px;
  line-height: 1.7;
}

.service-blue-box ul {
  padding-left: 20px;
}

.service-blue-btn {
  background: #fff !important;
  color: #0068b3 !important;
}

/* Mobile */
@media (max-width: 768px) {
  .service-blue-grid {
    flex-direction: column;
  }
}

/* ============================================================
   RESPONSIVE – SMALL TABLET max-width: 767px
   ============================================================ */
@media (max-width: 767px) {
  #bottom-a:has(.bottom-demo-cta) {
    flex-wrap: wrap;
    gap: 30px;
  }

  #top-c.module-different .caratteristica_2 .caratteristica_2-icona {
    margin-bottom: 20px;
  }

  #top-c.module-different .caratteristica_2 .caratteristica_2-titolo {
    margin-bottom: 20px;
  }
  .navbar-brand img, header .navbar-brand img {
    width: 150px;
  }
}

/* ============================================================
   RESPONSIVE – max-width: 576px
   ============================================================ */
@media (max-width: 576px) {
  .solotesto ul {
    grid-template-columns: 1fr;
  }

  .slidehome.slider_new .slide_image .mobile-img.d-lg-none {
    max-width: 100%;
  }
}

/* ============================================================
   RESPONSIVE – WIDE SCREENS min-width: 1400px
   ============================================================ */
@media (min-width: 1400px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1366px;
  }

  header .container {
    max-width: 1366px;
  }

  .caratteristica {
    height: auto;
  }

  body.pricing_page .caratteristica {
    padding: 0;
    margin-bottom: 25px;
  }

  .caratteristica-bottone {
    position: relative !important;
  }
}

@media (min-width: 993px) and (max-width: 1399px) {
  .container-topbar-a .btn {
    font-size: 12px;
  }
}

@media (min-width: 991px) and (max-width: 1198px) {
  .caratteristica {
    min-width: auto;
  }
}

@media (min-width: 768px) {
  body.pricing_page .d-md-flex {
    display: inline !important;
  }
}