:root {
  --bg: white;
  --fg: #000;
  --muted: #a8a8a8;
  --red: #e30613;
	--purple: #3d1f99;
	--darkpurple: #2a1371;
  --max: 1280px;
  --max: 1280px;
  --theme-primary-500: #d80118 /**#0057b8**/ ;
  --cf-text: #111;
  --cf-muted: #666;
  --cf-border: rgba(0, 0, 0, .16);
  --cf-border-focus: #3d1f99;
  --cf-error: #b00020;
  --cf-success: #0a7a2f;
  --cf-radius: 999px;
  --cf-pad-x: 26px;
  --cf-pad-top: 26px; /* space for label */
  --cf-pad-bottom: 14px;
  --cf-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}
* {
  box-sizing: border-box;
  font-size: 16px;
  line-height: 28px;
}
html {
  /* Always reserve scrollbar space (Firefox + modern Chromium) */
  scrollbar-gutter: stable;
  overflow-y: scroll;
}
body {
  margin: 0;
  font-family: "futura-book", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  height: 100%;
  line-height: 1em;
  -webkit-font-smoothing: antialiased;
  background-color: #ffd800;
  color: var(--fg)
}

/* ### FONTS ### */

.lacquer {
  font-family: "Lacquer", "futura-book", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.indie-flower {
  font-family: "Indie Flower", "futura-book", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* ### NAV ### */

header {
  border-bottom: 1px solid #ccc;
  display: flex;
  height: 76px;
  justify-content: center;
  padding: 0 24px;
  position: fixed;
  width: 100%;
  z-index: 100;
	-webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.8)
}
.nav-container {
  align-items: center;
  display: flex;
  height: 76px;
  margin: auto;
  width: 100%;
}
.nav-wrapper {
  align-items: center;
  display: flex;
  height: 100%;
  width: 100%;
}
.nav-wrapper > div {
  align-items: center;
  height: 100%;
}
.nav-logo-container {
  display: flex;
  flex-grow: 1;
  justify-content: flex-start;
	width: 160px;
}
.nav-links-container {
  display: flex;
  flex-grow: 2;
  justify-content: center;
}
.nav-contact-container {
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
  gap: 24px;
	width: 160px;
}
nav {
  align-items: center;
  display: flex;
  gap: 24px;
  height: 100%;
  justify-content: center;
  margin: auto;
  width: 100%;
}
a.links {
  align-items: center;
  display: flex;
  font-size: 20px;
  height: 100%;
  padding: 0 4px;
  position: relative;
  text-decoration: none;
}
a.links:hover {
  color: #3d1f99;
  text-decoration: none;
}
a.links.active:hover {
  color: black;
}
a.logo {
  flex-grow: 1;
}
a.links.active {
  position: relative;
}
a.links.active:after {
  background-color: #3d1f99;
  border-radius: 4px 4px 0 0;
  bottom: 0;
  content: '';
  display: flex;
  height: 4px;
  left: 0;
  width: 100%;
  position: absolute;
}
h1 {
  color: #3d1f99;
  font-size: 56px;
  line-height: 56px;
  max-width: 800px;
  margin: 0 auto 24px;
  text-align: center;
}
h1 span {
  color: black;
  display: block;
  font-size: 48px;
  line-height: 48px;
  max-width: 800px;
  margin: auto;
  text-align: center;
}
h1 > span:first-child {
  margin-top: 8px;
}
p.intro {
  margin: o auto 24px;
  max-width: 800px;
  text-align: center;
}
a {
  color: var(--fg)
}
p {
  font-size: 16px;
  line-height: 22px;
}
main {
  display: flex;
  flex-direction: column;
  margin: auto;
  max-width: var(--max);
  padding: 144px 24px 24px 24px;
  width: 100%;
}
section {
  margin: auto;
  max-width: var(--max);
  padding: 20px;
}
section.faq {
  background: url("../img/sliders/faq-background.png") repeat-y;
  border-radius: 0;
  margin: 0 auto 96px;
  max-width: 1240px;
  padding: 0;
}
.faq h2 {
  color: #3d1f99;
  font-size: 54px;
  rotate: -5deg;
}
.panel-group .panel-heading {
  border-bottom: 1px solid #a8c3c6;
}
.panel-collapse {
  position: relative;
}
.panel-heading a {
  display: inline-block;
  width: 100%;
  padding-right: 24px;
  position: relative;
}
.panel-heading a::after {
  content: '+';
  display: flex;
  align-items: center;
  flex-direction: center;
  justify-content: center;
  position: absolute;
  right: 0;
  text-align: center;
  top: 2px;
  width: 24px;
  height: 24px;
  rotate: 135deg;
  transition: all 0.4s;
}
.panel-heading a.collapsed::after {
  content: '+';
  rotate: 0deg;
  transition: all 0.2s;
}
.panel {
  background: transparent;
}
.panel-body p {
  color: #666;
  font-size: 16px;
}
.panel-body li {
  color: #666;
  font-size: 16px;
}
.footer {
  max-width: var(--max);
  margin: auto;
  padding: 16px 20px;
  text-align: center;
}
.footer-nav {
  margin: 24px auto 48px;
}
.footer-nav ul {
  display: flex;
  justify-content: center;
  list-style-type: none;
  padding: 0;
}
.footer-nav ul li {
  padding: 0 12px;
}
.footer-nav ul li a {
  font-size: 16px;
}
.footer-copyright, .footer-copyright a {
  font-size: 12px;
}
.grid-services {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  margin-top: 96px;
  width: 100%;
}
.card {
	background-color: var(--purple);
	border-radius: 36px;
	display: flex;
	flex-direction: column;
	padding: 24px;
}
.card:first-of-type, .card:first-of-type .icon {
	color: #F60974;
}
.card:nth-of-type(2), .card:nth-of-type(2) .icon {
	color: #fffc00;
}
.card:nth-of-type(3), .card:nth-of-type(3) .icon {
	color: #049EDB;
}
.card:nth-of-type(4), .card:nth-of-type(4) .icon {
	color: #0cfc17;
}
.card:nth-of-type(5), .card:nth-of-type(5) .icon {
	color: #ff8400;
}
.card:nth-of-type(6), .card:nth-of-type(6) .icon {
	color: #e400ff;
}
.card:nth-of-type(7), .card:nth-of-type(7) .icon {
	color: #00f0ff;
}
.card:nth-of-type(8), .card:nth-of-type(8) .icon {
	color: #0cff00;
}
.card:nth-of-type(9), .card:nth-of-type(9) .icon {
	color: #ff0000;
}
.card h2 {
  font-size: 36px;
  line-height: 36px;
}
.card h3 {
  font-size: 20px;
  line-height: 24px;
}
.card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
	flex-grow: 2;
  line-height: 22px;
}
.card picture {
  border-radius: 12px;
	display: block;
	margin-top: 40px;
  width: 100%;
}
.footer-link-image {
	display: blank;
	height: 64px;
	padding: 0 9px;
	width: 82px;
}
.footer-link-text {
	font-weight: 600;
	text-align: center;
	width: 82px;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 12px
}
/* Lock page scroll when modal is open */
body.no-scroll {
  overflow: hidden;
}
/* Backdrop + modal content (tweak as you like) */
.dlg {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  display: grid;
  place-items: center;
  z-index: 999;
}
#modal {
  padding: 24px;
}
#modal-close {
  display: none;
}
/* Safari/Firefox-safe trick using an attribute on <body> */
body[data-view="modal"] #modal-close {
  display: flex;
}
#modal #modal-close {
  display: flex;
  align-items: center;
  position: absolute;
  top: 20px;
  right: 32px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: #3d1f99;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 3; /* above content */
}
#modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
}
#modal-content::-webkit-scrollbar { /* Chrome/Safari */
  display: none;
}
.dlg[hidden] {
  display: none
}
.dlg {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .9);
  z-index: 999
}
#modal-content {
  color: white;
  position: relative;
  background-color: #3d1f99;
  backdrop-filter: blur(16px);
  border-radius: 24px 12px 12px 24px;
  box-shadow:
    0 0 200px rgba(0, 0, 0, 1), 0 0 100px rgba(0, 0, 0, 1), 0 0 48px rgba(0, 0, 0, 1);
  max-width: 1100px;
  height: 80vh;
  overflow: clip; /* important: shell does not scroll */
  padding: 12px 24px 12px 12px;
}
#modal-content::-webkit-scrollbar {
  display: none;
}
#modal-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}
#modal-content nav.breadcrumbs a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}
#modal-content a {
  color: white;
}
#modal .container {
  padding: 0;
  width: 100% !important;
}
#modal .breadcrumbs {
  /**display: none;**/
}
.breadcrumbs-container {
  padding: 0 0 12px 0;
  width: 100%;
}
nav.breadcrumbs {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  font-size: 14px;
  height: 48px;
  justify-content: flex-start;
  max-width: 1140px;
  padding-left: 24px;
  gap: 8px;
}
nav.breadcrumbs a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}
nav.breadcrumbs span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}
nav.breadcrumbs a:hover, .breadcrumbs a:focus {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
}
.showcase-title h1 {
  color: #000;
  text-align: right;
}
#modal-content .showcase-title h1 {
  color: #fff;
  text-align: right;
}
.color-primary-500 {
  background-color: var(--theme-primary-500);
}
/* 2) Floating track & thumb */
/* Overlay track/thumb that FLOAT over content */
/* Inner scroller: the only element that scrolls */
#modal-content .modal-scroller {
  height: 100%;
  overflow: auto;
  scrollbar-width: none;
}
#modal-content .modal-scroller::-webkit-scrollbar {
  display: none;
}
/* Overlay scrollbar sits in the SHELL so it doesn't move */
.osb-track {
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  right: 8px;
  top: 12px;
  bottom: 12px;
  width: 8px;
  border-radius: 4px;
  opacity: 0.5;
  transition: opacity .18s;
  pointer-events: auto;
  z-index: 4;
}
.osb-track.show {
  opacity: 1;
}
.osb-thumb {
  position: absolute;
  left: 0;
  width: 100%;
  min-height: 28px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.5);
  pointer-events: auto;
  cursor: grab;
}
.osb-thumb:hover {
  cursor: grabbing;
  background: rgba(255, 255, 255, 0.7);
}
.osb-thumb:active {
  cursor: grabbing;
  background: rgba(255, 255, 255, 0.9);
}
/* show on hover/focus/scroll */
.scrollbox:hover ~ .sb-track, .scrollbox:focus-within ~ .sb-track {
  opacity: 1;
}
/* Optional: respect reduced motion for fades */
@media (prefers-reduced-motion: reduce) {
  .sb-track {
    transition: none;
  }
}
.modal-scroller {
  border-radius: 8px;
}
.button {
  align-items: center;
  background-color: #3d1f99;
  border-radius: 22px;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 600;
  height: 44px;
  justify-content: center;
  line-height: 22px;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  outline-style: none;
  padding-bottom: 0px;
  padding-inline-end: 20px;
  padding-inline-start: 20px;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 0px;
  text-align: left;
  text-wrap-mode: nowrap;
  white-space-collapse: collapse;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.button:hover {
  color: white;
  background-color: #2a1371;
  font-size: 16px;
  text-decoration: none;
}
.button.huge {
  border-radius: 38px;
  font-size: 28px;
  height: 76px;
  line-height: 38px;
  padding: 0 40px;
}
h5.hover-animated {
  color: #fff;
}
p.hover-animated {
  color: rgba(255, 255, 255, 0.7);
}
/* Contact Form */
.cf {
  max-width: 480px;
  font-family: "futura-book", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--cf-text)
}
.cf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.cf-span-2 {
  grid-column: 1/-1
}
@media (max-width:720px) {
  .cf-grid {
    grid-template-columns: 1fr;
  }
  .cf-span-2 {
    grid-column: auto
  }
}
/* Hide honeypot visually but keep in DOM */
.cf-hp {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden
}
.cf-field {
  position: relative
}
.cf-field input, .cf-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 2px solid transparent;
  border-radius: var(--cf-radius);
  padding: var(--cf-pad-top) var(--cf-pad-x) var(--cf-pad-bottom);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
  background: #fff;
  color: var(--cf-text);
}
.cf-textarea textarea {
  border-radius: 22px;
  resize: vertical;
  min-height: 160px;
  padding-top: 30px;
}
/* CSS-only floating labels:
     label is a sibling after the input/textarea, and we use :focus + :not(:placeholder-shown) */
.cf-field label {
  position: absolute;
  left: var(--cf-pad-x);
  top: 20px;
  color: var(--cf-muted);
  pointer-events: none;
  transform-origin: left top;
  transition: transform .14s ease, top .14s ease, color .14s ease, opacity .14s ease;
  opacity: .95;
}
.cf-field input:focus, .cf-field textarea:focus {
  border-color: var(--cf-border-focus);
  box-shadow: 0 12px 40px rgba(61, 31, 153, 0.4);
}
.cf-field input:focus ~ label, .cf-field textarea:focus ~ label, .cf-field input:not(:placeholder-shown) ~ label, .cf-field textarea:not(:placeholder-shown) ~ label {
  top: 10px;
  transform: scale(.84);
  opacity: 1;
}
.cf-field input:focus ~ label, .cf-field textarea:focus ~ label {
  color: var(--cf-text);
}
.cf-hint {
  margin: 8px 8px 0;
  font-size: 12px;
  color: var(--cf-muted)
}
.cf-error {
  margin: 8px 8px 0;
  font-size: 12px;
  color: var(--cf-error);
  min-height: 16px
}
.cf-field.is-invalid input, .cf-field.is-invalid textarea {
  border-color: rgba(176, 0, 32, .6);
  box-shadow: 0 12px 40px rgba(176, 0, 32, .08);
}
.cf-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px
}
.cf-btn {
  border: 1px solid rgba(0, 0, 0, .14);
  border-radius: var(--cf-radius);
  padding: 12px 18px;
  background: var(--purple);
  color: #fff;
  cursor: pointer;
  transition: transform .05s ease, opacity .15s ease;
  width: 100%;
}
.cf-btn:hover {
	background-color: var(--darkpurple);
}
.cf-btn:active {
  transform: translateY(1px)
}
.cf-btn:disabled {
  opacity: .6;
  cursor: not-allowed
}
.cf-success {
  margin: 0;
  color: var(--cf-success);
  font-size: 14px;
  min-height: 18px
}