/*
Theme Name: Healthy Pixels
Author: Healthy Pixels
Description: Healthy Pixels stylesheet
Version: 1.0.0
Text Domain: Healthy Pixels
*/

* {scroll-padding-top: 6rem;}
html {scroll-behavior: smooth}
html, body {height: 100%;}
:root {
	--font: "Archivo", -apple-system, system-ui, BlinkMacSystemFont, “Segoe UI”, Helvetica, Arial, sans-serif, “Apple Color Emoji”, “Segoe UI Emoji”, “Segoe UI Symbol”, sans-serif;
	--accent-font: quincy-cf, var(--font);
	--light: 300;
	--regular: 400;
	--bold: 700;
	
	--black: #020219;
	--white: #ffffff;
	--bright: #F2F2F2;
	--grey-dark: #2E2D3E;
	--grey-bright: #444352;
	--purple: #6D3E91;
	--orange: #EA5B1B;
	--purple-s: #4F008F;
	--yellow: #F3B600;
	--orange-s: #FD4C05;
	
	--gradient1: linear-gradient(130deg,rgba(2, 2, 25, 1) 0%, rgba(79, 0, 143, 1) 100%);
	--gradient2: linear-gradient(45deg,rgba(79, 0, 143, 1) 0%, rgba(2, 2, 25, 1) 100%);
	--gradient3: linear-gradient(90deg,rgba(2, 2, 25, 1) 0%, rgba(79, 0, 143, 1) 100%);
	
	--gradient-btn: linear-gradient(20deg,rgba(253, 76, 5, 1) 50%, rgba(243, 182, 0, 1) 80%);
	--gradient-btn-h: linear-gradient(20deg,rgba(234, 91, 27, 1) 60%, rgba(234, 91, 27, 1) 80%);
	
	--cta: var(--orange-s);
	--cta-focus: var(--orange);
	--cta-opp: white;

	--br-sm: 5px;
	--br-md: 15px;
	--br-lg: 25px;
	--border-w: 2px;
	
	--moz-box-shadow: 0 2px 5px -1px rgba(26,26,26,.3);
	--webkit-box-shadow: 0 2px 5px -1px rgb(26 26 26 / 30%);
	--box-shadow: 0 2px 5px -1px rgb(26 26 26 / 30%);
	
	--moz-box-shadow-lg: 0 0 20px -1px rgba(0, 0, 0, .05);
    --webkit-box-shadow-lg: 0 0 20px -1px rgba(0, 0, 0, .05);
    --box-shadow-lg: 0 0 20px #0000001c;
	
	--transition: all .3s ease;
}
body, .editor-styles-wrapper.block-editor-writing-flow {
	margin: 0;
	font-family: var(--font);
	font-size: 1rem;
	font-weight: var(--regular);
	text-align: left;
	line-height: 1.5;
	word-spacing: .5px;
	letter-spacing: .3px;
	background: var(--bright);
	
	color: var(--grey-bright);
	width: 100%;
	overflow-x: hidden;
	
	display: flex;
	flex-direction: column;
}
.flipper {color: var(--white);}
@media only screen and (max-width:767px) {
	body {
		--br-sm: 3px;
		--br-md: 10px;
		--br-lg: 20px;
	}
}
@media only screen and (min-width:768px) {
	body {--max: 5vw;}
}
@media only screen and (min-width:1600px) {
	body {--max: 10vw;}
}
#main {
	flex: 1 0 auto;
	width: 100%;
	overflow: clip;
}

/* Accessibility */
.screenreader-desktop {
	position: fixed;
	left: -999px;
	width: 1px;
	height: 1px;
	top: 0;
}
.screenreader-desktop:focus {
	color: var(--white);
	text-decoration: none;
	background: var(--black);
	display: inline-block;
	height: auto;
	width: auto;
	position: fixed;
	margin: auto;
	z-index: 10000;
	top: 15px;
	left: 15px;
	padding: 8px 16px;
	border-radius: 25px;
	-moz-box-shadow: var(--moz-box-shadow);
	-webkit-box-shadow: var(--webkit-box-shadow);
	box-shadow: var(--box-shadow);
}

/* Text handling */
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {line-height: 1.35;}
h2, h3, h4, h5, h6 {font-weight: var(--bold);}
h1 {
	font-size: 3.4rem;
	font-weight: var(--regular);
}
h2 {font-size: 2.5rem;}
h3 {font-size: 1.8rem;}
h3.small {font-size: 1.12rem;}
h4 {font-size: 1.4rem;}

h1 em, h2 em, h3 em, .em-swap em, .subhead em, .lead em {
    font-style: normal;
	position: relative;
	z-index: 0;
	color: var(--purple);
}
.flipper h1 em, .flipper h2 em, .flipper h3 em, .flipper .em-swap em, .flipper .subhead em, .flipper .lead em {
	color: var(--orange);
}
.orange-bg h1 em, .orange-bg h2 em, .orange-bg h3 em, .orange-bg .em-swap em, .orange-bg .subhead em, .orange-bg .lead em {
	color: var(--black);
}

.post-content h2 {
    font-size: 1.7rem;
    padding-top: 2.5rem;
}
.post-content h2:first-child {padding-top: 0;}
.post-content h3 {
    font-size: 1.3rem;
    font-weight: var(--regular);
    padding-top: 1.5rem;
}

b, strong, .sub {font-weight: var(--bold);}

.lead {font-size: 1.1rem;}
.hero .lead {font-size: 1.25rem;}
.lead.large, .lead.lg-lead {font-size: 1.4rem;}
.lg-lead:not(:first-child) {margin-top: 2rem;}
.lg-lead:not(:last-child) {margin-bottom: 2rem;}
.caveat {font-size: .85rem;}

.badge {
	background: var(--purple);
	color: var(--white);
	padding: .5rem 1rem;
	margin-bottom: 1rem;
	display: block;
	width: fit-content;
	border-radius: var(--br-sm) var(--br-sm) var(--br-sm) 0;
}
.badge p {margin-bottom: 0;}

@media only screen and (max-width:767px) {
	h1 {font-size: 2.4rem;}
	h2 {font-size: 1.7rem;}
	h3 {font-size: 1.3rem;}
	h4 {font-size: 1.1rem;}
}
@media only screen and (max-width:991px) {
	h2.large {font-size: 3rem;}
}
@media only screen and (min-width:1600px) {
	body {font-size: 1.1rem;}
	h1 {font-size: 5rem;}
	h2 {font-size: 2.5rem;}
	h3 {font-size: 1.6rem;}
	h4 {font-size: 1.3rem;}
}

/* Backgrounds */
.rounded-bg {border-radius: var(--br-lg);}
.gradient-bg {background: var(--gradient2);}
.white-bg {background: var(--white);}
.bright-bg {background: var(--bright);}
.black-bg {background: var(--black);}
.grey-dark-bg {background: var(--grey-dark);}
.orange-bg {background: var(--orange);}
.purple-bg {background: var(--purple);}

/* Spacing */
body {
	--sm-spacer: 2rem;
	--md-spacer: 3.5rem;
	--lg-spacer: 5rem;
}
@media only screen and (min-width:1600px) {
	body {
		--sm-spacer: 3rem;
		--md-spacer: 6rem;
		--lg-spacer: 9rem;
	}
}
@media only screen and (max-width:767px) {
	body {
		--sm-spacer: 1.5rem;
		--md-spacer: 2rem;
		--lg-spacer: 3rem;
	}
	.hide-mob {display: none;}
}
.mx-15 {
	margin-left: 15px;
	margin-right: 15px;
}
.sm-spacer, .sm-spacer-top {padding-top: var(--sm-spacer);}
.sm-spacer, .sm-spacer-btm {padding-bottom: var(--sm-spacer);}
.md-spacer, .md-spacer-top {padding-top: var(--md-spacer);}
.md-spacer, .md-spacer-btm {padding-bottom: var(--md-spacer);}
.lg-spacer, .lg-spacer-top {padding-top: var(--lg-spacer);}
.lg-spacer, .lg-spacer-btm {padding-bottom: var(--lg-spacer);}
.mb-15 {margin-bottom: 15px;}
.mb-30 {margin-bottom: 30px;}
.mb-sm {margin-bottom: var(--sm-spacer);;}
.mb-md {margin-bottom: var(--md-spacer);;}
.mb-log {margin-bottom: var(--lg-spacer);;}
.wp-block-columns {
	padding-top: var(--md-spacer) !important;
	padding-bottom: var(--md-spacer) !important;
}
.intro-m.has-content {padding-bottom: var(--sm-spacer);}
.outro-m.has-content {padding-top: var(--sm-spacer);}

.g-15 {row-gap: 15px;}
.g-30 {row-gap: 30px;}

.wp-block-columns {padding: 15px;}

.merge-up {margin-top: -6rem;}
.merge-up .sm-spacer:first-of-type, .merge-up .sm-spacer-top:first-of-type {padding-top: var(--md-spacer);}
.merge-up .sm-spacer:last-of-type, .merge-up .sm-spacer-btm:last-of-type {padding-bottom: var(--md-spacer);}

@media only screen and (min-width:992px) {
	.sm-spacer-lg, .sm-spacer-top-lg {padding-top: var(--sm-spacer);}
	.sm-spacer-lg, .sm-spacer-btm-lg {padding-bottom: var(--sm-spacer);}
	.md-spacer-lg, .md-spacer-top-lg {padding-top: var(--md-spacer);}
	.md-spacer-lg, .md-spacer-btm-lg {padding-bottom: var(--md-spacer);}
	.lg-spacer-lg, .lg-spacer-top-lg {padding-top: var(--lg-spacer);}
	.lg-spacer-lg, .lg-spacer-btm-lg {padding-bottom: var(--lg-spacer);}
}

/* Images and video files */
.wp-block-image img {width: 100% !important;}
img.rounded, .wp-block-gallery img, .rounded {border-radius: var(--br-md) !important;}
.rounded-top {border-radius: var(--br-md) var(--br-md) 0 0 !important;}
.rounded-btm {border-radius: 0 0 var(--br-md) var(--br-md) !important;}

.svg-icon + h2, .svg-icon + h3 {padding-top: 0;}
img.icon, .icons svg {
	width: 80px;
	height: 80px;
	margin: 1rem 0;
}
.svg-icon {
	max-width: 60px;
	max-height: 60px;
	margin: .5rem 0;
	display: block;
}
p.icon-title {font-weight: var(--bold);}
@media only screen and (max-width:576px) {
	img.icon, .icons svg {
		width: 50px;
		height: 50px;
	}
}

/* Lists */
ul.checklist, ul.crosslist, .checklist ul {
	padding-inline-start: 0;
	list-style: none;
}
ul {padding-inline-start: 15px;}
ol {padding-inline-start: 20px;}
li:not(.menu-item) {padding-bottom:1rem}
li:last-child {padding-bottom:0}
ul.checklist li:before, ul.crosslist li:before, ul.checklist p:before, p.checkmark:before, ul.crosslist p:before, p.crossmark:before, .checklist ul li:before, .checklist ul p:before {
    content: "";
    display: inline-block;
    vertical-align: top;
	margin-top: 1px;
    margin-right: 4px;
    width: 20px;
    height: 20px;
	background-color: var(--purple);
}
.contact-banner ul.checklist li:before, .contact-banner ul.crosslist li:before {
	background-color: var(--purple) !important;
}
.flipper ul.checklist li:before, .flipper ul.crosslist li:before, .flipper ul.checklist p:before, .flipper p.checkmark:before, .flipper ul.crosslist p:before, .flipper p.crossmark:before, .flipper .checklist ul li:before, .flipper .checklist ul p:before {background-color: var(--yellow);}
.orange-bg ul.checklist li:before, .orange-bg ul.crosslist li:before {background-color: var(--black);}
ul.checklist li:before, ul.checklist p:before, ul.highlights li:before, p.checkmark:before, .checklist ul li:before, .checklist ul p:before {
	-webkit-mask: url('/wp-content/uploads/2026/03/check-circle.svg') center / contain no-repeat;
	mask: url('/wp-content/uploads/2026/03/check-circle.svg') center / contain no-repeat;
}
ul.crosslist li:before, ul.crosslist p:before, p.crossmark:before {
	-webkit-mask: url('/wp-content/uploads/2026/03/cross-circle.svg') center / contain no-repeat;
	mask: url('/wp-content/uploads/2026/03/cross-circle.svg') center / contain no-repeat;
}

ul.bg-list li, ol.bg-list li {
	padding: .25rem .75rem;
	background: var(--purple);
	border-radius: var(--br-sm);
}
.purple-bg ul.bg-list li, .purple-bg ol.bg-list li {background: var(--black);}
ul.bg-list li, ol.bg-list li, ul.bg-list li a, ol.bg-list li a {color: var(--white);}
#main ul.bg-list li:before, #main ol.bg-list li:before {background-color: var(--white) !important;}
@media only screen and (max-width:767px) {
	ul.mob-list-pad {margin-top: 1.5rem;}
}

ul li.badge-item {
	background: var(--purple-s);
	border-radius: var(--br-sm) var(--br-sm) var(--br-sm) 0;
	font-weight: var(--bold);
	color: var(--white);
	font-size: 1rem;
	padding: .25rem .5rem;
}
ul li.badge-item:before {content: none;}
.hero ul.inline-list {
	color: var(--yellow);
	padding-top: var(--sm-spacer);
}
@media only screen and (min-width:767px) {
	ul.inline-list, ol.inline-list {
		gap: 1rem;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		margin: 2.5rem 0;
	}
	.hero ul.inline-list {
		justify-content: space-between;
		padding-bottom: var(--lg-spacer);
		margin: 0;
	}
	.hero ul.inline-list li {padding-bottom: 0;}
	ul.inline-list li {
		display: inline;
		flex: 0 0 auto;
	}
}
@media only screen and (min-width:991px) {
	.hero ul.inline-list {font-size: 1.1rem;}
}
@media only screen and (min-width:1600px) {
	.hero ul.inline-list {font-size: 1.2rem;}
}
@media only screen and (min-width:767px) and (max-width:1100px) {
	ul li.badge-item {width: 100%;}
}
@media only screen and (max-width:767px) {
	.hero ul.inline-list {padding-bottom: 4rem;}
	.text-center ul.bg-list li {margin: 0 auto;}
	ul.bg-list li, ul li.badge-item {
		width: fit-content;
		margin-bottom: 1rem !important;
	}
	
	.hero .inline-list li {
    display: inline-block;
    white-space: nowrap;
    margin-right: 1rem;
    vertical-align: middle;
		padding-bottom: 1rem !important;
}
	.hero .inline-list {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    /* keep normal items inline */
    .hero .inline-list li {
        display: inline-block;
        white-space: nowrap;
    }

    /* force badge above */
    .hero .inline-list .badge-item {
        display: block;
        width: max-content;
        margin-right: 0;
        margin-bottom: 1rem;
        position: sticky;
        left: 15px;
        z-index: 2;
		padding-bottom: 0 !important;
    }
	.hero .inline-list > li:nth-child(2) {margin-left: 15px;}
	.hero .inline-list::-webkit-scrollbar {display: none;}
	.hero .inline-list {
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
}

/* Navigation */
.navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255, .8);
    border-color: rgba(255, 255, 255, .8);
    right: 15px;
    top: 30px;
    position: absolute;
}
.navbar {
	z-index: 9999999;
	display: flex;
	right: 0;
    justify-content: end;
	position: absolute;
	border-radius: 50px 0 0 50px;
	padding: 0;
    margin-top: 15px;
}
.navbar-nav {
    max-width: 100%;
	position: relative;
	padding: .25rem 1rem;
	border-radius: 50px;
}
.navbar li a {color: var(--bright);}
.navbar li a:hover, .navbar li a:focus {color: var(--orange);}
.navbar li.current-menu-item > a {
	pointer-events: none;
	font-weight: var(--regular);
}
.navbar li.current-menu-ancestor > a {
    border-bottom: none;
	font-style: italic;
}
.dropdown-item.active, .dropdown-item:active, .dropdown-item:focus, .dropdown-item:hover {
    background-color: transparent;
}
.navbar-brand {
    z-index: 99999999;
    position: absolute;
}
.navbar-brand img {max-width: calc(100% - 45px);}
.navbar-nav li {
	margin: 0 1rem;
	margin-top: .25rem;
}
.navbar-nav li:last-child {padding-bottom: inherit;}

@media only screen and (min-width: 992px) {
	.navbar-nav {flex-direction: unset !important;}
	.navbar-nav .menu-item-has-children .dropdown-menu {position: absolute;}
	.dropdown-item {
		padding: .5rem;
		color: inherit;
	}
	.dropdown-menu {
		top: 60px;
		padding: .5rem 0;
		font-size: inherit;
		color: inherit;
		text-align: left;
		list-style: none;
		background-color: var(--bright);
		border: none;
		border-radius: var(--br-sm);
		-moz-box-shadow: var(--moz-box-shadow);
		-webkit-box-shadow: var(--webkit-box-shadow);
		box-shadow: var(--box-shadow);
	}
	.dropdown-menu-right {
		right: 0;
		left: auto !important;
	}
	.dropdown-item:focus, .dropdown-item:hover {
		background-color: transparent;
		color: var(--grey);
	}
	.dropdown-menu li a:hover, .dropdown-menu li a:focus, .dropdown-menu li.current-menu-item a {
		color: var(--grey);
		font-style: italic;
	}
	#menu-toggle, .hamburger-icon {display: none;}
	.navbar li a {font-weight: var(--bold);}
}
@media only screen and (max-width: 991px) {
	.navbar-brand {position: absolute;}
	.navbar {display: none;}
	.navbar-nav {
		background: transparent;
		padding: 0;
	}
	.hamburger-icon {display: inline-block;}
	input#menu-toggle {display: none;}
	#menu-toggle:checked ~ .navbar {display: block;}
	#menu-toggle:checked ~ .navbar {
		position: fixed;
		overflow-y: auto;
		width: 100vw;
		height: 100vh;
		left: 0;
		top: 0;
		z-index: 999999999;
		border-radius: 0;
		background: var(--black);
		padding: 8rem 1rem 0 1rem;
		margin-top: 0;
		text-align: center;
	}
	.hamburger-icon {
        border-radius: 50px;
        z-index: 9999999999;
        display: inline-block;
        cursor: pointer;
        width: 50px;
        height: 50px;
        position: fixed;
        top: 15px;
        right: 5%;
        background: var(--cta);
    }
	.hamburger-icon span:nth-child(1) {margin-top: 14px;}
	.hamburger-icon span {
		background: var(--white);
        display: block;
        height: 2.5px;
        width: 25px;
        margin: 6px 11.5px;
        transition: all 0.3s ease;
        border-radius: 2px;
	}
	#menu-toggle:checked + .hamburger-icon span:nth-child(1) {
		transform: rotate(45deg) translate(6px, 6px);
		transform-origin: center;
	}
	#menu-toggle:checked + .hamburger-icon span:nth-child(2) {opacity: 0;}
	#menu-toggle:checked + .hamburger-icon span:nth-child(3) {
    	transform: rotate(-45deg) translate(6px, -6px);
    	transform-origin: center;
	}
	.nav-link {display: inline-block;}
	.navbar-nav li {margin: 1rem 0;}
	.navbar li a {
		width: 100%;
		font-size: 1.15rem;
		color: var(--white);
	}
	.navbar li a:hover, .navbar li a:focus {color: var(--cta-focus);}
	.navbar li.current-menu-item > a {color: var(--cta);}
	.navbar li a.dropdown-toggle {width: 80%;}
	.navbar-nav .menu-item-has-children:hover .dropdown-menu {font-style: italic;}
	.dropdown-toggle::after {
		content: "";
		position: absolute;
		top: 1rem;
		border-top: .45em solid;
		border-right: .45em solid transparent;
		border-bottom: 0;
		border-left: .45em solid transparent;
	}
	.dropdown-menu {
		font-size: inherit;
		color: inherit;
		background-color: transparent;
		border: none;
		text-align: center;
	}
}
@media only screen and (max-width: 767px) {
	.hamburger-icon {right: 15px;}
}
.navbar-nav li {position: relative;}
.navbar-nav .menu-item-has-children .dropdown-menu {
    display: none;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
    left: 0;
    z-index: 1000;
}
.navbar-nav .menu-item-has-children:hover .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
	transition: var(--transition);
}

/* Breadcrumbs */
.breadcrumb, nav.rank-math-breadcrumb {
	background-color: transparent;
	display: block;
	padding-left: 0;
}
.breadcrumb li a, .rank-math-breadcrumb p {font-size: .8rem !important}
.breadcrumb li a, .rank-math-breadcrumb p a, a.author {color: var(--white)}
.breadcrumb li a:hover, .rank-math-breadcrumb p a:hover, a.author:hover {color: var(--white)}
.rank-math-breadcrumb p .last {color: var(--bright)}

/* WhatsApp */
.msgboxxContainer {bottom: 15px !important;}
.whatsapp, .whatsapp a {
	position: fixed;
    bottom: 15px;
    left: 15px;
	width: 55px;
    height: 55px;
}
.whatsapp:before {
	content: "";
	position: absolute;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: green;
    transition: all 0.3s ease-out;
    z-index: 99999;
}
.whatsapp:before:hover, .whatsapp:before:focus {background-color: var(--black);}
.whatsapp:after {
	content: "";
	position: absolute;
	width: 45px;
    height: 45px;
    top: 5px;
    left: 5px;
	background-color: var(--white);
	z-index: 999999;
	-webkit-mask: url('/wp-content/uploads/2025/09/whatsapp.svg') center / contain no-repeat;
	mask: url('/wp-content/uploads/2025/09/whatsapp.svg') center / contain no-repeat;
}
.whatsapp a:hover, .whatsapp a:focus {cursor: pointer;}

/* Buttons and links */
.overlay-link {
	width: calc(100% - 30px);
	height: 100%;
	position: absolute;
	top: 0;
	/*left: 0;*/
}
.clean-link a, a.clean-link {
	color: inherit;
	text-decoration: none !important;
}

a.read-more, p.read-more {
	color: var(--cta) !important;
	font-weight: var(--bold);
	border-bottom: 2px solid var(--cta);
	width: fit-content;
	display: block;
	margin-bottom: 1rem;
	-webkit-transition: var(--transition);
}
p.read-more {cursor: pointer;}
a.read-more:hover, a.read-more:focus, p.read-more:hover, p.read-more:focus {
	color: var(--cta-focus) !important;
	text-decoration: none !important;
	border-bottom: 2px solid transparent;
}
.orange-bg a.read-more, p.read-more {
	color: var(--white) !important;
	border-color: var(--white) !important;
}
.orange-bg a.read-more:hover, .orange-bg a.read-more:focus, .orange-bg p.read-more:hover, .orange-bg p.read-more:focus {
	border-color: transparent !important;
}

p a, li a, a {color: var(--cta);}
p a:hover, p a:focus, li a:hover, li a:focus, a:hover, a:focus {color: var(--cta-focus);}
.orange-bg p a, li a, a {color: var(--white);}

.btn, a.cky-banner-element {
	border-radius: 50px 50px 50px 0;
	font-weight: var(--bold);
	padding: 12px 40px;
	margin: 1rem 0;
	transition: var(--transition);
	-webkit-transition: var(--transition);
	width: fit-content;
}
.btn:hover, .btn:focus, a.cky-banner-element:hover, a.cky-banner-element:focus {border-radius: 50px;}
.btn-flex {display: block !important;}

.btn.wa, .btn.cy {
	position: relative;
	padding-left: 50px;
	padding-right: 30px;
}
.btn.wa:before, .btn.cy:before {
	content: "";
	position: absolute;
    width: 30px;
    height: 30px;
	margin-left: -32px;
    margin-top: -3px;
}
.flipper .btn.secondary-btn.wa:before, .flipper .btn.secondary-btn.cy:before {background-color: var(--yellow);}
.btn.primary-btn.wa:before, .btn.primary-btn.cy:before, .orange-bg .btn.secondary-btn.wa:before, .orange-bg .btn.secondary-btn.cy:before {background-color: var(--white);}
.btn.secondary-btn.wa:before, .btn.secondary-btn.cy:before {background-color: var(--purple);}

.btn.wa:before {
	-webkit-mask: url('/wp-content/uploads/2025/09/whatsapp.svg') center / contain no-repeat;
	mask: url('/wp-content/uploads/2025/09/whatsapp.svg') center / contain no-repeat;
}
.btn.cy:before {
	-webkit-mask: url('/wp-content/uploads/2026/03/calendly.svg') center / contain no-repeat;
	mask: url('/wp-content/uploads/2026/03/calendly.svg') center / contain no-repeat;
}

.primary-btn, :where(.editor-styles-wrapper) .btn.primary-btn {
	background: var(--gradient-btn);
	color: var(--white);
	position: relative;
	border: none;
}
.primary-btn:hover, .primary-btn:focus {
	background: var(--gradient-btn-h);
	color: var(--white);
}
.orange-bg .primary-btn, :where(.editor-styles-wrapper) .flipper .btn.primary-btn {border: 1px solid var(--white);}

.secondary-btn, :where(.editor-styles-wrapper) .btn.secondary-btn, .cky-banner-element {
	padding-top: 10px;
	padding-bottom: 9px;
	border: 2px solid var(--purple);
	color: var(--purple);
}
.flipper .secondary-btn, :where(.editor-styles-wrapper) .flipper .btn.secondary-btn, .flipper .cky-banner-element {
	border: 2px solid var(--white);
	color: var(--white);
}
.secondary-btn:hover, .secondary-btn:focus, .cky-banner-element:hover, .cky-banner-element:focus {
	border-color: var(--yellow);
	color: var(--yellow);
}

@media only screen and (max-width:576px) {
	.btn {
		padding: 12px;
		width: 100%;
	}
	.btn:has(+ .btn) {margin-bottom: 0;}
}
@media only screen and (min-width:577px) {
	.btn:has(+ .btn) {margin-right: 1rem;}
}

/* HERO */
.hero-pad {padding-top: 7rem;}
.hero {
	background: var(--gradient1);
	color: var(--white);
}
.full-hero {
	min-height: 100vh;
	align-items: center;
}

@media only screen and (max-width:991px) {
	.full-hero {min-height: 70vh;}
}

.brand-logo img {
	max-width: 300px;
	margin-bottom: var(--sm-spacer);
}

/* Services */
.service-box {
	background: var(--white);
	border-radius: var(--br-md);
	color: var(--grey-bright);
	position: relative;
	padding: 1rem;
	padding-bottom: 1.5rem;
	z-index: 10;
}
.service-box h3 {
	font-weight: var(--bold);
	margin-bottom: 1rem;
}
.service-box ul.checklist li:before, .service-box.checklist ul li:before {background: var(--purple);}
.service-box ul {margin-bottom: 0;}
.service-stat {
	z-index: 0;
	padding: 2.25rem 1rem .75rem 1rem;
	margin-top: -1.5rem;
	font-weight: var(--bold);
	background: var(--purple);
	border-radius: var(--br-md);
}
.icons .service-box svg {
	margin-top: 0;
	max-height: 40px;
	max-width: 40px;
}
.first-service-box {
	position: relative;
	z-index: 0;
}
.first-service-box:before, .last-service-box:before {
	content: "";
	background: var(--purple);
	background: radial-gradient(circle at top right, rgba(131, 4, 204, 1) 0%, rgba(57, 1, 152, 1) 100%);
	border-radius: 50%;
	width: 100px;
	height: 100px;
	position: absolute;
}
.first-service-box:before {
	width: 150px;
	height: 150px;
	top: -100px;
	left: -30px;
}
.last-service-box:before {
	width: 95px;
    height: 95px;
    bottom: 20px;
    right: -20px;
}
.asterisk-icon {
	display: inline-block;
	width: 15px;
	height: 15px;
	vertical-align: top;
	background-color: var(--orange);
	-webkit-mask: url('/wp-content/uploads/2026/03/star.svg') no-repeat center / contain;
	mask: url('/wp-content/uploads/2026/03/star.svg') no-repeat center / contain;
}
@media only screen and (max-width:1200px) {
	.first-service-box:before {top: -50px;}
}
@media only screen and (max-width:991px) {
	.first-service-box:before {top: -25px;}
}
@media only screen and (max-width:767px) {
	.first-service-box:before {
		top: -35px;
		left: -5px;
	}
	.last-service-box:before {
		bottom: -25px;
		right: 5px;
	}
}

/* Stats Circles */
.stat {
	background: var(--white);
	font-weight: var(--bold);
	color: var(--purple);
	width: clamp(90px, 10vw, 130px);
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	padding: 1rem;
	font-size: clamp(1rem, 2vw, 1.5rem);
	-moz-box-shadow: var(--moz-box-shadow-lg);
	-webkit-box-shadow: var(--webkit-box-shadow-lg);
	box-shadow: var(--box-shadow-lg);
}

/* Tables */
.wp-block-table table {
	border-radius: var(--br-sm);
    overflow: hidden;
	text-align: left !important;
}
.wp-block-table thead {
    border-bottom: 3px solid;
    background: var(--purple) !important;
    color: var(--white);
}
tfoot {
    background: var(--black);
    color: var(--white);
    font-weight: var(--bold);
}
.wp-block-table td, .wp-block-table th {
	border: none !important;
}
.wp-block-table tbody tr:nth-child(odd) {background-color: var(--bright);}
.wp-block-table tbody tr:nth-child(even) {background-color: var(--white);}

/* Misc */
.boxes {display: flex;}
.same-h {
	display: flex;
    flex-direction: column;
	height: 100%;
	flex: 1;
}
.push-down {margin-top: auto;}
.img-placeholder, .placeholder {
	width: 100%;
	min-height: 100px;
	padding-bottom: 100%;
	background: var(--bright);
}

/* ANIMATIONS */
/* Default: visible (safe fallback) */
.fade-in {
	opacity: 1;
	transform: none;
}
/* Only hide when JS is active */
.js .fade-in {
	opacity: 0;
	transform: translateY(250px);
	transition: opacity 1.5s ease-out, transform 1s ease-out;
}
.js .fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Contact banner */
.contact-banner, .contact-banner-top {background: var(--gradient3);}
.contact-banner {
	border-bottom: 1px solid var(--bright);
	position: relative;
}
.contact-banner-top {
	width: 100%;
	height: 5rem;
	margin-top: -4rem;
}
@media only screen and (min-width: 992px) {
    .contact-img {
		right: 0;
        width: 100%;
		height: 100%;
    }
	.contact-banner-top + .contact-banner .contact-img {
		position: absolute;
		height: calc(100% + 5rem);
		margin-top: -5rem;
		width: auto;
	}
	.contact-img img {
        height: 100%;
        width: 100%;
        object-fit: cover;
		object-position: left center;
    }
}
@media only screen and (max-width:991px) {
	.contact-img img {margin-left: 4rem;}
}
@media only screen and (max-width:767px) {
	.contact-banner .fluid-max-left, .contact-banner .fluid-max-right, .contact-banner .fluid-max {
		padding-left: 1rem;
		padding-right: 1rem;
	}
}

/* Calendly */
.calendly-overlay {
	position: fixed !important;
	inset: 0 !important;
	background: rgba(0,0,0,0.6) !important;
	z-index: 999999 !important;
}
.calendly-popup {
	position: fixed !important;
	z-index: 1000000 !important;
	width: 80vw !important;
	height: 100vh !important;
	margin-left: 10vw;
}
.calendly-popup-content {height: 100% !important;}
.calendly-popup-content iframe {
	width: 100% !important;
	height: 100% !important;
}
.calendly-close-overlay {
    z-index: 999999;
    position: absolute;
    background: var(--black);
    width: 100vw;
    height: 100vh;
    opacity: .5;
}
.calendly-close-overlay:after {
	content: "";
    position: fixed;
	z-index: 9999999;
	top: 15px;
	right: 15px;
    width: 45px;
    height: 45px;
	cursor: pointer;
	background-color: var(--white);
	-webkit-mask: url('/wp-content/uploads/2026/03/cross-circle.svg') center / contain no-repeat;
	mask: url('/wp-content/uploads/2026/03/cross-circle.svg') center / contain no-repeat;
}

/* FOOTER */
footer {
	padding: 3rem 0 2rem 0;
	background: var(--black);
	color: var(--bright);
	font-size: .9rem;
}
footer hr {border-top: 1px solid var(--grey-dark);}
footer ul a {color: var(--bright);}
footer ul a:hover, footer ul a:focus {color: var(--orange);}
footer ul {
	list-style: none;
	padding-inline-start: 0;
}
footer .current-menu-item a {
	opacity: .5;
	pointer-events: none;
}
footer .menu-support-container ul li {margin-right: 0 !important;}
footer .menu-support-container li.phone, footer .menu-support-container li.email, footer .menu-support-container li.address {position: relative;}
footer .menu-support-container li.phone:before, footer .menu-support-container li.email:before, footer .menu-support-container li.address:before {
	content: "";
    display: inline-block;
    vertical-align: top;
	margin-top: 1px;
    margin-right: 4px;
    width: 20px;
    height: 20px;
	background-color: var(--orange);
	-webkit-mask: url('/wp-content/uploads/2024/12/phone.svg') center / contain no-repeat;
	mask: url('/wp-content/uploads/2024/12/phone.svg') center / contain no-repeat;
}
footer .menu-support-container li.email:before {
	-webkit-mask: url('/wp-content/uploads/2026/03/email.svg') center / contain no-repeat;
	mask: url('/wp-content/uploads/2026/03/email.svg') center / contain no-repeat;
}
footer .menu-support-container li.address:before {
	-webkit-mask: url('/wp-content/uploads/2026/03/address.svg') center / contain no-repeat;
	mask: url('/wp-content/uploads/2026/03/address.svg') center / contain no-repeat;
}
footer .menu-support-container li.address a {pointer-events: none;}
.inline-footer {
	display: flex;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;  
}
footer .bright-menu a {opacity: .7;}
footer .bright-menu a:hover, footer .bright-menu a:focus {opacity: 1;}
@media only screen and (min-width: 992px) {
	footer .policies ul li {
		display: inline;
		margin-right: 1rem;
	}
	footer .menu-support-container ul {
		gap: 1rem;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		margin-bottom: var(--sm-spacer);
	}
}
@media only screen and (max-width: 991px) {
	footer ul li {margin-bottom: 1rem;}
}

/* XXL breakpoint */
.px-15-all {
	padding-left: 15px;
	padding-right: 15px;
}
@media only screen and (max-width: 767px) {
	.py-sm-15 {
		padding-top: 15px;
		padding-bottom: 15px;
	}
	.wp-block-columns, .px-15 {
		padding-left: 15px;
		padding-right: 15px;
	}
	.container-fluid .container-fluid .fluid-xxl-max, .container-fluid .container-fluid .fluid-max {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
}
@media only screen and (min-width: 768px) {
	.py-15 {
		padding-top: 15px;
		padding-bottom: 15px;
	}
	.fluid-xxl-max, .fluid-max, .wp-block-columns {
		margin-left: var(--max);
		margin-right: var(--max);
	}
	.fluid-max-left {margin-left: var(--max);}
	.fluid-max-right {margin-right: var(--max);}
	.container-fluid .container-fluid .fluid-xxl-max, .container-fluid .container-fluid .fluid-max {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	.px-md-15 {
		padding-left: 15px !important;
		padding-right: 15px !important;
	}
}
@media only screen and (min-width: 992px) {
	.px-lg-15 {
		padding-left: 15px !important;
		padding-right: 15px !important;
	}
}
@media only screen and (min-width: 1600px) {
	.container.container-xxl-fluid {
		width: 100%;
		max-width: 100%;
		padding-right: 15px;
		padding-left: 15px;
		margin-right: auto;
		margin-left: auto;
	}
	.container-fluid .container-fluid .fluid-xxl-max, .container-fluid .container-fluid .fluid-max {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	.text-xxl-center {text-align: center;}
	.pt-xxl-3, .py-xxl-3 {padding-top: 5rem !important;}
	.pb-xxl-3, .py-xxl-3 {padding-bottom: 5rem !important;}
	.pt-xxl-5, .py-xxl-5 {padding-top: 10rem !important;}
	.pb-xxl-5, .py-xxl-5 {padding-bottom: 10rem !important;}
	.mt-xxl-3, .my-xxl-3 {margin-top: 5rem;}
	.mb-xxl-3, .my-xxl-3 {margin-bottom: 5rem;}
	.mt-xxl-5, .my-xxl-5 {margin-top: 10rem;}
	.mb-xxl-5, .my-xxl-5 {margin-bottom: 10rem;}
	.col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-auto {
		position: relative;
		width: 100%;
		padding-right: 15px;
		padding-left: 15px;
	}
	.col-xxl-3 {
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}
	.col-xxl-4 {
		-ms-flex: 0 0 33.333333%;
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}
  .col-xxl-5 {
		-ms-flex: 0 0 41.666667%;
		flex: 0 0 41.666667%;
		max-width: 41.666667%;
	}
	.col-xxl-6 {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;	
	}
	.col-xxl-7 {
		-ms-flex: 0 0 58.333333%;
		flex: 0 0 58.333333%;
		max-width: 58.333333%;
	}
	.col-xxl-8 {
		-ms-flex: 0 0 66.666667%;
		flex: 0 0 66.666667%;
		max-width: 66.666667%;
	}
	.offset-xxl-1 {margin-left: 8.333333%;}
	.d-xxl-none {display: none !important;}
	.d-xxl-block {display: block !important;}
}