/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */


.header-main:after {
	content: '';
	position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    height: 100%;
    transform-origin: bottom left;
    --tw-skew-y: 1deg;
    transform: translate(0, 0) rotate(0) skewX(0) skewY(1deg) scaleX(1) scaleY(1);
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255);
	backface-visibility: hidden;
    box-shadow: 0 5px 5px rgba(0, 0, 0, .1);
}

.gform-theme--foundation .gform_fields {
	gap: 20px;
}

/* ===== Product contact blok ===== */
.product-contact-block {
	padding: 60px 24px;
	background: #fff;
}

.product-contact-block__card {
	max-width: 960px;
	margin: 0 auto;
	display: flex;
	align-items: stretch;
	background: var(--color-light-grey, #f1f1f1);
	border-radius: 12px;
	overflow: hidden;
}

.product-contact-block__image {
	flex: 0 0 30%;
	aspect-ratio: 1 / 1;
	min-height: unset;
}

.product-contact-block__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.product-contact-block__content {
	flex: 1;
	padding: 48px 56px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.product-contact-block__content h3 {
	font-size: 2rem;
	font-weight: 700;
	color: var(--color-red, #ee1c24);
	margin: 0 0 16px;
	line-height: 1.2;
}

.product-contact-block__content p {
	color: var(--color-grey, #686868);
	line-height: 1.6;
	margin: 0 0 32px;
	font-size: 1rem;
}

.product-contact-block__buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	align-items: center;
}

.product-contact-block__btn-primary {
	display: inline-flex;
	align-items: center;
	padding: 13px 28px;
	background: var(--color-red, #ee1c24);
	color: #fff !important;
	text-decoration: none;
	border-radius: 6px;
	font-family: 'PT Sans', sans-serif;
	font-weight: 700;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	transition: background 0.2s;
}

.product-contact-block__btn-primary:hover {
	background: var(--color-dark-red, #d61920);
	color: #fff !important;
}

.product-contact-block__btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 24px;
	background: transparent;
	color: var(--color-red, #ee1c24);
	border: 2px solid var(--color-red, #ee1c24);
	text-decoration: none;
	border-radius: 6px;
	font-family: 'PT Sans', sans-serif;
	font-weight: 700;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	transition: background 0.2s, color 0.2s;
}

.product-contact-block__btn-outline:hover {
	background: var(--color-red, #ee1c24);
	color: #fff !important;
}

@media (max-width: 680px) {
	.product-contact-block__card {
		flex-direction: column;
	}

	.product-contact-block__image {
		flex: none;
		min-height: 260px;
	}

	.product-contact-block__content {
		padding: 32px 24px;
	}

	.product-contact-block__content h3 {
		font-size: 1.5rem;
	}
}