/*!*********************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/block-library/custom/hero/style.css ***!
  \*********************************************************************************************************************************************************************************************/
/** ======================
 ** HERO DEFAULT
 ** ==================== */
.hero-default {
	--_height: 900px;
	display: grid;
	place-items: center;
	grid-template-areas: "stacked";

	width: var(--wp--custom--wide-size);
	margin-inline: auto;

	isolation: isolate;
}

.hero-default > * {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
	grid-area: stacked;
}

.hero-default p {
	font-family: var(--wp--preset--font-family--heading);
	font-weight: 700;
}

.hero-default .hero__image {
	width: 100%;
	height: var(--_height);
	-o-object-fit: cover;
	   object-fit: cover;

	margin: 0;

	z-index: -1;
}

.hero-default .hero__content {
	--_offset: var(--wp--preset--spacing--60);

	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	justify-content: center;
	gap: var(--wp--preset--spacing--40);

	width: min(calc(100% - calc(var(--wp--preset--spacing--40)) * 2), 1400px);

	margin-inline: auto;

	z-index: 1;
}

.hero-default .hero__content-inner {
	text-align: center;
}

.hero-default .hero__heading {
	font-size: calc(var(--wp--preset--font-size--colossal) * 1.25);
	color: var(--wp--preset--color--primary);
}

.hero-default .hero__text {
	font-family: var(--wp--preset--font-family--heading);
	font-size: calc(var(--wp--preset--font-size--medium) * 1.125);
	color: var(--wp--preset--color--white);
}

@media screen and (min-width: 1150px) {
	.hero-default {
		--_height: 700px;
	}

	.hero-default .hero__content {
		flex-direction: row;
	}

	.hero-default .hero__content-inner {
		flex-direction: column;
		align-items: initial;

		margin-left: var(--_offset);
		text-align: left;
	}
}

/**
 * Social Icons
 */
.hero-default .hero__content .social-icons {
	display: none;
}

@media screen and (min-width: 1150px) {
	.hero-default .hero__content .social-icons {
		display: flex;
	}
}

@media screen and (min-width: 1500px) {
	.hero-default .hero__content .social-icons {
		position: absolute;
		left: var(--wp--preset--spacing--30);
	}
}

/** ======================
 ** HERO FRONT PAGE
 ** ==================== */
.hero-front-page {
	--_descriptive-text-offset: 8rem;

	width: var(--wp--custom--wide-size);
	margin-inline: auto;
	margin-bottom: calc(var(--wp--preset--spacing--80) * 1.175) !important;

	position: relative;

	background-image: linear-gradient(
		to left in oklab,
		oklch(82.73% 0.176 163.44) 0%,
		oklch(75.96% 0.13566859286689995 217.26138497337027) 100%
	);
}

@media screen and (min-width: 800px) {
	.hero-front-page {
		margin-bottom: calc(var(--wp--preset--spacing--80) * 0.75) !important;
	}
}

/* Fallback */
@supports not (background-color: oklch(0%, 0, 0)) {
	.hero-front-page {
		background-image: linear-gradient(to left, #10e9a6 0%, #02c5e9 100%);
	}
}

/**
 * Hero top
 */
.hero-front-page .hero__content {
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	justify-content: center;
	gap: var(--wp--preset--spacing--40);

	width: var(--wp--custom--content-size);
	margin-inline: auto;

	min-height: 800px;

	padding-top: var(--wp--preset--spacing--70);
	padding-bottom: calc(var(--wp--preset--spacing--80) * 1.175);
}

.hero-front-page .hero__content-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

@media screen and (min-width: 800px) {
	.hero-front-page .hero__content {
		padding-bottom: calc(var(--wp--preset--spacing--80) * 0.75);
	}
}

@media screen and (min-width: 1150px) {
	.hero-front-page .hero__content {
		flex-direction: row;
	}

	.hero-front-page .hero__content-inner {
		flex-direction: column;
		align-items: initial;
		text-align: left;
	}
}

.hero-front-page .hero__heading {
	color: var(--wp--preset--color--white);
}

.hero-front-page .hero__text {
	color: var(--wp--preset--color--white);
	font-weight: bold;
}

/**
 * Buttons
 */
.hero-front-page .hero__buttons {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--wp--preset--spacing--20);

	margin-top: var(--wp--preset--spacing--20);
}

.hero__buttons .wp-block-button__link {
	--_padding-block-start: 0.75em;
	--_padding-block-end: 0.5em;
	border: 2px solid var(--wp--preset--color--white) !important;
}

@media screen and (min-width: 1150px) {
	.hero-front-page .hero__buttons {
		margin-top: var(--wp--preset--spacing--40);
		flex-direction: row;
	}
}

/**
 * Social Icons
 */
.hero-front-page .hero__content .social-icons {
	display: none;
}

@media screen and (min-width: 1150px) {
	.hero-front-page .hero__content .social-icons {
		display: flex;
	}
}

@media screen and (min-width: 1500px) {
	.hero-front-page .hero__content .social-icons {
		position: absolute;
		left: var(--wp--preset--spacing--30);
	}
}

/**
 * Hero bottom content
 */
.hero-front-page .hero__descriptive-text {
	position: absolute;
	left: 0;
	right: 0;
	transform: translateY(-50%);
}

/** ======================
 ** TOP BOTTOM
 ** ==================== */
.hero-top-bottom {
	--_height: 800px;
	width: var(--wp--custom--wide-size);
	margin-inline: auto;
}

.hero-top-bottom .hero__top {
	display: grid;
	place-items: center;
	grid-template-areas: "stacked";

	isolation: isolate;
}

.hero-top-bottom .hero__top > * {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
	grid-area: stacked;
}

.hero-top-bottom .hero__bottom {
	width: var(--wp--custom--narrow-size);
	margin-inline: auto;
	margin-block: var(--wp--preset--spacing--50);
	text-align: center;
}

.hero-top-bottom .hero__bottom p {
	font-family: var(--wp--preset--font-family--heading);
	font-weight: 700;
}

.hero-top-bottom .hero__image {
	width: 100%;
	height: var(--_height);
	-o-object-fit: cover;
	   object-fit: cover;

	z-index: -1;
}

.hero-top-bottom .hero__content {
	--_offset: var(--wp--preset--spacing--60);

	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	justify-content: center;
	gap: var(--wp--preset--spacing--40);

	width: min(calc(100% - calc(var(--wp--preset--spacing--40)) * 2), 1400px);

	margin-inline: auto;

	z-index: 1;
}

.hero-top-bottom .hero__heading {
	font-size: calc(var(--wp--preset--font-size--colossal) * 1.25);
	color: var(--wp--preset--color--primary);
	text-align: center;
}

@media screen and (min-width: 1150px) {
	.hero-top-bottom {
		--_height: 700px;
	}

	.hero-top-bottom .hero__content {
		flex-direction: row;
	}

	.hero-top-bottom .hero__content-inner {
		flex-direction: column;
		align-items: initial;

		margin-left: var(--_offset);
		text-align: left;
	}

	.hero-top-bottom .hero__heading {
		text-align: left;
	}
}

/**
 * Social Icons
 */
.hero-top-bottom .hero__content .social-icons {
	display: none;
}

@media screen and (min-width: 1150px) {
	.hero-top-bottom .hero__content .social-icons {
		display: flex;
	}
}

@media screen and (min-width: 1500px) {
	.hero-top-bottom .hero__content .social-icons {
		position: absolute;
		left: var(--wp--preset--spacing--30);
	}
}


/*# sourceMappingURL=style-index.css.map*/