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

#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 a {
  color: #fff;
  font-family: Commissioner;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
}

.main-header .nav-side ul li:last-child a:after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 8px;
  margin-left: 5px;
  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;
}

.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;
  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;
}

.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 50px;
}

.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: 26px;
}

.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;
}

.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 50px;
}

.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: 26px;
}

.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: 12px 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: auto;
  margin-top: 40px;
  background-color: transparent;
  border: 1px solid rgba(238, 125, 52, 1);
}

.casi-studio0-card {
  border: 2px solid #ee7d34;
  background: rgba(0, 0, 0, 0.2);
  padding: 50px 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: 10px;
  justify-content: end;
  width: 100%;
}

.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;
  background: #193630;
  padding: 10px 0px;
  transition: left 0.3s ease;
}

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

.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;
  background: #192e2a;
  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;
}

.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 {
  color: #c8c8c8;
  font-family: Commissioner;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.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: 150px !important;
  height: auto;
  margin-bottom: 20px;
  min-width: 150px !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 .custom-prev::before {
  background: #181818;
}

.beautiful-insight-slide .custom-next::after {
  background: #181818;
}

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

.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;
  background: #181818;
  padding: 10px 0px;
  transition: left 0.3s ease;
}

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

.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;
  background: #181818;
  padding: 10px 0px;
  transition: right 0.3s ease;
}

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

.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;
}

.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-style: normal;
  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;
  background: #342c22;
  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;
  background: #664b24;
  padding: 10px 0px;
  transition: right 0.3s ease;
}

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

.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-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 1fr;
  padding: 40px 0px;
  gap: 20px;
}

.footer-midale > div h3 {
  color: #ee7d34;
  font-family: Commissioner;
  font-size: 15px;
  font-style: normal;
  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-style: normal;
  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-style: normal;
  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-style: normal;
  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;
}
