/* Start Custom Fonts CSS */
@font-face {
	font-family: 'CosmicaExtraBold';
	font-style: normal;
	font-weight: 600;
	font-display: auto;
	src: 
		url('../font/CosmicaExtraBold-Regular.woff2') format('woff2'),
		url('../font/CosmicaExtraBold-Regular.ttf') format('truetype');
}

@font-face {
	font-family: 'fontello';
	font-style: normal;
	font-weight: normal;
	src: 
		url('../font/fontello.eot');
	src: 
		url('../font/fontello.eot') format('embedded-opentype'),
		url('../font/fontello.woff2') format('woff2'),
		url('../font/fontello.woff') format('woff'),
		url('../font/fontello.ttf') format('truetype'),
		url('../font/fontello.svg') format('svg');
}
/* End Custom Fonts CSS */

html{
	scroll-behavior:smooth
}

body {
	font-family: 'Urbanist', sans-serif;
	font-size: var(--text-m);
	font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'CosmicaExtraBold', sans-serif;
	font-weight: 600;
	margin-bottom: 1rem;
}

p {
	margin-bottom: 1rem;
}

p:last-child {
	margin-bottom: 0;
}

ul,
li {
	list-style: none;
	margin: 0;
	padding: 0;
}

select {
    cursor: pointer;
}  

.px-container {
	max-width: 1200px;
	margin: 0 auto;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* modal setting */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: auto;
    background-color: var(--px-dark-90);
  }

  .modal-content {
    background-color: var(--dm-background);
    margin: 0 auto;
    padding: var(--space-s);
    border-radius: var(--radius-s);
    width: 20rem;
    animation-name: fadeIn;
    animation-duration: 0.5s;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

/* spacing */
.padding-bottom-0 {
	padding-bottom: 0;
}

/* focus styles */
*:focus-visible,
input[type="radio"]:focus-visible+label {
	outline: 2px solid var(--px-primary-50) !important;
	outline-offset: 0.2rem !important;
	border-radius: var(--radius-s);
}

input:focus-visible {
	border-radius: var(--radius-xs);
}

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

::-webkit-scrollbar-track {
	background: var(--px-skylight-l-6);
}

::-webkit-scrollbar-thumb {
	background: var(--px-primary-50);
	border-radius: .5rem;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--px-skydark);
}

/* ----------- header start ------------- */

header {
	padding: var(--space-m) var(--space-s);
}

.header__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.header__logo svg {
	height: 3.5rem;
	width: auto;
}

@media (min-width: 991px) {
	nav {
		--nav-button-toggle: none;
		--nav-position: static;
	}

	ul {
		--nav-list-background: none;
		--nav-list-layout: row;
		--nav-list-position: static;
		--nav-list-padding: 0;
		--nav-list-height: auto;
		--nav-list-width: 100%;
		--nav-list-shadow: none;
		--nav-list-transform: none;
		--nav-list-visibility: visible;
		--nav-list-align-items: center;
	}
}


.header__nav {
	position: var(--nav-position, fixed);
	z-index: 9999;
	padding: 1rem;
	inset-block-start: 1rem;
	inset-inline-end: 1rem;
}

.header__nav ul {
	background: var(--nav-list-background, var(--dm-background-dark));
	-webkit-box-shadow: var(--nav-list-shadow, var(--shadow-m));
	        box-shadow: var(--nav-list-shadow, var(--shadow-m));
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: var(--nav-list-layout, column);
	        flex-direction: var(--nav-list-layout, column);
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: var(--nav-list-align-items, start);
	    -ms-flex-align: var(--nav-list-align-items, start);
	        align-items: var(--nav-list-align-items, start);
	gap: 2rem;
	height: var(--nav-list-height, calc(var(--vh, 1vh) * 100));
	list-style: none;
	margin: 0;
	padding: var(--nav-list-padding, 2rem);
	position: var(--nav-list-position, fixed);
	inset-block-start: 0;
	inset-inline-end: 0;
	width: var(--nav-list-width, min(22rem, 100vw));
	visibility: var(--nav-list-visibility, visible);
}

@media (prefers-reduced-motion: no-preference) {
	.header__nav ul {
		-webkit-transition: visibility 0.4s ease-in-out,
			-webkit-transform 0.4s ease-in-out;
		transition: visibility 0.4s ease-in-out,
			-webkit-transform 0.4s ease-in-out;
		-o-transition: transform 0.4s ease-in-out,
			visibility 0.4s ease-in-out;
		transition: transform 0.4s ease-in-out,
			visibility 0.4s ease-in-out;
		transition: transform 0.4s ease-in-out,
			visibility 0.4s ease-in-out,
			-webkit-transform 0.4s ease-in-out;
	}
}

[aria-expanded="false"]+ul {
	-webkit-transform: var(--nav-list-transform, translateX(100%));
	    -ms-transform: var(--nav-list-transform, translateX(100%));
	        transform: var(--nav-list-transform, translateX(100%));
	visibility: var(--nav-list-visibility, hidden);
}

[aria-current="page"] {
	color: var(--px-primary);
}


.header__menu-toggle {
	cursor: pointer;
	display: var(--nav-button-toggle, flex);
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: end;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	width: 25px;
	height: 25px;
	position: relative;
	z-index: 102;
}

.header__menu-toggle span {
	width: 18.39px;
	height: 4px;
	background-color: var(--dm-toggle);
	border-radius: 8rem;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.header__menu-toggle span:nth-child(1) {
	margin-bottom: 7px;
	margin-left: auto;
	margin-top: 0;
	width: 12px;
}

.header__menu-toggle span:nth-child(2) {
	margin-bottom: 6px;
	width: 25px;
}

.header__menu-toggle span:nth-child(3) {
	margin-right: auto;
	width: 12px;
}

[aria-expanded="true"].header__menu-toggle span:nth-child(1) {
	-webkit-transform: rotate(45deg) translateY(2px) translateX(5px);
	    -ms-transform: rotate(45deg) translateY(2px) translateX(5px);
	        transform: rotate(45deg) translateY(2px) translateX(5px);
	width: 30px;
}

[aria-expanded="true"].header__menu-toggle span:nth-child(2) {
	display: none;
}

[aria-expanded="true"].header__menu-toggle span:nth-child(3) {
	-webkit-transform: rotate(-43deg) translateY(-3px) translateX(6px);
	    -ms-transform: rotate(-43deg) translateY(-3px) translateX(6px);
	        transform: rotate(-43deg) translateY(-3px) translateX(6px);
	width: 30px;
}
/* ----------- header end ----------- */


/* ----------- hero start ----------- */

.hero {
	padding-top: var(--space-3xl);
	padding-bottom: 0;
}

.hero--pages {
	padding-top: var(--space-xl);
	padding-bottom: var(--space-s);
}

.hero--pages .text-center {
	display: flex;
	justify-content: center;
}

.hero h1 {
	position: relative;
}

.hero__content {
	width: 60%;
}

.hero__title-container {
	padding-bottom: var(--space-4xl);
}

#px-labellaywer {
	border: 1px solid #d4d4d4;
	border-bottom-left-radius: 1rem;
	border-bottom-right-radius: 0.5rem;
	border-right: 1px solid #d4d4d4;
	border-top: 1px solid #d4d4d4;
	border-top-left-radius: 1rem;
	border-top-right-radius: 0.5rem;
	-webkit-box-shadow:
		inset -2px 0px 15px -8px rgba(0, 0, 0, 0.1),
		inset -10px -10px 8px -10px rgba(0, 0, 0, 0.1),
		inset -10px 10px 8px -10px rgba(0, 0, 0, 0.1);
	box-shadow:
		inset -2px 0px 15px -8px rgba(0, 0, 0, 0.1),
		inset -10px -10px 8px -10px rgba(0, 0, 0, 0.1),
		inset -10px 10px 8px -10px rgba(0, 0, 0, 0.1);
	color: var(--px-dark-l-5);
	display: inline-block;
	font-family: 'Urbanist', sans-serif;
	font-size: 1rem;
	font-weight: 500;
	padding: .7rem 1.2rem .7rem 3.5rem;
	position: absolute;
	right: 13rem;
	top: 70%;
	-webkit-transform: translateY(-10%);
	-ms-transform: translateY(-10%);
	transform: translateY(-10%);
	z-index: -1;
}

.hero__image-container .hero__image {
	bottom: 0;
	height: clamp(13rem, 4.1304rem + 29.5652vw, 30rem);
	position: absolute;
	right: 0;
}

.cf-theme-dark #px-labellaywer {
	border: 1px solid black;
	-webkit-box-shadow: inset -20px 0px 15px -8px rgb(0 0 0 / 21%), inset -20px 10px 8px -10px rgb(0 0 0 / 19%), inset -10px -10px 8px -10px rgb(0 0 0 / 43%);
	        box-shadow: inset -20px 0px 15px -8px rgb(0 0 0 / 21%), inset -20px 10px 8px -10px rgb(0 0 0 / 19%), inset -10px -10px 8px -10px rgb(0 0 0 / 43%);
}

.only-mobile {
	display: none;
}
/* ----------- hero end ----------- */


/* ----------- steps start ----------- */

.steps {
	background: var(--dm-background-light);
	padding-top: var(--space-s);
	padding-bottom: var(--space-m);
}

.steps__wrap {
	margin-top: -7rem;
}

.steps__title {
	position: absolute;
	top: -4.9rem;
	z-index: -1;
	color: var(--dm-background-light);
	font-family: 'CosmicaExtraBold';
	font-size: 4rem;
}

.step-card {
	background-color: var(--dm-background-dark);
	border: 1px solid var(--px-dark-5);
	border-radius: var(--radius-s);
	-webkit-box-shadow: var(--shadow-m);
	box-shadow: var(--shadow-m);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: var(--space-xs);
	height: 10rem;
	max-width: 12rem;
	padding: var(--space-xs);
}

.step-card .px-btn {
	position: absolute;
	left: 0.5rem;
	bottom: -3.5rem;
}

.step-card__icon {
	height: 3rem;
}

.step-card__icons {
	position: absolute;
	right: 1rem;
	bottom: -1px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 0.4rem;
}

.step-card__number {
	background-color: var(--dm-background-light);
	border-radius: 99px;
	-webkit-box-shadow: 
		rgb(204, 219, 232) 3px 3px 6px 0px inset, 
		rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
	        box-shadow: 
		rgb(204, 219, 232) 3px 3px 6px 0px inset, 
		rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 2rem;
	height: 2rem;
}

.cf-theme-dark .step-card__number {
	-webkit-box-shadow: none;
	        box-shadow: none;
}
/* ----------- steps end ----------- */

/* ----------- agency start ------------- */

.agency {
	background: var(--dm-background-light);
}

.agency__content {
	position: relative;
	padding: 0;
	z-index: 1;
}
/* ----------- agency end ------------- */

/* ----------- easy start ------------- */

.easy {
	padding-bottom: 0;
}

.easy__image {
	max-height: 32rem;
}
/* ----------- easy end ------------- */

/* ----------- video start ------------- */

#werkwijze {
	scroll-behavior: smooth;
}

.explainer {
	background: var(--dm-background-light);
	padding-bottom: 0;
}

.explainer__video {
	width: 100%;
	height: auto;
	margin-top: 2rem;
	border-top-left-radius: 0.5rem;
	border-top-right-radius: 0.5rem;
}

video::-webkit-media-controls {
	display: none;
}
/* ----------- video end ----------- */

/* ----------- reviews start ------------- */

/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

.reviews__grid {
	display: block;
	margin-top: 2rem;
	-webkit-column-width: 15rem;
	   -moz-column-width: 15rem;
	        column-width: 15rem;
	-webkit-column-count: 4;
	   -moz-column-count: 4;
	        column-count: 4;
	-webkit-column-gap: 1.5rem;
	   -moz-column-gap: 1.5rem;
	        column-gap: 1.5rem;
}

.review__card {
	position: relative;
	overflow: hidden;
	padding: 2rem 1.5rem 1.5rem;
	margin-bottom: 1.5rem;
	-webkit-box-shadow: 0 0.1rem 0.55rem rgba(0, 0, 0, 0.075);
	box-shadow: 0 0.1rem 0.55rem rgba(0, 0, 0, 0.075);
	border: 1px solid var(--px-dark-5);
	border-radius: var(--space-2xs);
	background: var(--dm-background-dark);
	-ms-flex-line-pack: justify;
	align-content: space-between;
}

.review__quote {
	position: absolute;
	top: 0;
	left: 0;
}

.review__quote:before {
	content: "\201C";
	font-size: 6rem;
	position: absolute;
	top: 2rem;
	left: 1rem;
	line-height: 0;
	color: var(--px-primary-d-1);
}

.review__name {
	font-weight: 800;
	margin-bottom: 0;
}

.review__reason {
	display: block;
	color: var(--px-dark-l-5);
	font-size: var(--text-s);
	line-height: 0.75;
}
/* ----------- reviews end ------------- */

/* ----------- footer start ------------- */

footer {
	padding: var(--space-2xl) var(--space-s);
	padding-top: calc(var(--space-2xl) + 4rem);
	background-color: var(--px-primary-d-6);
	color: var(--px-light);
}

footer a {
	color: var(--px-light);
	margin-bottom: var(--space-xs);
}

footer a:hover {
	color: var(--px-primary);
	-webkit-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}

footer h4 {
	font-size: var(--text-m);
}

#footer__logo {
    width: 12rem;
    height: auto;
    margin-top: -4rem;
    margin-bottom: 1rem;
}

.footer__socialmedia {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	gap: 1rem;
}

.footer__socialmedia img {
	width: 1.9rem;
	-webkit-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}

.footer__socialmedia img:hover {
	opacity: 0.6;
}

footer address {
	font-style: normal;
}

.copyright {
	margin-top: var(--space-3xl);
}

footer .contact-info {
	display: flex;
	align-items: center;
	margin-top: 1rem;
	margin-bottom: 0.1rem;
	gap: var(--space-4xs);
}

footer .contact-info__link {
	color: var(--px-light);
	margin-bottom: 0;
}

footer .contact-info__icon svg {
	color: var(--px-light);
}

/* ----------- footer end ------------- */

/* ----------- Darkmode toggle start ----------- */

[class^="icon-"]:before,
[class*=" icon-"]:before {
	font-family: "fontello";
	font-style: normal;
	font-weight: normal;
	speak: never;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	text-decoration: inherit;
	text-align: center;
	opacity: .8;
	font-variant: normal;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3);
	-ms-flex-line-pack: center;
	    align-content: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.icon-moon:before {
	content: '\f186';
}

.icon-sun:before {
	content: '\f185';
}

.mode-switch-btn i::before {
	height: 1rem;
	width: 1rem;
}
/* ----------- Darkmode toggle end ----------- */

/* ----------- FAQ start ----------- */

.faq {
    background-color: var(--dm-background-light);
    padding-top: var(--space-3xl);
}

.faq__title {
	
}

.faq__item {
    width: 100%;
    margin-bottom: 10px;
    padding: var(--space-xs);
    color: var(--dm-text);
    text-align: left;
    background-color: var(--dm-background);
    border: 1px solid var(--dm-background-d-1);
    border-radius: var(--radius-s);
    cursor: pointer;
    -webkit-box-shadow: var(--shadow-m);
    box-shadow: var(--shadow-m);
    outline: none;
}

.faq__question {
    display: block;
    position: relative;
    width: 100%;
    font-weight: 700;
    outline: none;
    -webkit-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}

.cf-theme-dark .faq__item {
    border: 1px solid var(--px-light-10);
}

.faq__icon {
    position: absolute;
    top: 50%;
    right: var(--space-4xs);
    height: 0.5rem;
    width: 0.5rem;
    border: solid var(--dm-text);
    border-width: 0 1px 1px 0;
    pointer-events: none;
    -webkit-transform: translateY(-60%) rotate(45deg);
    -ms-transform: translateY(-60%) rotate(45deg);
    transform: translateY(-60%) rotate(45deg);
}

.faq__question[aria-expanded="true"] .faq__icon {
    -webkit-transform: translateY(-50%) rotate(-135deg);
    -ms-transform: translateY(-50%) rotate(-135deg);
    transform: translateY(-50%) rotate(-135deg);
}

.faq__answer {
    overflow: hidden;
    -webkit-transition: height 0.3s ease;
    -o-transition: height 0.3s ease;
    transition: height 0.3s ease;
}

.faq__answer.faq__answer-open {
    height: auto;
}

.faq__answer ul {
    padding-left: 1.5rem;
}

.faq__answer li {
    list-style: disc;
}
/* ----------- FAQ end ----------- */

/* ----------- About start ----------- */

.about {
    background-color: var(--dm-background-light);
    padding-top: var(--space-3xl);
}

.about__img-wrap {
	display: flex;
	justify-content: center;
	width: 100%;
}

.about__img {
	height: 22rem;
	padding: var(--space-m);
}

/* ----------- About start ----------- */


/* ----------- Blog start ----------- */
.blog {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 1rem;
  }
  
  .blog__item {
	grid-column: span 1;
	border-radius: var(--radius-s);
	overflow: hidden;
	min-height: 25rem;
	max-height: 25rem;
	position: relative;
	-webkit-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
	}

.blog__item:hover {
	transform: translateY(-0.5rem);
    box-shadow: var(--shadow-m);
}
  
.blog__item:first-child,
.blog__item:nth-child(4n + 1),
.blog__item:nth-child(4n + 4) {
  grid-column: span 2;
}

.blog__img img {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1;
	top: 0px;
	left: 0px;
}

.blog__img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.blog__item-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: var(--space-m);
	width: 100%;
	height: 100%;
	background: rgb(218 235 251);
	background: linear-gradient(180deg, rgb(161 194 224) 0%, rgb(218 235 251 / 82%) 46%, rgb(255 255 255 / 33%) 100%);
}

.cf-theme-dark .blog__item-wrap {
	background: rgb(21 30 45);
	background: linear-gradient(180deg, rgb(21 30 45 / 97%) 0%, rgb(21 30 45 / 81%) 46%, rgb(0 0 0 / 45%) 100%);
}

.blog__title {
	color: var(--dm-text);
	font-size: calc(var(--text-xl) - 0.1rem);
	line-height: 1.2;
	word-break: break-word;
}

.blog__intro {
	color: var(--dm-text);
	text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    max-width: 100ch; 
}

.blog__date {
	display: block;
	margin-top: var(--space-4xs);
	color: var(--dm-text);
	opacity: 0.8;
}

/* Blog post */
.blog__post {
	display: flex;
	width: 100%;
	max-width: 55rem;
	flex-direction: column;
}

.blog__post--wrap {
	margin-bottom: var(--space-m);	
}

.blog__post--title {
	width: 100%;
	margin-bottom: 0;
	font-size: calc(var(--text-2xl) - 0.7rem);
	word-wrap: break-word;
}

.blog__post--img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	min-height: 25rem;
	margin-top: var(--space-4xs);
	margin-bottom: var(--space-s);
	border-radius: var(--radius-s);
	aspect-ratio: 16 / 9;
}

.blog__post ul {
	padding-left: 1rem;
}

.blog__post li {
	list-style: disc;
}

/* ----------- Blog end ----------- */

/* ----------- Contact start ----------- */

.contact {
    background-color: var(--dm-background-light);
    padding-top: var(--space-3xl);
}

.contact-info {
	display: flex;
	gap: var(--space-4xs);
	align-items: center;
}

.contact-info__label {
	font-size: var(--text-l);
}
.contact-info__link {
	display: flex;
	margin-bottom: var(--space-s);
	color: var(--dm-text);
	-webkit-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
}

.contact-info__link:hover {
	color: var(--px-primary);
}

.contact-info__icon {
	display: flex;
	width: 1.7rem;
	height: 1.7rem;
}

.contact-info__icon svg {
	color: var(--dm-text);
}
/* ----------- Contact end ----------- */

/* ----------- AGV start ----------- */

.agv h2 {
	font-size: var(--text-l);
}

.agv h3 {
	font-size: var(--text-m);
}

.agv h2:not(:first-of-type) {
	margin-top: 1rem;
}

.agv ol li {
	list-style: inherit;
}

.agv ol li ol li {
	list-style: lower-alpha;
}

.agv ul {
	padding-left: 1.1rem;
}

.agv ol {
	padding-left: 1rem;
}

.agv ul li {
	list-style: initial;
}
/* ----------- AGV end ----------- */


/* ----------- Responsive media ------------- */

@media (max-width: 1400px) {
	/* Styles for max-width: 1400px */
  }
  
  /* Custom breakpoint */
  @media (max-width: 1250px) {
	#px-labellaywer {
	  left: 0;
	  right: initial;
	  top: -2.5rem;
	  padding: 0.5rem 0.9rem;
	  border-radius: 5rem;
	  border: 1px solid var(--px-dark-5);
	  -webkit-box-shadow: inset 0 0px 15px -15px rgba(0, 0, 0, 0.1),
		inset 0 10px 8px -10px rgba(0, 0, 0, 0.1),
		inset 0 10px 8px -10px rgba(0, 0, 0, 0.1),
		inset 0 -10px 2px -10px rgba(0, 0, 0, 0.1),
		inset 0 -10px 2px -10px rgba(0, 0, 0, 0.1);
	          box-shadow: inset 0 0px 15px -15px rgba(0, 0, 0, 0.1),
		inset 0 10px 8px -10px rgba(0, 0, 0, 0.1),
		inset 0 10px 8px -10px rgba(0, 0, 0, 0.1),
		inset 0 -10px 2px -10px rgba(0, 0, 0, 0.1),
		inset 0 -10px 2px -10px rgba(0, 0, 0, 0.1);
	}
  
	.cf-theme-dark #px-labellaywer {
	  left: 0;
	  right: initial;
	  top: -2.5rem;
	  padding: 0.5rem 0.9rem;
	  border-radius: 5rem;
	  border: 1px solid #00000054;
	  -webkit-box-shadow: inset 0 0px 15px -15px rgb(0 0 0 / 54%),
		inset 0 10px 8px -10px rgb(0 0 0 / 43%),
		inset 0 10px 8px -10px rgb(0 0 0 / 38%),
		inset 0 -10px 2px -10px rgba(0, 0, 0, 0.1),
		inset 0 -10px 2px -10px rgba(0, 0, 0, 0.1);
	          box-shadow: inset 0 0px 15px -15px rgb(0 0 0 / 54%),
		inset 0 10px 8px -10px rgb(0 0 0 / 43%),
		inset 0 10px 8px -10px rgb(0 0 0 / 38%),
		inset 0 -10px 2px -10px rgba(0, 0, 0, 0.1),
		inset 0 -10px 2px -10px rgba(0, 0, 0, 0.1);
	}
  }
  
  @media (max-width: 992px) {
	.steps__wrap {
	  margin-top: -3rem;
	}
  
	.easy__img {
	  max-height: 20rem;
	  margin-left: auto;
	}

	  .blog__item {
		min-height: 20rem;
		max-height: 20rem;
	}
  }
  
  @media (max-width: 768px) {
	.only-mobile {
		display: flex;
	}

	.only-desk {
		display: none;
	}

	.hero__title-container {
	  padding-bottom: calc(var(--space-4xl) * 2);
	}
  
	.hero__content {
	  margin-top: 2rem;
	  width: 70%;
	}
  
	.steps__wrap {
	  margin-top: 5rem;
	}
  
	.steps__wrap .steps__title {
	  position: absolute;
	  top: -4.9rem;
	  font-family: 'CosmicaExtraBold';
	  color: var(--px-skylight-l-3);
	  font-size: 4rem;
	  z-index: 0;
	}
  
	.steps__wrap > .flex-row {
	  position: relative;
	  -webkit-box-orient: vertical;
	  -webkit-box-direction: normal;
	      -ms-flex-direction: column;
	          flex-direction: column;
	  z-index: 1;
	}
  
	.step-card {
	  max-width: 100%;
	  height: initial;
	}
  
	.step-card .px-btn {
	  left: initial;
	  right: 0;
	}

	.blog {
	  grid-template-columns: 1fr;
	}

	.blog__item {
		min-height: 15rem;
		max-height: 15rem;
	}
  
	.blog__item:first-child,
	.blog__item:nth-child(4n + 1),
	.blog__item:nth-child(4n + 4) {
		grid-column: span 1;
	}

	.blog__post--title {
		font-size: var(--text-xl);
	}
  }
  
  @media (max-width: 480px) {
	.hero__content {
	  width: 100%;
	}
  
	#px-labellaywer {
	  font-size: 0.8rem;
	}
  
	.hero__title-container {
	  padding-bottom: calc(var(--space-4xl) * 4);
	}
  }
  