/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

.hero-title {
	font-size: clamp(2.5rem, 6vw, 6rem) !important;
	line-height: 1.1 !important;
}

#section-features h2 {
	color: #560095;
}

#section-downloads h2 {
	color: #560095;
}

.download-links {
	display: inline-flex;
	gap: 28px;
	flex-wrap: wrap;
	justify-content: center;
}

.download-link {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	padding: 16px 28px;
	border: 4px solid #560095;
	border-radius: 999px;
	color: #560095;
	font-size: 2.2rem;
	font-weight: 600;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.download-link:hover,
.download-link:focus {
	background-color: #7cfa00;
	border-color: #7cfa00;
	color: #560095;
	text-decoration: none;
}

.download-link i {
	font-size: 1.1em;
}

#slider .hero-media {
	overflow: hidden;
}

.slider-element .vertical-middle {
	padding-top: 30px;
}

#slider .hero-image {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

.video-frame {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

.video-frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

#content .heading-block h2 {
	color: #560095;
}

#content .heading-block > span {
	color: #4b4b4b;
}

#content p,
#content .feature-box p,
#content .pricing-features li {
	color: #3f3f3f;
}

.parallax-splash {
	min-height: 280px;
	margin: 2.5rem 0 3rem;
	background-image: linear-gradient(135deg, rgba(86, 0, 149, 0.4), rgba(124, 250, 0, 0.15)), url("../images/puke-splash.jpg");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	border-radius: 0px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

@media (max-width: 768px) {
	.parallax-splash {
		background-attachment: scroll;
		min-height: 140px;
		margin: 2rem 0 2.5rem;
	}
}

.license-tier .pricing-title span {
	font-size: 0.95rem;
	letter-spacing: 1px;
	text-align: center;
}

.license-tier .pricing-price {
	font-size: clamp(2rem, 4vw, 2.8rem);
	text-align: center;
}

.license-tier .pricing-title {
	text-align: center;
}

.license-tier .pricing-features {
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.license-tier .pricing-features ul {
	margin-bottom: 0;
}

.license-label {
	margin-top: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #560095;
}

.license-tier {
	border-color: rgba(86, 0, 149, 0.35);
	box-shadow: 0 10px 30px rgba(86, 0, 149, 0.12);
}

.pricing-box.license-tier {
	overflow: visible;
}

.license-tier.pricing-highlight {
	margin: 0;
	transform: translateY(calc(-1 * var(--cnvs-pricing-popular-title-padding)));
}

.license-tier.pricing-simple {
	border: 1px solid rgba(86, 0, 149, 0.35);
}

.hover-caption {
	position: relative;
	display: inline-block;
	cursor: help;
	border-bottom: 1px dotted rgba(86, 0, 149, 0.5);
}

.hover-caption-text {
	position: absolute;
	left: 50%;
	top: calc(100% + 10px);
	z-index: 20;
	width: min(480px, 90vw);
	padding: 14px 16px;
	background: #1b1b1b;
	color: #f5f5f5;
	font-size: 0.95rem;
	line-height: 1.5;
	border-radius: 12px;
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 6px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	white-space: normal;
}

.hover-caption-text::before {
	content: "";
	position: absolute;
	top: -8px;
	left: 50%;
	transform: translateX(-50%);
	border: 8px solid transparent;
	border-bottom-color: #1b1b1b;
}

.hover-caption-start .hover-caption-text {
	left: 0;
	transform: translate(0, 6px);
}

.hover-caption-start .hover-caption-text::before {
	left: 18px;
	transform: none;
}

.hover-caption:hover .hover-caption-text,
.hover-caption:focus .hover-caption-text,
.hover-caption:focus-within .hover-caption-text {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}

.hover-caption-start:hover .hover-caption-text,
.hover-caption-start:focus .hover-caption-text,
.hover-caption-start:focus-within .hover-caption-text {
	transform: translate(0, 0);
}

.hero-cta {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
}

@media (min-width: 768px) {
	.hero-cta {
		justify-content: flex-start;
	}
}

.btn-puke {
	background-color: #560095;
	border-color: #560095;
	color: #ffffff;
}

.btn-puke:hover,
.btn-puke:focus {
	background-color: #4a007f;
	border-color: #4a007f;
	color: #ffffff;
}

.btn-acid {
	background-color: #7cfa00;
	border-color: #7cfa00;
	color: #0b0b0b;
}

.btn-acid:hover,
.btn-acid:focus {
	background-color: #6ee000;
	border-color: #6ee000;
	color: #0b0b0b;
}

.fbox-plain .fbox-icon i,
.fbox-plain .fbox-icon img {
	border: none;
	background-color: transparent;
	color: var(--cnvs-themecolor);
	border-radius: 0;
}

.fbox-content h3,
.fbox-content .h3 {
	color: #560095;
}

:root {
	--cnvs-themecolor: #7cfa00;
	--cnvs-themecolor-rgb: 124, 250, 0;
}

.always-hover.h-bg-youtube {
	background-color: #ff0000;
}

.always-hover.h-bg-github {
	background-color: #24292f;
}

a {
	color: #5fb00e;
}
