.tpg-hero-widget {
	--tpg-hero-min-height: 760px;
	--tpg-hero-content-width: 50%;
	--tpg-hero-media-width: 50%;
	--tpg-hero-content-gap: 24px;
	--tpg-hero-image-gap: 0px;
	--tpg-hero-image-min-height: var(--tpg-hero-min-height);
	--tpg-hero-overlay-color: transparent;
	--tpg-hero-overlay-opacity: 0;
	--tpg-hero-decorative-image: none;
	--tpg-hero-arrow-size: 48px;
	--tpg-hero-arrow-color: #362725;
	--tpg-hero-arrow-bg: rgba(255, 255, 255, 0.92);
	--tpg-hero-arrow-hover-color: #ffffff;
	--tpg-hero-arrow-hover-bg: #fb524f;
	--tpg-hero-dot-color: rgba(54, 39, 37, 0.32);
	--tpg-hero-dot-active-color: #fb524f;
	--tpg-hero-dot-size: 12px;
	--tpg-hero-primary-text: #ffffff;
	--tpg-hero-primary-bg: #fb524f;
	--tpg-hero-primary-border: #fb524f;
	--tpg-hero-primary-hover-text: #ffffff;
	--tpg-hero-primary-hover-bg: #362725;
	--tpg-hero-primary-hover-border: #362725;
	--tpg-hero-secondary-text: #362725;
	--tpg-hero-secondary-bg: transparent;
	--tpg-hero-secondary-border: #362725;
	--tpg-hero-secondary-hover-text: #ffffff;
	--tpg-hero-secondary-hover-bg: #362725;
	--tpg-hero-secondary-hover-border: #362725;
	position: relative;
	overflow: hidden;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.tpg-hero-widget::before,
.tpg-hero-widget::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.tpg-hero-widget::before {
	background: var(--tpg-hero-overlay-color);
	opacity: var(--tpg-hero-overlay-opacity);
	z-index: 0;
}

.tpg-hero-widget::after {
	background-image: var(--tpg-hero-decorative-image);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	opacity: 0.14;
	z-index: 0;
}

.tpg-hero-widget .tpg-hero-inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: stretch;
	min-height: var(--tpg-hero-min-height);
}

.tpg-hero-widget .tpg-hero-content,
.tpg-hero-widget .tpg-hero-media {
	flex: 0 0 auto;
}

.tpg-hero-widget .tpg-hero-content {
	width: var(--tpg-hero-content-width);
	max-width: var(--tpg-hero-content-width);
	display: flex;
	align-items: center;
	padding: 80px 7vw;
}

.tpg-hero-widget .tpg-hero-media {
	width: var(--tpg-hero-media-width);
	max-width: var(--tpg-hero-media-width);
	padding: var(--tpg-hero-image-gap);
}

.tpg-hero-widget .tpg-hero-media .section-wrapper,
.tpg-hero-widget .tpg-hero-slider,
.tpg-hero-widget .tpg-hero-slider .swiper-wrapper,
.tpg-hero-widget .tpg-hero-slide {
	height: 100%;
}

.tpg-hero-widget .tpg-hero-content .banner-content,
.tpg-hero-widget .tpg-hero-content .section-header {
	width: 100%;
}

.tpg-hero-widget .tpg-hero-content .section-header {
	display: flex;
	flex-direction: column;
	row-gap: var(--tpg-hero-content-gap);
	margin-bottom: 0;
}

.tpg-hero-widget .tpg-hero-eyebrow {
	display: inline-block;
	margin-bottom: 0;
	letter-spacing: 0;
}

.tpg-hero-widget .tpg-hero-title {
	margin: 0;
	max-width: 14ch;
	color: #362725;
}

.tpg-hero-widget .tpg-hero-title-highlight {
	color: #fb524f;
}

.tpg-hero-widget .tpg-hero-description {
	max-width: 60ch;
	color: #696969;
}

.tpg-hero-widget .tpg-hero-description p:last-child {
	margin-bottom: 0;
}

.tpg-hero-widget .tpg-hero-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
}

.tpg-hero-widget .tpg-hero-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 0;
	text-decoration: none;
}

.tpg-hero-widget .tpg-hero-btn span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 28px;
}

.tpg-hero-widget .tpg-hero-btn-primary {
	color: var(--tpg-hero-primary-text);
	background: var(--tpg-hero-primary-bg);
	border: 1px solid var(--tpg-hero-primary-border);
}

.tpg-hero-widget .tpg-hero-btn-primary span {
	color: var(--tpg-hero-primary-text) !important;
}

.tpg-hero-widget .tpg-hero-btn-primary:hover,
.tpg-hero-widget .tpg-hero-btn-primary:focus {
	color: var(--tpg-hero-primary-hover-text);
	background: var(--tpg-hero-primary-hover-bg);
	border-color: var(--tpg-hero-primary-hover-border);
}

.tpg-hero-widget .tpg-hero-btn-primary:hover span,
.tpg-hero-widget .tpg-hero-btn-primary:focus span {
	color: var(--tpg-hero-primary-hover-text) !important;
}

.tpg-hero-widget .tpg-hero-btn-secondary {
	color: var(--tpg-hero-secondary-text);
	background: var(--tpg-hero-secondary-bg);
	border: 1px solid var(--tpg-hero-secondary-border);
}

.tpg-hero-widget .tpg-hero-btn-secondary span {
	color: var(--tpg-hero-secondary-text) !important;
}

.tpg-hero-widget .tpg-hero-btn-secondary:hover,
.tpg-hero-widget .tpg-hero-btn-secondary:focus {
	color: var(--tpg-hero-secondary-hover-text);
	background: var(--tpg-hero-secondary-hover-bg);
	border-color: var(--tpg-hero-secondary-hover-border);
}

.tpg-hero-widget .tpg-hero-btn-secondary:hover span,
.tpg-hero-widget .tpg-hero-btn-secondary:focus span {
	color: var(--tpg-hero-secondary-hover-text) !important;
}

.tpg-hero-widget .tpg-hero-phone {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #362725;
	font-weight: 600;
	text-decoration: none;
}

.tpg-hero-widget .tpg-hero-phone i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(251, 82, 79, 0.12);
	color: #fb524f;
	font-size: 18px;
}

.tpg-hero-widget .tpg-hero-phone strong {
	font-size: 1em;
	font-weight: 700;
}

.tpg-hero-widget .tpg-hero-slider {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.tpg-hero-widget .tpg-hero-slider .swiper-wrapper {
	display: flex;
}

.tpg-hero-widget .tpg-hero-slider .swiper-slide,
.tpg-hero-widget .tpg-hero-slide {
	width: 100% !important;
	flex: 0 0 100% !important;
	flex-shrink: 0;
}

.tpg-hero-widget .tpg-hero-slide-image {
	position: relative;
	width: 100%;
	min-height: var(--tpg-hero-image-min-height);
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.tpg-hero-widget .tpg-hero-slide-label {
	position: absolute;
	top: 24px;
	left: 24px;
	display: inline-flex;
	align-items: center;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(54, 39, 37, 0.76);
	color: #ffffff;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.tpg-hero-widget .tpg-hero-slider-arrows {
	position: absolute;
	inset: 50% 24px auto;
	z-index: 3;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	pointer-events: none;
}

.tpg-hero-widget .tpg-hero-slider-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--tpg-hero-arrow-size);
	height: var(--tpg-hero-arrow-size);
	border: 0;
	border-radius: 50%;
	background: var(--tpg-hero-arrow-bg);
	color: var(--tpg-hero-arrow-color);
	box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
	cursor: pointer;
	pointer-events: auto;
	transition: all 0.25s ease;
}

.tpg-hero-widget .tpg-hero-slider-arrow:hover,
.tpg-hero-widget .tpg-hero-slider-arrow:focus {
	background: var(--tpg-hero-arrow-hover-bg);
	color: var(--tpg-hero-arrow-hover-color);
}

.tpg-hero-widget .tpg-hero-slider-dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 28px;
	z-index: 3;
	display: flex;
	justify-content: center;
	gap: 10px;
}

.tpg-hero-widget .tpg-hero-slider-dots .swiper-pagination-bullet {
	width: var(--tpg-hero-dot-size);
	height: var(--tpg-hero-dot-size);
	background: var(--tpg-hero-dot-color);
	opacity: 1;
}

.tpg-hero-widget .tpg-hero-slider-dots .swiper-pagination-bullet-active {
	background: var(--tpg-hero-dot-active-color);
}

.tpg-hero-widget.tpg-hero-layout-content_left .tpg-hero-inner {
	flex-direction: row-reverse;
}

.tpg-hero-widget.tpg-hero-layout-image_left .tpg-hero-inner {
	flex-direction: row;
}

.tpg-hero-widget.tpg-hero-valign-flex-start .tpg-hero-inner {
	align-items: flex-start;
}

.tpg-hero-widget.tpg-hero-valign-center .tpg-hero-inner {
	align-items: center;
}

.tpg-hero-widget.tpg-hero-valign-flex-end .tpg-hero-inner {
	align-items: flex-end;
}

.tpg-hero-widget.tpg-hero-align-left .tpg-hero-content {
	text-align: left;
}

.tpg-hero-widget.tpg-hero-align-left .tpg-hero-actions {
	justify-content: flex-start;
}

.tpg-hero-widget.tpg-hero-align-center .tpg-hero-content {
	text-align: center;
}

.tpg-hero-widget.tpg-hero-align-center .tpg-hero-actions {
	justify-content: center;
}

.tpg-hero-widget.tpg-hero-align-center .tpg-hero-title,
.tpg-hero-widget.tpg-hero-align-center .tpg-hero-description {
	margin-left: auto;
	margin-right: auto;
}

.tpg-hero-widget.tpg-hero-align-right .tpg-hero-content {
	text-align: right;
}

.tpg-hero-widget.tpg-hero-align-right .tpg-hero-actions {
	justify-content: flex-end;
}

.tpg-hero-widget.tpg-hero-align-right .tpg-hero-title,
.tpg-hero-widget.tpg-hero-align-right .tpg-hero-description {
	margin-left: auto;
}

@media (max-width: 991.98px) {
	.tpg-hero-widget .tpg-hero-content {
		padding: 64px 40px;
	}

	.tpg-hero-widget .tpg-hero-title {
		max-width: none;
	}
}

@media (max-width: 767.98px) {
	.tpg-hero-widget .tpg-hero-inner {
		min-height: auto;
		flex-direction: column;
	}

	.tpg-hero-widget.tpg-hero-mobile-content_first .tpg-hero-content {
		order: 1;
	}

	.tpg-hero-widget.tpg-hero-mobile-content_first .tpg-hero-media {
		order: 2;
	}

	.tpg-hero-widget.tpg-hero-mobile-image_first .tpg-hero-media {
		order: 1;
	}

	.tpg-hero-widget.tpg-hero-mobile-image_first .tpg-hero-content {
		order: 2;
	}

	.tpg-hero-widget .tpg-hero-content,
	.tpg-hero-widget .tpg-hero-media {
		width: 100%;
		max-width: 100%;
	}

	.tpg-hero-widget .tpg-hero-content {
		padding: 42px 24px;
	}

	.tpg-hero-widget .tpg-hero-slide-image {
		min-height: 320px;
	}

	.tpg-hero-widget .tpg-hero-slider-arrows {
		inset-inline: 16px;
	}
}
