@charset "UTF-8";
/*!
Theme Name: _s
Theme URI: https://underscores.me/
Author: Automattic
Author URI: https://automattic.com/
Description: Hi. I'm a starter theme called <code>_s</code>, or <em>underscores</em>, if you like. I'm a theme meant for hacking so don't use me as a <em>Parent Theme</em>. Instead try turning me into the next, most awesome, WordPress theme out there. That's what I'm here for.
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: _s
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

_s is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@font-face {
	font-family: 'contheymedium_con_1';
	src: url("fonts/conthey-mediumcon1-webfont.woff2") format("woff2"), url("fonts/conthey-mediumcon1-webfont.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'benedictregular';
	src: url("fonts/benedict_regular-webfont.woff2") format("woff2"), url("fonts/benedict_regular-webfont.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}

.fade-in-left {
	opacity: 0;
	transform: translateX(-60px);
	transition: opacity 1s cubic-bezier(0.66, 0, 0.34, 1), transform 1s cubic-bezier(0.66, 0, 0.34, 1);
}

.fade-in-right {
	opacity: 0;
	transform: translateX(60px);
	transition: opacity 1s cubic-bezier(0.66, 0, 0.34, 1), transform 1s cubic-bezier(0.66, 0, 0.34, 1);
}

@media (max-width: 900px) {
	.fade-in-right {
		opacity: 0;
		transform: translateX(-60px);
		transition: opacity 1s cubic-bezier(0.66, 0, 0.34, 1), transform 1s cubic-bezier(0.66, 0, 0.34, 1);
	}
}

.visible {
	opacity: 1;
	transform: translateX(0) translateY(0) scale(1) rotate(0);
}

@keyframes jumpIn {
	0% {
		transform: translateY(0);
	}
	30% {
		transform: translateY(-30px);
	}
	50% {
		transform: translateY(0);
	}
	70% {
		transform: translateY(-15px);
	}
	100% {
		transform: translateY(0);
	}
}

.jump {
	animation: jumpIn 0.6s cubic-bezier(0.28, 0.84, 0.42, 1) both;
}

@keyframes bounceIn {
	0% {
		transform: translateY(60%) scale(0.9);
		opacity: 0;
	}
	60% {
		transform: translateY(-10%) scale(1.05);
		opacity: 1;
	}
	80% {
		transform: translateY(4%) scale(0.97);
	}
	100% {
		transform: translateY(0) scale(1);
	}
}

.bounce-in {
	animation: bounceIn 0.7s cubic-bezier(0.66, 0, 0.34, 1) both;
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.13);
	}
	100% {
		transform: scale(1);
	}
}

.pulse {
	animation: pulse 0.7s cubic-bezier(0.66, 0, 0.34, 1) both;
}

@keyframes rotateIn {
	0% {
		transform: rotate(-90deg) scale(0.7);
		opacity: 0;
	}
	100% {
		transform: rotate(0) scale(1);
		opacity: 1;
	}
}

.rotate-in {
	animation: rotateIn 0.5s cubic-bezier(0.66, 0, 0.34, 1) both;
}

@keyframes blurIn {
	0% {
		opacity: 0;
		filter: blur(6px);
	}
	100% {
		opacity: 1;
		filter: blur(0);
	}
}

.blur-in {
	animation: blurIn 0.7s cubic-bezier(0.66, 0, 0.34, 1) both;
}

@keyframes slideUpFade {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.slide-up-fade {
	animation: slideUpFade 0.6s cubic-bezier(0.66, 0, 0.34, 1) both;
}

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/* Normalize
--------------------------------------------- */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/* Blocks
--------------------------------------------- */
.double-column-section {
	width: 100vw;
	background: #fff;
	margin-top: 40px;
}

.double-column-section .columns {
	display: flex;
	gap: 0;
}

.double-column-section .column.left {
	width: 55%;
}

@media (max-width: 900px) {
	.double-column-section .column.left {
		width: 100%;
	}
}

.double-column-section .column.right {
	width: 45%;
}

@media (max-width: 900px) {
	.double-column-section .column.right {
		width: 100%;
	}
}

@media (max-width: 900px) {
	.double-column-section .columns {
		flex-direction: column;
		gap: 16px;
	}
}

.double-column-section__h2 {
	text-align: left;
	margin-top: 0;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: "Lato", sans-serif;
	font-size: 18px;
	line-height: 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

h1 {
	font-family: "contheymedium_con_1";
	font-size: 52px;
	line-height: 56px;
	text-align: left;
	color: white;
	font-weight: 400;
}

h2 {
	font-family: "contheymedium_con_1";
	font-size: 41px;
	line-height: 44px;
	text-align: center;
	color: black;
}

p {
	margin-bottom: 30px;
	font-weight: 300;
	font-size: 19px;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

.signature {
	position: absolute;
	top: 250px;
	z-index: 999999;
}

.signature path {
	stroke-dasharray: 400;
	stroke-dashoffset: 400;
	animation: sign-draw 2.5s ease forwards;
}

@keyframes sign-draw {
	to {
		stroke-dashoffset: 0;
	}
}

/* Elements
--------------------------------------------- */
body {
	background: #fff;
	overflow-x: hidden;
	margin: 0 !important;
	max-width: 100vw;
}

* {
	box-sizing: border-box;
}

html {
	scroll-padding-top: 50px;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Links
--------------------------------------------- */
a {
	color: #4169e1;
}

a:hover, a:focus, a:active {
	color: #191970;
}

a:focus {
	outline: thin dotted;
}

a:hover, a:active {
	outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

.btn {
	background: black;
	color: white;
	border-radius: 10px;
	padding: 20px 20px;
	text-decoration: none;
	font-weight: 600;
	font-size: 18px;
}

@media (max-width: 900px) {
	.btn {
		padding: 10px 17px;
		height: fit-content;
	}
}

.btn:hover {
	color: white;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

.cf7-grid {
	display: flex;
	flex-direction: column;
	gap: 18px;
	max-width: 1100px;
	margin: 0 auto;
	width: 100%;
}

.cf7-grid p {
	margin-bottom: 0;
}

@media (max-width: 900px) {
	.cf7-grid p {
		margin: 0;
	}
}

.cf7-grid .wpcf7-not-valid-tip {
	color: #dc3232;
	font-size: 14px;
	font-weight: normal;
	display: block;
	position: absolute;
	right: 20px;
	top: 0;
}

.cf7-grid .cf7-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
	width: 100%;
	align-items: flex-start;
}

.cf7-grid .cf7-col {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}

.cf7-grid .cf7-col span[data-name="your-name"] input {
	margin-bottom: 30px;
}

@media (max-width: 900px) {
	.cf7-grid .cf7-col span[data-name="your-name"] input {
		margin-bottom: 10px;
		margin-top: 25px;
	}
}

.cf7-grid .cf7-col--left {
	justify-content: flex-start;
}

.cf7-grid .cf7-col--right {
	justify-content: flex-end;
}

.cf7-grid input[type="text"],
.cf7-grid input[type="email"],
.cf7-grid textarea {
	width: 100%;
	background: #fff;
	border: none;
	border-radius: 8px;
	font-size: 1.08rem;
	padding: 18px 16px;
	color: #222;
	font-family: "Lato", sans-serif;
	margin-bottom: 0;
	outline: none;
	transition: border 0.2s;
	resize: vertical;
	min-height: 54px;
}

.cf7-grid textarea {
	min-height: 120px;
	max-height: 150px;
}

.cf7-grid .cf7-rodo-wrap {
	display: flex;
	align-items: flex-start;
	border-radius: 10px;
	font-family: "Lato", sans-serif;
	font-size: 1.07rem;
	color: #222;
	margin-bottom: 0;
}

.cf7-grid .cf7-rodo-wrap label {
	display: flex;
}

.cf7-grid .cf7-rodo-wrap .wpcf7-acceptance {
	margin: 0 !important;
	padding: 0 !important;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	width: 100%;
}

.cf7-grid .cf7-rodo-wrap .wpcf7-list-item {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	width: 100%;
}

.cf7-grid .cf7-rodo-wrap .wpcf7-list-item input[type="checkbox"] {
	width: 32px;
	height: 32px;
	margin: 0 7px 0 0;
	accent-color: #fff;
	border: 2px solid #fff;
	border-radius: 5px;
	flex-shrink: 0;
	background: #fff;
	appearance: none;
}

.cf7-grid .cf7-rodo-wrap .wpcf7-list-item input[type="checkbox"]:checked {
	background: black;
	border: 2px solid #111;
}

.cf7-grid .cf7-rodo-wrap .wpcf7-list-item input[type="checkbox"]:focus {
	outline: 2px solid #b70000;
}

.cf7-grid .cf7-rodo-wrap .wpcf7-list-item-label {
	display: block;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.32;
	margin: 0;
	padding: 0;
	user-select: text;
}

@media (max-width: 900px) {
	.cf7-grid .cf7-rodo-wrap .wpcf7-list-item-label {
		margin-left: 15px;
	}
}

@media (max-width: 700px) {
	.cf7-grid .cf7-rodo-wrap {
		flex-direction: column;
		align-items: flex-start;
		padding: 12px 8px;
		font-size: 0.98rem;
	}
	.cf7-grid .cf7-rodo-wrap .wpcf7-acceptance,
	.cf7-grid .cf7-rodo-wrap .wpcf7-list-item {
		flex-direction: column;
		gap: 8px;
	}
	.cf7-grid .cf7-rodo-wrap .wpcf7-list-item input[type="checkbox"] {
		margin-bottom: 10px;
		margin-right: 0;
	}
}

.cf7-grid .cf7-submit-wrap {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	margin-top: 0;
}

.cf7-grid .cf7-submit-wrap p {
	width: 100%;
}

.cf7-grid .cf7-submit-wrap .cf7-submit {
	width: 100%;
	background: #111;
	color: #fff;
	font-family: "contheymedium_con_1";
	font-size: 1.18rem;
	font-weight: 700;
	border: none;
	border-radius: 8px;
	padding: 16px 0;
	transition: background 0.2s;
	cursor: pointer;
	letter-spacing: 0.01em;
}

@media (max-width: 900px) {
	.cf7-grid .cf7-row {
		grid-template-columns: 1fr;
		gap: 14px;
	}
	.cf7-grid .cf7-submit-wrap {
		justify-content: flex-start;
		max-width: 100%;
	}
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Navigation
--------------------------------------------- */
.main-navigation {
	display: block;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	display: block;
	left: auto;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

.main-navigation .site-title {
	display: none;
}

.main-navigation.is-sticky {
	position: fixed;
	top: 0;
	left: 0;
	background: #f8c555;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
	z-index: 1000;
	animation: slideDownSticky 0.4s cubic-bezier(0.66, 0, 0.34, 1);
	z-index: 999999;
}

.main-navigation.is-sticky .site-title {
	display: block;
}

.main-navigation.is-sticky a:hover {
	color: black !important;
}

.main-navigation.is-sticky .container {
	min-height: 45px;
	justify-content: space-between;
}

@keyframes slideDownSticky {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(0);
	}
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: flex;
	}
}

.site-main .comment-navigation, .site-main
.posts-navigation, .site-main
.post-navigation {
	margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

body.not-front-page nav.main-navigation .nav-menu li a {
	color: black;
}

/* Posts and pages
--------------------------------------------- */
body.blog main.site-main .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 32px 16px;
}

body.blog .blog-title {
	display: inline-block;
	background: #111;
	color: #fff;
	font-family: "contheymedium_con_1";
	font-size: 2.1rem;
	font-weight: 500;
	padding: 8px 24px;
	border-radius: 6px;
	letter-spacing: 0.01em;
	line-height: 1.2;
}

body.blog .blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-bottom: 32px;
}

body.blog .blog-post {
	background: #fff;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.2s;
}

body.blog .blog-post .blog-post-thumb {
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: cover;
	display: block;
	border-radius: 10px;
}

body.blog .blog-post .blog-post-content {
	padding: 35px 0;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
}

body.blog .blog-post .blog-post-title {
	font-size: 24px;
	font-weight: 400;
	line-height: 29px;
	margin: 0;
	color: black;
	text-decoration: none;
	transition: color 0.2s;
	font-family: "contheymedium_con_1";
}

body.blog .blog-post .blog-post-title:hover {
	color: #c89c3c;
}

body.blog .blog-post .blog-post-excerpt {
	font-size: 1.02rem;
	color: black;
	margin-bottom: 0.7rem;
	flex: 1 1 auto;
}

body.blog .blog-post .blog-post-excerpt p {
	font-size: 20px;
	color: black;
	margin-bottom: 0.7rem;
	flex: 1 1 auto;
	font-weight: 600;
	line-height: 26px;
}

body.blog .blog-post .blog-post-readmore {
	margin-top: auto;
	align-self: flex-start;
	color: #c89c3c;
	font-weight: 500;
	text-decoration: underline;
	font-size: 0.98rem;
	transition: color 0.2s;
}

body.blog .blog-post .blog-post-readmore:hover {
	color: #222;
}

@media (max-width: 900px) {
	body.blog .blog-grid {
		grid-template-columns: 1fr 1fr;
		gap: 22px;
	}
}

@media (max-width: 600px) {
	body.blog .blog-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	body.blog .blog-title {
		font-size: 1.5rem;
		margin-bottom: 1.2rem;
	}
}

.blog-post {
	margin-top: -52px;
}

.single-post-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 48px 16px 32px 16px;
	background: #fff;
}

.single-article {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.single-post-thumb {
	height: calc(100vh - 60px);
	width: 100%;
	overflow: hidden;
	position: relative;
}

.single-post-thumb img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	display: block;
}

.hero-image {
	height: 100vh;
	background-image: url("URL_DO_OBRAZU.jpg");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	background-repeat: no-repeat;
}

.single-post-title {
	display: inline-block;
	background: #111;
	color: #fff;
	font-family: "contheymedium_con_1";
	font-size: 2.1rem;
	font-weight: 500;
	padding: 8px 24px;
	border-radius: 6px;
	letter-spacing: 0.01em;
	line-height: 1.2;
}

.single-post-meta {
	display: flex;
	gap: 1.2rem;
	justify-content: center;
	font-size: 1.01rem;
	color: #888;
	margin-bottom: 2.2rem;
}

.single-post-meta .single-post-category {
	color: #c89c3c;
	font-weight: 500;
}

.single-post-content {
	font-size: 1.12rem;
	line-height: 1.7;
	color: #222;
	margin-bottom: 2.5rem;
	word-break: break-word;
}

.single-post-content h2 {
	text-align: left;
	font-family: "Lato", sans-serif;
}

.single-post-content p {
	font-size: 19px;
}

.single-post-navigation {
	display: flex;
	justify-content: space-between;
	margin-top: 2.5rem;
}

.single-post-navigation .nav-subtitle {
	display: block;
	font-size: 0.92rem;
	color: #888;
}

.single-post-navigation .nav-title {
	display: block;
	font-size: 1.05rem;
	color: #c89c3c;
	font-weight: 600;
	margin-top: 2px;
}

@media (max-width: 700px) {
	.single-post-container {
		padding: 18px 4vw 24px 4vw;
	}
	.single-post-title {
		font-size: 1.4rem;
	}
	.single-post-thumb {
		margin-bottom: 1.1rem;
	}
	.single-post-content {
		font-size: 1.01rem;
	}
}

.sticky {
	display: block;
}

.post,
.page {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

.privacy-policy h1 {
	display: inline-block;
	background: #111;
	color: #fff;
	font-family: "contheymedium_con_1";
	font-size: 2.1rem;
	font-weight: 500;
	padding: 8px 24px;
	border-radius: 6px;
	letter-spacing: 0.01em;
	line-height: 1.2;
}

.privacy-policy nav.main-navigation .nav-menu li a {
	color: black;
}

/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* Footer
--------------------------------------------- */
.contact-hero-section {
	width: 100vw;
	background: #f8c555;
	padding: 0 0 10px 0;
}

.contact-hero-section .container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px;
}

.contact-hero-section .contact-hero-grid {
	display: flex;
	gap: 48px;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
}

.contact-hero-section .contact-hero-logo {
	flex: 0 0 260px;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 0;
}

.contact-hero-section .contact-hero-logo img {
	width: 180px;
	object-fit: contain;
	margin-bottom: 12px;
}

@media (max-width: 900px) {
	.contact-hero-section .contact-hero-logo img {
		max-width: 180px;
	}
}

.contact-hero-section .contact-hero-logo .contact-hero-logo-desc {
	font-family: "Lato", sans-serif;
	font-size: 1.09rem;
	color: #222;
	text-align: center;
	margin-top: 4px;
	font-weight: 500;
}

.contact-hero-section .contact-hero-main {
	flex: 1 1 600px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-top: 30px;
}

.contact-hero-section .contact-hero-main h2 {
	font-family: "contheymedium_con_1";
	font-size: 2.4rem;
	font-weight: 700;
	color: #222;
	margin: 0 0 12px 0;
	line-height: 1.15;
}

.contact-hero-section .contact-hero-main p {
	font-family: "Lato", sans-serif;
	font-size: 1.5rem;
	color: #222;
	text-align: center;
	width: 74%;
	margin: 0;
}

.contact-hero-section .wpforms-form {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 16px;
	background: none;
	box-shadow: none;
	padding: 0;
	border: none;
}

.contact-hero-section .wpforms-form .wpforms-field {
	margin-bottom: 0;
}

.contact-hero-section .wpforms-form .wpforms-field-name,
.contact-hero-section .wpforms-form .wpforms-field-email {
	flex: 1 1 250px;
	min-width: 200px;
}

.contact-hero-section .wpforms-form .wpforms-field-textarea {
	flex: 1 1 100%;
	min-width: 260px;
}

.contact-hero-section .wpforms-form .wpforms-field-checkbox {
	flex: 1 1 100%;
	font-size: 0.92rem;
	color: #222;
	margin-top: 6px;
	margin-bottom: 0;
}

.contact-hero-section .wpforms-form .wpforms-field-checkbox label {
	font-weight: 400;
	line-height: 1.3;
}

.contact-hero-section .wpforms-form .wpforms-field-checkbox input[type="checkbox"] {
	width: 22px;
	height: 22px;
	margin-right: 8px;
	vertical-align: middle;
}

.contact-hero-section .wpforms-form input,
.contact-hero-section .wpforms-form textarea {
	width: 100%;
	background: #fff;
	border: none;
	border-radius: 6px;
	font-size: 1.1rem;
	padding: 18px 14px;
	color: #222;
	font-family: "Lato", sans-serif;
	margin-bottom: 0;
	outline: none;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
	transition: border 0.2s;
}

.contact-hero-section .wpforms-form input:focus,
.contact-hero-section .wpforms-form textarea:focus {
	border: 2px solid #b70000;
}

.contact-hero-section .wpforms-form .wpforms-submit-container {
	flex: 1 1 100%;
	margin-top: 8px;
}

.contact-hero-section .wpforms-form .wpforms-submit-container button,
.contact-hero-section .wpforms-form .wpforms-submit-container input[type="submit"] {
	width: 100%;
	background: #111;
	color: #fff;
	font-family: "contheymedium_con_1";
	font-size: 1.18rem;
	font-weight: 700;
	border: none;
	border-radius: 8px;
	padding: 16px 0;
	transition: background 0.2s;
	cursor: pointer;
}

.contact-hero-section .wpforms-form .wpforms-submit-container button:hover,
.contact-hero-section .wpforms-form .wpforms-submit-container input[type="submit"]:hover {
	background: #b70000;
}

@media (max-width: 900px) {
	.contact-hero-section .contact-hero-grid {
		flex-direction: column;
		align-items: center;
		gap: 24px;
	}
	.contact-hero-section .contact-hero-main h1 {
		font-size: 1.4rem;
	}
	.contact-hero-section .wpforms-form {
		gap: 14px 0;
	}
}

.contact-section {
	width: 100vw;
	background: #fff;
	padding: 60px 0;
}

.contact-section .container {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 24px;
}

.contact-section .contact-title {
	font-family: "contheymedium_con_1";
	font-size: 2.4rem;
	font-weight: 400;
	color: #111;
	margin-top: 0;
	margin-bottom: 32px;
	letter-spacing: 0.02em;
	text-align: left;
}

.contact-section .contact-columns {
	display: flex;
	gap: 0;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.contact-section .contact-columns img {
	max-width: 130px;
}

.contact-section .contact-col {
	flex: 1 1 340px;
	min-width: 260px;
	max-width: 450px;
	display: flex;
	align-items: center;
	text-align: left;
}

.contact-section .contact-map {
	width: 120px;
	height: auto;
	margin-bottom: 16px;
	margin-top: 8px;
}

.contact-section .contact-label {
	font-family: "contheymedium_con_1";
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 8px;
	color: #111;
	letter-spacing: 0.04em;
	margin-left: 35px;
}

@media (max-width: 900px) {
	.contact-section .contact-label {
		margin-left: 0;
	}
}

.contact-section .contact-details {
	font-family: "Lato", sans-serif;
	font-size: 1.09rem;
	color: #222;
	line-height: 1.5;
	margin-top: 0;
	margin-left: 35px;
}

@media (max-width: 900px) {
	.contact-section .contact-details {
		margin-left: 0;
	}
}

.contact-section .contact-details strong {
	font-weight: 700;
	color: #111;
	font-size: 1.13rem;
}

.contact-section .contact-details a {
	color: black;
	text-decoration: none;
}

@media (max-width: 900px) {
	.contact-section .contact-columns {
		flex-direction: column;
		gap: 32px;
		align-items: center;
	}
	.contact-section .contact-col {
		max-width: 100%;
	}
	.contact-section .contact-title {
		font-size: 1.4rem;
		margin-bottom: 20px;
	}
}

.site-footer {
	width: 100vw;
	background: #f8c555;
	padding: 0;
	font-family: "Lato", sans-serif;
	font-size: 1.12rem;
	color: #222;
	border-top: 4px solid #fff;
}

.site-footer .container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 60px;
}

@media (max-width: 900px) {
	.site-footer .footer-left {
		text-align: center;
	}
}

.site-footer .footer-left span.footer-domain {
	font-weight: bold;
	color: #111;
}

.site-footer .footer-right a {
	color: #111;
	font-weight: bold;
	text-decoration: underline;
	font-size: 1.08rem;
	transition: color 0.2s;
}

.site-footer .footer-right a:hover {
	color: white;
}

@media (max-width: 700px) {
	.site-footer .container {
		flex-direction: column;
		gap: 8px;
		padding: 8px 10px;
		min-height: unset;
		font-size: 0.98rem;
	}
	.site-footer .footer-right {
		margin-top: 0;
	}
}

#scrollToTop {
	position: fixed;
	right: 2rem;
	bottom: 2rem;
	width: 3rem;
	height: 3rem;
	background: #f8c555;
	color: #fff;
	border: none;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s, transform 0.3s;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}

#scrollToTop.show {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

#scrollToTop svg {
	display: block;
	width: 2rem;
	height: 2rem;
	transition: transform 0.2s;
	transform: translateY(-0.15rem) scale(2);
}

/* Header
--------------------------------------------- */
.container {
	max-width: 1240px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
	box-sizing: border-box;
	width: 100%;
}

.site-title {
	font-family: "contheymedium_con_1";
	font-size: 1.8rem;
	font-weight: 700;
	margin: 0;
	letter-spacing: 0.01em;
}

.site-title a {
	color: white;
	text-decoration: none;
	font-weight: 400;
	letter-spacing: 3px;
}

header.site-header {
	background: #f8c555;
	position: relative;
	z-index: 9;
}

header.site-header .header-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 60px;
	min-height: 60px;
}

header.site-header .site-branding {
	min-width: 400px;
	display: flex;
	align-items: center;
	gap: 18px;
}

header.site-header .site-title {
	font-family: "contheymedium_con_1";
	font-size: 1.8rem;
	font-weight: 700;
	margin: 0;
	letter-spacing: 0.01em;
}

header.site-header .site-title a {
	color: white;
	text-decoration: none;
	font-weight: 400;
	letter-spacing: 3px;
}

header.site-header .header-icons {
	display: flex;
	align-items: center;
	gap: 32px;
}

header.site-header .header-icons .icon-box {
	display: flex;
	align-items: center;
	gap: 8px;
}

header.site-header .header-icons .icon-box img {
	height: 31px;
	width: 31px;
}

header.site-header .header-icons .icon-box .icon-text {
	font-family: "Lato", sans-serif;
	color: black;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.5px;
}

header.site-header .header-icons .icon-box .icon-text a {
	color: black;
	text-decoration: none;
}

@media (max-width: 900px) {
	header.site-header .header-bar {
		flex-direction: column;
		align-items: flex-start;
		height: auto;
		min-height: unset;
		gap: 8px;
	}
	header.site-header .site-branding {
		min-width: 220px;
		font-size: 1.1rem;
	}
	header.site-header .header-icons {
		gap: 16px;
	}
	header.site-header nav.main-navigation .container {
		padding-left: 10px;
		padding-right: 10px;
	}
	header.site-header nav.main-navigation .nav-menu {
		gap: 18px;
	}
}

@media (max-width: 700px) {
	header.site-header .site-title {
		font-size: 1.2rem;
	}
	header.site-header .header-bar {
		flex-direction: column;
		gap: 4px;
	}
	header.site-header .header-icons {
		flex-wrap: wrap;
		gap: 8px;
	}
	header.site-header nav.main-navigation .nav-menu {
		flex-wrap: wrap;
		gap: 10px;
	}
}

nav.main-navigation {
	position: relative;
	z-index: 9;
}

nav.main-navigation .container {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	min-height: 52px;
}

nav.main-navigation .nav-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 70px;
	font-size: 1.02rem;
}

nav.main-navigation .nav-menu li a {
	color: white;
	text-decoration: none;
	padding: 8px 0;
	font-size: 18px;
	transition: color 0.2s;
	font-family: "Lato", sans-serif;
	font-weight: 600;
}

nav.main-navigation .nav-menu li a:hover, nav.main-navigation .nav-menu li a.current_page_item {
	color: #f8c555;
	font-weight: 600;
}

nav.main-navigation .menu-toggle {
	display: none;
}

/* Front page
--------------------------------------------- */
.hero-banner {
	width: 100vw;
	height: calc(100vh - 52px);
	background-color: #f8c555;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	margin-top: 0;
	top: -52px;
	margin-bottom: -52px;
	position: relative;
	overflow: hidden;
}

.hero-banner__head {
	position: absolute;
	top: 0;
	left: 24px;
}

@media (max-width: 900px) {
	.hero-banner__head {
		position: relative;
		top: 0;
		left: 24px;
		font-size: 32px;
		line-height: 33px;
	}
}

.hero-banner__head--abogado {
	font-size: 32px;
	position: absolute;
	top: 195px;
	left: 26px;
}

@media screen and (max-width: 900px) {
	.hero-banner__head--abogado {
		font-size: 18px;
		position: absolute;
		top: 98px;
		left: 35px;
	}
}

.hero-banner .container.hero-img-container {
	position: relative;
	height: calc(100vh - 52px);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding-top: 70px;
	box-sizing: border-box;
}

.hero-banner .hero-img {
	display: block;
	height: 93vh;
	width: auto;
	max-width: 100%;
	object-fit: contain;
	margin: 0 0 0 auto;
	padding: 0;
}

.hero-banner .hero-img__mobile {
	display: none;
}

@media (max-width: 900px) {
	.hero-banner {
		min-height: 100vh;
		margin-top: 50px;
	}
	.hero-banner .container.hero-img-container {
		height: 400px;
		padding-top: 40px;
	}
	.hero-banner .hero-img {
		display: none;
	}
	.hero-banner .hero-img__mobile {
		display: block;
	}
}

@media (max-width: 600px) {
	.hero-banner {
		min-height: 100vh;
		margin-top: 50px;
	}
	.hero-banner .container.hero-img-container {
		height: 220px;
		padding-top: 20px;
	}
	.hero-banner .hero-img {
		height: 150px;
	}
}

.about {
	background-size: contain;
	background-position: left;
	background-repeat: no-repeat;
}

@media (max-width: 900px) {
	.about {
		padding: 0 24px !important;
	}
}

.about__li {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 45px;
}

@media (max-width: 900px) {
	.about__li {
		margin-right: 0;
		margin-bottom: 20px;
	}
}

.about__li a {
	color: black;
	text-decoration: none;
	font-weight: 300;
	font-size: 16px;
	max-width: 138px;
	display: block;
	text-align: right;
	margin-right: 8px;
}

.about__btns {
	margin-top: 40px;
	display: flex;
	justify-content: end;
}

@media (max-width: 900px) {
	.about__btns {
		flex-direction: column;
		align-items: center;
	}
}

.fullwidth-video-section {
	display: flex;
	width: 100vw;
	min-height: 400px;
	position: relative;
	overflow: hidden;
	background: #f8c555;
}

.fullwidth-video-section .video-column {
	width: 50vw;
	min-width: 320px;
	height: auto;
	display: flex;
	align-items: stretch;
	justify-content: flex-end;
	position: relative;
}

.fullwidth-video-section .video-column video,
.fullwidth-video-section .video-column img {
	width: 100%;
	height: 100%;
	min-height: 400px;
	object-fit: cover;
	display: block;
	border-radius: 0;
	transition: border-radius 0.2s;
}

.fullwidth-video-section .content-column {
	width: 50vw;
	max-width: 1240px;
	padding: 60px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	box-sizing: border-box;
}

.fullwidth-video-section .content-column h2 {
	text-align: left;
	margin: 0;
}

.fullwidth-video-section .content-column p {
	margin-bottom: 15px;
	max-width: 567px;
}

.fullwidth-video-section .content-column.right {
	width: 600px;
	align-items: unset;
	margin: 0;
	margin-right: 40px;
	padding-bottom: 0;
	padding-top: 0;
	justify-content: flex-start;
	padding-right: 0;
}

@media (max-width: 900px) {
	.fullwidth-video-section .content-column.right {
		width: 100%;
		max-width: 100%;
		padding: 20px 24px;
	}
}

.fullwidth-video-section .content-column.right p {
	margin-bottom: 0;
}

.fullwidth-video-section.video-left {
	flex-direction: row;
	margin-bottom: 30px;
	padding-bottom: 30px;
	padding-top: 30px;
}

@media (max-width: 900px) {
	.fullwidth-video-section.video-left {
		padding-top: 0;
		padding-bottom: 0;
	}
}

.fullwidth-video-section.video-left .video-column video,
.fullwidth-video-section.video-left .video-column img {
	border-radius: 0 25px 25px 0;
}

.fullwidth-video-section.video-left .content-column {
	padding-left: 85px;
}

@media (max-width: 900px) {
	.fullwidth-video-section.video-left .content-column {
		padding: 20px 24px;
	}
}

@media (max-width: 900px) {
	.fullwidth-video-section.video-left .content-column p {
		margin: 0;
	}
}

.fullwidth-video-section.video-right {
	flex-direction: row-reverse;
	margin-top: 30px;
	padding-top: 30px;
}

.fullwidth-video-section.video-right .video-column video,
.fullwidth-video-section.video-right .video-column img {
	border-radius: 25px 0 0 25px;
}

@media (max-width: 900px) {
	.fullwidth-video-section {
		flex-direction: column !important;
	}
	.fullwidth-video-section .video-column,
	.fullwidth-video-section .content-column {
		width: 100vw;
		max-width: 100vw;
	}
	.fullwidth-video-section .video-column {
		min-width: 0;
		height: 220px;
	}
	.fullwidth-video-section .video-column video,
	.fullwidth-video-section .video-column img {
		min-height: 220px;
		height: 220px;
		border-radius: 0 !important;
	}
}

.hero-info-section {
	width: 100vw;
	background: #fff;
	padding: 48px 0 32px 0;
}

@media (max-width: 900px) {
	.hero-info-section {
		padding: 0;
	}
}

.hero-info-section .container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px;
}

.hero-info-section .hero-info-headlines {
	margin-bottom: 48px;
	text-align: left;
}

.hero-info-section .hero-info-headlines .headline-row {
	margin-bottom: 8px;
}

.hero-info-section .hero-info-headlines .headline-box {
	display: inline-block;
	background: #111;
	color: #fff;
	font-family: "contheymedium_con_1";
	font-size: 2.1rem;
	font-weight: 500;
	padding: 8px 24px;
	border-radius: 6px;
	letter-spacing: 0.01em;
	line-height: 1.2;
}

.hero-info-section .hero-info-graphics-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 0;
	margin-top: 30px;
	flex-wrap: wrap;
}

.hero-info-section .hero-info-col {
	flex: 1 1 0;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero-info-section .hero-info-col img,
.hero-info-section .hero-info-col svg {
	width: 100%;
	display: block;
}

.hero-info-section .hero-info-col .hero-info-caption {
	font-family: "Lato", sans-serif;
	font-size: 1.02rem;
	color: #111;
	font-weight: 400;
	line-height: 1.3;
}

.hero-info-section .hero-info-col .hero-info-caption strong {
	font-weight: 700;
	letter-spacing: 0.01em;
	color: #111;
}

@media (max-width: 900px) {
	.hero-info-section .hero-info-graphics-row {
		flex-wrap: wrap;
		gap: 16px;
	}
	.hero-info-section .hero-info-col {
		max-width: 45%;
		margin-bottom: 18px;
	}
}

@media (max-width: 600px) {
	.hero-info-section .hero-info-graphics-row {
		flex-direction: column;
		align-items: center;
		gap: 12px;
	}
	.hero-info-section .hero-info-col {
		max-width: 90%;
	}
	.hero-info-section .hero-info-headlines .headline-box {
		font-size: 1.2rem;
		padding: 6px 12px;
	}
}

.transaction-support-section {
	width: 100vw;
	padding-top: 32px;
	padding-bottom: 32px;
	background: #fff;
	position: relative;
}

.transaction-support-section .fullwidth-headline {
	width: 100vw;
	display: flex;
	justify-content: flex-end;
	position: relative;
	margin-bottom: 32px;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

.transaction-support-section .fullwidth-headline .headline-box {
	display: inline-block;
	background: #f8c555;
	color: #222;
	font-family: "contheymedium_con_1";
	font-size: 2.1rem;
	font-weight: 500;
	padding: 30px 55px 26px;
	border-radius: 50px 0 0 50px;
	letter-spacing: 0.01em;
	margin-right: 0;
	margin-top: 0;
	text-align: right;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.transaction-support-section .container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px;
	position: relative;
	z-index: 9;
}

.transaction-support-section .columns {
	display: flex;
	gap: 90px;
	justify-content: flex-start;
	align-items: flex-start;
	margin-bottom: 48px;
	flex-wrap: wrap;
}

.transaction-support-section .column {
	flex: 1 1 0;
	min-width: 280px;
	max-width: 490px;
}

.transaction-support-section .column ul {
	padding-left: 20px;
	margin: 25px 0 0 0;
	font-family: "Lato", sans-serif;
	font-size: 1.07rem;
	color: #232323;
	line-height: 1.6;
}

.transaction-support-section .column ul li {
	margin-bottom: 0;
	font-weight: 300;
	font-size: 19px;
}

.transaction-support-section .section-pen {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	margin-top: 36px;
	position: absolute;
	bottom: -77px;
	right: 0;
	z-index: -1;
	max-width: 596px;
}

.transaction-support-section .section-pen video {
	max-width: 596px;
}

@media (max-width: 900px) {
	.transaction-support-section .section-pen video {
		max-width: 100%;
	}
}

.transaction-support-section .section-pen .pen-svg {
	width: 180px;
	height: 60px;
	display: block;
}

.transaction-support-section .section-pen .signature-label {
	font-family: "Lato", sans-serif;
	font-size: 1.3rem;
	color: #232323;
	margin-top: 8px;
	letter-spacing: 0.1em;
}

@media (max-width: 900px) {
	.transaction-support-section .columns {
		flex-direction: column;
		gap: 20px;
	}
	.transaction-support-section .column {
		max-width: 100%;
	}
	.transaction-support-section .fullwidth-headline .headline-box {
		font-size: 1.2rem;
		padding: 10px 18px;
	}
	.transaction-support-section .section-pen {
		align-items: center;
	}
	.transaction-support-section .section-pen .pen-svg {
		width: 120px;
	}
	.transaction-support-section .section-pen .signature-label {
		font-size: 1rem;
	}
}

.typewriter-container {
	display: inline-block;
	font-family: 'benedictregular';
	font-size: 174px;
	color: white;
	padding: 0;
	line-height: 1.1;
	position: absolute;
	left: -75px;
	bottom: 3%;
	max-width: 56%;
}

@media screen and (max-width: 900px) {
	.typewriter-container {
		left: 0;
		top: 23%;
		max-width: 90%;
	}
}

.typewriter {
	display: inline-block;
	overflow: hidden;
	white-space: nowrap;
}

/* Pierwsza linia: Maria */
.first-line {
	width: 0;
	animation: typing-maria 1.43s steps(5, end) forwards, blink-caret 0.91s step-end infinite;
	margin-bottom: -50px;
}

@media screen and (max-width: 900px) {
	.first-line {
		margin-bottom: -22px;
	}
}

/* Druga linia: Ruiz López */
.second-line {
	width: 0;
	animation: typing-ruiz 1.82s steps(10, end) forwards 1.56s, blink-caret 0.91s step-end infinite 1.56s;
	margin-top: -80px;
	word-spacing: -0.3em;
}

/* Animacja pisania dla Maria (5 znaków) */
@keyframes typing-maria {
	from {
		width: 0;
	}
	to {
		width: 5ch;
	}
}

/* Animacja pisania dla Ruiz López (10 znaków) */
@keyframes typing-ruiz {
	from {
		width: 0;
	}
	to {
		width: 10ch;
	}
}

/* Migający kursor */
@keyframes blink-caret {
	from,
	to {
		border-color: transparent;
	}
	50% {
		border-color: #c89c3c;
	}
}

.contact-columns .contact-col:nth-child(2) img {
	max-width: 160px;
}

@media (max-width: 900px) {
	.contact-columns .contact-col:nth-child(2) img {
		max-width: 180px;
	}
}

/* Widgets
--------------------------------------------- */
.widget {
	margin: 0 0 1.5em;
}

.widget select {
	max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/* Jetpack infinite scroll
--------------------------------------------- */
/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {
	/*rtl:ignore*/
	float: left;
	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {
	/*rtl:ignore*/
	float: right;
	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

/* Mobile
--------------------------------------------- */
@media (max-width: 900px) {
	header.site-header .header-bar {
		flex-direction: column;
		align-items: flex-start;
		height: auto;
		min-height: unset;
		gap: 8px;
	}
	header.site-header .site-branding {
		min-width: 220px;
		font-size: 1.1rem;
	}
	header.site-header .header-icons {
		gap: 16px;
	}
	header.site-header nav.main-navigation .container {
		padding-left: 10px;
		padding-right: 10px;
	}
	header.site-header nav.main-navigation .nav-menu {
		gap: 18px;
	}
}

@media (max-width: 700px) {
	header.site-header .site-title {
		font-size: 1.2rem;
	}
	header.site-header .header-bar {
		flex-direction: column;
		gap: 4px;
	}
	header.site-header .header-icons {
		flex-wrap: wrap;
		gap: 8px;
	}
	header.site-header nav.main-navigation .nav-menu {
		flex-wrap: wrap;
		gap: 10px;
	}
}

@media (max-width: 900px) {
	.hero-banner {
		height: calc(100dvh - 50px);
		min-height: -webkit-fill-available;
		margin-top: 0;
		min-height: auto;
		position: relative;
		top: 0;
	}
	.hero-banner .container.hero-img-container {
		height: calc(100dvh - 50px);
		min-height: -webkit-fill-available;
		padding-top: 0;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: space-between;
		margin: 0;
	}
	.hero-banner .hero-img {
		height: 320px;
		bottom: 0;
		position: sticky;
	}
}

@media (max-width: 900px) {
	.double-column-section {
		margin-top: 90px;
	}
	.double-column-section .columns {
		flex-direction: column;
		gap: 16px;
	}
}

@media (max-width: 900px) {
	.fullwidth-video-section {
		flex-direction: column !important;
	}
	.fullwidth-video-section .video-column,
	.fullwidth-video-section .content-column {
		width: 100vw;
		max-width: 100vw;
	}
	.fullwidth-video-section .video-column {
		min-width: 0;
		height: 220px;
	}
	.fullwidth-video-section .video-column video,
	.fullwidth-video-section .video-column img {
		min-height: 220px;
		height: 220px;
		border-radius: 0 !important;
	}
}

@media (max-width: 900px) {
	.hero-info-section .hero-info-graphics-row {
		flex-wrap: wrap;
		gap: 16px;
		margin-top: 0;
	}
	.hero-info-section .hero-info-col {
		max-width: 45%;
		margin-bottom: 0;
	}
	.hero-info-section .hero-info-col .hero-info-caption p {
		margin: 0;
	}
}

@media (max-width: 600px) {
	.hero-info-section .hero-info-graphics-row {
		flex-direction: column;
		align-items: center;
		gap: 12px;
	}
	.hero-info-section .hero-info-col {
		max-width: 90%;
	}
	.hero-info-section .hero-info-headlines {
		margin-bottom: 0;
	}
	.hero-info-section .hero-info-headlines .headline-box {
		font-size: 1.4rem;
		padding: 10px 18px 10px 25px;
	}
}

@media (max-width: 900px) {
	.transaction-support-section {
		padding: 15px 24px;
		width: 100%;
	}
	.transaction-support-section .container {
		padding: 0;
	}
	.transaction-support-section .columns {
		flex-direction: column;
		gap: 0;
	}
	.transaction-support-section .column {
		max-width: 100%;
	}
	.transaction-support-section .column ul {
		margin: 0;
	}
	.transaction-support-section .column ul li {
		font-size: 17px;
	}
	.transaction-support-section .fullwidth-headline .headline-box {
		font-size: 1.2rem;
		padding: 10px 18px;
	}
	.transaction-support-section .section-pen {
		align-items: center;
		position: relative;
		bottom: 0;
		margin: 0;
		padding: 0;
		margin-top: -110px;
		margin-bottom: -15px;
	}
	.transaction-support-section .section-pen .pen-svg {
		width: 120px;
	}
	.transaction-support-section .section-pen .signature-label {
		font-size: 1rem;
	}
}

@media (max-width: 900px) {
	.contact-hero-section .contact-hero-grid {
		flex-direction: column;
		align-items: center;
		gap: 24px;
	}
	.contact-hero-section .contact-hero-main {
		flex: auto !important;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		margin-top: 0;
	}
	.contact-hero-section .contact-hero-main h2 {
		font-size: 1.8rem;
	}
	.contact-hero-section .contact-hero-main p {
		width: 100%;
	}
	.contact-hero-section .wpforms-form {
		gap: 14px 0;
	}
	.contact-hero-logo {
		flex: 0 !important;
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-top: 0;
	}
}

@media (max-width: 900px) {
	.contact-section .contact-label {
		margin-left: 0;
		text-align: center;
	}
	.contact-section .contact-details {
		margin-left: 0;
		text-align: center;
	}
	.contact-section .contact-columns {
		flex-direction: column;
		gap: 32px;
		align-items: center;
	}
	.contact-section .contact-col {
		max-width: 260px;
		flex-direction: column;
	}
	.contact-section .contact-title {
		font-size: 1.4rem;
		margin-bottom: 20px;
	}
}

@media (max-width: 900px) {
	.cf7-grid .cf7-row {
		grid-template-columns: 1fr;
		gap: 14px;
	}
	.cf7-grid .cf7-submit-wrap {
		justify-content: flex-start;
		max-width: 100%;
	}
}

@media (max-width: 700px) {
	.cf7-grid .cf7-rodo-wrap {
		flex-direction: column;
		align-items: flex-start;
		padding: 12px 8px;
		font-size: 0.98rem;
	}
	.cf7-grid .cf7-rodo-wrap .wpcf7-acceptance,
	.cf7-grid .cf7-rodo-wrap .wpcf7-list-item {
		flex-direction: column;
		gap: 8px;
	}
	.cf7-grid .cf7-rodo-wrap .wpcf7-list-item input[type="checkbox"] {
		margin-bottom: 10px;
		margin-right: 0;
	}
}

@media (max-width: 700px) {
	.site-footer .container {
		flex-direction: column;
		gap: 8px;
		padding: 8px 10px;
		min-height: unset;
		font-size: 0.98rem;
	}
	.site-footer .footer-right {
		margin-top: 0;
	}
}

@media (max-width: 700px) {
	#scrollToTop {
		right: 1rem;
		bottom: 1rem;
	}
	#scrollToTop svg {
		width: 1.4rem;
		height: 1.4rem;
		transform: translateY(-0.1rem) scale(1.5);
	}
}

@media (max-width: 900px) {
	.container {
		padding-left: 10px;
		padding-right: 10px;
	}
	.menu-menu-1-container {
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}

#mobmenuleft,
#mobmenuright {
	margin: 0;
	padding: 0;
	width: 100%;
}

.mob-menu-logo-holder > .headertext span,
.mobmenu input.mob-menu-search-field {
	font-family: Dosis;
	font-size: 20px;
	font-weight: 400 !important;
	font-style: normal;
	letter-spacing: normal;
	text-transform: none;
	font-family: "contheymedium_con_1" !important;
	font-size: 1.8rem !important;
}

.mob-menu-logo-holder {
	margin-top: 0px;
	text-align: left !important;
	margin-left: 0;
	margin-right: 0;
	height: 50px;
}

.mobmenu .headertext {
	color: #FFF;
	text-decoration: none;
	margin-left: 34px;
}

body.admin-bar .mobmenu,
body.admin-bar .mobmenu-panel,
.mob-menu-header-holder {
	background: #f8c555 !important;
}

.show-nav-left .mobmenu-panel.show-panel,
.show-nav-right .mobmenu-panel.show-panel {
	z-index: 300000;
	width: 100% !important;
	text-align: center !important;
	color: white !important;
	background: #f8c555 !important;
}

#mobmenuright li a,
#mobmenuright li a:visited,
.show-nav-right .mob-menu-copyright,
.show-nav-right .mob-expand-submenu i {
	color: white !important;
}

#mobmenuright li a,
#mobmenuright li a:visited,
#mobmenuright .mobmenu-content h2,
#mobmenuright .mobmenu-content h3,
.mobmenu-left-panel .mobmenu-display-name {
	font-size: 26px !important;
}

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