:root {
	--primary: #ffffff;
	--secondary: #d0d0d0;
	--purple: #7323FF;
	--purple-hover: #5117B8;
	--black: #000000;
	--dark-blue: #0e0028;
	--light-blue: #94EBF7;
	--yellow: #FFE871;
	--pink: #FFACF8;
	--light-brown: #F5EBE9;
	--light-green: #B9FFC2;
	--light-gold: #FFE6C0;
	--light-purple: #CF91FF;
	--body-font: "Poppins", sans-serif, system-ui;
}

body {
	font-family: var(--body-font);
	color: var(--primary);
	font-size: 16px;
	font-weight: 300;
	font-style: normal;
	scroll-behavior: smooth;
	line-height: 160%;
	letter-spacing: 0;
	background: var(--dark-blue);
	-webkit-tap-highlight-color: transparent;
}

body.popup-on {
	overflow: auto !important;
}

a,
a:hover {
	color: var(--purple);
	text-decoration: none;
}

p {
	margin-bottom: 20px;
}

.MagicMakers__Cta {
	text-align: center;
	gap: 0;
	display: -ms-grid;
	display: grid;
	margin: 0 auto;
}

.MagicMakers__Section .MagicMakers__Cta {
	margin-top: 24px;
	margin-left: auto;
	margin-right: auto;
}

.MagicMakers__Button::before {
	content: '';
	position: absolute;
	width: 0;
	height: 100%;
	left: 0;
	top: 0;
	background: #01A0C6;
	-webkit-transition: width 0.1s linear;
	-o-transition: width 0.1s linear;
	transition: width 0.1s linear;
}

.MagicMakers__Button::before {
	--size: 0;
	content: '';
	position: absolute;
	left: var(--x);
	top: var(--y);
	width: var(--size);
	height: var(--size);
	background: -o-radial-gradient(center, circle, rgb(155 9 235 / 80%) 0, rgba(140, 100, 255, 0) 50%) no-repeat;
	background: radial-gradient(circle at center, rgb(155 9 235 / 80%) 0, rgba(140, 100, 255, 0) 50%) no-repeat;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	-webkit-transition: width 0.2s ease, height 0.2s ease;
	-o-transition: width 0.2s ease, height 0.2s ease;
	transition: width 0.2s ease, height 0.2s ease;
}

.MagicMakers__Button:hover::before {
	--size: 100px;
}

.MagicMakers__Button:hover::before {
	width: 100%;
}
/*! MagicMakers Header */
.MagicMakers__header {
	width: 100%;
	height: 100%;
	min-height: 65vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-line-pack: center;
	    align-content: center;
	overflow: hidden;
}

.MagicMakers__nav {
	padding-top: 20px;
	padding-bottom: 40px;
}

.MagicMakers__logo {
	max-width: 110px;
}

.MagicMakers__Hero {
	display: -ms-grid;
	display: grid;
	gap: 16px 0;
	position: relative;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: start;
	width: 100%;
	background: transparent;
}

.MagicMakers__Headline {
	text-align: center;
}

.MagicMakers__Hero h1 {
	color: var(--primary);
	font-size: 44px;
	font-style: normal;
	font-weight: 800;
	line-height: 100%;
	letter-spacing: -2px;
	margin-bottom: 10px;
	font-size: 9.5vw;
}

.MagicMakers__Hero h2 {
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: 140%;
	display: none;
}

.MagicMakers__Hero .pre-headline {
	background: rgba(255, 255, 255, 0.10);
	display: inline-block;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	padding: 6px 10px;
	margin: 0 auto 16px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
}

.MagicMakers__Button {
	position: relative;
	background: var(--purple);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 36px;
	padding: 22px 18px 22px 22px;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 4px;
	-ms-flex-item-align: stretch;
	    -ms-grid-row-align: stretch;
	    align-self: stretch;
	border-radius: 5px;
	-webkit-box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.15);
	        box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.15);
	cursor: pointer;
	overflow: hidden;
	font-weight: 500;
	-webkit-transition: all .1s linear;
	-o-transition: all .1s linear;
	transition: all .1s linear;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto 16px;
}

.MagicMakers__Button:hover {
	background-image: -webkit-gradient(linear, left bottom, right top, from(#5111d0), color-stop(#6812de), to(#7e12eb)) !important;
	background-image: -o-linear-gradient(left bottom, #5111d0, #6812de, #7e12eb) !important;
	background-image: linear-gradient(to right top, #5111d0, #6812de, #7e12eb) !important;
	gap: 0 8px;
}

.MagicMakers__Button * {
	position: relative;
}

.Button__Big {
	font-size: 18px;
	height: 54px;
	min-width: 220px;
	max-width: 340px;
	margin: 0 auto;
}

.MagicMakers__Button + span {
	font-size: 95%;
	letter-spacing: 0;
	padding: 0 6px;
	width: 60%;
	margin: 0 auto;
	display: block;
	line-height: 140%;
}

#MagicMakers__String {
	opacity: 0;
	visibility: hidden;
	text-indent: -9999999px;
	width: 1px;
	height: 1px;
}

#swiper--header .splide__slide .slide {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

#swiper--header .splide__slide .slide::before {
	content: '';
	padding-top: 130%;
	display: -ms-grid;
	display: grid;
}

#swiper--header {
	margin-bottom: 0;
}

#swiper--header .splide__slide .slide div {
	background-size: cover;
	background-position: center;
	height: 100%;
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	border-radius: 16px;
	overflow: hidden;
}

#swiper--header .splide__track {
	overflow: visible;
}

/*!
 * MagicMakers Sections.
 */
.MagicMakers__Section {
	padding-top: 30px;
	padding-bottom: 30px;
	position: relative;
}

.Section__Title {
	text-align: center;
	margin: 0 auto 26px;
	padding: 0 0;
}

.Section__Title h3 {
	display: inline-block;
	margin: 0 auto 10px;
	text-align: center;
	color: var(--primary);
	font-size: 21px;
	line-height: 120%;
	letter-spacing: -0.5px;
	font-weight: 700;
}

.MagicMakers__BottomCta .Section__Title h3 {
	font-weight: 800;
}

.Section__Title h4 {
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: 140%;
	letter-spacing: 0;
	padding: 0 20px;
}

.Section__Title h4 a {
	text-decoration: underline;
}

.nav__scrolling ul {
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 0 80px;
	margin: 0;
	padding: 0 80px;
}

.nav__scrolling {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.nav__scrolling ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 0 14px;
}

.nav__scrolling ul {
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 0 30px;
	margin: 0;
	padding: 0 20px;
	color: #F3EBE9;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
}

.nav__scrolling {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	border-bottom: 1px solid #dddddd2b;
	margin-bottom: 24px;
}

.nav__scrolling ul li {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 0 6px;
	padding-bottom: 8px;
	cursor: pointer;
	opacity: 0.7;
	-webkit-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
}

.nav__scrolling ul li.active,
.nav__scrolling ul li:hover {
	opacity: 1;
}

.nav__scrolling ul li::after {
	content: '';
	position: absolute;
	width: 0%;
	height: 3px;
	background: var(--purple);
	border-radius: 44px;
	bottom: -2px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	-webkit-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
}

.nav__scrolling ul li.active::after,
.nav__scrolling ul li:hover::after {
	width: 100%;
}

.swiper-container {
	margin-bottom: 10px;
}

.splide__slide {
	padding-left: 5px;
	padding-right: 5px;
	width: 140px;
	position: relative;
}

.splide__slide .slide {
	border-radius: 16px;
	overflow: hidden;
}

.step__title {
	color: var(--primary);
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 130%;
	letter-spacing: -0.3px;
	text-align: center;
	margin: 0 auto;
}

.MagicMakers__Steps {
	display: -ms-grid;
	display: grid;
	padding-left: 16px;
	padding-right: 16px;
	text-align: center;
	gap: 34px 0;
}

.MagicMakers__Step {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	gap: 16px;
	justify-items: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-ms-flex-line-pack: center;
	    align-content: center;
}

.step__illustration {
	max-width: 220px;
	text-align: center;
}

.step__desc {
	padding: 0 20px;
	text-align: center;
}

.MagicMakers__Examples .Section__Title h3 {
	padding: 0 40px;
}

.MagicMakers__Examples img {
	position: absolute;
	margin: 0 auto;
	width: 60%;
	left: 50%;
	top: 46%;
	-webkit-transform: translate(-50%,-50%);
	    -ms-transform: translate(-50%,-50%);
	        transform: translate(-50%,-50%);
}

.MagicMakers__Examples .splide__slide {
	width: 220px;
}

.MagicMakers__Examples .slide {
	position: relative;
	width: 100%;
	display: -ms-grid;
	display: grid;
	-ms-grid-rows: 1fr auto;
	grid-template-rows: 1fr auto;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	border-radius: 16px;
	background: #fff;
}

.MagicMakers__Examples .slide::before {
	content: '';
	padding-top: 125%;
}

.MagicMakers__Examples .slide div {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-size: cover;
}

.MagicMakers__Examples .slide span {
	position: absolute;
	bottom: 16px;
	padding: 4px 10px;
	color: var(--primary);
	font-size: 13px;
	font-weight: 400;
	line-height: normal;
	letter-spacing: -0.3px;
	background: #000;
	display: inline-block;
	left: 16px;
	border-radius: 4px;
	font-weight: 600;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	max-width: calc(100% - 32px);
}

.MagicMakers__BottomCta {
	background-size: cover;
	background-position: center center;
	display: -ms-grid;
	display: grid;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.MagicMakers__BottomCta > * {
	position: relative;
}

.MagicMakers__BottomCta .Section__Title {
	margin-bottom: 20px;
}

.MagicMakers__BottomCta .MagicMakers__Cta {
	margin-top: 0 !important;
}

.benefits {
	display: -ms-grid;
	display: grid;
	gap: 10px;
	font-size: 16px;
	justify-items: center;
	padding: 0 20px;
}

.benefit {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
}

.question {
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 140%;
	color: var(--primary);
	position: relative;
	cursor: pointer;
	padding-right: 40px;
}

.question::before,
.question::after {
	content: '';
	position: absolute;
	width: 14px;
	height: 4px;
	background: #fff;
	border-radius: 10px;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	-webkit-transform-origin: center center;
	    -ms-transform-origin: center center;
	        transform-origin: center center;
}

.question::before {
	width: 4px;
	height: 14px;
	right: 5px;
}

.faq:not(.opened) .question::before,
.faq:not(.opened) .question::after {
	background: var(--primary);
}

.faq.opened .question::before {
	display: none;
}

.answer {
	display: none;
}

.faqs {
	display: -ms-grid;
	display: grid;
	gap: 16px;
	padding: 0 16px;
}

.faq {
	display: -ms-grid;
	display: grid;
	gap: 10px;
	padding: 16px 20px;
	background: #2d1a6414;
	border-radius: 20px;
}

.MagicMakers__Footer {
	font-size: 15px;
}

.Footer__Social h4 {
	font-size: 26px;
	margin: 0 0 10px;
	letter-spacing: -1px;
	color: var(--primary);
}

.Footer__Social {
	display: -ms-grid;
	display: grid;
	gap: 16px 0;
	padding: 0 16px;
}

.Social__linkWrapper {
	border-bottom: 1px solid #1f1f1f;
	position: relative;
	overflow: hidden;
}

.Social__Link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	font-size: 20px;
	line-height: 120%;
	letter-spacing: -0.3px;
	gap: 30px;
	padding-bottom: 16px;
	color: var(--primary);
}

.Social__Link > span {
	position: relative;
	display: -ms-grid;
	display: grid;
	width: 100%;
	padding: 0 34px;
}

.social__carousel {
	position: absolute;
	width: 100%;
	top: 0;
}

.social__carousel .splide__slide {
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	padding: 0;
}

.social__carousel .splide__slide .slide {
	border-radius: 0;
}

.social__carousel .splide__list {
	gap: 0 30px;
}

.Social__linkWrapper > .Social__Link * {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 10px;
	padding-right: 50px;
	color: var(--primary);
}

.social__carousel .Social__Link > span {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 10px;
	position: relative;
	padding-right: 50px;
}

.Social__Instagram:before,
.Social__Facebook:before,
.Social__Linkedin:before,
.Social__Twitter:before {
	content: '';
	width: 24px;
	height: 24px;
	background: url('../images/social-icons.svg') no-repeat;
	background-position: 25% 0%;
	display: inline-block;
	background-size: cover;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}

.Social__Facebook:before {
	background-position: 0 0;
}

.Social__Linkedin:before {
	background-position: 50% 0;
}

.Social__Twitter:before {
	background-position: 75% 0;
}

.Social__Link > span::after {
	content: '';
	position: absolute;
	width: 32px;
	height: 32px;
	background: url('../images/social-icons.svg') no-repeat;
	background-position: 100% 0%;
	right: 0;
	top: 50%;
	background-size: cover;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}

.social__carousel:hover .Social__Link > span::after {
	background-image: url('../images/social-icons-hover.svg');
}

.Footer__Copyright {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 24px 0px;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	text-align: center;
	gap: 10px 0;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.Footer__Copyright ul {
	list-style: none;
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 0 20px;
	padding: 0;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-ordinal-group: 0;
	    -ms-flex-order: -1;
	        order: -1;
}

.Footer__Copyright a {
	color: var(--primary);
}

.Footer__Copyright a:hover {
	color: var(--primary);
	text-decoration: underline;
}

.Footer__Copyright > span {
	width: 68%;
	margin: 0 auto;
}

#MagicMakers__Typed {
	display: block;
}

.MagicMakers__Brandstrip {
	text-align: center;
	padding-top: 40px;
}

.MagicMakers__Brandstrip h3 {
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 0;
	margin-bottom: 0;
	font-weight: 600;
	line-height: 160%;
}

.MagicMakers__Brandstrip .Section__Title {
	margin-bottom: 16px;
}

.MagicMakers__form {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	display: -ms-grid;
	display: grid;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	justify-items: center;
	display: none;
	z-index: 99;
}

.MagicMakers__form.opened {
	display: -ms-grid;
	display: grid;
}

.MagicMakers__form form-widget {
	width: 80%;
}

.MagicMakers__form::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: var(--dark-blue);
	opacity: 0.9;
}

.MagicMakers__slider {
	position: relative;
	margin-bottom: 10px;
}

.MagicMakers__nav .MagicMakers__Cta {
	position: relative;
	z-index: 2;
	margin: 0;
}

.MagicMakers__nav .MagicMakers__Button {
	font-size: 14px;
	height: 32px;
	padding: 18px 12px 18px 16px;
	margin-bottom: 0;
}

.MagicMakers__Showcase .image__background {
	height: 40vh;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 100%;
}

#swiper--header .splide__slide:not(.is-active) div {
	opacity: 0.2;
	-webkit-filter: blur(0.5px);
	filter: blur(0.5px);
}

#swiper--header .swiper-slide.is-active::before {
	content: '';
	position: absolute;
	width: 84%;
	height: 90%;
	background: linear-gradient(45deg, #ff0000, #ff9900, #ffff00, #33cc33, #00ccff, #9933ff, #ff33cc);
	background-size: 200% 200%;
	left: 8%;
	top: 5%;
	filter: blur(24px);
	opacity: 1;
	border-radius: 16px;
}
.splide__arrow {
    border: none;
    background: transparent;
    position: absolute;
    width: 60px;
    top: 50%;
    left: 0;
    margin-top: -30px;
    z-index: 2;
    opacity: 0.3;
    transform: rotate(-90deg);
    height: 60px;
}
.splide__arrow:hover {
	opacity: 1;
}
.splide__arrow--next {
    left: auto;
    right: 0;
}
.splide__arrow svg {
    width: 100%;
    height: auto;
}
.splide__arrow svg path {
    stroke: #fff;
}

:root {
	--color-bg1: #6c00a2;
	--color-bg2: #001152;
	--color1: 18, 113, 255;
	--color2: 221, 74, 255;
	--color3: 100, 220, 255;
	--color4: 200, 50, 50;
	--color5: 180, 180, 50;
	--color-interactive: 140, 100, 255;
	--circle-size: 70%;
	--blending: hard-light;
}

@-webkit-keyframes moveInCircle {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes moveInCircle {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes moveVertical {
	0% {
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	50% {
		-webkit-transform: translateY(50%);
		transform: translateY(50%);
	}

	100% {
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}
}

@keyframes moveVertical {
	0% {
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	50% {
		-webkit-transform: translateY(50%);
		transform: translateY(50%);
	}

	100% {
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}
}

@-webkit-keyframes moveHorizontal {
	0% {
		-webkit-transform: translateX(-50%) translateY(-10%);
		transform: translateX(-50%) translateY(-10%);
	}

	50% {
		-webkit-transform: translateX(50%) translateY(10%);
		transform: translateX(50%) translateY(10%);
	}

	100% {
		-webkit-transform: translateX(-50%) translateY(-10%);
		transform: translateX(-50%) translateY(-10%);
	}
}

@keyframes moveHorizontal {
	0% {
		-webkit-transform: translateX(-50%) translateY(-10%);
		transform: translateX(-50%) translateY(-10%);
	}

	50% {
		-webkit-transform: translateX(50%) translateY(10%);
		transform: translateX(50%) translateY(10%);
	}

	100% {
		-webkit-transform: translateX(-50%) translateY(-10%);
		transform: translateX(-50%) translateY(-10%);
	}
}

.gradient-bg {
	width: 100vw;
	height: 100vh;
	position: relative;
	overflow: hidden;
	/* background: -o-linear-gradient(50deg, var(--color-bg1), var(--color-bg2));
	background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2)); */
	top: 0;
	left: 0;
	opacity: 0.3;
	position: fixed;
	z-index: -1;
}

.gradient-bg svg {
	display: none;
}

.gradient-bg .gradients-container {
	-webkit-filter: url(#goo) blur(40px);
	filter: url(#goo) blur(20px);
	width: 100%;
	height: 100%;
}

.gradient-bg .g1 {
	position: absolute;
	background: -o-radial-gradient(center, circle, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
	background: radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
	mix-blend-mode: var(--blending);
	width: var(--circle-size);
	height: var(--circle-size);
	top: calc(50% - var(--circle-size) / 2);
	left: calc(50% - var(--circle-size) / 2);
	-webkit-transform-origin: center center;
	-ms-transform-origin: center center;
	transform-origin: center center;
	-webkit-animation: moveVertical 30s ease infinite;
	animation: moveVertical 30s ease infinite;
	opacity: 1;
}

.gradient-bg .g2 {
	position: absolute;
	background: -o-radial-gradient(center, circle, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%) no-repeat;
	background: radial-gradient(circle at center, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%) no-repeat;
	mix-blend-mode: var(--blending);
	width: var(--circle-size);
	height: var(--circle-size);
	top: calc(50% - var(--circle-size) / 2);
	left: calc(50% - var(--circle-size) / 2);
	-webkit-transform-origin: calc(50% - 400px);
	-ms-transform-origin: calc(50% - 400px);
	transform-origin: calc(50% - 400px);
	animation: moveInCircle 20s reverse infinite;
	opacity: 1;
}

.gradient-bg .g3 {
	position: absolute;
	background: -o-radial-gradient(center, circle, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
	background: radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
	mix-blend-mode: var(--blending);
	width: var(--circle-size);
	height: var(--circle-size);
	top: calc(50% - var(--circle-size) / 2 + 200px);
	left: calc(50% - var(--circle-size) / 2 - 500px);
	-webkit-transform-origin: calc(50% + 400px);
	-ms-transform-origin: calc(50% + 400px);
	transform-origin: calc(50% + 400px);
	-webkit-animation: moveInCircle 40s linear infinite;
	animation: moveInCircle 40s linear infinite;
	opacity: 1;
}

.gradient-bg .g4 {
	position: absolute;
	background: -o-radial-gradient(center, circle, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
	background: radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
	mix-blend-mode: var(--blending);
	width: var(--circle-size);
	height: var(--circle-size);
	top: calc(50% - var(--circle-size) / 2);
	left: calc(50% - var(--circle-size) / 2);
	-webkit-transform-origin: calc(50% - 200px);
	-ms-transform-origin: calc(50% - 200px);
	transform-origin: calc(50% - 200px);
	-webkit-animation: moveHorizontal 40s ease infinite;
	animation: moveHorizontal 40s ease infinite;
	opacity: 0.7;
}

.gradient-bg .g5 {
	position: absolute;
	background: -o-radial-gradient(center, circle, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%) no-repeat;
	background: radial-gradient(circle at center, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%) no-repeat;
	mix-blend-mode: var(--blending);
	width: calc(var(--circle-size) * 2);
	height: calc(var(--circle-size) * 2);
	top: calc(50% - var(--circle-size));
	left: calc(50% - var(--circle-size));
	-webkit-transform-origin: calc(50% - 800px) calc(50% + 200px);
	-ms-transform-origin: calc(50% - 800px) calc(50% + 200px);
	transform-origin: calc(50% - 800px) calc(50% + 200px);
	-webkit-animation: moveInCircle 20s ease infinite;
	animation: moveInCircle 20s ease infinite;
	opacity: 1;
}
.gradient-bg .interactive {
	position: absolute;
	background: -o-radial-gradient(center, circle, rgba(var(--color-interactive), 0.8) 0, rgba(var(--color-interactive), 0) 50%) no-repeat;
	background: radial-gradient(circle at center, rgba(var(--color-interactive), 0.8) 0, rgba(var(--color-interactive), 0) 50%) no-repeat;
	mix-blend-mode: var(--blending);
	width: 100%;
	height: 100%;
	top: -50%;
	left: -50%;
	opacity: 0.8;
}


@media (min-width: 768px) {
	.MagicMakers__Steps {
		-ms-grid-columns: 1fr 40px 1fr 40px 1fr;
		grid-template-columns: repeat(3, 1fr);
		gap: 0 40px;
	}

	.MagicMakers__Hero h1 {
		font-size: 70px;
		font-size: 7vw;
	}

	.MagicMakers__Hero h2 {
		display: block;
	}

	.MagicMakers__Brandstrip h3 {
		padding: 0;
	}

	.MagicMakers__BottomCta .Section__Title h3 {
		font-size: 5vw;
	}

	.MagicMakers__Button + span {
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
	}

	.MagicMakers__Button {
		width: 100%;
	}

	.Section__Title h3 {
		font-size: 32px;
	}

	.MagicMakers__Brandstrip .Section__Title h3 {
		font-size: 16px;
	}

	.step__title {
		height: 48px;
	}

	#swiper--header .splide__slide {
		padding-left: 15px;
		padding-right: 15px;
	}

	.Section__Title {
		margin-bottom: 40px;
	}

	.MagicMakers__Headline {
		width: 70%;
		margin: 0 auto;
	}

	.MagicMakers__Section .MagicMakers__Cta {
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
	}
	.splide__arrow {
	    left: 120px;
	}
	.splide__arrow--next {
		left: auto;
		right: 120px
	}
}

@media (min-width: 992px) {
	.MagicMakers__Hero h1 {
		font-size: 64px;
	}

	.Section__Title h3 {
		font-size: 30px;
	}

	.MagicMakers__Section {
		padding-top: 60px;
		padding-bottom: 20px;
	}

	.MagicMakers__BottomCta {
		padding-bottom: 80px;
	}

	.splide__slide {
		width: 200px;
	}

	.MagicMakers__Examples .splide__slide {
		width: 200px;
	}

	.Footer__Social {
		padding-left: 0;
		padding-right: 0;
	}

	.MagicMakers__Brandstrip h3 {
		font-size: 16px;
	}

	.MagicMakers__Showcase .image__background {
		height: 50vw;
	}

	.MagicMakers__Hero h2 {
		padding-left: 90px;
		padding-right: 90px;
	}
	.splide__arrow {
	    left: 220px;
	}
	.splide__arrow--next {
		left: auto;
		right: 220px
	}
}

@media (min-width:1200px) {
	body {
		line-height: 160%;
		font-size: 18px;
	}

	.MagicMakers__nav {
		min-height: 114px;
		padding-top: 40px;
	}

	.MagicMakers__Hero h1 {
		font-size: 70px;
		letter-spacing: -4px;
		line-height: 100%;
		margin-bottom: 20px;
	}

	.MagicMakers__Hero h2 {
		padding-right: 80px;
		font-size: 18px;
		letter-spacing: 0;
		margin-bottom: 0;
		line-height: 160%;
		padding-left: 0;
		padding-right: 120px;
	}

	.MagicMakers__Section {
		padding-top: 60px;
		padding-bottom: 100px;
	}

	.MagicMakers__Brandstrip {
		padding-bottom: 60px;
	}

	.Section__Title {
		margin-bottom: 50px;
	}

	.MagicMakers__BottomCta .Section__Title {
		margin-bottom: 50px;
	}

	.Section__Title h3 {
		font-size: 44px;
		margin-bottom: 10px;
	}

	.MagicMakers__Brandstrip h3 {
		font-size: 15px;
	}

	.Section__Title h4 {
		font-size: 18px;
	}

	.MagicMakers__BottomCta h3 {
		font-size: 78px;
		letter-spacing: -4px;
		margin-bottom: 20px;
	}

	.splide__slide {
		width: 260px;
		padding: 0 15px;
	}

	.MagicMakers__Examples .slide span {
		font-size: 15px;
	}

	.MagicMakers__Examples .splide__slide {
		width: 260px;
	}

	.MagicMakers__Section .MagicMakers__Cta {
		margin-top: 60px;
	}

	.swiper-container {
		margin-bottom: 30px;
	}

	.benefits {
		font-size: 18px;
		gap: 30px;
	}

	.benefit .emoji__font {
		font-size: 20px;
	}

	.question {
		font-size: 20px;
	}

	.faqs {
		padding: 0;
		gap: 20px;
	}

	.faq {
		padding: 30px 36px;
	}

	.MagicMakers__logo {
		max-width: 160px;
	}

	.Social__linkWrapper:hover > .Social__Link span {
		opacity: 0;
	}

	.Social__linkWrapper:hover .Social__Link {
		color: var(--purple);
	}

	.Social__Link:hover span::before,
	.Social__Link:hover span::after {
		background-image: url('../images/social-icons-hover.svg');
	}

	.faq:hover {
		background: #0e002891;
	}

	.faq:hover .question {
		color: var(--purple);
	}

	.faq:hover .question::before,
	.faq:hover .question::after {
		background: var(--purple);
	}

	.step__illustration {
		max-width: 330px;
	}

	.MagicMakers__Step {
		max-width: 330px;
		margin: 0 auto;
	}

	.MagicMakers__Steps {
		-ms-grid-columns: 1fr 30px 1fr 30px 1fr;
		grid-template-columns: repeat(3, 1fr);
		text-align: left;
		gap: 0 30px;
		padding: 0 40px;
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: start;
	}

	.MagicMakers__Examples .splide__slide {
		width: 330px;
	}

	.Footer__Copyright {
		padding-top: 60px;
		padding-bottom: 60px;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}

	.MagicMakers__Hero {
		max-width: 1140px;
		padding: 0 12px;
		-ms-grid-columns: 65% 35%;
		grid-template-columns: 65% 35%;
		display: -ms-grid;
		display: grid;
		-ms-flex-line-pack: center;
		    align-content: center;
	}

	.MagicMakers__Headline {
		margin-left: 0;
		text-align: left;
		width: 100%;
		position: relative;
		z-index: 22;
		-ms-flex-item-align: end;
		    -ms-grid-row-align: end;
		    align-self: end;
	}

	.MagicMakers__slider {
		-ms-grid-column-span: 0;
		grid-column-end: 2;
		width: 100%;
		height: 100%;
		margin: 0;
		-ms-grid-row: 1;
		    grid-row-start: 1;
		-ms-grid-row-span: 2;
		grid-row-end: 3;
		-ms-grid-column: 2;
		    grid-column-start: 2;
	}

	.MagicMakers__Cta {
		margin-left: 0;
	}

	.MagicMakers__header {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		gap: 0;
		padding-bottom: 80px;
	}

	#swiper--header .splide__slide {
		padding-left: 0;
		padding-right: 0;
	}

	#swiper--header .splide__slide .slide {
		border-radius: 30px;
	}

	#swiper--header .splide__slide.is-next div {
		opacity: 0.1
	}

	#swiper--header .splide__slide {
		width: 100%;
	}

	.Footer__Copyright span {
		width: -webkit-max-content;
		width: -moz-max-content;
		width: max-content;
		margin: 0;
	}

	.Footer__Copyright ul {
		-webkit-box-ordinal-group: 2;
		    -ms-flex-order: 1;
		        order: 1;
	}

	#swiper--header .splide__track {
		border-radius: 30px;
		max-width: 450px;
	}
	#swiper--header .swiper-slide.is-active::before {
		height: 100%;
		left: 20px;
		right: 0;
		width: auto;
		top: 0%;
		border-radius: 30px;
		opacity: 0.6
	}
	.splide__arrow {
	    transform: none;
	    left: 50%;
	    right: auto;
	    margin-left: -30px;
	    top: -30px;
	    margin-top: 0;
	}
	.splide__arrow--next {
	    top: auto;
	    bottom: -30px;
	}
}

@media (min-width:1400px) {
	.MagicMakers__nav {
		padding-top: 40px;
	}

	.MagicMakers__Hero h1 {
		font-size: 82px;
	}

	.Section__Title h4 {
		font-size: 18px;
	}

	.nav__scrolling {
		margin-bottom: 60px;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}

	.Section__Title {
		margin-bottom: 70px;
	}

	.nav__scrolling ul li {
		padding-bottom: 24px;
	}

	.nav__scrolling ul {
		gap: 0 80px;
	}

	.splide__slide {
		width: 260px;
		padding: 0 15px;
	}

	.splide__slide .slide {
		border-radius: 30px;
	}

	.swiper-container {
		margin-bottom: 30px;
	}

	.MagicMakers__Examples img {
		width: 70%;
	}

	.MagicMakers__Examples .slide span {
		left: 30px;
		bottom: 30px;
		font-size: 16px;
	}

	.MagicMakers__BottomCta .Section__Title h3 {
		font-size: 78px;
		letter-spacing: -4px;
		margin-bottom: 20px;
	}

	.benefits {
		gap: 20px;
	}

	.Footer__Social, .Footer__Copyright {
		gap: 30px;
	}

	.Footer__Copyright ul {
		gap: 0 80px;
	}

	.Footer__Social h4 {
		font-size: 48px;
		letter-spacing: -2px;
		margin-bottom: 40px;
	}

	.Social__Link {
		padding-bottom: 30px;
		font-size: 24px;
	}

	.Social__Instagram:before,
	.Social__Facebook:before,
	.Social__Linkedin:before,
	.Social__Twitter:before {
		width: 24px;
		height: 24px;
	}

	.Section__Title h3 {
		font-size: 40px;
	}

	.MagicMakers__Brandstrip h3 {
		font-size: 16px;
	}

	.Social__Link > span::after {
		width: 36px;
		height: 36px;
	}

	.MagicMakers__Steps {
		padding: 0 80px;
	}

	.MagicMakers__Hero {
		max-width: 1320px;
	}
}

@media (max-width: 767px) {
	.MagicMakers__BottomCta .Section__Title h3 {
		font-size: 8.5vw;
		letter-spacing: -2px;
		line-height: 100%;
	}
}