body {
  background: #181818 !important;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none !important;
  color: white !important;
}

#home {
  position: relative;
}

button {
  cursor: pointer;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  transition: background 0.3s ease;
}

header.active {
  background: #181818;
}

.container {
  width: calc(100% - 100px);
  margin: auto;
}

.main-header {
  padding: 20px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-header .nav-side ul {
  padding: 0;
  margin: 0;
  display: flex;
  gap: 30px;
  align-items: center;
  list-style: none;
}

.main-header .nav-side ul li {
  position: relative;
}

.main-header .nav-side ul li a {
  color: #fff;
  font-family: Commissioner;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  text-transform: uppercase !important;
  display: block;
  padding: 10px 0;
  transition: color 0.3s ease;
}

.main-header .nav-side ul li.has-submenu>a {
  padding-right: 15px;
}

.main-header .nav-side ul li.has-submenu>a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 5px;
  margin-left: 8px;
  vertical-align: middle;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="9" height="8" viewBox="0 0 9 8" fill="none"><path d="M4.5 8L9 4.76837e-07L0 4.76837e-07L4.5 8Z" fill="white"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.3s ease;
}

.main-header .nav-side ul li:hover>a {
  color: #ee7d34;
}

.main-header .nav-side ul li:hover>a::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="9" height="8" viewBox="0 0 9 8" fill="none"><path d="M4.5 8L9 4.76837e-07L0 4.76837e-07L4.5 8Z" fill="%23ee7d34"/></svg>');
  transform: rotate(180deg);
}

/* Submenu Styling */
.main-header .nav-side ul li .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #1f1f1f;
  min-width: 220px;
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  padding: 15px 0;
  margin: 0;
  list-style: none;
  border-top: 2px solid #ee7d34;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.main-header .nav-side ul li:hover .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.main-header .nav-side ul li .submenu li {
  width: 100%;
  margin: 0;
}

.main-header .nav-side ul li .submenu li a {
  padding: 10px 20px;
  font-size: 13px;
  text-transform: none !important;
  color: #c8c8c8;
  width: 100%;
  box-sizing: border-box;
}

.main-header .nav-side ul li .submenu li a:hover {
  background: rgba(238, 125, 52, 0.1);
  color: #fff;
}

.main-header .nav-side ul li:last-child a:after {
  display: none;
}

/* Mobile Toggle Hamburger Button */
.mobile-toggle {
  display: none;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* I puntini rimangono sempre uguali - non si trasformano in X */

.main-banner {
  padding: 80px 0px;
  padding-top: 160px !important;
}



.bnnr-top-txt ul {
  list-style: none;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.bnnr-top-txt ul li:first-child {
  text-decoration-line: underline;
  color: #fff;
}

.bnnr-top-txt ul li {
  color: #c8c8c8;
  font-family: Commissioner;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
}

.main-center-txt h1 {
  color: #fff;
  text-align: center;
  font-family: Commissioner;
  font-size: 60px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}

.main-center-txt p {
  color: #c8c8c8;
  text-align: center;
  font-family: Commissioner;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

.main-center-txt button {
  color: #fff;
  text-align: center;
  font-family: Commissioner;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.3px;
  padding: 16px 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: auto;
  text-transform: uppercase;
  margin-top: 40px;
  background-color: transparent;
  border: 1px solid rgba(238, 125, 52, 1);
  transition: padding 0.3s ease;
  position: relative;
  overflow: hidden;
  border-top: 0;
  border-bottom: 0;
  width: 200px;
}

.main-center-txt button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(238, 125, 52, 1);
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.main-center-txt button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(238, 125, 52, 1);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.main-center-txt button:hover {
  padding: 16px 30px;
}

.main-center-txt button:hover::before,
.main-center-txt button:hover::after {
  transform: scaleX(0);
}

.main-center-txt button svg {
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: absolute;
  right: 45px;
}

.main-center-txt button svg:first-of-type {
  transform: translateY(0);
  opacity: 1;
}

.main-center-txt button svg:last-of-type {
  transform: translateY(-100%);
  opacity: 0;
}

.main-center-txt button:hover svg:first-of-type {
  transform: translateY(100%);
  opacity: 0;
}

.main-center-txt button:hover svg:last-of-type {
  transform: translateY(0);
  opacity: 1;
  right: 45px;
  height: 35px;
}

.postion-relative {
  position: relative;
}

.main-center-txt>img {
  width: 100%;
  margin-top: 20px;
}

.main-center-txt>div ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin-top: -330px;
  padding: 0;
}

.main-center-txt>div ul li img {
  width: 100%;
}

.business-sec {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.business-sec>div h3 {
  color: #fff;
  text-align: center;
  font-family: Commissioner;
  font-size: 30px;
  font-weight: 600;
  line-height: normal;
}

.business-sec>div {
  padding: 160px 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.business-sec>div>div {
  width: 400px;
}

.business-sec>div>div p {
  color: #c8c8c8;
  font-family: Commissioner;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.business-sec>div>div h2 {
  color: #fff;
  font-family: Commissioner;
  font-size: 48px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
  margin-top: 0;
}

.business-sec>div>div button {
  color: #fff;
  text-align: center;
  font-family: Commissioner;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.3px;
  padding: 16px 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  background-color: transparent;
  border: 1px solid rgba(238, 125, 52, 1);
  transition: padding 0.3s ease;
  position: relative;
  overflow: hidden;
  border-top: 0;
  border-bottom: 0;
  width: 200px;
}

.business-sec>div>div button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(238, 125, 52, 1);
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.business-sec>div>div button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(238, 125, 52, 1);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.business-sec>div>div button:hover {
  padding: 16px 30px;
}

.business-sec>div>div button:hover::before,
.business-sec>div>div button:hover::after {
  transform: scaleX(0);
}

.business-sec>div>div button svg {
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: absolute;
  right: 45px;
}

.business-sec>div>div button svg:first-of-type {
  transform: translateY(0);
  opacity: 1;
}

.business-sec>div>div button svg:last-of-type {
  transform: translateY(-100%);
  opacity: 0;
}

.business-sec>div>div button:hover svg:first-of-type {
  transform: translateY(100%);
  opacity: 0;
}

.business-sec>div>div button:hover svg:last-of-type {
  transform: translateY(0);
  opacity: 1;
  right: 45px;
  height: 35px;
}

.Beautiful-Insight>div:last-child {
  background: #181818 !important;
}

.Beautiful-Insight>div:first-child {
  background: #292929 !important;
}

.casi-studio-sec {
  background: rgba(25, 68, 59, 0.5);
  padding: 80px 0px;
}

.casi-studio-main h2 {
  color: #fff;
  text-align: center;
  font-family: Commissioner;
  font-size: 48px;
  font-weight: 600;
  line-height: normal;
  margin-top: 0;
}

.casi-studio-main>button {
  color: #fff;
  text-align: center;
  font-family: Commissioner;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.3px;
  padding: 16px 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: auto;
  margin-top: 40px;
  background-color: transparent;
  border: 1px solid rgba(238, 125, 52, 1);
  transition: padding 0.3s ease;
  position: relative;
  overflow: hidden;
  border-top: 0;
  border-bottom: 0;
  width: 200px;
}

.casi-studio-main>button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(238, 125, 52, 1);
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.casi-studio-main>button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(238, 125, 52, 1);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.casi-studio-main>button:hover {
  padding: 16px 30px;
}

.casi-studio-main>button:hover::before,
.casi-studio-main>button:hover::after {
  transform: scaleX(0);
}

.casi-studio-main>button svg {
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: absolute;
  right: 45px;
}

.casi-studio-main>button svg:first-of-type {
  transform: translateY(0);
  opacity: 1;
}

.casi-studio-main>button svg:last-of-type {
  transform: translateY(-100%);
  opacity: 0;
}

.casi-studio-main>button:hover svg:first-of-type {
  transform: translateY(100%);
  opacity: 0;
}

.casi-studio-main>button:hover svg:last-of-type {
  transform: translateY(0);
  opacity: 1;
  right: 45px;
  height: 35px;
}

.casi-studio0-card {
  border: 2px solid #ee7d34;
  background: rgba(0, 0, 0, 0.2);
  padding: 70px 30px;
}

.casi-studio0-card h3 {
  color: #fff;
  font-family: Commissioner;
  font-size: 34px;
  font-weight: 600;
  line-height: normal;
  margin-top: 0;
  margin-bottom: 20px;
}

.casi-studio0-card p {
  color: #c8c8c8;
  font-family: Commissioner;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin-top: 0;
  margin-bottom: 20px;
}

.casi-studio0-card>button {
  color: #fff;
  text-align: right;
  font-family: Commissioner;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.3px;
  background-color: transparent;
  border: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: end;
  width: 100%;
}

.casi-studio0-card>button>svg {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.casi-studio0-card>button:hover>svg {
  transform: scaleX(1);
}

.casi-studio0-card>button span .arrow-part {
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    max-width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-width: 100px;
  overflow: hidden;
}

.casi-studio0-card>button:hover span .arrow-part {
  transform: scaleX(0);
  max-width: 0;
}

.casi-studio0-card>a>button {
  color: #fff;
  text-align: right;
  font-family: Commissioner;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.3px;
  background-color: transparent;
  border: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: end;
  width: 100%;
}

.casi-studio0-card>a>button>svg {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.casi-studio0-card>a>button:hover>svg {
  transform: scaleX(1);
}

.casi-studio0-card>a>button span .arrow-part {
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    max-width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-width: 100px;
  overflow: hidden;
}

.casi-studio0-card>a>button:hover span .arrow-part {
  transform: scaleX(0);
  max-width: 0;
}

.casi-studio-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.casi-studio-header h2 {
  color: #fff;
  font-family: Commissioner;
  font-size: 48px;
  font-weight: 600;
  margin: 0;
}

.custom-prev::before {
  content: "INDIETRO";
  color: #fff;
  text-align: right;
  font-family: Commissioner;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.3px;
  position: absolute;
  left: 50px;
  padding: 10px 0px;
  transition: left 0.3s ease;
}

.custom-prev:hover::before {
  left: 60px;
}

.custom-prev {
  border-right: 2px solid transparent !important;
}

.custom-next {
  border-left: 2px solid transparent !important;
}

.custom-next::after {
  content: "AVANTI";
  color: #fff;
  text-align: right;
  font-family: Commissioner;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.3px;
  position: absolute;
  right: 50px;
  padding: 10px 0px;
  transition: right 0.3s ease;
}

.custom-next:hover::after {
  right: 60px;
}

.custom-prev,
.custom-next {
  background: transparent;
  border: 2px solid #ee7d34;
  color: #ee7d34;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}

.custom-prev:hover,
.custom-next:hover {
  border: 2px solid #fff;
}

.casi-studio-sec .owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 40px;
}

.beautiful-insight {
  padding: 80px 0px;
  border-bottom: 2px solid #ed7d35;
}

.casi-studio0-card>img {
  width: 100px !important;
  height: auto;
  margin-bottom: 20px;
}

.shop-carousel {
  display: block !important;
}

.shop-carousel .item {
  display: block;
}

.beautiful-insight-content {
  width: calc(100% - 100px);
  margin: auto;
}

.beautiful-insight-content h2 {
  color: #fff;
  font-family: Commissioner;
  font-size: 48px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}

.beautiful-insight-content p,
.beautiful-insight-content ul,
.beautiful-insight-content li {
  color: #c8c8c8;
  font-family: Commissioner;
  font-size: 16px;
  font-weight: 400;
  line-height: inherit;
}

.beautiful-insight-slide {
  margin-top: 80px;
}

.beautiful-insight-slide .insight-card {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-right: 50px;
}

.beautiful-insight-slide .insight-card p {
  color: #c8c8c8;
  font-family: Commissioner;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin-top: 0;
  margin-bottom: 20px;
}

.beautiful-insight-slide .insight-card h3 {
  color: #fff;
  font-family: Commissioner;
  font-size: 34px;
  font-weight: 600;
  line-height: normal;
  margin-top: 0;
  margin-bottom: 20px;
}

.beautiful-insight-slide .insight-card>img {
  width: 100px !important;
  height: auto;
  margin-bottom: 20px;
  min-width: 100px !important;
}

.beautiful-insight-slide .owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 10px;
  top: -100px;
  position: absolute;
  left: 0;
  right: 0;
  width: calc(100% - 200px);
  margin: auto;
}

.beautiful-insight-slide .casi-studio-header {
  margin-bottom: 60px;
}

.insight-prev {
  border-right: 2px solid transparent !important;
}

.insight-prev::before {
  content: "INDIETRO";
  color: #fff;
  text-align: right;
  font-family: Commissioner;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.3px;
  position: absolute;
  left: 50px;
  padding: 10px 0px;
  transition: left 0.3s ease;
}

.insight-prev:hover::before {
  left: 60px;
}

.insight-next {
  border-left: 2px solid transparent !important;
}

.insight-next::after {
  content: "AVANTI";
  color: #fff;
  text-align: right;
  font-family: Commissioner;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.3px;
  position: absolute;
  right: 50px;
  padding: 10px 0px;
  transition: right 0.3s ease;
}

.insight-next:hover::after {
  right: 60px;
}

.insight-prev {
  border-right: 2px solid transparent;
}

.insight-next {
  border-left: 2px solid transparent;
}

.insight-prev,
.insight-next {
  background: transparent;
  border: 2px solid #ee7d34;
  color: #ee7d34;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}

.insight-next {
  border-left: 2px solid #ee7d34;
}

.insight-prev:hover {
  border-left: 2px solid transparent;
}

.insight-prev:hover {
  border-right: 2px solid transparent;
}

.insight-prev:hover,
.insight-next:hover {
  border: 2px solid #fff;
}

.beautiful-insight-zigzak {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  margin-top: 80px;
  margin-bottom: 140px;
}

.beautiful-insight-zigzak>div::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #ed7d35;
}

/* .beautiful-insight-zigzak > div::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 50px;
  background-color: #ed7d35;
} */

.beautiful-insight-zigzak>div {
  border: 2px solid #ee7d34;
  background: rgba(0, 0, 0, 0.2);
  padding: 100px 40px;
  height: 424px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.beautiful-insight-zigzak>div p {
  color: #c8c8c8;
  font-family: Commissioner;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}

.beautiful-insight-zigzak div:nth-child(1)::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 300px;
  background-color: #ed7d35;
  bottom: -303px;
}

.beautiful-insight-zigzak div:nth-child(2)::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 220px;
  background-color: #ed7d35;
  bottom: -223px;
}

.beautiful-insight-zigzak div:nth-child(3)::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 300px;
  background-color: #ed7d35;
  bottom: -303px;
}

.beautiful-insight-zigzak div:nth-child(4)::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 270px;
  background-color: #ed7d35;
  bottom: -273px;
}

.beautiful-insight-zigzak div:nth-child(2) {
  margin-top: 80px;
}

.beautiful-insight-zigzak div:nth-child(4) {
  margin-top: 30px;
}

.recensioni-sec {
  background: #181818;
  padding: 80px 0px;
}

.recensioni-carousel {
  display: block !important;
}

.recensioni-carousel .item {
  display: block;
}

.recensioni-sec h2 {
  color: #fff;
  text-align: center;
  font-family: Commissioner;
  font-size: 48px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 40px;
}

.recensioni-card {
  background: rgba(0, 0, 0, 0.2);
  padding: 40px 30px;
  text-align: center;
}

.recensioni-card p {
  color: #c8c8c8;
  font-family: Commissioner;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}

.recensioni-card h4 {
  color: #fff;
  font-family: Commissioner;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.bottom-prev::before {
  content: "INDIETRO";
  color: #fff;
  text-align: right;
  font-family: Commissioner;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.3px;
  position: absolute;
  left: 50px;
  padding: 10px 0px;
  transition: left 0.3s ease;
}

.bottom-prev:hover::before {
  left: 60px;
}

.bottom-next::after {
  content: "AVANTI";
  color: #fff;
  text-align: right;
  font-family: Commissioner;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.3px;
  position: absolute;
  right: 50px;

  padding: 10px 0px;
  transition: right 0.3s ease;
}

.bottom-next:hover::after {
  right: 60px;
}

.bottom-prev {
  border-right: 2px solid transparent !important;
}

.bottom-next {
  border-left: 2px solid transparent !important;
}

.bottom-prev,
.bottom-next {
  background: transparent;
  border: 2px solid #ee7d34;
  color: #ee7d34;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}

.bottom-prev:hover,
.bottom-next:hover {
  border: 2px solid #fff;
}

.bottom-img-slider .owl-theme .owl-nav.disabled+.owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100px;
  width: calc(100% - 200px);
  margin: auto;
}

.bottom-img-slider .casi-studio0-card {
  border: 0 !important;
  height: 260px;
}

.recensioni-slider .owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 40px;
}

footer {
  background-color: #000;
}

.footer-top {
  padding: 35px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-top ul {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 30px;
}

.footer-top ul li img {
  height: 20px;
}

.footer-midale {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  padding: 40px 0px;
  gap: 10px;
}

.footer-midale>div h3 {
  color: #ee7d34;
  font-family: Commissioner;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.footer-midale>div ul {
  margin-bottom: 0;
  list-style: none;
  padding: 0;
}

.footer-midale>div ul li a {
  color: #fff;
  font-family: Commissioner;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
  display: inline-block;
  text-decoration: none;
}

.copyright {
  padding: 20px 0px;
}

.copyright p {
  color: rgba(235, 235, 235, 0.4);
  font-family: Commissioner;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;

  text-align: center;
}

.divider {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.contattaci-search {
  border-radius: 40px;
  border: 2px solid #ee7d34;
  background: rgba(0, 0, 0, 0.2);
  padding: 10px;
  width: 500px;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  box-sizing: border-box;
  position: relative;
}

.contattaci-search button {
  color: #ebebeb;
  font-family: Commissioner;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  border-radius: 40px;
  background: #ed7d35;
  padding: 10px 20px;
  border: 0;
  position: absolute;
  right: 8px;
  top: 8px;
  bottom: 10px;
}

.contattaci-search input:focus {
  outline: none !important;
  border: 0 !important;
}

.contattaci-search input {
  border: 0;
  width: 100%;
  box-sizing: border-box;
  display: inline-block;
  padding: 8px 10px;
  padding-right: 130px;
  background: transparent;
}

.nav-side .active a {
  color: #ee7d34 !important;
  position: relative;
}

.nav-side .active a::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background-color: #ee7d34;
  border-radius: 50%;
}

.business-left-shape {
  background: transparent;
}

.business-right-shape {
  background: rgba(255, 255, 255, 0.06);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #fff !important;
  border: 1px solid #fff;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
  background: #ffffff00 !important;
  border-radius: 10px;
  border: 1px solid #ed7d35;
}

/* Swiper pagination dots - same style as Owl Carousel */
.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  margin: 0 7px !important;
  background: transparent !important;
  border: 1px solid #ed7d35;
  border-radius: 10px;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background-color: #fff !important;
  border: 1px solid #fff;
}

.bnnr-top-slider>div img {
  width: auto !important;
  max-height: 51px !important;
  filter: blur(0);
}

.bannr-main-slider {
  max-width: 100%;
  overflow: hidden;
}

.slider-home-img-desk {
  display: flex;
  flex-direction: column;
  padding: 36px 0px;
}

.slider-home-img-desk img {
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.slider-home-img-mobile {
  display: none;
}


.slider-certification {
  max-width: 1100px;
  margin: auto;
}

.slider-certification .item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 70px;
}

/* Swiper Coverflow Slider for bannr-main-slider */
.bannr-main-slider {
  width: 100%;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.bannr-main-slider .swiper-slide {
  background-position: center;
  background-size: contain;
  width: 500px;
  height: 500px;
  background-repeat: no-repeat;
}

.swiper-slide-shadow-left {
  display: none !important;
}

.swiper-slide-shadow-right {
  display: none !important;
}

.swiper-3d {
  perspective: 2090px !important;
}

/* Recensioni Slider Swiper */

.recensioni-slider .mySlider {
  width: 100%;
  max-width: 100%;
  padding: 20px 0px;
}

.recensioni-slider .swiper-slide>div {
  padding: 30px;
  border-radius: 20px;
  color: white;
  font-size: 18px;
  box-sizing: border-box;
  border-radius: 40px;
  border: 2px solid #ee7d34;
  background: rgba(0, 0, 0, 0.2);
}

.recensioni-slider .swiper-slide.swiper-slide-active>div {
  margin-right: 40px !important;
  filter: blur(0px);
}

.recensioni-slider .swiper-slide>div {
  margin-right: 40px !important;
  filter: blur(5px);
}

.magazine-main-sec {
  padding-top: 130px;
}

.magazine-heading>div h1 {
  color: #fff;
  font-family: Commissioner;
  font-size: 50px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 30px;
}

.magazine-heading>div p {
  color: #c8c8c8;
  font-family: Commissioner;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
}

.magazine-heading svg {
  text-align: end;
  display: block;
  margin-left: auto;
  width: 70px;
  height: 70px;
}

.magazine-heading {
  display: grid;
  grid-template-columns: 60% auto;
}

.magazine-cate {
  display: flex;
  list-style: none;
  padding-left: 0;
  gap: 10px;
  border-radius: 10px;
  margin-top: 20px;
}

.magazine-cate li {
  color: #fff;
  text-align: center;
  font-family: Commissioner;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  border: 1px solid #fff;
  padding: 4px 15px;
  border-radius: 10px;
}

.magazine-box-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 60px;
  row-gap: 50px;
}

.magazine-box-grid>div>div {
  color: #fff;
  text-align: center;
  font-family: Commissioner;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  border: 1px solid #fff;
  padding: 4px 15px;
  border-radius: 10px;
  display: inline-block;
  margin: 10px 0px;
}

.magazine-box-grid>div h2 {
  color: #fff;
  font-family: Commissioner;
  font-size: 25px;
  font-weight: 500;
  line-height: 35px;
}

.magazine-box-grid>div img {
  width: 100%;
  height: 300px;
  margin-bottom: 10px;
}

.magazine-box-grid>div p {
  color: #fff;
  font-family: Commissioner;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.magazine-box-grid div>a {
  width: 100%;
}

.magazine-box-grid div>a>div>button {
  color: #fff;
  text-align: right;
  font-family: Commissioner;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.3px;
  background-color: transparent;
  border: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: end;
  width: 100%;
}

.magazine-box-grid div>a>div>button>svg {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.magazine-box-grid div>a>div>button:hover>svg {
  transform: scaleX(1);
}

.magazine-box-grid div>a>div>button span .arrow-part {
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    max-width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-width: 100px;
  overflow: hidden;
}

.magazine-box-grid div>a>div>button:hover span .arrow-part {
  transform: scaleX(0);
  max-width: 0;
}

.magazine-pagination {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
}

.magazine-pagination p.active {
  color: #ee7d34;
}

.magazine-pagination p {
  color: #fff;
  font-family: Commissioner;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.3px;
  margin: 0;
}

.mobile-close {
  display: none;
}

.mobile-carousel-set {
  display: none !important;
}

/* .carousel-mobile-none {
  display: block !important;
} */

.teans-gallery-carousal {
  display: none;
}

.beautiful-insight-carousel-box {
  margin-top: 80px;
}

.beautiful-insight-carousek {
  border: 2px solid #ee7d34;
  background: rgba(0, 0, 0, 0.2);
  padding: 60px 40px;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 10px 0px;
}

.beautiful-insight-carousek p {
  color: #c8c8c8;
  font-family: Commissioner;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}

.beautiful-insight-carousek::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #ed7d35;
}

.beautiful-insight-carousel-box {
  display: none;
}

.magazine-heading .custom-prev svg {
  width: 9px;
  height: 8px;
  margin: unset !important;
}

.magazine-details-data>div ul li.active {
  color: #ee7d34;
  list-style: disc;
  padding-left: 0;
  margin-left: 10px;
}

.magazine-details-data>div ul li {
  color: #fff;
  font-family: Commissioner;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 10px;
  list-style: none;
  margin-left: -5px;
}

.magazine-details-data {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 20% 1fr;
}

.magazine-details-data div h1 {
  color: #fff;
  font-family: Commissioner;
  font-size: 45px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}

.magazine-details-data div h2 {
  color: #fff;
  font-family: Commissioner;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}

.magazine-details-data div p {
  color: #c8c8c8;
  font-family: Commissioner;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
}

.desk-top-none {
  display: none !important;
}

.main-desk-view {
  display: block !important;
}

.footer-top>img {
  width: 150px;
}

.dots-in-mobile .owl-nav.disabled+.owl-dots {
  display: none;
}

.recensioni-slider .swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, -5px);
  display: none;
}

.pre-chart {
  // border: 5px solid #EE7D34;
  border-radius: 15px;
  margin: auto;
  // box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  width: 100% !important;
  height: 100%;

}

.chart-div {
  padding: 80px !important;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.chart {
  border: 5px solid black;
  border-radius: 10px;
  margin: auto;
}

/* opzionale: assicurati che l’SVG sia responsivo */
.chart svg {
  width: 100%;
  height: 100%;
  display: block;
}

#kpiChart {
  width: 100% !important;
  background: #000;
  padding: 0px;
}

#kpiChart canvas {
  display: block;
}

.container.service .main-center-txt {
  display: flex;
  flex-direction: row;
  gap: 3%;
}


.container.service .main-center-txt h1 {
  color: #fff;
  text-align: left;
  font-family: Commissioner;
  font-size: 48px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}

.container.service .main-center-txt p {
  color: #c8c8c8;
  text-align: left;
  font-family: Commissioner;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
}

.container.service .text-on-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.container.service .main-center-txt .text-on-left {
  width: 50%;
}

.container.service .main-center-txt .slider-home-img-desk {
  width: 50%;
}

.container.service .main-center-txt button {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.container.service .main-center-txt .main-desk-view {
  display: flex !important;
  flex-direction: row;
}

.container.service .slider-certification {
  max-width: 100%;
  margin-top: 20px;
}

.service-page .main-banner {
  padding: 80px 0px 40px 0px;
}

#chart-container {
  border: 2px solid #ee7d34;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background: #000000;

}

/* contenitore del chart: deve avere SEMPRE una height */
#kpiChart {
  width: 100%;
  height: clamp(260px, 32vw, 420px);
  /* responsive: min 260, max 420 */
  background: #000;
  padding: 0;
}

/* evita problemi di overflow */
.pre-chart {
  width: 100% !important;
}

/* opzionale: se vuoi che il box non “schiacci” */
.business-right-shape.chart-divd3 {
  align-items: stretch;
}

/* Genitore: deve avere altezza minima */
.business-right-shape.chart-divd3 {
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

/* Wrapper del chart */
.pre-chart {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  display: flex;
  align-items: stretch;
}

/* Chart container */
#kpiChart {
  width: 100% !important;
  height: 100% !important;
  min-height: 350px;
  /* sicurezza */
  background: #000;
  padding: 0;
  border-radius: 15px;
}

/* Responsive mobile */
@media (max-width: 768px) {
  .business-right-shape.chart-divd3 {
    min-height: auto;
    padding: 20px;
  }

  #kpiChart {
    min-height: 260px;
  }
}

/* Colonna destra */
.business-right-shape.chart-divd3 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

/* Dashboard Card */
.dashboard-card {
  width: 100%;
  max-width: 650px;
  height: 420px;
  background: #0f0f0f;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(238, 125, 52, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Chart */
#kpiChart {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .business-sec {
    grid-template-columns: 1fr;
  }

  .dashboard-card {
    height: 300px;
    padding: 20px;
  }

  .business-right-shape.chart-divd3 {
    padding: 30px 20px;
  }
}

.dashboard-wrapper-premium {
  width: 100%;
  min-width: 450px;
  /* Come richiesto */
  max-width: 650px;
  margin: auto;
  perspective: 1000px;
}

#interactive-dashboard-root {
  background: #0a0a0a;
  border: 1px solid rgba(238, 125, 52, 0.2);
  border-radius: 24px;
  padding: 24px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(238, 125, 52, 0.05);
  font-family: 'Commissioner', sans-serif;
  color: white;
  transition: transform 0.3s ease;
}

#interactive-dashboard-root:hover {
  transform: translateY(-5px) rotateX(2deg);
  border-color: rgba(238, 125, 52, 0.4);
}

/* Stili interni per simulare il componente React */
.dash-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.dash-kpi {
  display: flex;
  flex-direction: column;
}

.dash-kpi .val {
  color: #EE7D34;
  font-size: 24px;
  font-weight: 700;
}

.dash-kpi .lbl {
  color: #888;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dash-chart-container {
  width: 100%;
  height: 300px;
  position: relative;
}

/* Responsive */
@media (max-width: 1200px) {
  .dashboard-wrapper-premium {
    min-width: 100%;
  }
}

.beautiful-insight-zigzak strong {
  color: #ee7d34;
}