@charset "UTF-8";
:root {
  --hue-color: #383838;
}

body {
  overflow-y: hidden;
  overflow-x: hidden;
}

img {
  opacity: 0;
  animation: opacity 500ms ease forwards;
}

@keyframes opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.progress {
  width: 100%;
  height: 6px;
  background-color: transparent;
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
}
.progress .bar {
  background-color: #3572ff;
  width: 0%;
  height: 100%;
}

.loader-spinner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 5px;
  width: 230px;
  transition: width 250ms ease-in-out;
  --c:no-repeat linear-gradient(#ffffff 0 0);
  background: var(--c), var(--c), #8baeff;
  background-size: 60% 100%;
  border-radius: 20px;
  animation: l16 3s infinite;
  z-index: 10;
}

.loader-spinner-shopify {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 5px;
  width: 230px;
  transition: width 250ms ease-in-out;
  --c:no-repeat linear-gradient(#ffffff 0 0);
  background: var(--c), var(--c), #2ed658;
  background-size: 60% 100%;
  border-radius: 20px;
  animation: l16 3s infinite;
  z-index: 10;
}

@keyframes l16 {
  0% {
    background-position: -150% 0, -150% 0;
  }
  66% {
    background-position: 250% 0, -150% 0;
  }
  100% {
    background-position: 250% 0, 250% 0;
  }
}
.loader-cover {
  position: fixed;
  z-index: 9;
  will-change: transform;
  width: 100%;
  height: 100%;
  background-color: #3572ff;
  top: 0;
  right: 0;
}
.loader-cover p {
  position: absolute;
  font-family: sans-serif !important;
  letter-spacing: 0.06rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 30px));
  color: #8baeff;
  font-size: clamp(20px, 11px + 1.5vw, 24px);
  font-weight: bold;
}

.loader-cover-shopify {
  position: fixed;
  z-index: 9;
  width: 100%;
  height: 100%;
  background-color: #7bff6c;
  top: 0;
  right: 0;
}
.loader-cover-shopify p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 30px));
  color: #2ed658;
  font-size: clamp(20px, 11px + 1.5vw, 24px);
  font-weight: bold;
}

@keyframes coverAni {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}
.circle {
  --circle-size: 20px;
  position: fixed;
  height: var(--circle-size);
  width: var(--circle-size);
  border: 1px solid #111111;
  border-radius: 100%;
  top: calc(var(--circle-size) / 2 * -1);
  left: calc(var(--circle-size) / 2 * -1);
  pointer-events: none;
  z-index: 10000;
  transition: opacity 200ms ease;
  display: none;
}

.slider-message-container {
  z-index: 1000;
  position: fixed;
  top: 300px;
  right: -300px;
  padding: 0 1rem;
  background-color: #111111;
  width: 300px;
  display: flex;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  justify-content: space-between;
  align-items: center;
  height: 52px;
  transition: right 400ms;
}
.slider-message-container p {
  margin-right: 10px;
  line-height: 1.2;
  color: #ebebeb;
  font-size: 10px;
}
.slider-message-container svg g g {
  fill: #ebebeb;
}

.slider-message-active {
  right: 0;
}

.close-message {
  cursor: pointer;
}

.magnet-effect {
  transition: all 25ms ease-in-out;
}

.hidden {
  opacity: 0;
  transition: all 0.75s;
}

.show {
  opacity: 1;
}

.hidden-2 {
  opacity: 0;
  transition: all 0.25s ease-in-out;
}

.show-2 {
  opacity: 1;
}

.hidden-3 {
  opacity: 1;
  transform: translateY(3vw);
  transition: all 0.75s ease-in-out;
}

.show-3 {
  transform: translateY(0);
  opacity: 1;
}

.hidden-4 {
  opacity: 1;
  transform: translateY(-3vw);
  transition: all 0.75s ease-in-out;
}

.show-4 {
  transform: translateY(0);
  opacity: 1;
}

.hidden-5 {
  opacity: 1;
  transform: translateY(-3vw);
  transition: all 0.25s ease-in-out;
}

.show-5 {
  transform: translateY(0);
  opacity: 1;
}

nav ul {
  z-index: 10;
  padding: 0 7px;
}

nav > ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  background: #fff;
  box-shadow: 0 2px 20px 0 rgba(39, 85, 164, 0.27);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  height: 50px;
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateY(-120px) translateX(-50%);
}
nav > ul li.links-padding {
  padding: clamp(0.375rem, 0.2083rem + 0.8333vw, 0.9375rem);
}
nav > ul li a {
  font-size: clamp(0.75rem, 0.6759rem + 0.3704vw, 1rem);
}

@keyframes navAni {
  0% {
    transform: translateY(-120px) translateX(-50%);
  }
  100% {
    transform: translateY(0px) translateX(-50%);
  }
}
nav li .skew-link {
  position: relative;
  font-weight: 600;
  color: #474747;
}

nav li .skew-link::after {
  content: "";
  width: 0%;
  transform: skew(-20deg, 0deg) translateX(-50%);
  border-radius: 3px;
  top: calc(0px - 25%);
  height: 150%;
  background-color: rgba(53, 114, 255, 0.2156862745);
  position: absolute;
  left: 50%;
  border-radius: 5px;
  transition: left 100ms ease, width 100ms ease, opacity 100ms ease;
}

nav.shopify li .skew-link::after {
  background-color: rgba(146, 255, 134, 0.2156862745);
}

nav li .skew-link:hover::after, nav li .skew-link.page:after {
  width: 120%;
}

@media (hover: none) and (pointer: coarse) {
  nav li .skew-link:hover::after {
    width: 0;
  }
}
@media (hover: none) and (pointer: coarse) {
  nav li .skew-link:hover {
    font-weight: 600;
    margin-left: 0;
  }
}
nav li .skew-link:hover, nav li .skew-link.page {
  color: #000000;
}

#logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 10px;
  padding-left: 10px;
  width: -moz-max-content;
  width: max-content;
}
#logo-link span {
  font-weight: 800;
  color: #3572ff;
}
#logo-link svg {
  height: 32px;
  width: 32px;
}

#call-to-action {
  margin-left: 10px;
  text-wrap: nowrap;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  background-color: #3572ff;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-weight: 600;
  overflow: hidden;
  z-index: 1;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border: 2px solid #3572ff;
  transition: color 400ms ease 0s, font-weight 250ms ease 0s;
}

#call-to-action span {
  display: block;
  width: 0px;
  height: 0px;
  background-color: #fff;
  background-position-x: center;
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease-in-out 0s, height 0.4s ease-in-out 0s;
  z-index: -1;
}

#call-to-action:hover span {
  width: 700px;
  height: 700px;
}

#call-to-action:hover {
  color: #3572ff;
  transition: color 100ms ease 0s;
}

@media (hover: none) and (pointer: coarse) {
  #call-to-action:hover {
    color: #fff;
    transition: none;
  }
}
@media (hover: none) and (pointer: coarse) {
  #call-to-action:hover span {
    width: 0;
    height: 0;
  }
}
#call-to-action.shopify {
  background-color: #92ff86;
  border-color: #92ff86;
  color: rgba(0, 0, 0, 0.6901960784);
  transition: color 400ms ease 0s, border 200ms ease 0s, font-weight 250ms ease 0s;
}
#call-to-action.shopify span {
  background-color: #fff;
}

#call-to-action.shopify:hover {
  border-color: rgba(0, 0, 0, 0.6901960784);
  color: rgba(0, 0, 0, 0.6901960784);
  transition: color 100ms ease 0s;
}

@media (hover: none) and (pointer: coarse) {
  #call-to-action.shopify:hover {
    color: #92ff86;
    transition: none;
  }
}
#call-to-action.shopify:active span {
  background-color: #92ff86;
}

#call-to-action.shopify:active {
  color: rgba(0, 0, 0, 0.6901960784);
}

#call-to-action:active span {
  background-color: #3572ff;
}

#call-to-action:active {
  color: #fff;
}

.nav-active ul {
  background-color: #fff;
  border-color: #fff;
}

@media screen and (max-width: 760px) {
  nav ul {
    width: 90vw;
  }
  #call-to-action {
    padding: 1rem 2rem;
    border-width: 3px;
  }
}
.desktop-links {
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 760px) {
  .desktop-links {
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border-radius: 20px;
    height: calc(100vh - 200px);
    width: 90vw;
    padding: 50px;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 250ms ease-out;
    -webkit-clip-path: circle(0px at 91.5% 7.25%);
    clip-path: circle(0px at 91.5% 7.25%);
  }
  .desktop-links li a {
    font-size: 26px;
    font-weight: bold;
  }
  .desktop-links.mobile-links-active {
    -webkit-clip-path: circle(1500px at 91.5% 7.25%);
    clip-path: circle(1500px at 91.5% 7.25%);
  }
}
.header-hamburger {
  position: relative;
  cursor: pointer;
  z-index: 20;
  width: 24px;
  height: 18px;
  display: block;
  margin: 0 1rem;
}

@media screen and (min-width: 760px) {
  .header-hamburger {
    display: none;
  }
}
.header-hamburger-bar {
  position: absolute;
  height: 2px !important;
  width: 100%;
  background-color: #111;
  display: block;
  border-radius: 2px;
  transition: all 100ms ease;
}

.header-hamburger-bar:first-child {
  top: 0;
  left: 0;
  width: 80%;
}

.header-hamburger-bar:nth-child(2) {
  width: 100%;
  height: 1.75px !important;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.header-hamburger-bar:nth-child(3) {
  bottom: 0;
  left: 0;
  width: 60%;
}

.hamburger-active .header-hamburger-bar:first-child {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 100%;
}
.hamburger-active .header-hamburger-bar:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.hamburger-active .header-hamburger-bar:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 100%;
}

.header-nav-overlay {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9;
  opacity: 0;
  left: -100%;
  transition: left 0s 0.2s, opacity 0.2s;
}

@media screen and (min-width: 760px) {
  .header-nav-overlay {
    display: none;
  }
}
.header-nav-overlay-active {
  left: 0;
  opacity: 1;
  transition: left 0s, opacity 0.2s;
}

@media screen and (min-width: 760px) {
  .header-nav-overlay-active {
    display: none;
  }
}
/*NEWSLETTER OVERLAY*/
.newsletter-overlay {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 15;
  opacity: 0;
  left: -100%;
  transition: left 0s 0.2s, opacity 0.2s;
}

.newsletter-overlay-active {
  left: 0;
  opacity: 1;
  transition: left 0s, opacity 0.2s;
}

#background-section {
  background-color: #fff;
  color: #111;
  text-align: left;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  position: relative;
  padding: 0 0 0 0;
}
@media (max-width: 1040px) {
  #background-section {
    height: auto;
  }
}
#background-section .backlight1 {
  position: absolute;
  top: 0;
  left: 0;
  height: 12vw;
  width: 12vw;
  background-color: var(--hue-color);
  filter: blur(150px);
  opacity: 0.5;
  transition: all 100ms ease;
}
#background-section .backlight2 {
  position: absolute;
  top: 90%;
  left: 90%;
  height: 12vw;
  width: 12vw;
  background-color: var(--hue-color);
  filter: blur(80px);
  opacity: 0.25;
  transition: all 100ms ease;
}
#background-section .backlight3 {
  position: absolute;
  top: -20%;
  left: 95%;
  height: 22vw;
  width: 22vw;
  background-color: var(--hue-color);
  filter: blur(200px);
  opacity: 0.25;
  transition: all 100ms ease;
}
#background-section .backlight4 {
  position: absolute;
  top: -30%;
  left: 80%;
  height: 22vw;
  width: 22vw;
  background-color: var(--hue-color);
  filter: blur(200px);
  opacity: 0.25;
  transition: all 200ms ease;
}

#background-section .container {
  display: flex;
  height: 100%;
  width: 100%;
}

#background-section .flex-hero {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
}
#background-section .flex-hero .text-container {
  gap: 0.5vw;
  width: 100%;
  display: flex;
  height: 40%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  padding-top: 100px;
}
#background-section .flex-hero .image-container {
  transform: translateX(100%);
  padding: 20px;
  padding-bottom: 75px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  max-width: 1000px;
  height: 60%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#background-section .flex-hero .image-container .image-frame {
  width: 80%;
  height: auto;
  aspect-ratio: 643/419;
  position: relative;
}
#background-section .flex-hero .image-container .image-frame .laptop-hue {
  transition: background-color 300ms ease-in-out;
  opacity: 0.5;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  aspect-ratio: 643/419;
  transform: translate(-50%, -50%);
  background-color: var(--hue-color);
  filter: blur(40px);
}
@media (max-width: 1040px) {
  #background-section .flex-hero .image-container .image-frame .laptop-hue {
    width: 50vw;
  }
}
@media (max-width: 480px) {
  #background-section .flex-hero .image-container .image-frame .laptop-hue {
    width: 40vw;
  }
}
#background-section .flex-hero .image-container .image-frame .external-button {
  cursor: pointer;
  height: 60px;
  width: 60px;
  background-color: rgba(189, 189, 189, 0.2392156863);
  transition: background-color 300ms ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  position: absolute;
  top: calc(50% - 30px);
  z-index: 3;
}
@media (max-width: 480px) {
  #background-section .flex-hero .image-container .image-frame .external-button {
    background-color: transparent;
  }
}
#background-section .flex-hero .image-container .image-frame .external-button svg {
  height: 30px;
  width: 30px;
}
#background-section .flex-hero .image-container .image-frame .external-button svg path {
  stroke-width: 1.3;
  transition: stroke 300ms ease-in-out;
  stroke: #111111;
}
#background-section .flex-hero .image-container .image-frame .external-button:hover {
  background-color: rgba(53, 114, 255, 0.1019607843);
}
#background-section .flex-hero .image-container .image-frame .external-button:hover svg path {
  stroke: #3572ff;
}
#background-section .flex-hero .image-container .image-frame .external-button:active {
  transition: all 100ms ease-in-out;
  background-color: rgba(53, 114, 255, 0.1568627451);
  scale: 0.92;
}
#background-section .flex-hero .image-container .image-frame .external-button:active svg path {
  transition: all 100ms ease-in-out;
  stroke: #1b5fff;
}
#background-section .flex-hero .image-container .image-frame .external-prev {
  left: -10px;
}
@media (max-width: 760px) {
  #background-section .flex-hero .image-container .image-frame .external-prev {
    left: -40px;
  }
}
#background-section .flex-hero .image-container .image-frame .external-prev svg {
  transform: translateX(-3px);
}
#background-section .flex-hero .image-container .image-frame .external-next {
  right: -10px;
}
@media (max-width: 760px) {
  #background-section .flex-hero .image-container .image-frame .external-next {
    right: -40px;
  }
}
#background-section .flex-hero .image-container .image-frame .external-next svg {
  transform: translateX(3px);
}
#background-section .flex-hero .image-container .image-frame img.laptop {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#background-section .flex-hero .image-container .image-frame .slider-container-background {
  position: absolute;
  top: 55.2%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(0.765);
  background-color: #ffffff;
  z-index: 0;
}
#background-section .flex-hero .image-container .image-frame .slider-container {
  position: absolute;
  top: 55.2%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(0.765);
  z-index: 1;
  margin: 0 auto;
}
#background-section .flex-hero .image-container .image-frame .slider-container .swiper {
  width: 100%;
  height: 100%;
}
#background-section .flex-hero .image-container .image-frame .slider-container .swiper .swiper-pagination {
  background-color: #111111;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 20px;
  left: 50%;
  padding: 0px 5px;
  padding-bottom: 3px;
  transform: translate3d(0, 0, 0) translateX(-50%);
  bottom: 80px;
}
@media (max-width: 1060px) {
  #background-section .flex-hero .image-container .image-frame .slider-container .swiper .swiper-pagination {
    bottom: 8vw;
  }
}
@media (max-width: 480px) {
  #background-section .flex-hero .image-container .image-frame .slider-container .swiper .swiper-pagination {
    display: none;
  }
}
#background-section .flex-hero .image-container .image-frame .slider-container .swiper .swiper-pagination .swiper-pagination-bullet {
  background: #ffffff;
}
#background-section .flex-hero .image-container .image-frame .slider-container .swiper-slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

@keyframes frameAni {
  0% {
    transform: translateX(-40vw);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes headerAniReverse {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0px);
  }
}
/* #background-section .left-section {
  margin-top: 200px;
  flex: 1;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

#background-section .right-section {
  flex: 1;
  position: absolute;
  width: 100%;
  height: 95vh;
  bottom: 0;
  right: 0;
  z-index: 1;
  #video-background{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    user-select: none;
  }
  #overlay-image{
    position: absolute;
    top: 0;
    left: 0;
    scale: 1.2;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: 2; 
  }
}*/
@keyframes zoom-out {
  0% {
    scale: 1.2;
    opacity: 1;
  }
  75% {
    scale: 1;
    opacity: 1;
  }
  100% {
    scale: 1;
    opacity: 0;
  }
}
@keyframes zoom-out-picture {
  0% {
    scale: 1.2;
  }
  75% {
    scale: 1;
  }
  100% {
    scale: 1;
  }
}
@keyframes zoom-out-background {
  0% {
    background-size: 170%;
  }
  100% {
    background-size: 100%;
  }
}
#background-section h1 {
  transform: translateX(-100%);
  font-size: clamp(1.25rem, 1.1796rem + 1.8519vw, 3em);
  width: -moz-fit-content;
  width: fit-content;
  max-width: 1500px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  font-style: italic;
  text-align: center;
  color: #3572ff;
  transition: all 1000ms cubic-bezier(0.85, 0, 0.15, 1) 100ms;
}

#background-section p {
  transform: translateX(-100%);
  font-size: clamp(16px, 7px + 1.5vw, 20px);
  width: -moz-fit-content;
  width: fit-content;
  max-width: 1500px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  font-style: italic;
  text-align: center;
  color: #111111;
}

/* Margins of ELements with Class Mask listed by their Child Number */
#background-section .mask:nth-of-type(1) {
  margin-top: 150px;
}

#background-section .mask:nth-of-type(2) {
  margin-bottom: 15px;
}

#background-section .mask:nth-of-type(3) {
  margin-bottom: 20px;
}

.hero-right-1 {
  fill: #e1e4ff;
}

/* .hero-right-2{

} */
.hero-left-2 {
  fill: #eef0ff;
}

/* .hero-left-1{

}
.hero-middle{

} */
.tilt-1 {
  position: absolute;
  z-index: 2;
  fill: #ffffff;
  width: 100%;
  height: 150px;
  left: 0;
  right: 0;
  bottom: 0;
}

.tilt-2 {
  position: absolute;
  z-index: 2;
  fill: #c9d6ff;
  width: 100%;
  height: 175px;
  left: 0;
  right: 0;
  bottom: 0;
}

.tilt-3 {
  z-index: 2;
  position: absolute;
  fill: rgba(164, 188, 255, 0.2196078431);
  width: 100%;
  height: 200px;
  left: 0;
  right: 0;
  bottom: 0;
}

@media (min-width: 768px) {
  .tilt-1 {
    height: 50px;
  }
  .tilt-2 {
    height: 75px;
  }
  .tilt-3 {
    height: 100px;
  }
}
@media (max-width: 768px) {
  .tilt-1 {
    height: 50px;
  }
  .tilt-2 {
    height: 67.5px;
  }
  .tilt-3 {
    height: 75px;
  }
}
@media (max-width: 480px) {
  .tilt-1 {
    height: 30px;
  }
  .tilt-2 {
    height: 37.5px;
  }
  .tilt-3 {
    height: 45px;
  }
}
/* -------------------------------------------------------------------------- */
/*                                VIDEO BUTTONS                               */
/* -------------------------------------------------------------------------- */
button.video-button {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 50px;
  right: 50px;
  z-index: 4;
  background-color: white;
  box-shadow: 1px 1px 4px rgba(64, 95, 196, 0.4431372549);
  height: 40px;
  width: 40px;
  border-radius: 100px;
  transition: all 200ms ease-in-out;
}
button.video-button svg path {
  transition: all 125ms ease-in;
}

button.video-button:hover svg path:first-child {
  transform: translate(1px, 1px);
}
button.video-button:hover svg path:nth-child(2) {
  transform: translate(-1px, 1px);
}
button.video-button:hover svg path:nth-child(3) {
  transform: translate(1px, -1px);
}
button.video-button:hover svg path:nth-child(4) {
  transform: translate(-1px, -1px);
}

.how-we-work {
  background-color: #fff;
  padding: 20px;
  padding-bottom: 0px;
  z-index: 3;
  position: sticky;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.how-we-work h2 {
  font-size: clamp(1.75rem, 1.3796rem + 1.8519vw, 3rem);
  padding: 1rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  font-style: italic;
  text-align: center;
}
.how-we-work .grid {
  max-width: 1200px;
  width: 90%;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: auto;
  gap: clamp(1.125rem, 0.6rem + 1.5vw, 2rem);
}
@media screen and (max-width: 480px) {
  .how-we-work .grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}
.how-we-work .grid .item .image-container {
  transition: all 150ms ease-in-out;
  position: relative;
}
.how-we-work .grid .item .image-container img {
  border-bottom-right-radius: 95px;
  transition: all 150ms ease-in-out;
  cursor: pointer;
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
@media screen and (max-width: 760px) {
  .how-we-work .grid .item .image-container img {
    border-bottom-right-radius: 71.25px;
  }
}
@media screen and (max-width: 600px) {
  .how-we-work .grid .item .image-container img {
    border-bottom-right-radius: 57px;
  }
}
@media screen and (max-width: 480px) {
  .how-we-work .grid .item .image-container img {
    border-bottom-right-radius: 71.25px;
  }
}
@media screen and (max-width: 400px) {
  .how-we-work .grid .item .image-container img {
    border-bottom-right-radius: 66.5px;
  }
}
.how-we-work .grid .item .image-container .button-container {
  transform-origin: bottom right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 760px) {
  .how-we-work .grid .item .image-container .button-container {
    transform: scale(0.75);
  }
}
@media screen and (max-width: 600px) {
  .how-we-work .grid .item .image-container .button-container {
    transform: scale(0.6);
  }
}
@media screen and (max-width: 480px) {
  .how-we-work .grid .item .image-container .button-container {
    transform: scale(0.75);
  }
}
@media screen and (max-width: 400px) {
  .how-we-work .grid .item .image-container .button-container {
    transform: scale(0.7);
  }
}
.how-we-work .grid .item .image-container .button-container .button-cover {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 95px;
  height: 95px;
  max-width: none;
}
.how-we-work .grid .item .image-container .button-container button {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70px;
  height: 70px;
  background-color: #3572ff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms ease-in-out;
}
.how-we-work .grid .item .image-container .button-container button svg {
  transition: all 200ms ease-in-out;
}
.how-we-work .grid .item .image-container:hover img {
  transform: translateY(5px);
  transform: scaleY(0.9) translateY(5.4054054054%);
  filter: brightness(0.75);
}
.how-we-work .grid .item .image-container:hover button {
  transform: scale(0.9);
}
.how-we-work .grid .item .image-container:hover button svg {
  transform: scale(1.4) rotate(-45deg);
}
.how-we-work .grid .item .text-container {
  min-height: 125px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.how-we-work .grid .item .text-container h3 {
  margin-top: 1em;
  font-size: clamp(1.125rem, 0.6rem + 0.7407vw, 1.625rem);
  font-weight: 600;
  margin-bottom: 1em;
}
.how-we-work .grid .item .text-container .spacer-container {
  display: flex;
  justify-content: space-between;
}
.how-we-work .grid .item .text-container .spacer-container div {
  display: flex;
  gap: 10px;
  align-items: center;
}
.how-we-work .grid .item .text-container .spacer-container span {
  font-size: clamp(0.75rem, 0.6759rem + 0.3704vw, 1rem);
  font-weight: bold;
  color: #9c9c9c;
}
@media screen and (min-width: 1380px) {
  .how-we-work .grid .item .text-container .spacer-container span {
    transform: translateY(1px);
  }
}

/*SERVICES*/
.service-section {
  background-color: #fff;
  padding: 20px;
  padding-bottom: 0px;
  z-index: 3;
  position: sticky;
}
.service-section h2 {
  font-size: clamp(1.75rem, 1.3796rem + 1.8519vw, 3rem);
  padding: 1rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  font-style: italic;
  text-align: center;
}
.service-section .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.service-section .service-grid .grid-item {
  cursor: default;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  gap: 15px;
  width: calc(33.3333333333% - 7px);
  height: 150px;
  background-color: transparent;
  border-radius: 10px;
  transition: all 150ms ease-in-out;
  padding: 0.5rem;
  transform: scale(0.95);
}
@media screen and (max-width: 760px) {
  .service-section .service-grid .grid-item {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 760px) {
  .service-section .service-grid .grid-item {
    width: calc(50% - 7px);
    height: 175px;
  }
}
@media screen and (max-width: 480px) {
  .service-section .service-grid .grid-item {
    width: 100%;
    height: 175px;
  }
}
.service-section .service-grid .grid-item .service-logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-section .service-grid .grid-item .service-logo-container .logo-frame {
  background-color: #fff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.service-section .service-grid .grid-item .service-logo-container .logo-frame svg {
  height: 30px;
  width: 30px;
}
.service-section .service-grid .grid-item .service-logo-container .animation-frame {
  background-color: #fff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  height: 44px;
  width: 44px;
}
.service-section .service-grid .grid-item .service-logo-container .animation-frame span {
  border-radius: 40px;
  transition: all 100ms ease-in-out;
}
.service-section .service-grid .grid-item .service-logo-container .animation-frame span:first-of-type {
  height: 10px;
  width: 10px;
  background-color: #3572ff;
}
.service-section .service-grid .grid-item .service-logo-container .animation-frame span:last-of-type {
  height: 10px;
  width: 10px;
  background-color: #769fff;
}
.service-section .service-grid .grid-item .service-logo-container .animation-frame.shopify {
  background-color: #fff;
}
.service-section .service-grid .grid-item .service-logo-container .animation-frame.shopify span:first-of-type {
  background-color: #4ed43f;
}
.service-section .service-grid .grid-item .service-logo-container .animation-frame.shopify span:last-of-type {
  background-color: #81ec75;
}
.service-section .service-grid .grid-item h3 {
  font-size: clamp(1.25rem, 1.1389rem + 0.5556vw, 1.625rem);
  font-weight: bold;
  color: #111;
}
.service-section .service-grid .grid-item p {
  font-weight: 600;
  color: #4e4e4e;
  line-height: 1.3;
}
.service-section .service-grid .grid-item a {
  color: #3572ff;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  width: -moz-fit-content;
  width: fit-content;
}
.service-section .service-grid .grid-item:hover {
  border-color: #3572ff;
  transform: scale(1);
  /* h3{
    color: #fff;
  }
  p{
    color: #fff;
  }
  a{
    background-color: #fff;
  } */
}
.service-section .service-grid .grid-item:hover span:first-of-type {
  transform: translate(-7px) scale(1.2);
}
.service-section .service-grid .grid-item:hover span:last-of-type {
  transform: translateX(7px) scale(1.8);
}
@media (hover: none) and (pointer: coarse) {
  .service-section .service-grid .grid-item:hover {
    border: inherit;
    transform: scale(0.95);
  }
  .service-section .service-grid .grid-item:hover h3 {
    color: inherit;
  }
  .service-section .service-grid .grid-item:hover p {
    color: inherit;
  }
  .service-section .service-grid .grid-item:hover a {
    background-color: inherit;
  }
  .service-section .service-grid .grid-item:hover span:first-of-type {
    transform: inherit;
  }
  .service-section .service-grid .grid-item:hover span:last-of-type {
    transform: inherit;
  }
}

.service-section.shopify .service-grid .grid-item .service-logo-container .logo-frame svg {
  stroke: #4ed43f;
}
.service-section.shopify .service-grid .grid-item .service-logo-container .logo-frame svg path {
  stroke: #4ed43f;
}
.service-section.shopify .service-grid .grid-item:hover {
  border-color: #4ed43f;
}

.service-section.webflow .service-grid .grid-item .service-logo-container .logo-frame svg {
  stroke: #3572ff;
}
.service-section.webflow .service-grid .grid-item .service-logo-container .logo-frame svg path {
  stroke: #3572ff;
}
.service-section.webflow .service-grid .grid-item:hover {
  border-color: #3572ff;
}

/*HOW*/
.how-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem;
  background-color: white;
}
.how-section h2 {
  font-size: clamp(1.75rem, 1.3796rem + 1.8519vw, 3rem);
  padding: 1rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  font-style: italic;
  text-align: center;
}
.how-section .how-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  padding: 1rem;
}
@media screen and (max-width: 760px) {
  .how-section .how-container {
    flex-direction: column;
  }
}
.how-section .how-container .text-container {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 760px) {
  .how-section .how-container .text-container {
    width: 100%;
  }
}
.how-section .how-container .text-container h3 {
  font-size: clamp(1.125rem, 0.9769rem + 0.7407vw, 1.625rem);
  font-weight: 700;
}
.how-section .how-container .text-container p.how-description {
  font-size: clamp(0.75rem, 0.6759rem + 0.3704vw, 1rem);
  font-weight: 500;
  line-height: 1.3;
}
.how-section .how-container .text-container #call-step-to-action {
  text-wrap: nowrap;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  background-color: #3572ff;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-weight: 600;
  overflow: hidden;
  max-width: 300px;
  z-index: 1;
  margin-right: -2px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border: 2px solid #3572ff;
  transition: color 400ms ease 0s, font-weight 250ms ease 0s;
}
@media screen and (max-width: 760px) {
  .how-section .how-container .text-container #call-step-to-action {
    top: calc(-50% - 15px);
    width: 100%;
  }
}
.how-section .how-container .text-container #call-step-to-action span {
  display: block;
  width: 0px;
  height: 0px;
  background-color: #fff;
  background-position-x: center;
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease-in-out 0s, height 0.4s ease-in-out 0s;
  z-index: -1;
}
.how-section .how-container .text-container #call-step-to-action:hover span {
  width: 1400px;
  height: 1400px;
}
.how-section .how-container .text-container #call-step-to-action:hover {
  color: #3572ff;
  transition: color 100ms ease 0s;
}
@media (hover: none) and (pointer: coarse) {
  .how-section .how-container .text-container #call-step-to-action:hover {
    color: #fff;
    transition: none;
  }
}
@media (hover: none) and (pointer: coarse) {
  .how-section .how-container .text-container #call-step-to-action:hover span {
    width: 0;
    height: 0;
  }
}
.how-section .how-container .text-container #call-step-to-action:active span {
  background-color: #3572ff;
}
.how-section .how-container .text-container #call-step-to-action:active {
  color: #fff;
}
.how-section .how-container .step-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 50%;
}
@media screen and (max-width: 760px) {
  .how-section .how-container .step-container {
    width: 100%;
  }
}
.how-section .how-container .step-container .step-item {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media screen and (max-width: 760px) {
  .how-section .how-container .step-container .step-item {
    flex-direction: column;
  }
}
.how-section .how-container .step-container .step-item .number-circle {
  background-color: #3572ff;
  color: #fff;
  border-radius: 100px;
  font-weight: 600;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px 0 rgba(39, 85, 164, 0.37);
  position: relative;
}
.how-section .how-container .step-container .step-item .number-circle span {
  content: "";
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 70px;
  border-left: 2px dashed #3572ff;
}
@media screen and (max-width: 760px) {
  .how-section .how-container .step-container .step-item .number-circle span {
    top: calc(-50% - 15px);
    height: 20px;
  }
}
.how-section .how-container .step-container .step-item .last-span {
  display: none;
}
@media screen and (max-width: 760px) {
  .how-section .how-container .step-container .step-item .first-span {
    display: none;
  }
  .how-section .how-container .step-container .step-item .last-span {
    display: block;
  }
}
.how-section .how-container .step-container .step-item .step-text {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 400px;
  padding: 1rem;
  color: #111;
  background-color: #fff;
  box-shadow: 0 8px 32px 0 rgba(39, 85, 164, 0.37);
  border-radius: 10px;
}
.how-section .how-container .step-container .step-item .step-text h4 {
  font-size: clamp(0.875rem, 0.8009rem + 0.3704vw, 1.125rem);
  font-weight: bold;
  margin-bottom: 10px;
}
.how-section .how-container .step-container .step-item .step-text p {
  font-size: clamp(0.75rem, 0.6759rem + 0.3704vw, 1rem);
  font-weight: 500;
  line-height: 1.3;
}

.how-section.shopify .how-container .text-container #call-step-to-action.shopify {
  background-color: #92ff86;
  border-color: #92ff86;
  color: rgba(0, 0, 0, 0.6901960784);
  transition: color 400ms ease 0s, border 200ms ease 0s, font-weight 250ms ease 0s;
}
.how-section.shopify .how-container .text-container #call-step-to-action.shopify span {
  background-color: #fff;
}
.how-section.shopify .how-container .text-container #call-step-to-action.shopify:hover {
  border-color: rgba(0, 0, 0, 0.6901960784);
  color: rgba(0, 0, 0, 0.6901960784);
  transition: color 100ms ease 0s;
}
@media (hover: none) and (pointer: coarse) {
  .how-section.shopify .how-container .text-container #call-step-to-action.shopify:hover {
    color: #92ff86;
    transition: none;
  }
}
.how-section.shopify .how-container .text-container #call-step-to-action.shopify:active span {
  background-color: #92ff86;
}
.how-section.shopify .how-container .text-container #call-step-to-action.shopify:active {
  color: rgba(0, 0, 0, 0.6901960784);
}

.how-section.shopify .how-container .step-container .step-item .number-circle {
  background-color: #92ff86;
  color: rgba(0, 0, 0, 0.6901960784);
}
.how-section.shopify .how-container .step-container .step-item .number-circle span {
  border-left: 2px dashed #4dff39;
}
.how-section.shopify .how-container .step-item .step-text {
  box-shadow: 0 8px 16px 0 rgba(17, 139, 29, 0.212);
}

/*TOOLS*/
.tool-section {
  background-color: white;
  position: relative;
}
.tool-section h2 {
  font-size: clamp(1.75rem, 1.3796rem + 1.8519vw, 3rem);
  padding: 1rem;
  padding-top: 3rem;
  padding-bottom: 4rem;
  font-weight: 800;
  text-transform: uppercase;
  font-style: italic;
  text-align: center;
}
.tool-section h2 span {
  color: #3572ff;
}
.tool-section .sticky-flex {
  width: 100%;
  display: flex;
}
.tool-section .sticky-flex .scroll-container {
  width: 40%;
}
@media screen and (max-width: 760px) {
  .tool-section .sticky-flex .scroll-container {
    width: 60%;
  }
}
@media screen and (max-width: 480px) {
  .tool-section .sticky-flex .scroll-container {
    width: 70%;
  }
}
.tool-section .sticky-flex .info-container {
  padding: 20px;
  height: 500px;
  border-bottom: transparent;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tool-section .sticky-flex .info-container h3 {
  font-size: clamp(1.75rem, 1.3796rem + 1.8519vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  font-style: italic;
}
.tool-section .sticky-flex .info-container h4 {
  font-size: clamp(1.125rem, 0.6rem + 0.7407vw, 1.625rem);
  font-weight: 600;
}
.tool-section .sticky-flex .info-container p {
  font-size: clamp(0.75rem, 0.6759rem + 0.3704vw, 1rem);
  font-weight: 600;
  line-height: 1.5;
}
.tool-section .sticky-flex .info-container a {
  background-color: #181818;
  color: #ececec;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-weight: 500;
  transition: all 150ms;
  border: 2px solid #181818;
}
.tool-section .sticky-flex .info-container a:hover {
  background-color: transparent;
  color: #181818;
}
.tool-section .sticky-flex .info-container:nth-of-type(1) {
  background: linear-gradient(45deg, rgb(146, 255, 134) 0%, rgb(144, 237, 81) 100%);
}
.tool-section .sticky-flex .info-container:nth-of-type(1) h3, .tool-section .sticky-flex .info-container:nth-of-type(1) h4, .tool-section .sticky-flex .info-container:nth-of-type(1) p {
  color: #181818;
}
.tool-section .sticky-flex .info-container:nth-of-type(2) {
  background-color: #4353FF;
}
.tool-section .sticky-flex .info-container:nth-of-type(2) h3, .tool-section .sticky-flex .info-container:nth-of-type(2) h4, .tool-section .sticky-flex .info-container:nth-of-type(2) p {
  color: #fff;
}
.tool-section .sticky-flex .info-container:nth-of-type(2) a {
  background-color: #ffffff;
  color: #111;
  border: 2px solid #ffffff;
}
.tool-section .sticky-flex .info-container:nth-of-type(2) a:hover {
  color: #fff;
  background-color: transparent;
}
.tool-section .sticky-flex .info-container:nth-of-type(3) {
  background-color: #272727;
}
.tool-section .sticky-flex .info-container:nth-of-type(3) h3, .tool-section .sticky-flex .info-container:nth-of-type(3) h4, .tool-section .sticky-flex .info-container:nth-of-type(3) p {
  color: #fff;
}
.tool-section .sticky-flex .info-container:nth-of-type(3) h3 span:nth-of-type(1) {
  color: #F24E1E;
}
.tool-section .sticky-flex .info-container:nth-of-type(3) h3 span:nth-of-type(2) {
  color: #FF7262;
}
.tool-section .sticky-flex .info-container:nth-of-type(3) h3 span:nth-of-type(3) {
  color: #A259FF;
}
.tool-section .sticky-flex .info-container:nth-of-type(3) h3 span:nth-of-type(4) {
  color: #1ABCFE;
}
.tool-section .sticky-flex .info-container:nth-of-type(3) h3 span:nth-of-type(5) {
  color: #0ACF83;
}
.tool-section .sticky-flex .info-container:nth-of-type(4) {
  background-color: #181818;
}
.tool-section .sticky-flex .info-container:nth-of-type(4) h3, .tool-section .sticky-flex .info-container:nth-of-type(4) h4, .tool-section .sticky-flex .info-container:nth-of-type(4) p {
  color: #e0e0e0;
}
.tool-section .sticky-flex .info-container:nth-of-type(4) h3 span:nth-of-type(1) {
  color: #F4C622;
}
.tool-section .sticky-flex .info-container:nth-of-type(4) h3 span:nth-of-type(2) {
  color: #F353EB;
}
.tool-section .sticky-flex .info-container:nth-of-type(4) h3 span:nth-of-type(3) {
  color: #41F4CC;
}
.tool-section .sticky-flex .info-container:nth-of-type(4) h3 span:nth-of-type(4) {
  color: #4380FF;
}
.tool-section .sticky-flex .info-container:nth-of-type(4) h3 span:nth-of-type(5) {
  color: #FE3AF2;
}
.tool-section .sticky-flex .info-container:nth-of-type(4) h3 span:nth-of-type(6) {
  color: #4380FF;
}
.tool-section .sticky-flex .info-container:nth-of-type(5) {
  background-color: #f3f3f3;
}
.tool-section .sticky-flex .info-container:nth-of-type(5) h3, .tool-section .sticky-flex .info-container:nth-of-type(5) h4, .tool-section .sticky-flex .info-container:nth-of-type(5) p {
  color: #111111;
}
.tool-section .test-box {
  overflow: clip;
  width: 60%;
  background-color: rgb(0, 0, 0);
  position: relative;
}
@media screen and (max-width: 760px) {
  .tool-section .test-box {
    width: 40%;
  }
}
@media screen and (max-width: 480px) {
  .tool-section .test-box {
    width: 30%;
  }
}
.tool-section .test-box .parallax-container {
  position: absolute;
  top: 0;
  width: 100%;
}
.tool-section .test-box .parallax-container .parallax-window {
  background-color: #ffffff;
  height: 500px;
  overflow: hidden;
  background-position: center;
  animation: lazyAni 500ms infinite linear alternate;
}

.tool-grid {
  z-index: 9;
  height: 150px;
  width: 150px;
  position: sticky;
  top: 50vh;
  margin-left: auto;
  margin-top: 250px;
  margin-bottom: 100px;
  transform: translateY(-50%);
  border-radius: 100%;
  transition: none;
  z-index: 5;
}
@media screen and (max-width: 760px) {
  .tool-grid {
    margin-right: -150px;
  }
}
@media screen and (max-width: 480px) {
  .tool-grid {
    margin-top: 350px;
    margin-bottom: 0px;
    margin-right: auto;
  }
}
@media screen and (max-width: 400px) {
  .tool-grid {
    margin-top: 400px;
    margin-bottom: 0px;
    margin-right: auto;
  }
}
.tool-grid .tool-item {
  background-color: rgb(255, 255, 255);
  border: 1px solid transparent;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3137254902);
  border-radius: 1000px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: background-color 100ms ease, border 100ms ease;
  transform: translate(-50%, -50%) rotate(var(--angle)) translate(200px) rotate(calc(-1 * var(--angle)));
}
.tool-grid .tool-item svg {
  height: 40px;
  width: 40px;
  scale: 1;
}
.tool-grid .tool-item img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 40px;
  scale: 1;
}
.tool-grid .tool-item:hover {
  background-color: #f3f4ff;
  border: 1px solid #c4d0e9;
}
@media (hover: none) and (pointer: coarse) {
  .tool-grid .tool-item:hover {
    background-color: white;
    border: 1px solid transparent;
  }
}

@keyframes lazyAni {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
/* .tool-grid:hover{
  transform: rotateZ(180deg) translateY(50%);
  .tool-item{
    transform: scale(1.5) translate(-50%, -50%) rotate(var(--angle)) translate(12vh) rotate(calc(-1 * var(--angle) + 180deg));
  }
} */
.dimension-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 250ms ease-in-out;
  padding: 20px;
}
.dimension-section h2 {
  font-size: clamp(1.75rem, 1.3796rem + 1.8519vw, 3rem);
  padding: 1rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  font-style: italic;
  text-align: center;
  color: #3572ff;
}
.dimension-section .dimension-grid {
  display: flex;
  width: 100%;
  gap: 20px;
}
.dimension-section .dimension-grid .dimension-grid-item {
  min-height: 300px;
}
.dimension-section .dimension-grid .dimension-grid-item:first-of-type {
  padding: 25px;
  width: 50%;
  background-color: #000000;
  border-radius: 20px;
}
.dimension-section .dimension-grid .dimension-grid-item:first-of-type .anime-container {
  position: relative;
  width: 100%;
  height: 100%;
  resize: both;
}
.dimension-section .dimension-grid .dimension-grid-item:first-of-type .anime-container .blob {
  width: 50px;
  height: 50px;
  position: absolute;
  left: 0; /* Initialisierung */
  top: 0;
  transform: translateX(-100%) translateY(0%);
  filter: drop-shadow(2px 2px 20px rgba(53, 114, 255, 0.5647058824));
}
.dimension-section .dimension-grid .dimension-grid-item:first-of-type .anime-container .blob path {
  transform-origin: 50% 50%;
}
.dimension-section .dimension-grid .dimension-grid-item:first-of-type .anime-container .blob2 {
  width: 50px;
  height: 50px;
  position: absolute;
  left: 100%;
  top: 100%;
  transform: translateX(-100%) translateY(-100%);
  filter: drop-shadow(2px 2px 20px rgba(62, 192, 255, 0.5647058824));
}
.dimension-section .dimension-grid .dimension-grid-item:first-of-type .anime-container .blob2 path {
  transform-origin: 50% 50%;
}
.dimension-section .dimension-grid .dimension-grid-item:last-of-type {
  width: 50%;
  height: 100%;
  background-color: transparent;
  position: relative;
  background-color: #3572ff;
  border-radius: 20px;
  cursor: grab;
}
.dimension-section .dimension-grid .dimension-grid-item:last-of-type div {
  transition: transform 200ms ease-in-out, top 50ms ease, left 50ms ease;
  position: absolute;
  border-radius: 200px;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background-color: rgba(0, 0, 0, 0.1019607843);
  transform: scale(0);
}
.dimension-section .dimension-grid .dimension-grid-item:last-of-type canvas {
  position: absolute;
  z-index: 2;
}
.dimension-section .dimension-grid .dimension-grid-item:last-of-type:hover div {
  transform: scale(1);
}

/*FAQ*/
.faq-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 250ms ease-in-out;
}
.faq-section h2 {
  font-size: clamp(1.75rem, 1.3796rem + 1.8519vw, 3rem);
  padding: 1rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  font-style: italic;
  text-align: center;
  color: #111;
}
.faq-section .wrapper {
  width: 100%;
  max-width: 1400px;
  margin-bottom: 40px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-section .wrapper > p,
.faq-section .wrapper > h2 {
  text-align: left;
}
.faq-section .wrapper > h2 {
  letter-spacing: 3px;
}
.faq-section .faq-item {
  box-shadow: 0 2px 8px 0 rgba(39, 85, 164, 0.37);
  border-radius: 10px;
  border: 2px solid transparent;
  transition: border 150ms ease-in-out;
  overflow: hidden;
  position: relative;
}
.faq-section .accordion {
  overflow: hidden;
  border-radius: 10px;
  color: #111;
  background-color: transparent;
  cursor: pointer;
  width: 100%;
  padding: 1.5rem;
  padding-right: calc(clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem) + 5px);
  border: 2px solid transparent;
  outline: none;
  transition: all 100ms ease-in-out;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  font-size: clamp(0.875rem, 0.8009rem + 0.3704vw, 1.125rem);
  line-height: 1.2;
  font-weight: bold;
}
.faq-section .accordion span {
  width: -moz-fit-content;
  width: fit-content;
}
.faq-section .accordion svg {
  width: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  height: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  transition: all 300ms ease;
}
.faq-section .accordion svg path {
  stroke: #0a0a0a;
}
.faq-section .panel {
  transition: all 250ms ease-in-out;
  overflow: hidden;
  height: 0;
  border: 2px solid transparent;
  background-color: transparent;
  border-radius: 10px;
  font-weight: 600;
  font-size: clamp(0.75rem, 0.6759rem + 0.3704vw, 1rem);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  color: #111;
  opacity: 0;
}
.faq-section .panel p {
  line-height: 1.3;
}
.faq-section .active-panel {
  padding: 1rem 1.25rem 2.5rem 1.25rem;
  height: -moz-fit-content;
  height: fit-content;
  opacity: 1;
}
.faq-section .accordion.active svg {
  transform: rotate(180deg);
}
.faq-section .accordion.active svg path {
  stroke: #3572ff;
}
.faq-section .accordion.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  color: #3572ff;
}
.faq-section .faq-item:hover {
  border-color: #3572ff;
}
.faq-section .wrapper.shopify .accordion.active svg path {
  stroke: #33d921;
}
.faq-section .wrapper.shopify .accordion.active {
  color: #33d921;
}
.faq-section .wrapper.shopify .faq-item:hover {
  border-color: #33d921;
}

/*CALL AGAIN SECTION*/
.call-again-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem;
}
.call-again-section .call-again-container {
  min-height: 250px;
  background: #3572ff;
  background: linear-gradient(90deg, #3ec0ff 0%, #3572ff 100%);
  border-radius: 10px;
  padding: 1rem;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 32px 0 rgba(39, 85, 164, 0.37);
}
.call-again-section .call-again-container h2 {
  font-size: clamp(1.75rem, 1.3796rem + 1.8519vw, 3rem);
  text-align: center;
  max-width: 700px;
  font-weight: 800;
  text-transform: uppercase;
  font-style: italic;
  margin-top: 3rem;
  margin-bottom: 3rem;
  color: #fff;
}
.call-again-section .call-again-container p {
  font-size: clamp(0.75rem, 0.6759rem + 0.3704vw, 1rem);
  font-weight: 500;
  color: #fff;
  max-width: 700px;
  text-align: center;
  line-height: 1.3;
}
.call-again-section .call-again-container a {
  margin-top: 30px;
  max-width: 250px;
}
.call-again-section .call-again-container #call-again-to-action {
  text-wrap: nowrap;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  background-color: #ffffff;
  color: #3572ff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-weight: 600;
  overflow: hidden;
  z-index: 1;
  margin-right: -2px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border: 2px solid #ffffff;
  transition: color 400ms ease 0s, font-weight 250ms ease 0s;
}
.call-again-section .call-again-container #call-again-to-action span {
  display: block;
  width: 0px;
  height: 0px;
  background: #3572ff;
  background: linear-gradient(90deg, rgb(62, 192, 255) 0%, rgb(53, 114, 255) 100%);
  background-position-x: center;
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease-in-out 0s, height 0.4s ease-in-out 0s;
  z-index: -1;
}
.call-again-section .call-again-container #call-again-to-action:hover span {
  width: 700px;
  height: 700px;
}
.call-again-section .call-again-container #call-again-to-action:hover {
  color: #fff;
  transition: color 100ms ease 0s;
}
@media (hover: none) and (pointer: coarse) {
  .call-again-section .call-again-container #call-again-to-action:hover {
    color: #3572ff;
    transition: none;
  }
}
@media (hover: none) and (pointer: coarse) {
  .call-again-section .call-again-container #call-again-to-action:hover span {
    width: 0;
    height: 0;
  }
}
.call-again-section .call-again-container #call-again-to-action:active span {
  background-color: #3572ff;
}
.call-again-section .call-again-container #call-again-to-action:active {
  color: #fff;
}

.call-again-container.shopify {
  background: #92ff86;
  background: linear-gradient(90deg, rgb(146, 255, 134) 0%, rgb(144, 237, 81) 100%);
}
.call-again-container.shopify h2 {
  color: rgba(0, 0, 0, 0.6901960784);
}
.call-again-container.shopify p {
  color: rgba(0, 0, 0, 0.6901960784);
}
.call-again-container.shopify #call-again-to-action {
  text-wrap: nowrap;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  background-color: #ffffff;
  color: rgba(0, 0, 0, 0.6901960784);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-weight: 600;
  overflow: hidden;
  z-index: 1;
  margin-right: -2px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border: 2px solid #ffffff;
  transition: color 400ms ease 0s, border 200ms ease 0s, font-weight 250ms ease 0s;
}
.call-again-container.shopify #call-again-to-action span {
  background: #92ff86;
  background: linear-gradient(90deg, rgb(146, 255, 134) 0%, rgb(144, 237, 81) 100%);
}
.call-again-container.shopify #call-again-to-action:hover {
  border-color: rgba(0, 0, 0, 0.6901960784);
  color: rgba(0, 0, 0, 0.6901960784);
  transition: color 100ms ease 0s;
}
@media (hover: none) and (pointer: coarse) {
  .call-again-container.shopify #call-again-to-action:hover {
    color: #92ff86;
    transition: none;
  }
}
.call-again-container.shopify #call-again-to-action:active span {
  background-color: #92ff86;
}
.call-again-container.shopify #call-again-to-action:active {
  color: rgba(0, 0, 0, 0.6901960784);
}

/*FOOTER*/
footer {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}
@media screen and (max-width: 400px) {
  footer {
    padding: 1rem;
  }
}

footer .row-1 {
  display: flex;
}
@media screen and (max-width: 760px) {
  footer .row-1 {
    flex-direction: column;
    gap: 20px;
  }
}
footer .row-1 .column-1, footer .row-1 .column-2 {
  width: 50%;
}
@media screen and (max-width: 760px) {
  footer .row-1 .column-1, footer .row-1 .column-2 {
    width: 100%;
  }
}
@media screen and (min-width: 760px) {
  footer .row-1 .column-1 ul {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media screen and (max-width: 760px) {
  footer .row-1 .column-1 ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 10px;
  }
}
@media screen and (max-width: 600px) {
  footer .row-1 .column-1 ul {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
  }
}
footer .row-1 .column-1 ul li a {
  font-size: clamp(0.75rem, 0.6759rem + 0.3704vw, 1rem);
  font-weight: 500;
}
@media screen and (min-width: 760px) {
  footer .row-1 .column-1 ul li {
    margin-top: 5px;
  }
}
footer .row-1 .column-1 ul li a:hover {
  color: #3572ff;
}
footer .row-1 h3 {
  color: #8a8a8a;
  margin-bottom: 15px;
  font-size: clamp(0.75rem, 0.6759rem + 0.3704vw, 1rem);
}
footer .row-1 #message-newsletter {
  font-size: clamp(0.5rem, 0.4259rem + 0.3704vw, 0.75rem);
  font-weight: 500;
  padding: 1rem;
  color: #111;
}
footer .row-1 .newsletter-container .newsletter-input-container {
  background-color: #fff;
  display: flex;
  border: 2px solid #3572ff;
  gap: 10px;
  padding: 1rem;
  border-radius: 100px;
}
footer .row-1 .newsletter-container .newsletter-input-container input {
  font-size: clamp(0.75rem, 0.6759rem + 0.3704vw, 1rem);
  color: #111;
}
footer .row-1 .newsletter-container .newsletter-input-container ::-moz-placeholder {
  font-size: clamp(0.75rem, 0.6759rem + 0.3704vw, 1rem);
  color: #111;
}
footer .row-1 .newsletter-container .newsletter-input-container ::placeholder {
  font-size: clamp(0.75rem, 0.6759rem + 0.3704vw, 1rem);
  color: #111;
}
footer .row-1 .newsletter-container .validating-input-container {
  animation: pulse-ani2 700ms linear infinite alternate;
}
footer .row-1 .newsletter-container button svg path {
  stroke: #3572ff;
}
footer .row-1 .newsletter-container button:disabled {
  cursor: not-allowed;
}
footer .row-1 .newsletter-container .submit-button-animation svg path {
  animation: pulse-ani1 700ms linear infinite alternate;
}
footer .row-1 .newsletter-container .submit-button-glow svg path {
  stroke: #3572ff;
  stroke-width: 2;
}
footer .row-1 .newsletter-container .agree-container {
  display: flex;
  gap: 5px;
  margin-top: 15px;
}
footer .row-1 .newsletter-container .agree-container label {
  line-height: 1.2;
  margin: 3.5px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(0.5rem, 0.4259rem + 0.3704vw, 0.75rem);
}
footer .row-1 .newsletter-container .agree-container label a {
  text-decoration: underline;
}

footer .row-1 .newsletter-container.shopify .newsletter-input-container {
  border: 2px solid #33d921;
}
footer .row-1 .newsletter-container.shopify button svg path {
  stroke: #33d921;
}
footer .row-1 .newsletter-container.shopify .submit-button-glow svg path {
  stroke: #33d921;
}

.extrem-focus {
  position: relative;
  z-index: 16;
}

footer .row-2 {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}
footer .row-2 .column-1 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: -moz-max-content;
  width: max-content;
}
footer .row-2 .column-1 .policy-links ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
footer .row-2 .column-1 .policy-links ul .language-container {
  width: 25px;
  height: 25px;
}
footer .row-2 .column-1 .policy-links ul button {
  width: 25px;
  height: 25px;
  border-radius: 15px;
  overflow: hidden;
  position: absolute;
}
footer .row-2 .column-1 .policy-links ul button svg {
  width: 25px;
  height: 25px;
  position: absolute;
  transition: all 200ms ease-out;
}
footer .row-2 .column-1 .policy-links ul button svg:first-of-type {
  top: 0;
  left: 0;
  z-index: 1;
}
footer .row-2 .column-1 .policy-links ul button svg:last-of-type {
  top: 25px;
  left: 0;
  z-index: 2;
}
footer .row-2 .column-1 .policy-links ul button:hover svg:last-of-type {
  top: 0px;
  left: 0;
}
footer .row-2 .column-1 .policy-links ul li a {
  font-weight: 500;
  font-size: clamp(0.75rem, 0.6759rem + 0.3704vw, 1rem);
}
footer .row-2 .column-1 .policy-links ul li a:hover {
  color: #3572ff;
}
footer .row-2 .column-1 .copyright-container {
  font-size: clamp(0.75rem, 0.6759rem + 0.3704vw, 1rem);
}
footer .row-2 .column-1 .social-container {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  /* svg path{
    stroke: #676767;
  } */
}
footer .row-2 .column-1 .social-container a:hover svg path {
  fill: #3572ff;
}
footer .row-2 .column-2 {
  width: 50%;
  display: flex;
}
@media screen and (max-width: 600px) {
  footer .row-2 .column-2 {
    display: none;
  }
}
footer .row-2 .column-2 .footer-logo {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: auto;
  margin-left: auto;
}
footer .row-2 .column-2 .footer-logo span {
  font-weight: 800;
  color: #3572ff;
}

@keyframes pulse-ani1 {
  from {
    stroke: #8a8a8a;
  }
  to {
    stroke: #ccc;
  }
}
@keyframes pulse-ani2 {
  from {
    border-color: #8a8a8a;
  }
  to {
    border-color: #ccc;
  }
}
/*CONTACT*/
#form-feedback {
  padding: 1rem;
  padding-top: 1rem;
  color: #fff;
  font-size: clamp(0.625rem, 0.5694rem + 0.2778vw, 0.8125rem);
  font-weight: 500;
}

.contact-section {
  background-color: #0a0a0a;
  display: flex;
}
@media screen and (max-width: 760px) {
  .contact-section {
    flex-direction: column-reverse;
  }
}
.contact-section form {
  padding: 2rem;
  padding-top: 100px;
  padding-bottom: 200px;
  width: 50%;
}
@media screen and (max-width: 760px) {
  .contact-section form {
    width: 100%;
    padding: 1rem;
    padding-top: 50px;
    border-top: 1px solid #454545;
  }
}
.contact-section h1 {
  font-size: clamp(1.5rem, 0.75rem + 3vw, 3rem);
  color: #3572ff;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
}
@media screen and (max-width: 760px) {
  .contact-section h1 {
    margin-bottom: 25px;
  }
}

.contact-section .contact-banner {
  background: url(contact-banner.webp);
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
@media screen and (min-width: 760px) {
  .contact-section .contact-banner {
    position: sticky;
    top: 6px;
    left: 0px;
    z-index: 2;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    max-height: 100vh;
    width: 50%;
    padding-top: 50px;
  }
}
@media screen and (max-width: 760px) {
  .contact-section .contact-banner {
    width: 100%;
    padding-top: 50px;
  }
}
.contact-section .contact-banner h2 {
  margin-bottom: 30px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-align: left;
  font-size: clamp(0.875rem, 0.8009rem + 0.3704vw, 1.125rem);
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  padding: 20px;
}
.contact-section .contact-banner ul {
  margin: 0 auto;
  margin-top: 80px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #181818;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px;
  padding-left: 40px;
}
.contact-section .contact-banner ul li {
  margin-left: 20px;
  color: #ebebeb;
  font-weight: 500;
  position: relative;
  font-size: clamp(0.75rem, 0.7509rem + 0.3704vw, 1rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: start;
}
.contact-section .contact-banner ul li p {
  font-size: clamp(0.55rem, 0.609rem + 0.3704vw, 0.75rem);
  color: #636363;
}
.contact-section .contact-banner ul li:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -40px;
  width: 25px;
  height: 25px;
  background-color: #3572ff;
  border-radius: 20px;
}
.contact-section .contact-banner ul li:before {
  z-index: 2;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 1px)) rotate(45deg);
  left: -30px;
  width: 6px;
  height: 12px;
  border-right: 2px solid #ebebeb;
  border-bottom: 2px solid #ebebeb;
}

@keyframes pulse-logo1 {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}
@keyframes pulse-logo2 {
  from {
    transform: scale(1.2);
  }
  to {
    transform: scale(1);
  }
}
@keyframes rotateLogo {
  0% {
    transform: rotate(0deg);
  }
  80% {
    transform: rotate(0deg);
  }
  90% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
:root {
  --hue: 200;
  --primary: hsl(var(--hue), 90%, 50%);
  --trans-dur: 0.3s;
  --trans-timing: ease;
}

:root {
  --hue: 200;
  --primary: hsl(var(--hue), 90%, 50%);
  --trans-dur: 0.3s;
  --trans-timing: ease;
}

.clicked-action {
  background-color: #383838 !important;
  color: #b5b5b5 !important;
  border-color: #383838 !important;
}
.clicked-action span {
  opacity: 0;
}

.clicked-action-done {
  background-color: #3572ff !important;
  color: #fff !important;
}

.budget-container {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  border-radius: 20px;
  position: relative;
}
.budget-container span {
  font-weight: 500;
}

.budget-container label {
  cursor: pointer;
  background-color: hsla(0, 0%, 100%, 0);
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 0.75em 1em; /* Reduzierte Polsterung für weniger Höhe */
  height: 46px;
  margin-bottom: 10px; /* Abstand zwischen den Labels */
  transition: background-color var(--trans-dur);
  color: #e0e0e0;
}

input[type=radio] {
  background-color: rgba(255, 255, 255, 0.1215686275);
  border-radius: 50%;
  box-shadow: 0 0 0 0.0625em rgba(255, 255, 255, 0.2), 0 0.125em 0.125em 0.0625em hsla(var(--hue), 90%, 10%, 0.3);
  flex-shrink: 0;
  margin-inline-end: 0.75em;
  outline: transparent;
  position: relative;
  width: 1.25em; /* Reduzierte Breite für kompaktere Darstellung */
  height: 1.25em; /* Reduzierte Höhe für kompaktere Darstellung */
  transition: background-color var(--trans-dur), box-shadow var(--trans-dur);
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

input[type=radio]:before,
input[type=radio]:after {
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  transform: scale(0);
  transition: transform var(--trans-dur) var(--trans-timing);
}

input[type=radio]:before {
  box-shadow: 0 0 0 0.5em #3572ff inset, 0 0 0 0.0625em #3572ff;
  top: -0.0625em;
  left: -0.0625em;
  width: calc(100% + 0.125em);
  height: calc(100% + 0.125em);
}

input[type=radio]:after {
  background-color: hsl(0, 0%, 100%);
  top: 25%;
  left: 25%;
  width: 50%;
  height: 50%;
}

input[type=radio]:checked:before,
input[type=radio]:checked:after {
  transform: scale(1);
}

.budget-container label:has(input[type=radio]:checked),
.budget-container label:has(input[type=radio]:not(:checked)):hover {
  background-color: #181818;
}

.truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.budget-container label {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.budget-container label:has(input[type=radio]:checked) {
  border: 1px solid #3572ff;
}

.budget-container label:has(input[type=radio]:not(:checked)):hover {
  border: 1px solid rgba(53, 114, 255, 0.4352941176);
}

.selection {
  border-radius: 5px;
  box-shadow: 0 0 0 0.125em #3572ff inset;
  display: none;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 46px;
  transition: transform var(--trans-dur) var(--trans-timing);
}

.budget-container label:has(input[type=radio]:checked) ~ .selection {
  animation: fade-in var(--trans-dur) var(--trans-timing);
  display: inherit;
}

.budget-container label:nth-of-type(2):has(input[type=radio]:checked) ~ .selection {
  transform: translateY(0%);
}

.budget-container label:nth-of-type(2):has(input[type=radio]:checked) ~ .selection {
  transform: translateY(calc(100% + 10px));
}

.budget-container label:nth-of-type(3):has(input[type=radio]:checked) ~ .selection {
  transform: translateY(calc(200% + 20px));
}

.budget-container label:nth-of-type(4):has(input[type=radio]:checked) ~ .selection {
  transform: translateY(calc(300% + 30px));
}

/* Animations */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.contact-section .agree-container {
  display: flex;
  gap: 5px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.contact-section .agree-container label {
  margin: 3.5px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(0.625rem, 0.5694rem + 0.2778vw, 0.8125rem);
  color: #e0e0e0;
}
.contact-section .agree-container label a {
  text-decoration: underline;
}

.contact-section {
  /* input[type='text'],input[type='email']{
    border: 1px solid #ffffff33;
    background-color: #141414;
    padding: 1rem;
    border-radius: 5px;
    font-size: clamp(0.75rem, 0.6759rem + 0.3704vw, 1rem);
    color: #e0e0e0;
    transition: all 150ms ease-in-out;
  }
  input[type='text']:focus ,input[type='email']:focus{
    background-color: #303030;
    border: 1px solid #ffffffc4;
  }
  input[type='text']:not(:focus):hover ,input[type='email']:not(:focus):hover{
    background-color: #202020;
  } */
}
.contact-section form h3 {
  font-size: clamp(1.125rem, 0.9769rem + 0.7407vw, 1.625rem);
  padding: 1.5rem 0;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.3882352941);
}
.contact-section form .text-input-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-section .input-label-container {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: #141414;
  border-radius: 5px;
  transition: all 150ms ease-in-out;
  width: 100%;
  /*input:valid + label{
    color: #47ff7b;
  }*/
  /*input:focus:invalid + label{
    color: #ff4747;
  }*/
}
.contact-section .input-label-container input {
  color: #e0e0e0;
  padding: 1.2rem;
  background-color: transparent;
  padding-left: 0;
  font-size: clamp(0.75rem, 0.6759rem + 0.3704vw, 1rem);
  width: 100%;
}
.contact-section .input-label-container label {
  cursor: text;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: absolute;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3882352941);
  height: 100%;
  display: flex;
  align-items: center;
  transition: 300ms ease;
  left: 0.5rem;
}
.contact-section .input-label-container input:not(:-moz-placeholder-shown) + label {
  color: #e0e0e0;
  transform-origin: left;
  transform: translateY(-1.1rem) scale(0.6);
}
.contact-section .input-label-container input:focus + label,
.contact-section .input-label-container input:not(:placeholder-shown) + label {
  color: #e0e0e0;
  transform-origin: left;
  transform: translateY(-1.1rem) scale(0.6);
}
.contact-section .input-label-container input:-webkit-autofill + label {
  color: #e0e0e0;
  transform-origin: left;
  transform: translateY(-1.1rem) scale(0.6);
}
.contact-section .input-label-container:focus-within {
  border: 1px solid rgba(255, 255, 255, 0.768627451);
  background-color: #303030;
}
.contact-section .input-label-container:not(:focus-within):hover {
  background-color: #212121;
}
@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  .contact-section input[type=checkbox] {
    --active: #275EFE;
    --active-inner: #fff;
    --focus: 2px rgba(39, 94, 254, .3);
    --border: #bbc1e13c;
    --border-hover: #275EFE;
    --background: #ffffff33;
    --disabled: #F6F8FF;
    --disabled-inner: #E1E6F9;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 16px;
    width: 16px;
    outline: none;
    display: inline-block;
    border-radius: 5px;
    vertical-align: top;
    position: relative;
    margin: 0;
    cursor: pointer;
    border: 1px solid var(--border);
    background: var(--background);
    transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
  }
  .contact-section input[type=checkbox]:after {
    content: "";
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    width: 5px;
    height: 10px;
    border: 1.75px solid var(--active-inner);
    border-top: 0;
    border-left: 0;
    left: 5px;
    top: 1px;
    transform: rotate(20deg);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.2s;
  }
  .contact-section input[type=checkbox]:checked {
    --background: var(--active);
    border-color: var(--active);
  }
  .contact-section input[type=checkbox]:checked:after {
    opacity: 1;
    transform: rotate(43deg);
  }
  .contact-section input[type=checkbox]:disabled {
    --background: var(--disabled);
    cursor: not-allowed;
    opacity: 0.9;
  }
  .contact-section input[type=checkbox]:disabled:checked {
    --background: var(--disabled-inner);
    border-color: var(--border);
  }
  .contact-section input[type=checkbox]:disabled + label {
    cursor: not-allowed;
  }
  .contact-section input[type=checkbox]:hover:not(:checked):not(:disabled) {
    border-color: var(--border-hover);
  }
  .contact-section input[type=checkbox]:focus {
    box-shadow: 0 0 0 var(--focus);
  }
  .contact-section input[type=checkbox] + label {
    font-size: 14px;
    line-height: 14px;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    margin-left: 4px;
  }
}
.contact-section ::-moz-placeholder {
  font-size: clamp(0.75rem, 0.6759rem + 0.3704vw, 1rem);
  color: #e0e0e0;
}
.contact-section ::placeholder {
  font-size: clamp(0.75rem, 0.6759rem + 0.3704vw, 1rem);
  color: #e0e0e0;
}
.contact-section .name-container {
  display: flex;
  gap: 10px;
}
.contact-section textarea {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  background-color: #141414;
  font-size: clamp(0.75rem, 0.6759rem + 0.3704vw, 1rem);
  color: #e0e0e0;
  resize: none;
  transition: all 150ms ease-in-out;
  --padding: 1rem;
  min-height: calc(2lh + 2 * var(--padding));
  max-height: calc(6lh + 2 * var(--padding));
  field-sizing: content;
  line-height: 1.5;
  padding: var(--padding);
  padding-inline: calc(var(--padding) + (1lh - 1ex) / 2);
}
.contact-section textarea::-webkit-scrollbar {
  width: 7px;
}
.contact-section textarea::-webkit-scrollbar-thumb {
  background-color: black;
  border-right: 3px solid white;
}
.contact-section textarea:focus {
  background-color: #303030;
  border: 1px solid rgba(255, 255, 255, 0.768627451);
}
.contact-section textarea:not(:focus):hover {
  background-color: #202020;
}

#perform-action {
  margin-top: 15px;
  text-wrap: nowrap;
  padding: 0.5rem 1rem;
  height: 52px;
  border-radius: 30px;
  background-color: #0a0a0a;
  color: #3572ff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-weight: 600;
  overflow: hidden;
  z-index: 1;
  width: 100%;
  margin-right: -2px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border: 2px solid #3572ff;
  transition: color 400ms ease 0s, font-weight 250ms ease 0s;
}
#perform-action b {
  background-color: transparent;
  font-weight: 600;
  padding-left: 5px;
  transition: color 400ms ease 0s;
  color: #3572ff;
}

#perform-action span {
  display: block;
  width: 0px;
  height: 0px;
  background-color: #3572ff;
  background-position-x: center;
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease-in-out 0s, height 0.4s ease-in-out 0s, color 100ms ease 0s;
  z-index: -1;
}

#perform-action:hover span {
  width: 1800px;
  height: 1800px;
}

#perform-action:hover {
  color: #fff;
  transition: color 100ms ease 0s;
}
#perform-action:hover b {
  color: #fff;
  transition: color 100ms ease 0s;
}

@media (hover: none) and (pointer: coarse) {
  #perform-action:hover {
    color: #fff;
    transition: none;
  }
}
@media (hover: none) and (pointer: coarse) {
  #perform-action:hover span {
    width: 0;
    height: 0;
  }
}
#perform-action:active span {
  background-color: #3572ff;
}

#perform-action:active {
  color: #fff;
}

/*BLOG*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
/*-------------------------------------------*/
#blog-section {
  color: #111;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
  padding: 150px 25px 100px 25px;
}

#blog-section img {
  width: clamp(10px, 80vw, 1000px);
  border-radius: 10px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-left: 2.5vw;
  margin-right: 2.5vw;
}

#blog-section h1 {
  font-size: clamp(1.75rem, 1.3796rem + 1.8519vw, 3rem);
  padding: 1rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  font-style: italic;
  text-align: center;
  width: clamp(280px, 80vw, 1000px);
  margin-top: 1rem;
  margin-bottom: 100px;
  margin-left: 2.5vw;
  margin-right: 2.5vw;
}

.go-back-container {
  align-self: flex-start;
  margin-left: 5vw;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 50px;
  padding: 0.25rem 1rem;
  border-radius: 10px;
}

.go-back-container a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.go-back-container button {
  cursor: pointer;
  background-color: transparent;
  border: none;
  outline: none;
  color: #929292;
  font-size: clamp(16px, 16px + 0.25vw, 32px);
}

.go-back-container button:hover {
  filter: brightness(1.1);
}

.go-back-container .which-title-container {
  display: flex;
  justify-content: flex-start;
  gap: 0;
}

.go-back-container .which-title-container .go-back-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}

.go-back-container .which-title-container .go-back-icon svg {
  height: clamp(16px, 16px + 0.25vw, 32px);
  width: clamp(9px, 9px + 0.25vw, 18px);
  transform: rotate(180deg);
}

.go-back-container .which-title-container .go-back-icon svg path {
  stroke: #3572ff;
}

.go-back-container .which-title-container .blog-title {
  padding: 0.5rem;
  color: #3572ff;
}

.blog-container p {
  font-size: clamp(0.75rem, 0.6759rem + 0.3704vw, 1rem);
  line-height: 1.4;
  max-width: 1000px;
  margin-bottom: 2rem;
  color: #111;
  font-weight: 500;
}

.blog-container p a {
  color: #3572ff;
}

.blog-container ol {
  padding-left: 25px;
  max-width: 1000px !important;
  font-size: clamp(0.75rem, 0.6759rem + 0.3704vw, 1rem);
  counter-reset: item;
  list-style-type: none;
}
.blog-container ol p {
  font-size: clamp(0.75rem, 0.6759rem + 0.3704vw, 1rem);
}

.blog-container ol .ol-extra-heading {
  max-width: 1000px !important;
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
  font-size: clamp(1.125rem, 0.9769rem + 0.7407vw, 1.625rem);
  padding-top: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  font-style: italic;
  text-align: left;
  color: #111;
}

.blog-container ol li {
  counter-increment: item;
  margin-bottom: 10px;
  position: relative;
}
.blog-container ol li p {
  margin-top: 10px;
  font-size: clamp(0.75rem, 0.6759rem + 0.3704vw, 1rem);
}

.blog-container ol li a {
  color: #3572ff;
}

.blog-container ol li:before {
  content: counter(item) ".";
  font-size: inherit; /* Standardgröße für alle Nummern */
  position: absolute;
  left: -1.5em; /* Abstand von der linken Seite */
  font-weight: bold;
}

.blog-container ol li:before {
  font-size: inherit; /* Größere Nummer für das zweite Element */
  color: #3572ff;
}

.blog-container ol li span {
  color: #3572ff;
  font-weight: bold;
}

.blog-container h2 {
  color: #111;
  font-size: clamp(24px, 0px + 4vw, 40px);
}

.blog-container img {
  margin-top: 25px;
  margin-bottom: 25px;
  margin-right: auto;
  height: clamp(150px, 20vw, 300px) !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  max-width: 100%;
}

.summary-graph {
  margin-top: 20px;
  font-weight: 500;
  font-size: clamp(16px, 7px + 1.5vw, 20px);
}

/*Überschrift*/
.break-word {
  display: inline-block; /* Damit es beim Zeilenumbruch korrekt reagiert */
}

.hyphen {
  display: none; /* Versteckt den Bindestrich standardmäßig */
}

@media screen and (max-width: 760px) { /* Hier können Sie die Breite anpassen */
  .hyphen {
    display: inline; /* Zeigt den Bindestrich nur unter diesen Bedingungen */
  }
}
/*SHOPIFY*/
.which-section {
  overflow: hidden;
  height: 90vh;
  padding-top: 32vh;
  position: relative;
}
.which-section .header-container {
  background-color: #ffffff;
  padding-bottom: 1rem;
}
.which-section .parallax-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background: url(shopify-hero.webp);
  background-size: cover;
  background-position: center;
  z-index: -1;
  transform: translateY(-10%);
}
.which-section .parallax-background.webflow {
  background: url(webflow-hero.webp);
  background-size: cover;
  background-position: center;
}
.which-section .header-container h1, .which-section .header-container h2 {
  z-index: 1;
}
.which-section h1 {
  font-size: clamp(1.75rem, 1.3796rem + 1.8519vw, 3rem);
  padding: 1rem;
  padding-top: 3rem;
  padding-bottom: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  font-style: italic;
  text-align: center;
}
.which-section h1 span.shopify {
  color: #7bff6c;
}
.which-section h1 span.webflow {
  color: #3572ff;
}
.which-section h2 {
  margin: 0 auto;
  font-weight: 500;
  color: #111;
  line-height: 1.3;
  font-size: clamp(0.875rem, 0.8009rem + 0.3704vw, 1.125rem);
  max-width: 1000px;
  text-align: center;
  padding: 1rem;
  padding-top: 0rem;
  padding-bottom: 1rem;
}
.which-section svg {
  display: none;
}

/*PRO SECTON*/
#service-comparison {
  overflow: clip;
  padding: 1rem;
  background-color: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 20px;
}
.section-header h2 {
  font-size: clamp(1.75rem, 1.3796rem + 1.8519vw, 3rem);
  padding: 1rem;
  padding-top: 3rem;
  padding-bottom: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  font-style: italic;
  text-align: center;
}

.section-header p {
  font-size: clamp(0.75rem, 0.6759rem + 0.3704vw, 1rem);
  font-weight: 500;
}

.sticky-headers-wrapper {
  overflow: clip;
  padding: 20px;
  padding-top: 110px;
  position: sticky;
  top: 0;
  background: white;
  z-index: 2;
}

.sticky-headers {
  display: flex;
  width: 100%;
  justify-content: space-around;
}
.sticky-headers h3 {
  font-weight: 500;
  font-weight: bold;
  font-size: clamp(1.125rem, 0.9769rem + 0.7407vw, 1.625rem);
  font-style: italic;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 760px) {
  .sticky-headers-wrapper {
    width: 200vw;
    padding: 0px !important;
    padding-top: 110px !important;
  }
  .sticky-headers-wrapper h3 {
    text-align: center;
    width: 100vw;
  }
}
.comparison-container {
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 760px) {
  .comparison-container {
    flex-direction: column;
  }
}

.comparison-column .diy-column {
  flex: 1;
  padding: 20px;
}

.comparison-column {
  width: 50%;
}
@media screen and (max-width: 900px) {
  .comparison-column {
    width: 100%;
  }
}

.diy-column h3 {
  padding-top: 110px;
}

.diy-header {
  color: #e60000;
}

.service-header {
  color: #33d921;
}

.diy-column {
  height: -moz-fit-content;
  height: fit-content;
}

.comparison-column ul {
  list-style-type: none;
  padding: 10px;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
}

.comparison-column li {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  transition: opacity 120ms ease, background-color 200ms ease;
  height: 100px;
  position: relative;
  padding: 20px;
  border-radius: 10px;
  font-weight: 600;
  color: #111;
  display: flex;
  gap: 20px;
  align-items: center;
  scale: 0.7;
}
@media screen and (max-width: 1400px) {
  .comparison-column li {
    height: calc(70px + clamp(1rem, 0.9769rem + 0.7407vw, 1.3rem));
  }
}
@media screen and (max-width: 900px) {
  .comparison-column li {
    height: calc(100px + clamp(1rem, 0.9769rem + 0.7407vw, 1.3rem));
  }
}
.comparison-column li p {
  line-height: 1.3;
  font-size: clamp(1rem, 0.9769rem + 0.7407vw, 1.3rem);
  flex: 1;
}

.service-column li:hover {
  opacity: 0.65;
}

.diy-column li:hover {
  background-color: rgb(255, 235, 235);
}

.diy-column li {
  border: 2px solid red;
  transform-origin: left;
}

.service-column li {
  transform-origin: right;
  background-color: #92ff86;
  border: 2px solid transparent;
}
.service-column li p {
  color: rgba(0, 0, 0, 0.6901960784);
}

.diy-column svg {
  font-size: clamp(1.125rem, 0.9769rem + 0.7407vw, 1.625rem);
  font-size: clamp(1.125rem, 0.9769rem + 0.7407vw, 1.625rem);
}
.diy-column svg path {
  stroke: red;
}

.service-column svg {
  font-size: clamp(1.125rem, 0.9769rem + 0.7407vw, 1.625rem);
  font-size: clamp(1.125rem, 0.9769rem + 0.7407vw, 1.625rem);
}
.service-column svg path {
  stroke: rgba(0, 0, 0, 0.5882352941);
  stroke-width: 2.5px;
}

#service-comparison.webflow .comparison-column li {
  height: auto;
}
@media screen and (min-width: 1400px) {
  #service-comparison.webflow .comparison-column li {
    height: calc(70px + clamp(1rem, 0.9769rem + 0.7407vw, 1.3rem));
  }
}
@media screen and (max-width: 1400px) {
  #service-comparison.webflow .comparison-column li {
    height: calc(80px + clamp(1rem, 0.9769rem + 0.7407vw, 1.3rem));
  }
}
@media screen and (max-width: 900px) {
  #service-comparison.webflow .comparison-column li {
    height: calc(110px + clamp(1rem, 0.9769rem + 0.7407vw, 1.3rem));
  }
}
@media screen and (max-width: 480px) {
  #service-comparison.webflow .comparison-column li {
    height: calc(150px + clamp(1rem, 0.9769rem + 0.7407vw, 1.3rem));
  }
}
#service-comparison.webflow .comparison-column li p {
  font-size: clamp(0.75rem, 0.9769rem + 0.657vw, 1.3rem);
}
#service-comparison.webflow .service-column li {
  background-color: #3572ff;
}
#service-comparison.webflow .service-column li p {
  color: white;
}
#service-comparison.webflow .service-column li svg path {
  stroke: white;
}
#service-comparison.webflow .service-header {
  color: #3766ff;
}

#bonus-section {
  background-color: white;
}
#bonus-section .header-container h2 {
  font-size: clamp(1.75rem, 1.3796rem + 1.8519vw, 3rem);
  padding: 1rem;
  padding-top: 3rem;
  padding-bottom: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  font-style: italic;
  text-align: center;
  color: #111;
}
#bonus-section .header-container p {
  text-align: center;
  font-size: clamp(0.75rem, 0.6759rem + 0.3704vw, 1rem);
  font-weight: 500;
  color: #111;
  margin-bottom: 25px;
}
#bonus-section .bonus-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}
#bonus-section .bonus-container {
  box-shadow: 0 2px 8px 0 rgba(39, 85, 164, 0.3);
  padding: 1rem;
  border-radius: 10px;
  max-width: 1400px;
  margin-bottom: 20px;
  width: 100%;
}
#bonus-section .bonus-container h3 {
  font-size: clamp(0.875rem, 0.8009rem + 0.3704vw, 1.125rem);
  padding-bottom: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  font-style: italic;
  text-align: left;
  color: #111;
}
#bonus-section .bonus-container p {
  padding-bottom: 1rem;
}
#bonus-section .bonus-container button {
  font-weight: 600;
  color: #3572ff;
}
#bonus-section .bonus-container ul {
  padding-top: 1rem;
  display: none;
  flex-direction: column;
  gap: 20px;
}
#bonus-section .bonus-container ul li {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#bonus-section .bonus-container ul li h4, #bonus-section .bonus-container ul li p {
  width: -moz-fit-content;
  width: fit-content;
  text-align: left;
}
#bonus-section .bonus-container ul li h4 {
  font-weight: 600;
}
#bonus-section .bonus-wrapper.shopify button {
  color: #23aa14;
}/*# sourceMappingURL=style.css.map */