* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -o-font-smoothing: antialiased;
}

html {
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE en legacy Edge */
}

.wf-design-mode .loader {
  display: none;
}

/* Zorg dat FOUC-targets onzichtbaar starten */
[data-load-reset] {
  opacity: 0;
}

/* Aanbevolen: progressbar baseline staat links */
[data-load-progress] {
  transform-origin: left center;
  transform: scaleX(0);
}

/* Hide the back-to-top wrapper on default (to prevent flash on loaded site) */
[data-back-to-top="wrap"] {
  opacity: 0;
}

/* Show the button in the Webflow environment */
.wf-design-mode [data-back-to-top="wrap"],
.w-editor [data-back-to-top="wrap"] {
  opacity: 1;
}

.back-top__arrow-row {
  transition: transform 0.5s cubic-bezier(0.65, 0, 0, 1);
}

.back-top__button {
  transition: border-width 0.5s cubic-bezier(0.65, 0, 0, 1);
}

/* Keyboard focus state */
.back-top__button:focus-visible {
  border-width: 0.6em;
}

.back-top__button:focus-visible .back-top__arrow-row {
  transform: translate(0px, -100%);
}

/* Hover styling */
@media (hover: hover) {
  .back-top__button:hover {
    border-width: 0.6em;
  }

  .back-top__button:hover .back-top__arrow-row {
    transform: translate(0px, -100%);
  }
}

.btn-bubble-arrow__content {
  transition: transform 0.735s cubic-bezier(0.625, 0.05, 0, 1);
  transform: translateX(-3.75em) rotate(0.001deg);
}

.btn-bubble-arrow__arrow {
  transition: transform 0.735s cubic-bezier(0.625, 0.05, 0, 1);
  transform: scale(0) rotate(0.001deg);
  transform-origin: left;
}

.btn-bubble-arrow__arrow-svg {
  transition: transform 0.735s cubic-bezier(0.625, 0.05, 0, 1);
  transform: rotate(0.001deg);
}

.btn-bubble-arrow__arrow.is--duplicate {
  position: absolute;
  z-index: 2;
  right: 0;
  transform: scale(1) rotate(0.001deg);
  transform-origin: right;
}

/* Hover */

.btn-bubble-arrow:hover .btn-bubble-arrow__content {
  transform: translateX(0em) rotate(0.001deg);
}

.btn-bubble-arrow:hover .btn-bubble-arrow__arrow-svg {
  transform: rotate(-45deg);
}

.btn-bubble-arrow:hover .btn-bubble-arrow__arrow {
  transform: scale(1) rotate(0.001deg);
}

.btn-bubble-arrow:hover .btn-bubble-arrow__arrow.is--duplicate {
  transform: scale(0) rotate(0.001deg);
}

/* Ensure all elements inherit the color from its parent */
a,
.w-input,
.w-select,
.w-tab-link,
.w-nav-link,
.w-nav-brand,
.w-dropdown-btn,
.w-dropdown-toggle,
.w-slider-arrow-left,
.w-slider-arrow-right,
.w-dropdown-link {
  color: inherit;
  text-decoration: inherit;
  font-size: inherit;
}

/* Focus state style for keyboard navigation for the focusable elements */
*[tabindex]:focus-visible,
input[type="file"]:focus-visible {
  outline: 0.125rem solid #4d65ff;
  outline-offset: 0.125rem;
}

/* Get rid of top margin on first element in any rich text element */
.w-richtext > :not(div):first-child,
.w-richtext > div:first-child > :first-child {
  margin-top: 0 !important;
}

/* Get rid of bottom margin on last element in any rich text element */
.w-richtext > :last-child,
.w-richtext ol li:last-child,
.w-richtext ul li:last-child {
  margin-bottom: 0 !important;
}

/* Prevent all click and hover interaction with an element */
.pointer-events-off {
  pointer-events: none;
}

/* Enables all click and hover interaction with an element */
.pointer-events-on {
  pointer-events: auto;
}

/* Create a class of .div-square which maintains a 1:1 dimension of a div */
.div-square::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

/* Make sure containers never lose their center alignment */
.container-medium,
.container-small,
.container-large {
  margin-right: auto !important;
  margin-left: auto !important;
}

/* Apply "..." after 3 lines of text */
.text-style-3lines {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* Apply "..." after 2 lines of text */
.text-style-2lines {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Adds inline flex display */
.display-inlineflex {
  display: inline-flex;
}

/* These classes are never overwritten */
.hide {
  display: none !important;
}

/* Remove default Webflow chevron from form select */
select {
  -webkit-appearance: none;
  appearance: none;
}

@media screen and (max-width: 991px) {
  .hide,
  .hide-tablet {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .hide-mobile-landscape {
    display: none !important;
  }
}

@media screen and (max-width: 479px) {
  .hide-mobile {
    display: none !important;
  }
}

.margin-0 {
  margin: 0rem !important;
}

.padding-0 {
  padding: 0rem !important;
}

.spacing-clean {
  padding: 0rem !important;
  margin: 0rem !important;
}

.margin-top {
  margin-right: 0rem !important;
  margin-bottom: 0rem !important;
  margin-left: 0rem !important;
}

.padding-top {
  padding-right: 0rem !important;
  padding-bottom: 0rem !important;
  padding-left: 0rem !important;
}

.margin-right {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
  margin-left: 0rem !important;
}

.padding-right {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
  padding-left: 0rem !important;
}

.margin-bottom {
  margin-top: 0rem !important;
  margin-right: 0rem !important;
  margin-left: 0rem !important;
}

.padding-bottom {
  padding-top: 0rem !important;
  padding-right: 0rem !important;
  padding-left: 0rem !important;
}

.margin-left {
  margin-top: 0rem !important;
  margin-right: 0rem !important;
  margin-bottom: 0rem !important;
}

.padding-left {
  padding-top: 0rem !important;
  padding-right: 0rem !important;
  padding-bottom: 0rem !important;
}

.margin-horizontal {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}

.padding-horizontal {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
}

.margin-vertical {
  margin-right: 0rem !important;
  margin-left: 0rem !important;
}

.padding-vertical {
  padding-right: 0rem !important;
  padding-left: 0rem !important;
}

/* Apply "..." at 100% width */
.truncate-width {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Removes native scrollbar */
.no-scrollbar {
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

@import url("css");

@import url("css-1");

.color-scheme-2 {
  --color-scheme-1--text: var(--color-scheme-2--text);
  --color-scheme-1--background: var(--color-scheme-2--background);
  --color-scheme-1--foreground: var(--color-scheme-2--foreground);
  --color-scheme-1--border: var(--color-scheme-2--border);
  --color-scheme-1--accent: var(--color-scheme-2--accent);
}

.color-scheme-3 {
  --color-scheme-1--text: var(--color-scheme-3--text);
  --color-scheme-1--background: var(--color-scheme-3--background);
  --color-scheme-1--foreground: var(--color-scheme-3--foreground);
  --color-scheme-1--border: var(--color-scheme-3--border);
  --color-scheme-1--accent: var(--color-scheme-3--accent);
}

.w-slider-dot {
  background-color: var(--color-scheme-1--text);
  opacity: 0.2;
}

.w-slider-dot.w-active {
  background-color: var(--color-scheme-1--text);
  opacity: 1;
}

/* Override .w-slider-nav-invert styles */
.w-slider-nav-invert .w-slider-dot {
  background-color: var(--color-scheme-1--text) !important;
  opacity: 0.2 !important;
}

.w-slider-nav-invert .w-slider-dot.w-active {
  background-color: var(--color-scheme-1--text) !important;
  opacity: 1 !important;
}

/* index */

.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-family: "Archivo", sans-serif;
  cursor: pointer;
  z-index: 99999;
}

.scroll-indicator .arrow {
  width: 2px;
  height: 20px;
  background: #fff;
  margin: 0 auto;
  position: relative;
  animation: bounce 1.5s infinite;
}

.scroll-indicator .arrow::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.scroll-text {
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 1px;
  opacity: 0.7;
  font-family: "Archivo", sans-serif;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

.btn-bubble-arrow__arrow.is--duplicate {
  position: absolute;
  z-index: 2;
  right: 0;
  transform: scale(1) rotate(0.001deg);
  transform-origin: right;
}

/* Hover */

.btn-bubble-arrow:hover .btn-bubble-arrow__content {
  transform: translateX(0em) rotate(0.001deg);
}

.btn-bubble-arrow__arrow.is--duplicate {
  position: absolute;
  z-index: 2;
  right: 0;
  transform: scale(1) rotate(0.001deg);
  transform-origin: right;
}

/* Hover */

.btn-bubble-arrow:hover .btn-bubble-arrow__content {
  transform: translateX(0em) rotate(0.001deg);
}

.btn-bubble-arrow__arrow.is--duplicate {
  position: absolute;
  z-index: 2;
  right: 0;
  transform: scale(1) rotate(0.001deg);
  transform-origin: right;
}

/* Hover */

.btn-bubble-arrow:hover .btn-bubble-arrow__content {
  transform: translateX(0em) rotate(0.001deg);
}

/* portfolio */

.btn-bubble-arrow__arrow.is--duplicate {
  position: absolute;
  z-index: 2;
  right: 0;
  transform: scale(1) rotate(0.001deg);
  transform-origin: right;
}

/* Hover */

.btn-bubble-arrow:hover .btn-bubble-arrow__content {
  transform: translateX(0em) rotate(0.001deg);
}

/* customization */

.w-layout-grid {
  overflow: hidden;
}

.brandingSection {
  padding: 80px;
  text-align: center;
}

.brandingSection h3 {
  font-weight: 500;
  margin: 30px auto;
  width: 80%;
}

.brandingSection p {
  margin: 30px auto;
  width: 80%;
}

.platform_1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
}

.platform_2 {
  margin: 50px 0;
}

.platform_1 img {
  width: 80%;
  filter: grayscale(1);
  transition: all 0.2s ease;
}

.platform_1 img:hover {
  filter: none;
}

.contact-us.portfolio-contact {
  padding-top: 3rem;
}

.contact-flex {
  width: 80%;
  margin: 0 auto;
  display: flex;
  background-color: #1c221c;
  border-radius: 12px;
  overflow: hidden;
}

.contact-left {
  padding: 80px;
  background: #a1ff62;
}

.contact-left .btn-bubble-arrow__arrow.is--duplicate.background-color-teal,
.contact-left .btn-bubble-arrow__arrow.big {
  background-color: #f4f4f4;
}

.contact-left h3 {
  font-size: 2.5rem;
}

.contact-left p {
  padding: 10px 0;
}

.contact-left .form-flex {
  display: flex;
  gap: 30px;
}

.contact-left .form-flex2 {
  margin-top: 20px;
}

.contact-left .form-flex input {
  width: 100%;
  border: 1px solid #cccccc;
  border-radius: 12px;
  padding: 15px 20px;
  color: #000;
}

.contact-left .form-flex input::placeholder {
  font-size: 14px;
}

.contact-right {
  width: 60%;
}

.contact-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review {
  padding: 50px 0;
  overflow: hidden;
}

.review .review-heading {
  display: flex;
  justify-content: center;
}

.review .review-heading h1 {
  position: relative;
}

.review h1::after {
  content: "";
  width: 50%;
  height: 3px;
  background-color: #a1ff62;
  bottom: 0;
  right: 0;
  position: absolute;
}

.review-container {
  display: flex;
  gap: 3rem;
  margin-top: 30px;
  width: max-content;
  padding-bottom: 20px;
  animation: lefttoright 100s linear infinite;
}

@keyframes lefttoright {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.review-box {
  background-color: #201d1d;
  padding: 20px;
  border-radius: 12px;
  width: 30rem;
  color: #f4f4f4;
}

.review-box .review-profile {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.review-box .review-profile span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-weight: 600;
  border-radius: 5px;
  background-color: #a1ff62;
  color: #1c221c;
}

.review-box .review-profile h5 {
  font-size: 22px;
  color: #f4f4f4;
}

.pricing {
  position: relative;
  padding: 80px;
}
.pricing h5 {
  font-size: 1.7rem;
}
.pricing h6 {
  font-size: 1.3rem;
}
.pricing h5,
.pricing h3,
.pricing h6 {
  text-align: center;
}

.tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.tab {
  background: #201d1d;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 7px;
  color: #fff;
}

.tab.active {
  background: #a1ff62;
  color: #201d1d;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.card-slider {
  overflow: hidden;
  width: 100%;
}

.cards {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.card {
  background: #a1ff62;
  border: none;
  padding: 30px;
  flex: 0 0 32%;
  border-radius: 5px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  height: 630px;
}

.card h3 {
  padding: 10px 0;
  color: #ff4852;
  font-weight: 800;
}

.card h6 {
  font-size: 20px;
}

.card ul {
  padding: 0;
  height: 350px;
  overflow-y: auto;
  border: 1px solid #201d1d;
  border-radius: 6px;
  padding: 10px 0 0 10px;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #201d1d;
  border-radius: 10px;
  border: 2px solid #a1ff62;
}

::-webkit-scrollbar-track {
  background: #0000;
  border-radius: 10px;
}

.card ul li {
  padding-left: 25px;
  list-style: none;
  margin: 10px 0;
  position: relative;
  color: #201d1d;
}

.card ul li::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  color: #ff4852;
  position: absolute;
  left: 0;
  font-weight: 900;
}

.pricing .button-group {
  justify-content: center;
}
.pricing .btn-bubble-arrow__content.background-color-tealdark {
  background-color: #201d1d;
}
.pricing .btn-bubble-arrow__content-text {
  color: #f4f4f4;
}
.pricing-navigation {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 20px auto;
}
.card-slider .arrow {
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  border-top-style: solid;
  border-top-color: #a1ff62;
  border-right-style: solid;
  border-right-color: #a1ff62;
  border-bottom-style: solid;
  border-bottom-color: #a1ff62;
  border-left-style: solid;
  border-left-color: #a1ff62;
  background-color: #201d1d;
  outline-color: #a1ff62;
  pointer-events: auto;
  border-width: min(0.5em, 3px);
  border-radius: 1em;
  outline-width: 3px;
  outline-style: none;
  width: 50px;
  height: 50px;
  position: relative;
  line-height: 1;
  text-align: center;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: space-around;
  justify-content: center;
}

.faq {
  padding: 50px 0;
}

.faq-container {
  width: 80%;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
}

.faq-header {
  background-color: #201d1d;
  color: #f4f4f4;
  padding: 25px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 18px;
  border-radius: 25px 25px 0px 0px;
}

.faq-body {
  display: none;
  background-color: #a1ff62;
  padding: 25px;
  border-radius: 0px 0px 25px 25px;
}

.custom-dropdown {
  position: relative;
  display: inline-block;
}

.drop-content {
  display: none;
  position: absolute;
  color: #201d1d;
  background: #a1ff62c7;
  border-radius: 12px;
  margin-top: -10px;
  padding: 15px;
  width: max-content;
  border: 3px solid #a1ff62;
  backdrop-filter: blur(10px);
  z-index: 99;
}
.drop-content p {
  margin: 0;
  padding: 10px 20px;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.2s ease-in-out;
}

.drop-content p a {
  font-size: 15px;
  cursor: pointer;
}

.drop-content p:hover {
  background-color: #201d1d;
  color: #f4f4f4;
}

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

.drop-btn span i {
  font-size: 13px;
  margin-left: 5px;
}

.navbar5_menu-left .btn-bubble-arrow {
  display: none;
}

.w-layout-grid .footer1_menu-wrapper {
  display: flex;
  justify-content: space-between;
}

.footer1_component {
  background: #201d1d;
  margin-top: 3rem;
  color: #f4f4f4;
}

.footer-description {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 7px;
}

.footer1_social-link .icon-embed-xsmall i {
  color: #fff;
}

.footer1_component .padding-xxlarge {
  padding: 5rem 5rem 1rem;
}

.footer1_component .text-weight-semibold {
  border-bottom: 1px solid #ccc9dc;
}

.footer1_top-wrapper {
  padding-bottom: 3rem;
}

.copyright.padding-medium {
  padding: 1rem;
}

.timer {
  display: flex;
  width: max-content;
  border-radius: 30px;
  padding: 5px 20px;
  z-index: 999;
  font-size: 1.5rem;
  font-weight: 800;
  background: #fff;
  color: #201d1d;
  margin-bottom: 10px;
}

.pop-up {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 450px;
  height: auto;
  padding: 30px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid #a1ff62;
  color: #fff;
  border-radius: 12px;
  background-color: #201d1d;
  z-index: 9999999;
  display: none;
}

.pop-up i {
  font-size: 20px;
  position: absolute;
  right: 20px;
  top: 20px;
}

.pop-up h2 {
  font-size: 40px;
  margin-bottom: 10px;
  color: #a1ff62;
}

.pop-up form {
  width: 100%;
  margin-top: 30px;
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.pop-up form input {
  background-color: transparent;
  border: none;
  padding: 30px 12px 8px 12px;
  border-bottom: 1px solid #a1ff62;
}

.pop-up form input:focus-visible {
  outline: none;
}

.pop-up form input::placeholder {
  font-size: 14px;
  color: #a1ff6262;
}

.pop-up form .formBtn {
  margin-top: 30px;
  background-color: #a1ff62;
  border: none;
  border-radius: 30px;
  padding: 12px 20px;
  color: #201d1d;
}

.pop-up-fade {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #201d1dcc;
  transform: scale(0);
  z-index: 999999;
}

.terms,
.policy {
  padding: 80px 0;
}
.terms h6,
.policy h6 {
  margin: 20px 0 8px 0;
  font-weight: 600;
}
.terms p,
.policy p {
  margin-bottom: 8px;
}
.policy .heading-para {
  font-size: 1.3rem;
  font-weight: 600;
}
@media screen and (max-width: 1100px) {
  .card {
    flex: 0 0 42%;
  }
}
@media (max-width: 992px) {
  .brandingSection {
    padding: 20px;
  }

  .brandingSection h3 {
    margin: 20px 0;
    width: 100%;
  }

  .brandingSection p {
    margin: 20px 0;
    width: 100%;
  }

  .platform_1 {
    gap: 10px;
  }

  .platform_1 img {
    width: 75%;
    margin: 10px auto 0;
  }

  .platform_2 {
    margin-bottom: 0px;
  }

  .contact-left {
    padding: 20px;
  }

  .contact-flex {
    width: 90%;
    flex-wrap: wrap;
  }

  .contact-left .form-flex {
    flex-wrap: wrap;
    gap: 20px;
  }

  .contact-right {
    width: 100%;
  }

  .review-box {
    background-color: #1c221c;
    padding: 20px;
    border-radius: 12px;
    width: 20rem;
  }

  .review-box .review-profile h5 {
    font-size: 20px;
  }

  .pricing {
    padding: 20px;
  }

  .tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
  }

  .tab {
    padding: 7px 12px;
    font-size: 13px;
  }

  .navbar5_menu-right {
    display: none;
  }

  .navbar5_menu-left .btn-bubble-arrow {
    display: block;
  }

  .nav-btn {
    transform: none;
  }

  .navbar5_menu-left {
    position: relative;
  }

  .drop-content {
    padding: 13px;
    border-radius: 20px;
    position: relative;
    margin: 0 auto;
  }

  .drop-content p {
    padding: 5px;
    font-size: 14px;
  }

  .navbar5_menu {
    overflow: hidden;
  }

  .w-layout-grid .footer1_menu-wrapper {
    display: block;
  }

  .navbar5_menu {
    padding: 0;
  }

  .footer-heading {
    margin-top: 30px !important;
  }
  .card {
    flex: 0 0 48%;
  }
}

@media (max-width: 570px) {
  .card {
    flex: 0 0 100%;
    height: 600px;
    width: 100%;
  }

  .faq-container {
    width: 90%;
  }

  .faq-header {
    padding: 12px 15px;
    font-size: 14px;
    border-radius: 15px 15px 0px 0px;
  }

  .faq-body {
    padding: 15px;
    font-size: 14px;
    border-radius: 0px 0px 15px 15px;
  }

  .pop-up {
    width: auto;
  }
  .pop-up h2 {
    font-size: 25px;
  }
}
