@charset "UTF-8";
:root {
  --black: #222222;
  --white: #ffffff;
  --grigio: #eeeeee;
  --viola: #7c37ff;
  --font-header: "Bricolage Grotesque", sans-serif;
  --font-home-body: "DM Mono", monospace;
  --font-size-header: 128px;
  --font-size-title: 48px;
  --font-size-body: 24px;
  --line-height-header: 154px;
  --line-height-body: 24px;
}

.text-center {
  text-align: center;
}

.text-end {
  text-align: right;
}

.d-flex {
  display: flex;
}

.justify-content-end {
  justify-content: flex-end;
}

.gap-3 {
  gap: 16px;
}

body {
  font-family: var(--font-home-body);
  color: var(--black);
  background-color: var(--white);
}

a {
  color: var(--black);
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: var(--viola);
}

.header-container {
  background-color: var(--white);
  padding: 10px 20px;
  border: 2px solid var(--viola);
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-container .logo-container {
  width: 150px;
  height: 50px;
}
.header-container .logo-container .header-logo {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.header-container .logo-container .header-logo img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.header-container .logo-container .header-logo img.default-logo {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.header-container .logo-container .header-logo img.hover-logo {
  opacity: 0;
  visibility: hidden;
  z-index: 0;
}
.header-container .logo-container .header-logo:hover img.default-logo {
  opacity: 0;
  visibility: hidden;
}
.header-container .logo-container .header-logo:hover img.hover-logo {
  opacity: 1;
  visibility: visible;
}
.header-container .hamburger {
  background: none;
  border: none;
  font-size: 30px;
  color: var(--viola);
  cursor: pointer;
  display: none;
}
@media (max-width: 768px) {
  .header-container .hamburger {
    display: block;
  }
}
.header-container .menu-container {
  display: flex;
  justify-content: center;
  flex-grow: 1;
}
.header-container .menu-container nav {
  width: 100%;
}
.header-container .menu-container nav .primary-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 20px;
  padding: 0;
  margin: 0;
}
.header-container .menu-container nav .primary-menu li {
  position: relative;
}
.header-container .menu-container nav .primary-menu li a {
  text-decoration: none;
  font-family: var(--font-home-body);
  font-size: 18px;
  color: var(--black);
  padding: 10px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
}
.header-container .menu-container nav .primary-menu li a:hover {
  color: var(--viola);
}
.header-container .menu-container nav .primary-menu li a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: var(--viola);
}
.header-container .menu-container nav .primary-menu li.current-menu-item a, .header-container .menu-container nav .primary-menu li.current_page_item a {
  color: var(--viola);
  border: 2px solid var(--viola);
  padding: 5px 10px;
  display: inline-block;
  border-radius: 0px;
}
@media (max-width: 768px) {
  .header-container {
    flex-wrap: wrap;
  }
  .header-container .menu-container {
    display: none;
    width: 100%;
    flex-direction: column;
    background-color: var(--white);
    border-top: 2px solid var(--viola);
    padding: 10px 0;
  }
  .header-container .menu-container.active {
    display: flex;
  }
  .header-container nav .primary-menu {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .header-container nav .primary-menu li {
    width: 100%;
    text-align: center;
  }
}

.footer-menu,
.primary-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}
.footer-menu li a,
.primary-menu li a {
  text-decoration: none;
  color: var(--black);
  transition: color 0.3s;
}
.footer-menu li a:hover,
.primary-menu li a:hover {
  color: var(--viola);
}

.footer {
  background-color: var(--white);
  color: var(--black);
  border-top: 1px solid var(--grigio);
  padding: 30px 20px;
  /* ✅ Tablets (1024px - 768px) */
  /* ✅ Phones (768px - 480px) */
  /* ✅ Smallest Screens (Below 480px) */
}
.footer .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer .footer-top .btn-primary {
  background-color: var(--viola);
  color: var(--white);
  font-size: 24px;
  border: none;
  text-transform: none;
  transition: background-color 0.3s ease;
  border-radius: 0;
  height: 50px;
  width: auto;
  max-width: 250px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: normal;
  margin-left: auto;
}
.footer .footer-top .btn-primary:hover {
  background-color: rgba(124, 55, 255, 0.9);
}
.footer .footer-logo {
  max-width: 250px;
  width: 100%;
}
.footer .footer-columns {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.footer .col-md-3 {
  flex: 1;
  font-size: 14px;
  min-width: 150px;
}
.footer .social-links-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: flex-end;
  align-items: center;
}
.footer .social-links-list li a img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}
.footer .social-links-list li a img:hover {
  transform: scale(1.2);
}
.footer .footer-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer .footer-nav-item {
  font-size: 16px;
  color: var(--black);
  text-decoration: none;
  display: inline-block;
}
.footer .footer-nav-item:hover {
  color: var(--viola);
}
.footer .footer-nav-item.disabled {
  color: var(--grigio) !important;
  pointer-events: none !important;
  cursor: default !important;
}
.footer .next-page-btn {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  font-size: 18px;
  background-color: var(--viola);
  color: var(--white);
  text-transform: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 5px;
}
.footer .next-page-btn:hover {
  background-color: rgba(124, 55, 255, 0.9);
}
.footer .next-page-btn .arrow-icon {
  font-size: 30px;
}
@media (max-width: 1024px) {
  .footer .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer .footer-top .btn-primary {
    font-size: 20px;
    height: 45px;
    max-width: 200px;
    margin: 0 auto;
  }
  .footer .footer-logo {
    max-width: 200px;
    margin: 0 auto;
  }
  .footer .footer-columns {
    flex-direction: column;
    text-align: center;
  }
  .footer .footer-nav {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .footer .footer {
    padding: 20px;
    text-align: center;
  }
  .footer .footer-logo {
    max-width: 180px;
    margin: 0 auto;
  }
  .footer .btn-primary {
    font-size: 18px;
    height: 40px;
    max-width: 180px;
    padding: 0 15px;
    margin: 0 auto;
  }
  .footer .footer-columns {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .footer .footer-nav {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .footer .next-page-btn {
    font-size: 16px;
    height: 45px;
    padding: 12px 15px;
  }
  .footer .next-page-btn .arrow-icon {
    font-size: 25px;
  }
  .footer .social-links-list {
    justify-content: center;
    flex-direction: row;
  }
}
@media (max-width: 480px) {
  .footer .footer {
    padding: 15px;
  }
  .footer .footer-logo {
    max-width: 150px;
    margin: 0 auto;
  }
  .footer .btn-primary {
    font-size: 16px;
    height: 38px;
    max-width: 160px;
    padding: 0 12px;
    margin: 0 auto;
  }
  .footer .footer-columns {
    gap: 10px;
  }
  .footer .footer-nav {
    gap: 8px;
  }
  .footer .next-page-btn {
    font-size: 14px;
    height: 40px;
    padding: 10px 12px;
  }
  .footer .next-page-btn .arrow-icon {
    font-size: 22px;
  }
}

.home-page {
  background-color: var(--grigio);
  position: relative;
  z-index: 1;
}
.home-page .hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 150px;
  text-align: center;
  overflow: hidden;
}
.home-page .hero .hero-video-wrapper {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}
.home-page .hero .hero-video-wrapper video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.home-page .hero .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 20px;
}
.home-page .hero .hero-title {
  font-family: var(--font-header);
  font-size: var(--font-size-header);
  color: var(--black);
  text-align: left;
  margin-bottom: 20px;
  position: relative;
}
.home-page .hero .hero-subtitle {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  color: var(--black);
  text-align: left;
  position: relative;
}
.home-page .hero .hero-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 320px;
  margin-bottom: 100px;
  position: relative;
}
.home-page .hero .hero-arrow img {
  width: 25px;
  height: auto;
}
.home-page .hero .hero-box,
.home-page .hero .small-box {
  background-color: rgba(255, 255, 255, 0.8);
  border: 2px solid var(--viola);
  padding: 20px;
  max-width: 800px;
  font-size: var(--font-size-body);
  margin: 20px auto;
  position: relative;
}
.home-page .hero .small-box {
  margin-bottom: 20px;
}
.home-page .video-showreel {
  text-align: center;
  padding: 0;
  border: 2px solid var(--viola);
  background-color: var(--white);
  margin-top: 0 !important;
}
.home-page .video-showreel .video-wrapper {
  max-width: 100%;
  margin: 0 auto;
}
.home-page .video-showreel .video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  border: 2px solid var(--viola);
  border-radius: 8px;
}
.home-page .servizi {
  overflow-x: auto;
  padding-bottom: 0;
}
.home-page .servizi .servizi-title {
  text-align: left;
  font-family: var(--font-header);
  font-size: 2.5rem;
  color: black;
  margin-top: 50px;
  margin-bottom: 20px;
}
.home-page .servizi .servizi-grid {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 0 15px;
  padding-bottom: 0;
}
.home-page .servizi .servizi-wrapper {
  position: relative;
  width: 1400px;
  height: 750px;
  margin: 0 auto;
  transform-origin: top left;
  transition: transform 0.3s ease-in-out;
  padding-bottom: 0;
}
.home-page .servizi .servizi-wrapper .inside-wrapper {
  transform: none !important;
  position: relative;
  z-index: 5;
  margin-top: 550px;
  text-align: center;
}
@media (min-width: 1025px) {
  .home-page .servizi .servizi-wrapper {
    min-height: 700px;
  }
}
@media (max-width: 1024px) {
  .home-page .servizi .servizi-wrapper {
    transform: scale(0.45);
    min-height: 450px;
  }
  .home-page .servizi .servizi-wrapper .inside-wrapper {
    margin-top: 400px;
  }
}
@media (max-width: 565px) {
  .home-page .servizi .servizi-wrapper {
    transform: scale(0.35);
    min-height: 350px;
  }
  .home-page .servizi .servizi-wrapper .inside-wrapper {
    margin-top: 320px;
  }
}
@media (max-width: 443px) {
  .home-page .servizi .servizi-wrapper {
    transform: scale(0.25);
    min-height: 350px;
  }
  .home-page .servizi .servizi-wrapper .inside-wrapper {
    margin-top: 320px;
  }
}
.home-page .servizi .servizi-item {
  position: absolute;
  width: 100px;
  height: 100px;
}
.home-page .servizi .servizi-item .default-image {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.home-page .servizi .servizi-item .hover-image {
  width: 200%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 10;
}
.home-page .servizi .servizi-item:hover .default-image {
  display: none;
}
.home-page .servizi .servizi-item:hover .hover-image {
  display: block;
}
.home-page .servizi .servizi-item:nth-child(1) {
  top: 50px;
  left: 50px;
}
.home-page .servizi .servizi-item:nth-child(1) .default-image {
  width: 150px;
  height: 150px;
}
.home-page .servizi .servizi-item:nth-child(1) .hover-image {
  height: auto;
  top: 0px;
  left: 0px;
  width: 595px;
}
.home-page .servizi .servizi-item:nth-child(2) {
  top: 149px;
  left: 70px;
  width: 275px;
  height: 270px;
}
.home-page .servizi .servizi-item:nth-child(2) .default-image {
  width: 150%;
  height: 150%;
}
.home-page .servizi .servizi-item:nth-child(2) .hover-image {
  height: 305px;
  top: 50px;
  left: -90px;
  width: 440px;
}
.home-page .servizi .servizi-item:nth-child(3) {
  top: 283px;
  left: 313px;
}
.home-page .servizi .servizi-item:nth-child(3) .default-image {
  width: 375%;
  height: 375%;
}
.home-page .servizi .servizi-item:nth-child(3) .hover-image {
  height: 400px;
  top: -12px;
  left: 41.5px;
  width: 455px;
}
.home-page .servizi .servizi-item:nth-child(4) {
  top: -88px;
  left: 645px;
}
.home-page .servizi .servizi-item:nth-child(4) .default-image {
  width: 425px;
  height: 425px;
}
.home-page .servizi .servizi-item:nth-child(4) .hover-image {
  height: 425px;
  top: -70px;
  left: 0px;
  width: 425px;
}
.home-page .servizi .servizi-item:nth-child(5) {
  top: 195px;
  left: 1067px;
  height: 150px;
  width: 150px;
}
.home-page .servizi .servizi-item:nth-child(5) .hover-image {
  height: 150px;
  width: 150px;
}
.home-page .servizi .servizi-item:nth-child(6) {
  top: 282px;
  left: 805px;
}
.home-page .servizi .servizi-item:nth-child(6) .default-image {
  width: 265px;
  height: 267px;
}
.home-page .servizi .servizi-item:nth-child(6) .hover-image {
  height: 421px;
  top: -5px;
  left: -157px;
  width: 421px;
}
.home-page .servizi .servizi-item:nth-child(7) {
  top: 487px;
  left: 1067px;
  height: 150px;
  width: 150px;
}
.home-page .servizi .servizi-item:nth-child(7) .hover-image {
  height: 150px;
  width: 150px;
}
.home-page .servizi .servizi-btn-container {
  position: relative;
  text-align: center;
}
.home-page .servizi .servizi-btn {
  width: 100%;
  margin: 20px auto 0;
  padding: 15px 20px;
  font-family: var(--font-header);
  font-size: var(--font-size-body);
  background-color: var(--white);
  color: var(--viola);
  border: 2px solid var(--viola);
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 30;
}
.home-page .servizi .servizi-btn:hover {
  background-color: var(--viola);
  color: var(--white);
}
@media (max-width: 768px) {
  .home-page .servizi .servizi-btn {
    max-width: 240px;
    font-size: 0.95rem;
    padding: 12px 16px;
  }
}
@media (max-width: 565px) {
  .home-page .servizi .servizi-btn {
    max-width: 400px;
    font-size: 2.5rem;
    padding: 10px 12px;
  }
}
.home-page .trusted-by-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 20px;
  border: 2px solid var(--viola);
  background-color: var(--white);
  box-sizing: border-box;
}
.home-page .trusted-by-logos .trusted-by-logo {
  flex: 0 1 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.home-page .trusted-by-logos .trusted-by-logo img {
  width: 100%;
  height: auto;
  max-height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}
.home-page .highlight-viola {
  display: inline-block;
  border: 2px solid var(--viola);
  background-color: var(--white);
  color: var(--viola);
  padding: 2px 6px;
  font-family: var(--font-header);
}
@media (max-width: 1024px) {
  .home-page .hero-title {
    font-size: 2rem;
  }
  .home-page .hero-subtitle {
    font-size: 1.2rem;
  }
  .home-page .trusted-by-logos {
    gap: 20px;
  }
  .home-page .trusted-by-logo {
    flex: 0 1 160px;
  }
  .home-page .trusted-by-logo img {
    max-height: 100px;
  }
  .home-page .servizi-wrapper {
    transform: scale(0.9);
  }
}
@media (max-width: 768px) {
  .home-page .hero {
    padding-top: 100px;
  }
  .home-page .hero-title {
    font-size: 1.8rem;
    text-align: center;
  }
  .home-page .hero-subtitle {
    font-size: 1rem;
    text-align: center;
  }
  .home-page .trusted-by-logos {
    flex-direction: column;
    align-items: center;
  }
  .home-page .trusted-by-logo {
    flex: 0 1 130px;
  }
  .home-page .trusted-by-logo img {
    max-height: 90px;
  }
  .home-page .servizi-wrapper {
    transform: scale(0.75);
  }
}
@media (max-width: 480px) {
  .home-page .hero-title {
    font-size: 1.5rem;
  }
  .home-page .hero-subtitle {
    font-size: 0.9rem;
  }
  .home-page .trusted-by-logo img {
    max-width: 200px;
  }
  .home-page .servizi-wrapper {
    transform: scale(0.6);
  }
}
@media (max-width: 360px) {
  .home-page .hero-title {
    font-size: 1.2rem;
  }
  .home-page .hero-subtitle {
    font-size: 0.8rem;
  }
  .home-page .trusted-by-logo {
    flex: 0 1 100px;
  }
  .home-page .trusted-by-logo img {
    max-height: 70px;
  }
  .home-page .servizi-wrapper {
    transform: scale(0.5);
  }
}

.servizi-page {
  padding: 20px;
  background-color: var(--grigio);
  /* ✅ Section Title */
  /* ✅ Market Cards */
  /* ✅ Help Box */
  /* ✅ Service Cards */
  /* ✅ Responsive Design */
  /* Tablets (1024px - 768px) */
  /* Mobile (768px - 480px) */
  /* Small Screens (Below 480px) */
}
.servizi-page .section-title {
  font-family: var(--font-header);
  font-size: 24px;
  color: var(--black);
  text-align: left;
  margin-bottom: 20px;
  margin-top: 10px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.servizi-page .market-card {
  border: 2px solid var(--viola);
  padding: 20px;
  display: flex;
  flex-direction: column;
  width: 90%;
  max-width: 1000px;
  margin: 20px auto;
  position: relative;
}
.servizi-page .market-card .market-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap; /* ✅ Ensures responsiveness */
}
.servizi-page .market-card .market-content .market-text {
  flex: 1;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--black);
  margin-right: 20px;
}
.servizi-page .market-card .market-content .market-image {
  max-width: 40%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.servizi-page .market-card .market-button {
  background-color: var(--white);
  color: var(--viola);
  border: 2px solid var(--viola);
  font-family: var(--font-header);
  font-size: 26px;
  padding: 10px 15px;
  cursor: pointer;
  margin-top: 20px;
}
.servizi-page .market-card .market-button:hover {
  background-color: var(--viola);
  color: var(--white);
}
.servizi-page .help-box {
  border: 2px solid var(--viola);
  padding: 15px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1000px;
  overflow: hidden;
  background-color: var(--grigio);
  transition: max-height 0.4s ease-in-out, background-color 0.3s ease-in-out;
}
.servizi-page .help-box.open {
  background-color: var(--white);
  max-height: none;
}
.servizi-page .help-box:not(.open) {
  max-height: 80px;
}
.servizi-page .help-box .help-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.servizi-page .help-box .help-header .help-title {
  font-family: var(--font-header);
  font-size: 34px;
  color: var(--black);
}
.servizi-page .help-box .help-header .toggle-help {
  background: none;
  border: none;
  font-size: 26px;
  font-weight: bold;
  cursor: pointer;
  color: var(--viola);
  padding: 5px;
}
.servizi-page .help-box .help-header .toggle-help:hover {
  color: rgba(124, 55, 255, 0.9);
}
.servizi-page .help-box .help-content {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  margin-top: 10px;
}
.servizi-page .help-box .help-content .help-button {
  background-color: var(--viola);
  color: var(--white);
  border: none;
  font-family: var(--font-header);
  font-size: 24px;
  padding: 0px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 10px;
  height: auto;
  cursor: pointer;
}
.servizi-page .help-box .help-content .help-button:hover {
  background-color: rgba(124, 55, 255, 0.9);
  color: var(--white);
}
.servizi-page .help-box .help-content .help-button .arrow {
  font-size: 34px;
  margin-left: 5px;
}
.servizi-page .service-card {
  border: 2px solid var(--viola);
  display: flex;
  flex-direction: column;
  width: 90%;
  max-width: 1000px;
  margin: 20px auto;
}
.servizi-page .service-card .service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--viola);
  padding: 10px;
  color: var(--white);
}
.servizi-page .service-card .service-header .service-name {
  font-family: var(--font-header);
  font-size: 18px;
}
.servizi-page .service-card .service-header .arrow {
  font-size: 34px;
}
.servizi-page .service-card .service-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  flex-wrap: wrap; /* ✅ Ensures text & image stack correctly on small screens */
}
.servizi-page .service-card .service-content .service-text-content {
  flex: 1;
  margin-right: 20px;
}
.servizi-page .service-card .service-content .service-text-content .service-subtitle {
  font-family: var(--font-header);
  font-size: 16px;
  color: var(--viola);
  margin-bottom: 10px;
}
.servizi-page .service-card .service-content .service-text-content .service-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  margin-bottom: 20px;
  text-align: left;
}
.servizi-page .service-card .service-content .service-image {
  max-width: 40%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.servizi-page .service-card .service-button {
  background-color: var(--white);
  color: var(--viola);
  border: 2px solid var(--viola);
  font-family: var(--font-header);
  padding: 10px 20px;
  cursor: pointer;
  margin: 20px auto 30px auto;
}
.servizi-page .service-card .service-button:hover {
  background-color: var(--viola);
  color: var(--white);
}
@media (max-width: 1024px) {
  .servizi-page .section-title {
    font-size: 22px;
    text-align: center;
  }
  .servizi-page .market-card .market-content {
    flex-direction: column;
    align-items: center;
  }
  .servizi-page .market-card .market-image {
    max-width: 80%;
    margin-top: 15px;
  }
  .servizi-page .service-card .service-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .servizi-page .service-card .service-text-content {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .servizi-page .service-card .service-image {
    max-width: 80%;
  }
}
@media (max-width: 768px) {
  .servizi-page .section-title {
    font-size: 20px;
    text-align: center;
  }
  .servizi-page .market-card {
    width: 100%;
    padding: 15px;
  }
  .servizi-page .market-card .market-image {
    max-width: 100%;
    margin-top: 15px;
  }
  .servizi-page .service-card {
    width: 100%;
    padding: 15px;
  }
  .servizi-page .service-card .service-header {
    font-size: 16px;
    padding: 8px;
  }
  .servizi-page .service-card .service-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .servizi-page .service-card .service-text-content {
    margin-right: 0;
  }
  .servizi-page .service-card .service-image {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .servizi-page .section-title {
    font-size: 18px;
    text-align: center;
  }
  .servizi-page .market-card {
    width: 100%;
    padding: 10px;
  }
  .servizi-page .market-card .market-image {
    max-width: 100%;
  }
  .servizi-page .service-card {
    width: 100%;
    padding: 10px;
  }
  .servizi-page .service-card .service-header {
    font-size: 14px;
    padding: 6px;
  }
  .servizi-page .service-card .service-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .servizi-page .service-card .service-text-content {
    margin-right: 0;
  }
  .servizi-page .service-card .service-image {
    max-width: 100%;
  }
}

.processi-page {
  padding: 20px;
  background-color: var(--grigio);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
.processi-page .checkered-background {
  margin-top: 10px;
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.processi-page .checkered-background::before {
  content: "";
  position: absolute;
  width: 1081px;
  height: 2761px;
  background-image: linear-gradient(to right, black 1px, transparent 1px), linear-gradient(to bottom, black 1px, transparent 1px);
  background-size: 120px 120px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.processi-page .content-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding-bottom: 100px;
  top: 50px;
}
.processi-page .process-card {
  background-color: var(--white);
  border: 2px solid var(--viola);
  padding: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 20px auto;
  width: 100%;
  max-width: 300px;
  padding-bottom: 60px;
  transition: all 0.3s ease-in-out;
}
.processi-page .process-card.open {
  max-height: none;
  overflow: visible;
}
.processi-page .process-card:not(.open) {
  max-height: 120px;
  overflow: hidden;
}
.processi-page .process-card.three-services.open {
  max-height: none;
  overflow: visible;
}
.processi-page .process-card.three-services:not(.open) {
  max-height: 120px;
  overflow: hidden;
}
.processi-page .process-card.left-card {
  align-self: flex-start;
  margin-left: 15%;
}
.processi-page .process-card.right-card {
  align-self: flex-end;
  margin-right: 15%;
}
.processi-page .process-card .process-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.processi-page .process-card .process-header .process-title {
  font-family: var(--font-header);
  font-size: 18px;
  color: var(--black);
}
.processi-page .process-card .process-header .toggle-card {
  background: none;
  border: none;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  color: var(--viola);
  transition: color 0.2s ease-in-out;
}
.processi-page .process-card .process-header .toggle-card:hover {
  color: rgba(124, 55, 255, 0.9);
}
.processi-page .process-card .process-content {
  max-height: 1000px;
  opacity: 1;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  overflow: hidden;
}
.processi-page .process-card .process-content.hidden {
  max-height: 0;
  opacity: 0;
}
.processi-page .process-card .process-content .service {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
}
.processi-page .process-card .process-content .service .service-title {
  font-family: var(--font-header);
  font-size: 16px;
  color: var(--black);
  margin-bottom: 10px;
}
.processi-page .process-card .process-content .service .service-image {
  max-width: 100%;
  height: auto;
  border: 1px solid var(--viola);
  padding: 5px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.processi-page .process-card .servizi-button {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: var(--viola);
  color: var(--white);
  border: none;
  font-family: var(--font-header);
  padding: 10px 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.processi-page .process-card .servizi-button:hover {
  background-color: rgba(124, 55, 255, 0.9);
  color: var(--white);
}
.processi-page .process-card .servizi-button .arrow {
  margin-left: 10px;
  font-size: 30px;
}
.processi-page .arrow-wrapper {
  position: absolute;
}
.processi-page .arrow-line {
  position: absolute;
  background-color: var(--viola);
}
.processi-page .arrow-horizontal {
  height: 2px;
}
.processi-page .arrow-vertical {
  width: 2px;
  position: absolute;
}
.processi-page .arrow-head {
  width: 0;
  height: 0;
  position: absolute;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 10px solid var(--viola);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1024px) {
  .processi-page .process-card {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .processi-page .left-card,
  .processi-page .right-card {
    align-self: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .processi-page .arrow-wrapper {
    display: none;
  }
}
@media (max-width: 768px) {
  .processi-page .process-card {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .processi-page .left-card,
  .processi-page .right-card {
    align-self: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .processi-page .process-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
  }
  .processi-page .toggle-card {
    font-size: 24px;
  }
  .processi-page .process-title {
    font-size: 16px;
  }
  .processi-page .servizi-button {
    font-size: 14px;
    height: 40px;
    padding: 8px;
  }
}
@media (max-width: 480px) {
  .processi-page .process-card {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .processi-page .process-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
  }
  .processi-page .process-content,
  .processi-page .process-card.open {
    max-height: none !important;
    overflow: visible !important;
  }
  .processi-page .service-image {
    max-width: 100%;
    height: auto;
  }
  .processi-page .toggle-card {
    font-size: 20px;
  }
  .processi-page .process-title {
    font-size: 14px;
  }
  .processi-page .servizi-button {
    font-size: 12px;
    height: 35px;
    padding: 6px;
  }
}

.about-page {
  padding: 50px 20px;
  background-color: var(--grigio);
}
.about-page .video-section .video-wrapper {
  border: 2px solid var(--viola);
  padding: 10px;
}
.about-page .video-section .video-wrapper video {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.about-page .mission-section,
.about-page .tailor-section {
  margin: 50px 0;
}
.about-page .mission-section .section-title,
.about-page .tailor-section .section-title {
  font-family: var(--font-header);
  font-size: 2.5rem;
  color: var(--black);
  margin-bottom: 20px;
}
.about-page .mission-section .mission-content,
.about-page .mission-section .tailor-content,
.about-page .tailor-section .mission-content,
.about-page .tailor-section .tailor-content {
  border: 2px solid var(--black);
  padding: 20px;
  border-radius: 8px;
}
.about-page .mission-section .mission-content .mission-subtitle,
.about-page .mission-section .mission-content .tailor-subtitle,
.about-page .mission-section .tailor-content .mission-subtitle,
.about-page .mission-section .tailor-content .tailor-subtitle,
.about-page .tailor-section .mission-content .mission-subtitle,
.about-page .tailor-section .mission-content .tailor-subtitle,
.about-page .tailor-section .tailor-content .mission-subtitle,
.about-page .tailor-section .tailor-content .tailor-subtitle {
  font-family: var(--font-home-body);
  font-size: 1.4rem;
  color: var(--viola);
  margin-bottom: 10px;
  margin-top: 20px;
}
.about-page .mission-section .mission-content p,
.about-page .mission-section .tailor-content p,
.about-page .tailor-section .mission-content p,
.about-page .tailor-section .tailor-content p {
  font-family: var(--font-home-body);
  font-size: 1.1rem;
  color: var(--black);
  margin-bottom: 20px;
}
.about-page .mission-section .mission-content img,
.about-page .mission-section .tailor-content img,
.about-page .tailor-section .mission-content img,
.about-page .tailor-section .tailor-content img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 0 auto;
}
.about-page .team-section .section-title {
  font-family: var(--font-header);
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--black);
}
.about-page .team-section .team-group-title {
  font-family: var(--font-header);
  font-size: 1.8rem;
  color: var(--black);
  text-align: left;
  margin-bottom: 10px;
}
.about-page .team-section .team-group-image {
  text-align: center;
}
.about-page .team-section .team-group-image img {
  max-width: 80%;
  border: 2px solid var(--grigio);
  border-radius: 8px;
}
.about-page .team-section .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.about-page .team-section .team-grid .team-member {
  text-align: center;
  border: 2px solid var(--grigio);
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.3s;
}
.about-page .team-section .team-grid .team-member:hover {
  transform: translateY(-5px);
}
.about-page .team-section .team-grid .team-member img {
  max-width: 150px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 15px;
}
.about-page .team-section .team-grid .team-member .member-name {
  font-family: var(--font-header);
  font-size: 1.2rem;
  color: var(--viola);
  margin-bottom: 5px;
}
.about-page .team-section .team-grid .team-member .member-role,
.about-page .team-section .team-grid .team-member .member-secondary-role {
  font-family: var(--font-home-body);
  font-size: 1rem;
  color: var(--black);
  margin: 0;
}
@media (max-width: 1024px) {
  .about-page .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .about-page .team-group-image img {
    max-width: 90%;
  }
  .about-page .section-title {
    font-size: 2rem;
  }
  .about-page .mission-content,
  .about-page .tailor-content {
    padding: 15px;
  }
  .about-page .mission-content p,
  .about-page .tailor-content p {
    font-size: 1rem;
  }
  .about-page .mission-content .mission-subtitle,
  .about-page .mission-content .tailor-subtitle,
  .about-page .tailor-content .mission-subtitle,
  .about-page .tailor-content .tailor-subtitle {
    font-size: 1.2rem;
  }
  .about-page .team-group-title {
    font-size: 1.6rem;
  }
  .about-page .team-member .member-name {
    font-size: 1rem;
  }
  .about-page .team-member .member-role,
  .about-page .team-member .member-secondary-role {
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  .about-page {
    padding: 30px 15px;
  }
  .about-page .section-title {
    font-size: 1.8rem;
    text-align: center;
  }
  .about-page .mission-content,
  .about-page .tailor-content {
    padding: 12px;
    text-align: center;
  }
  .about-page .mission-content .mission-subtitle,
  .about-page .mission-content .tailor-subtitle,
  .about-page .tailor-content .mission-subtitle,
  .about-page .tailor-content .tailor-subtitle {
    font-size: 1.1rem;
  }
  .about-page .mission-content p,
  .about-page .tailor-content p {
    font-size: 0.95rem;
  }
  .about-page .team-group-title {
    text-align: center;
    font-size: 1.5rem;
  }
  .about-page .team-grid {
    grid-template-columns: 1fr;
  }
  .about-page .team-member img {
    max-width: 120px;
  }
  .about-page .team-member .member-name {
    font-size: 1rem;
  }
  .about-page .team-member .member-role,
  .about-page .team-member .member-secondary-role {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .about-page {
    padding: 20px 10px;
  }
  .about-page .section-title {
    font-size: 1.5rem;
  }
  .about-page .team-grid {
    gap: 20px;
  }
  .about-page .team-member {
    padding: 15px;
  }
  .about-page .team-member .member-name {
    font-size: 0.9rem;
  }
  .about-page .team-member .member-role,
  .about-page .team-member .member-secondary-role {
    font-size: 0.8rem;
  }
  .about-page .team-group-image img {
    max-width: 100%;
  }
}

.progetti-page {
  padding: 50px 20px;
  background-color: var(--grigio);
  /* Tablets */
  /* Mobile */
  /* Smallest Screens */
}
.progetti-page .filter-sort {
  border: 2px solid var(--viola);
  padding: 20px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  height: auto;
}
.progetti-page .filter-sort .filter-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.progetti-page .filter-sort .filter-wrapper .filter-option {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 200px;
}
.progetti-page .filter-sort .filter-wrapper .filter-option span {
  font-family: var(--font-header);
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.progetti-page .filter-sort .filter-wrapper .filter-option select {
  font-size: 1rem;
}
.progetti-page .projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .progetti-page .projects-grid {
    grid-template-columns: 1fr;
  }
}
.progetti-page .projects-grid .project-card {
  border: 2px solid var(--viola);
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
  transition: transform 0.3s ease;
}
.progetti-page .projects-grid .project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.progetti-page .projects-grid .project-card .project-company-link {
  font-family: var(--font-header);
  font-size: 1.3rem;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--viola);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px 8px 0 0;
}
.progetti-page .projects-grid .project-card .project-company-link .arrow-icon {
  font-size: 1.5rem;
}
.progetti-page .projects-grid .project-card .project-company-link .project-company {
  word-break: break-word;
}
.progetti-page .projects-grid .project-card img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}
.progetti-page .projects-grid .project-card .project-title {
  font-size: 1.2rem;
  font-family: var(--font-header);
  margin-bottom: 10px;
}
.progetti-page .projects-grid .project-card .project-description {
  font-size: 1rem;
  font-family: var(--font-home-body);
}
@media (max-width: 1024px) {
  .progetti-page .filter-wrapper {
    gap: 15px;
  }
  .progetti-page .filter-wrapper .filter-option span {
    font-size: 1.3rem;
  }
  .progetti-page .filter-wrapper .filter-option select {
    font-size: 0.95rem;
  }
  .progetti-page .project-card {
    padding: 16px;
  }
  .progetti-page .project-card .project-title {
    font-size: 1rem;
  }
  .progetti-page .project-card .project-description {
    font-size: 0.95rem;
  }
  .progetti-page .project-card .project-company-link {
    font-size: 1.1rem;
  }
  .progetti-page .project-card .project-company-link .arrow-icon {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .progetti-page {
    padding: 30px 15px;
  }
  .progetti-page .filter-sort {
    padding: 15px;
  }
  .progetti-page .filter-option span {
    font-size: 1.1rem;
  }
  .progetti-page .project-card {
    padding: 14px;
  }
  .progetti-page .project-card .project-title {
    font-size: 0.95rem;
  }
  .progetti-page .project-card .project-description {
    font-size: 0.9rem;
  }
  .progetti-page .project-card .project-company-link {
    font-size: 1rem;
  }
  .progetti-page .project-card .project-company-link .arrow-icon {
    font-size: 1.1rem;
  }
}
@media (max-width: 480px) {
  .progetti-page {
    padding: 20px 10px;
  }
  .progetti-page .filter-option span {
    font-size: 1rem;
  }
  .progetti-page .project-card {
    padding: 10px;
  }
  .progetti-page .project-card .project-title {
    font-size: 0.9rem;
  }
  .progetti-page .project-card .project-description {
    font-size: 0.85rem;
  }
  .progetti-page .project-card .project-company-link {
    font-size: 0.95rem;
  }
  .progetti-page .project-card .project-company-link .arrow-icon {
    font-size: 1rem;
  }
}

.single-project-page {
  padding: 50px 20px;
  background-color: var(--grigio);
}
.single-project-page .project-name {
  text-align: center;
  font-family: var(--font-header);
  font-size: var(--font-size-header);
}
.single-project-page .video-showreel {
  margin: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.single-project-page .video-showreel .video-wrapper {
  border: 2px solid var(--viola);
  padding: 10px;
  border-radius: 8px;
  width: 100%;
  max-width: 800px;
}
.single-project-page .video-showreel .video-wrapper iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 8px;
}
.single-project-page .text-content .content-box {
  display: flex;
  gap: 20px;
  border: 2px solid var(--viola);
  padding: 20px;
}
.single-project-page .text-content .content-box .text {
  flex: 2;
  font-family: var(--font-home-body);
}
.single-project-page .text-content .content-box .image {
  flex: 1;
}
.single-project-page .text-content .content-box .image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.single-project-page .sliding-images {
  margin: 30px 0;
}
.single-project-page .sliding-images .image-slider {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.single-project-page .sliding-images .image-slider::-webkit-scrollbar {
  display: none;
}
.single-project-page .sliding-images .image-slider .slide {
  flex: none;
  width: 200px;
}
.single-project-page .sliding-images .image-slider .slide img {
  width: 100%;
  height: auto;
  border: 2px solid var(--viola);
  border-radius: 8px;
}
.single-project-page .slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--viola);
  color: var(--white);
  border: none;
  padding: 10px 15px;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.single-project-page .slider-button:hover {
  background-color: rgba(124, 55, 255, 0.9);
}
.single-project-page .slider-button.left {
  left: 10px;
}
.single-project-page .slider-button.right {
  right: 10px;
}
.single-project-page .service-button {
  text-align: center;
}
.single-project-page .service-button .button {
  display: block;
  width: 100%;
  background-color: var(--white);
  color: var(--viola);
  border: 2px solid var(--viola);
  font-family: var(--font-header);
  font-size: var(--font-size-body);
  padding: 15px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-bottom: 30px;
}
.single-project-page .service-button .button:hover {
  background-color: var(--viola);
  color: var(--white);
}
.single-project-page .related-projects h2 {
  font-family: var(--font-header);
  text-align: center;
  margin-bottom: 30px;
}
.single-project-page .related-projects .projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.single-project-page .related-projects .projects-grid .project-card {
  border: 2px solid var(--viola);
  padding: 15px;
  border-radius: 8px;
}
.single-project-page .related-projects .projects-grid .project-card .project-company {
  font-family: var(--font-header);
  background-color: var(--viola);
  color: var(--white);
  padding: 10px;
  border-radius: 8px 8px 0 0;
}
.single-project-page .related-projects .projects-grid .project-card img {
  width: 100%;
  height: auto;
  border-radius: 0;
  margin-bottom: 10px;
}
.single-project-page .related-projects .projects-grid .project-card .project-title {
  font-family: var(--font-header);
  font-size: var(--font-size-title);
}
.single-project-page .related-projects .projects-grid .project-card .project-description {
  font-family: var(--font-home-body);
}
.single-project-page .related-projects .projects-grid .project-card a {
  text-decoration: none;
  color: inherit;
}
.single-project-page .related-projects .projects-grid .project-card a:hover {
  text-decoration: underline;
}
@media (max-width: 1000px) {
  .single-project-page .project-name {
    font-size: 2.5rem;
    text-align: center;
  }
  .single-project-page .text-content .content-box {
    flex-direction: column;
    align-items: stretch;
  }
  .single-project-page .text-content .content-box .image {
    order: -1;
    margin-bottom: 20px;
  }
  .single-project-page .text-content .content-box .image img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .single-project-page .text-content .content-box .text {
    font-size: 0.95rem;
    text-align: left;
  }
}
@media (max-width: 780px) {
  .single-project-page .project-name {
    font-size: 1.6rem;
    text-align: center;
  }
  .single-project-page .text-content .content-box {
    flex-direction: column;
    align-items: stretch;
  }
  .single-project-page .text-content .content-box .image {
    order: -1;
    margin-bottom: 20px;
  }
  .single-project-page .text-content .content-box .image img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .single-project-page .text-content .content-box .text {
    font-size: 0.95rem;
    text-align: left;
  }
}

.contattaci-page {
  padding: 50px 20px;
  background-color: var(--grigio);
}
.contattaci-page .page-title {
  font-family: var(--font-header);
  font-size: clamp(24px, 6vw, 120px);
  color: var(--viola);
  text-align: center;
  margin-bottom: 20px;
  word-break: break-word;
}
.contattaci-page .subtitle {
  font-family: var(--font-home-body);
  font-size: clamp(16px, 4vw, 20px);
  color: var(--black);
  text-align: center;
  margin-bottom: 30px;
  padding: 0 10px;
}
.contattaci-page .form-box {
  border: 2px solid var(--viola);
  padding: 40px;
  border-radius: 12px;
  background-color: var(--white);
  max-width: 800px;
  margin: 0 auto;
}
.contattaci-page .form-box #contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contattaci-page .form-box #contact-form label {
  font-family: var(--font-header);
  font-size: clamp(16px, 4vw, 20px);
  color: var(--viola);
  margin-bottom: 5px;
}
.contattaci-page .form-box #contact-form input,
.contattaci-page .form-box #contact-form textarea {
  border: 2px solid var(--viola);
  border-radius: 6px;
  padding: 12px;
  font-family: var(--font-home-body);
  font-size: clamp(14px, 4vw, 18px);
  color: var(--black);
  width: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contattaci-page .form-box #contact-form input:focus,
.contattaci-page .form-box #contact-form textarea:focus {
  outline: none;
  border-color: rgb(124, 55, 255);
  box-shadow: 0 0 5px rgba(124, 55, 255, 0.5);
}
.contattaci-page .form-box #contact-form input::-moz-placeholder, .contattaci-page .form-box #contact-form textarea::-moz-placeholder {
  font-size: clamp(13px, 3.5vw, 17px);
  color: var(--black);
}
.contattaci-page .form-box #contact-form input::placeholder,
.contattaci-page .form-box #contact-form textarea::placeholder {
  font-size: clamp(13px, 3.5vw, 17px);
  color: var(--black);
}
.contattaci-page .form-box #contact-form textarea {
  resize: none;
  height: 150px;
}
.contattaci-page .form-box #contact-form .form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.contattaci-page .form-box #contact-form .form-check .form-check-input {
  margin-top: 3px;
  flex-shrink: 0;
}
.contattaci-page .form-box #contact-form .form-check .form-check-label {
  font-size: clamp(13px, 3.5vw, 18px);
  font-family: var(--font-home-body);
  color: var(--black);
  line-height: 1.4;
}
.contattaci-page .form-box #contact-form .submit-button {
  background-color: var(--viola);
  color: var(--white);
  border: none;
  padding: 15px 30px;
  font-family: var(--font-header);
  font-size: clamp(16px, 4vw, 20px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  width: 100%;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.contattaci-page .form-box #contact-form .submit-button:hover {
  background-color: rgba(124, 55, 255, 0.9);
  transform: scale(1.02);
}
.contattaci-page .form-box #contact-form .submit-button .arrow-icon {
  font-size: 20px;
}
.contattaci-page .form-box #contact-form .success-message {
  margin-top: 20px;
  padding: 10px;
  border: 2px solid var(--viola);
  background-color: var(--white);
  color: var(--viola);
  font-family: var(--font-header);
  text-align: center;
  border-radius: 6px;
  display: none;
}
@media (max-width: 768px) {
  .contattaci-page {
    padding: 40px 15px;
  }
  .contattaci-page .form-box {
    padding: 25px;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .contattaci-page {
    padding: 30px 10px;
  }
  .contattaci-page .form-box {
    padding: 20px;
  }
  .contattaci-page .submit-button {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  .contattaci-page .submit-button .arrow-icon {
    font-size: 18px;
  }
  .contattaci-page .form-check {
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px;
  }
}
/*# sourceMappingURL=style.css.map */
