@charset "UTF-8";
/*!
Theme Name: mauri-premium-ui
Theme URI: http://underscores.me/
Author: Visionfresh
Author URI: http://underscores.me/
Description: Description
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: mauri-premium-ui
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.

mauri-premium-ui 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
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

@media screen and (max-width: 1023px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 600px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
}
/*--------------------------------------------------------------
# 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%;
}

/* 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;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
/*!
Theme Name: mauri-premium-ui
Theme URI: http://underscores.me/
Author: Visionfresh
Author URI: http://underscores.me/
Description: Description
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: mauri-premium-ui
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.

mauri-premium-ui 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
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  margin-top: 0;
}

h1 {
  font-size: clamp(42px, 5.5vw, 84px);
  line-height: 1;
  font-weight: 300;
}

h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1;
  font-weight: 300;
}

h3,
h4 {
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1;
  font-weight: 300;
}

/*!
Theme Name: mauri-premium-ui
Theme URI: http://underscores.me/
Author: Visionfresh
Author URI: http://underscores.me/
Description: Description
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: mauri-premium-ui
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.

mauri-premium-ui 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
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
p {
  margin-top: 0;
  margin-bottom: 1.5em;
}

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%;
}

body,
button,
input,
select,
optgroup,
textarea {
  color: #7A7A7A;
  font-family: "Quicksand", BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

/* Elements
--------------------------------------------- */
/*!
Theme Name: mauri-premium-ui
Theme URI: http://underscores.me/
Author: Visionfresh
Author URI: http://underscores.me/
Description: Description
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: mauri-premium-ui
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.

mauri-premium-ui 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
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  background: #fff;
  font-optical-sizing: auto;
  font-style: normal;
  overflow-x: clip;
  max-width: 100%;
}

/*!
Theme Name: mauri-premium-ui
Theme URI: http://underscores.me/
Author: Visionfresh
Author URI: http://underscores.me/
Description: Description
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: mauri-premium-ui
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.

mauri-premium-ui 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
# Utilities
	- Accessibility
	- Alignments

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

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

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
--------------------------------------------- */
/*!
Theme Name: mauri-premium-ui
Theme URI: http://underscores.me/
Author: Visionfresh
Author URI: http://underscores.me/
Description: Description
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: mauri-premium-ui
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.

mauri-premium-ui 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
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
a {
  color: #7A7A7A;
  text-decoration: none;
}
a:hover, a:focus, a:active {
  color: #191970;
}
a:focus {
  outline: 0;
}
a:hover, a:active {
  outline: 0;
}

/* Forms
--------------------------------------------- */
/*!
Theme Name: mauri-premium-ui
Theme URI: http://underscores.me/
Author: Visionfresh
Author URI: http://underscores.me/
Description: Description
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: mauri-premium-ui
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.

mauri-premium-ui 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
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
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 {
  border-width: 1px;
  border-style: solid;
  height: 48px;
  min-width: 300px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  color: #7A7A7A;
  transition: all 0.2s ease-in-out 0ms;
}
.btn:hover {
  border-color: #0089CC;
  background: #0089CC;
  color: #fff;
}

@media screen and (max-width: 600px) {
  .btn {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
}
/*!
Theme Name: mauri-premium-ui
Theme URI: http://underscores.me/
Author: Visionfresh
Author URI: http://underscores.me/
Description: Description
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: mauri-premium-ui
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.

mauri-premium-ui 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
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
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%;
}

/* Containers/defaults helper */
.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.space-between {
  justify-content: space-between;
}

.mt-68 {
  margin-top: 100px;
  padding-top: 0 !important;
}

@media screen and (max-width: 600px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* header
--------------------------------------------- */
/*!
Theme Name: mauri-premium-ui
Theme URI: http://underscores.me/
Author: Visionfresh
Author URI: http://underscores.me/
Description: Description
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: mauri-premium-ui
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.

mauri-premium-ui 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
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
.header-top {
  background-color: #EDEDED;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2; /* 14.4px */
  letter-spacing: 1.44px;
  display: flex;
  align-items: center;
  height: 40px;
}
.header-top .header-top-left {
  gap: 20px;
}
.header-top .header-top-left a {
  display: flex;
  align-items: center;
}
.header-top .header-top-left a span {
  margin-right: 7px;
  display: inline-block;
}
.header-top .header-top-right {
  gap: 30px;
}
.header-top .header-top-right .search-icon {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}

#masthead {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 99999999;
  width: 100%;
}
#masthead .container {
  height: 80px;
  position: relative;
  justify-content: end;
  align-items: center;
}
#masthead .container .site-branding {
  position: absolute;
  top: 0;
  left: 32px;
}

@media screen and (max-width: 1279px) {
  .header-top {
    height: auto;
    min-height: 40px;
    padding: 8px 0;
  }
  .header-top > .container {
    flex-wrap: wrap;
    gap: 8px 20px;
  }
  .header-top .header-top-left,
  .header-top .header-top-right {
    min-width: 0;
  }
  .header-top .header-top-left {
    flex: 1 1 auto;
    flex-wrap: wrap;
    gap: 8px 16px;
  }
  .header-top .header-top-left a {
    min-width: 0;
  }
  .header-top .header-top-right {
    gap: 16px;
    margin-left: auto;
  }
}
@media screen and (max-width: 600px) {
  .header-top {
    height: 40px;
    min-height: 40px;
    padding: 0;
  }
  .header-top > .container {
    height: 40px;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 0;
  }
  .header-top .header-top-left {
    display: none;
  }
  .header-top .header-top-right {
    width: auto;
    flex-wrap: nowrap;
    justify-content: flex-end;
    margin-left: auto;
    gap: 16px;
  }
  #masthead .container {
    height: 80px;
    min-height: 80px;
    justify-content: flex-end;
  }
  #masthead .container .site-branding {
    position: absolute;
    top: 0;
    left: 20px;
    z-index: 1;
  }
  #masthead .container .custom-logo-link,
  #masthead .container .custom-logo {
    display: block;
    height: 137px;
  }
  #masthead .container .custom-logo {
    width: auto;
    max-width: none;
  }
}
/* Navigation
--------------------------------------------- */
/*!
Theme Name: mauri-premium-ui
Theme URI: http://underscores.me/
Author: Visionfresh
Author URI: http://underscores.me/
Description: Description
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: mauri-premium-ui
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.

mauri-premium-ui 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
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
body.nav-open {
  overflow: hidden;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99999999998;
}

.nav-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 340px;
  max-width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 99999999999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  overflow-y: auto;
  visibility: hidden;
  pointer-events: none;
  contain: layout paint;
  transition: transform 0.3s ease, visibility 0s linear 0.3s;
}
.nav-sidebar--open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
.nav-sidebar__close {
  align-self: flex-end;
  margin: 20px 20px 0;
  background: none;
  border: 1px solid #EDEDED;
  width: 40px;
  height: 40px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
}
.nav-sidebar__close:hover {
  background: #EDEDED;
}
.nav-sidebar__nav {
  flex: 1;
  padding: 12px 0;
}
.nav-sidebar__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-sidebar__nav li a {
  display: block;
  padding: 18px 32px;
  border-bottom: 1px solid #EDEDED;
  color: #7A7A7A;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
}
.nav-sidebar__nav li a:hover {
  color: #0089CC;
}
.nav-sidebar__nav li.current-menu-item a {
  color: #0089CC;
}
.nav-sidebar__contact {
  padding: 24px 32px;
  border-top: 1px solid #EDEDED;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.nav-sidebar__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #7A7A7A;
  text-decoration: none;
  font-size: 14px;
}
.nav-sidebar__contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.nav-sidebar__contact-item span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-sidebar__contact-item small {
  color: #7A7A7A;
  font-size: 12px;
}
.nav-sidebar__contact-item:hover {
  color: #0089CC;
}

.main-navigation {
  display: none;
}
.main-navigation ul {
  display: flex;
  list-style: none;
  margin: 0 0 0 90px;
  padding: 0;
  gap: 0;
}
.main-navigation li:before {
  content: "•";
  padding: 0 11px;
}
.main-navigation li:first-child:before {
  display: none;
}
.main-navigation li a {
  text-decoration: none;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(10px, 8.5vw, 16px);
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.12em;
  color: #7A7A7A;
}
.main-navigation li a:hover {
  color: #0089CC;
}
.main-navigation li.current-menu-item a {
  color: #0089CC;
}
@media screen and (min-width: 1280px) {
  .main-navigation {
    display: flex;
    align-items: center;
  }
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #7A7A7A;
  transition: background 0.2s;
}
.nav-hamburger:hover span {
  background: #0089CC;
}
@media screen and (min-width: 1280px) {
  .nav-hamburger {
    display: none;
  }
}

/* Search
--------------------------------------------- */
/*!
Theme Name: mauri-premium-ui
Theme URI: http://underscores.me/
Author: Visionfresh
Author URI: http://underscores.me/
Description: Description
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: mauri-premium-ui
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.

mauri-premium-ui 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
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
body.search-open {
  overflow: hidden;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999999999999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.search-overlay__close {
  position: absolute;
  top: 32px;
  right: 32px;
  background: #0089CC;
  border: none;
  border-radius: 3px;
  width: 44px;
  height: 44px;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.search-overlay__close:hover {
  background: rgb(0, 109.6, 163.2);
  transform: scale(1.05);
}
.search-overlay__inner {
  width: 100%;
  max-width: 600px;
}
.search-overlay__form {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #EDEDED;
  padding-bottom: 10px;
  transition: border-color 0.2s ease;
}
.search-overlay__form:focus-within {
  border-color: #0089CC;
}
.search-overlay__form .search-overlay__input {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  padding: 0;
  outline: none;
  background: none;
  font-family: "Quicksand", BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 1.6vw, 20px);
  letter-spacing: 0.2px;
  color: #7A7A7A;
}
.search-overlay__form .search-overlay__input::placeholder {
  color: #7A7A7A;
  font-weight: 400;
}
.search-overlay__submit {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #0089CC;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}
.search-overlay__submit img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}
.search-overlay__submit:hover {
  background: rgb(0, 109.6, 163.2);
}

/* Posts and pages
--------------------------------------------- */
/*!
Theme Name: mauri-premium-ui
Theme URI: http://underscores.me/
Author: Visionfresh
Author URI: http://underscores.me/
Description: Description
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: mauri-premium-ui
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.

mauri-premium-ui 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
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
.sticky {
  display: block;
}

.post,
.page {
  margin: 0;
}

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

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

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

.page-header {
  margin: 60px 0 40px;
}
.page-header .page-title {
  font-family: "Quicksand", BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: clamp(24px, 3vw, 36px);
  color: #7A7A7A;
  margin: 0;
}
.page-header .page-title span {
  color: #0089CC;
}

.no-results {
  padding-bottom: 60px;
}
.no-results .page-content p {
  margin: 0 0 20px;
  color: #7A7A7A;
}

.search-results-list {
  margin-bottom: 60px;
}
.search-results-list .search-result-item {
  border-bottom: 1px solid #EDEDED;
  padding: 20px 0;
}
.search-results-list .search-result-item .entry-title {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}
.search-results-list .search-result-item .entry-title a {
  color: #7A7A7A;
  text-decoration: none;
  transition: color 0.2s ease;
}
.search-results-list .search-result-item .entry-title a:hover {
  color: #0089CC;
}

.page-hero {
  position: relative;
  height: 690px;
  background: #7A7A7A;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-start;
  padding-top: 180px;
}
@media screen and (max-width: 1024px) {
  .page-hero {
    height: 480px;
    padding-top: 120px;
  }
}
@media screen and (max-width: 600px) {
  .page-hero {
    height: auto;
    min-height: 420px;
    padding-top: 75px;
    padding-bottom: 40px;
  }
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: #000000;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.51) 0%, rgba(255, 255, 255, 0) 71%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
  color: #fff;
}
.page-hero__content h1 {
  color: #fff;
  margin: 0 0 42px;
}
@media screen and (max-width: 600px) {
  .page-hero__content h1 {
    margin: 0 0 24px;
  }
}
.page-hero__description {
  margin: 0;
  line-height: 1.5;
  max-width: 600px;
}

/*!
Theme Name: mauri-premium-ui
Theme URI: http://underscores.me/
Author: Visionfresh
Author URI: http://underscores.me/
Description: Description
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: mauri-premium-ui
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.

mauri-premium-ui 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
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
.home-hero {
  position: relative;
  overflow: hidden;
  height: 910px;
}
.home-hero--video {
  height: 910px;
}
.home-hero__video-bg {
  background: #000;
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.home-hero__buffering {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #222;
  z-index: 10;
  transition: opacity 0.6s ease;
}
.home-hero__buffering.is-hidden {
  opacity: 0;
}
.home-hero__iframe-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.home-hero__iframe-wrapper #home-hero-bg,
.home-hero__iframe-wrapper #home-hero-bg iframe {
  position: absolute;
  z-index: 0;
  width: 120vw;
  min-width: 1650px;
  height: 300vh;
  min-height: 910px;
}
.home-hero__content {
  position: relative;
  z-index: 999998;
  padding-top: 140px;
  padding-bottom: 90px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home-hero__content .home-hero__subtitle {
  margin: 0;
  font-size: 26px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.home-hero__content h1 {
  color: #fff;
  margin: 0;
}
.home-hero__content .hero-bottom {
  justify-content: end;
}
.home-hero__content .hero-bottom .bottom-wrap {
  max-width: 480px;
  color: #fff;
}
.home-hero__content .hero-bottom .bottom-wrap .btn {
  border-color: #fff;
  color: #fff;
  font-weight: 500;
}
.home-hero__content .hero-bottom .bottom-wrap .btn:hover {
  border-color: #0089CC;
}

.mauri-counter {
  padding: 100px 0 80px 0;
  background: #fff;
}
.mauri-counter__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 24px;
  flex-wrap: wrap;
}
.mauri-counter__title {
  margin: 0;
}
.mauri-counter__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 48px 32px;
}
.mauri-counter__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 4px solid #7A7A7A;
  padding-left: 30px;
  padding-top: 16px;
}
.mauri-counter__number {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
  color: #7A7A7A;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
}
.mauri-counter__description {
  margin: 0;
  font-size: 1rem;
  color: #7A7A7A;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  max-width: 150px;
}

.builder {
  margin-bottom: 90px;
}

@media screen and (min-width: 601px) and (max-width: 1279px) {
  .home-hero,
  .home-hero--video {
    height: clamp(700px, 65vw, 820px);
  }
}
@media screen and (max-width: 600px) {
  .home-hero {
    height: calc(100svh - 120px);
    min-height: 640px;
    max-height: 760px;
  }
  .home-hero--video {
    width: 100%;
    height: auto;
    min-height: 500px;
    max-height: 640px;
    aspect-ratio: 3/4;
  }
  .home-hero__content {
    padding-top: 72px;
    padding-bottom: 40px;
  }
  .home-hero__iframe-wrapper {
    overflow: hidden;
  }
  .mauri-counter {
    padding: 64px 0;
  }
  .mauri-counter__header {
    align-items: stretch;
    margin-bottom: 40px;
  }
  .mauri-counter__items {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .builder {
    margin-bottom: 64px;
  }
}
/*!
Theme Name: mauri-premium-ui
Theme URI: http://underscores.me/
Author: Visionfresh
Author URI: http://underscores.me/
Description: Description
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: mauri-premium-ui
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.

mauri-premium-ui 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
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
#colophon {
  padding-top: 90px;
  border-top: 1px solid #7A7A7A;
}
#colophon .container .footer-left .flex {
  gap: 46px;
  flex-wrap: wrap;
}
#colophon .container .footer-left .flex .grid-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 46px;
}
#colophon .container .footer-left .flex .grid-col h4 {
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 3px 0;
}
#colophon .container .footer-left .flex .grid-col .site-info {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1.44px;
}
#colophon .container .footer-left .flex .grid-col .site-info p {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1.44px;
  margin: 0;
}
#colophon .container .footer-left .flex .grid-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 0;
}
#colophon .container .footer-left .flex .grid-col ul li a {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2; /* 14.4px */
  letter-spacing: 1.44px;
}
#colophon .container .footer-left .flex .cf-7-form {
  flex: 0 0 auto;
  max-width: 330px;
  margin-left: auto;
}
#colophon .container .footer-left .flex .cf-7-form h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 8px 0;
}
#colophon .container .social-row {
  margin-top: 60px;
  margin-bottom: 50px;
}
#colophon .container .social-row .flex {
  gap: 90px;
}
@media screen and (min-width: 48.0625em) {
  #colophon {
    padding-bottom: 80px;
  }
  #colophon .container .footer-left > .flex {
    align-items: flex-start;
    flex-wrap: nowrap;
  }
  #colophon .container .footer-left .footer-sidewrap {
    flex: 0 1 837px;
    min-width: 0;
  }
  #colophon .container .footer-left .copyright {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 1.44px;
  }
  #colophon .container .footer-left > .flex > .cf-7-form {
    flex: 0 0 330px;
    width: 330px;
    max-width: 330px;
    margin-left: 0;
  }
  #colophon .container .footer-left > .flex > .cf-7-form h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.12em;
    margin: 0 0 5px;
  }
  #colophon .container .footer-left > .flex > .cf-7-form .form-content > p:first-child {
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 1.44px;
    margin: 0 0 20px;
  }
  #colophon .container .footer-left > .flex > .cf-7-form .form-content > .wpcf7 ~ p {
    display: none;
  }
  #colophon .container .footer-left > .flex > .cf-7-form .wpcf7-form > .wpcf7-form-control-wrap:has(.wpcf7-text), #colophon .container .footer-left > .flex > .cf-7-form .wpcf7-form > .wpcf7-form-control-wrap:has(.wpcf7-email) {
    display: block;
    margin-bottom: 12px;
  }
  #colophon .container .footer-left > .flex > .cf-7-form .wpcf7-form > .wpcf7-form-control-wrap.toneypot-289-wrap {
    margin-bottom: 0;
  }
  #colophon .container .footer-left > .flex > .cf-7-form .wpcf7-form-control.wpcf7-text, #colophon .container .footer-left > .flex > .cf-7-form .wpcf7-form-control.wpcf7-email {
    max-width: 330px;
    padding: 8px 0;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1.44px;
  }
  #colophon .container .footer-left > .flex > .cf-7-form .wpcf7-form-control.wpcf7-text::placeholder, #colophon .container .footer-left > .flex > .cf-7-form .wpcf7-form-control.wpcf7-email::placeholder {
    font-size: 12px;
    letter-spacing: 1.44px;
  }
  #colophon .container .footer-left > .flex > .cf-7-form .wpcf7-acceptance {
    display: block;
    margin-top: 4px;
  }
  #colophon .container .footer-left > .flex > .cf-7-form .wpcf7-acceptance label {
    align-items: flex-start;
    gap: 8px;
  }
  #colophon .container .footer-left > .flex > .cf-7-form .wpcf7-acceptance input[type=checkbox] {
    width: 16px;
    height: 16px;
    margin: 2px 0 0;
    padding: 0;
    border: 1px solid #7A7A7A;
    border-radius: 50%;
    background: #fff;
    appearance: none;
  }
  #colophon .container .footer-left > .flex > .cf-7-form .wpcf7-acceptance input[type=checkbox]:checked {
    background: #0089CC;
    box-shadow: inset 0 0 0 3px #fff;
  }
  #colophon .container .footer-left > .flex > .cf-7-form .wpcf7-acceptance .wpcf7-list-item-label {
    font-size: 12px;
    font-weight: 500;
    line-height: 19px;
    letter-spacing: 1.44px;
    text-transform: none;
    color: #7A7A7A;
  }
  #colophon .container .footer-left > .flex > .cf-7-form .wpcf7-submit {
    display: block !important;
    box-sizing: border-box;
    width: 196px;
    min-width: 0;
    height: 49px;
    margin-top: 16px;
    padding: 0 !important;
    line-height: 47px;
    text-align: center;
    text-indent: 0;
    appearance: none;
    border: 1px solid #7A7A7A !important;
    background: transparent !important;
    color: #7A7A7A !important;
  }
  #colophon .container .footer-left > .flex > .cf-7-form .wpcf7-submit:hover {
    border-color: #7A7A7A !important;
    background: transparent !important;
    color: #7A7A7A !important;
  }
  #colophon .container .social-row {
    margin-top: 70px;
  }
}
@media screen and (max-width: 48em) {
  #colophon {
    padding-top: 64px;
  }
  #colophon .container .footer-left > .flex {
    flex-direction: column;
  }
  #colophon .container .footer-left .footer-sidewrap {
    width: 100%;
  }
  #colophon .container .footer-left .flex .grid-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    width: 100%;
  }
  #colophon .container .footer-left > .flex > .cf-7-form {
    order: -1;
    flex-basis: 100%;
    width: 100%;
    max-width: 100%;
    margin: 0 0 48px;
  }
  #colophon .container .footer-left > .flex > .cf-7-form h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.12em;
    margin: 0 0 5px;
  }
  #colophon .container .footer-left > .flex > .cf-7-form .form-content > p:first-child {
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 1.44px;
    margin: 0 0 20px;
  }
  #colophon .container .footer-left > .flex > .cf-7-form .form-content > .wpcf7 ~ p {
    display: none;
  }
  #colophon .container .footer-left > .flex > .cf-7-form .wpcf7-form > .wpcf7-form-control-wrap:has(.wpcf7-text), #colophon .container .footer-left > .flex > .cf-7-form .wpcf7-form > .wpcf7-form-control-wrap:has(.wpcf7-email) {
    display: block;
    margin-bottom: 12px;
  }
  #colophon .container .footer-left > .flex > .cf-7-form .wpcf7-form > .wpcf7-form-control-wrap.toneypot-289-wrap {
    margin-bottom: 0;
  }
  #colophon .container .footer-left > .flex > .cf-7-form .wpcf7-form-control.wpcf7-text, #colophon .container .footer-left > .flex > .cf-7-form .wpcf7-form-control.wpcf7-email {
    max-width: 100%;
    padding: 8px 0;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1.44px;
  }
  #colophon .container .footer-left > .flex > .cf-7-form .wpcf7-form-control.wpcf7-text::placeholder, #colophon .container .footer-left > .flex > .cf-7-form .wpcf7-form-control.wpcf7-email::placeholder {
    font-size: 12px;
    letter-spacing: 1.44px;
  }
  #colophon .container .footer-left > .flex > .cf-7-form .wpcf7-acceptance {
    display: block;
    margin-top: 4px;
  }
  #colophon .container .footer-left > .flex > .cf-7-form .wpcf7-acceptance label {
    align-items: flex-start;
    gap: 8px;
  }
  #colophon .container .footer-left > .flex > .cf-7-form .wpcf7-acceptance input[type=checkbox] {
    width: 16px;
    height: 16px;
    margin: 2px 0 0;
    padding: 0;
    border: 1px solid #7A7A7A;
    border-radius: 50%;
    background: #fff;
    appearance: none;
  }
  #colophon .container .footer-left > .flex > .cf-7-form .wpcf7-acceptance input[type=checkbox]:checked {
    background: #0089CC;
    box-shadow: inset 0 0 0 3px #fff;
  }
  #colophon .container .footer-left > .flex > .cf-7-form .wpcf7-acceptance .wpcf7-list-item-label {
    font-size: 12px;
    font-weight: 500;
    line-height: 19px;
    letter-spacing: 1.44px;
    text-transform: none;
    color: #7A7A7A;
  }
  #colophon .container .footer-left > .flex > .cf-7-form .wpcf7-submit {
    display: block !important;
    box-sizing: border-box;
    width: 196px;
    min-width: 0;
    height: 49px;
    margin-top: 16px;
    padding: 0 !important;
    line-height: 47px;
    text-align: center;
    text-indent: 0;
    appearance: none;
    border: 1px solid #7A7A7A !important;
    background: transparent !important;
    color: #7A7A7A !important;
  }
  #colophon .container .footer-left > .flex > .cf-7-form .wpcf7-submit:hover {
    border-color: #7A7A7A !important;
    background: transparent !important;
    color: #7A7A7A !important;
  }
  #colophon .container .social-row .flex {
    flex-wrap: wrap;
    gap: 32px;
  }
}
@media screen and (min-width: 48.0625em) and (max-width: 63.9375em) {
  #colophon .container .footer-left > .flex {
    flex-direction: column;
  }
  #colophon .container .footer-left .footer-sidewrap {
    flex: 0 0 auto;
    width: 100%;
  }
  #colophon .container .footer-left > .flex > .cf-7-form {
    flex: 0 0 auto;
    margin-top: 48px;
  }
}
@media screen and (max-width: 37.5em) {
  #colophon .container .footer-left > .flex {
    flex-direction: column;
  }
  #colophon .container .footer-left .footer-sidewrap {
    order: 1;
    width: 100%;
  }
  #colophon .container .footer-left .flex .grid-col {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
  #colophon .container .social-row {
    margin-top: 48px;
    margin-bottom: 40px;
  }
  #colophon .copyright {
    font-size: 14px;
    margin-bottom: 30px;
  }
}

/*!
Theme Name: mauri-premium-ui
Theme URI: http://underscores.me/
Author: Visionfresh
Author URI: http://underscores.me/
Description: Description
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: mauri-premium-ui
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.

mauri-premium-ui 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
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
.desztinacio-lista {
  background: #fff;
}

.desztinacio-regio {
  padding: 64px 0;
}
.desztinacio-regio__fejlec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.desztinacio-regio__felirat {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 4px;
}
.desztinacio-regio__cim {
  font-size: 1.5rem;
  font-weight: 300;
  color: #374151;
  margin: 0;
}
@media screen and (min-width: 64em) {
  .desztinacio-regio__cim {
    font-size: 1.875rem;
  }
}
.desztinacio-regio__racs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media screen and (min-width: 64em) {
  .desztinacio-regio__racs {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .desztinacio-regio__racs {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
}

.desztinacio-kartya {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 550px;
  max-width: 416px;
  margin-left: auto;
  margin-right: auto;
  background: #d1d5db;
  scroll-margin-top: 140px;
}
.desztinacio-kartya--elmeny {
  max-width: 306px;
}
.desztinacio-kartya__kep {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease-out;
}
.desztinacio-kartya:hover .desztinacio-kartya__kep {
  transform: scale(1.05);
}
.desztinacio-kartya__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1), transparent);
}
.desztinacio-kartya__link {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  text-decoration: none;
}
.desztinacio-kartya__link:hover {
  text-decoration: none;
}
.desztinacio-kartya__alregio {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.desztinacio-kartya__cim {
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.25;
  margin-bottom: 6px;
}
.desztinacio-kartya__regio {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  margin: 0 0 14px;
}
.desztinacio-kartya__repules {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  margin-bottom: 12px;
}
.desztinacio-kartya__napok {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  margin: 0 0 14px;
}
.desztinacio-kartya__csillagok {
  display: flex;
  gap: 2px;
  margin: 0 0 14px;
}
.desztinacio-kartya__csillagok svg {
  fill: #fff;
}
.desztinacio-kartya__leiras {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
}
.desztinacio-kartya:hover .desztinacio-kartya__leiras {
  max-height: 120px;
  opacity: 1;
  margin: 8px 0 12px;
}
.desztinacio-kartya__ar {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
}
.desztinacio-kartya:hover .desztinacio-kartya__ar {
  max-height: 60px;
  opacity: 1;
  margin-bottom: 12px;
}
.desztinacio-kartya__gomb {
  align-self: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  height: 48px;
  padding: 6px 24px;
  transition: background 0.2s ease, color 0.2s ease;
  display: flex;
  align-items: center;
}
.desztinacio-kartya:hover .desztinacio-kartya__gomb {
  background: #0089CC;
  color: #FFF;
  border-color: #0089CC;
}
.desztinacio-kartya__desztinacio {
  margin: 0;
  color: #fff;
  font-weight: 500;
}
.desztinacio-kartya__six-stars {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 130px;
  z-index: 5;
  pointer-events: none;
  display: block;
}

@media screen and (max-width: 600px) {
  .desztinacio-regio {
    padding: 48px 0;
  }
  .desztinacio-regio__fejlec {
    margin-bottom: 32px;
  }
  .desztinacio-kartya {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
}
/*!
Theme Name: mauri-premium-ui
Theme URI: http://underscores.me/
Author: Visionfresh
Author URI: http://underscores.me/
Description: Description
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: mauri-premium-ui
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.

mauri-premium-ui 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
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
.regio-szuro__select {
  display: none;
}
@media (max-width: 37.5em) {
  .regio-szuro__select {
    display: block;
    width: 100%;
    padding: 10px 12px;
    font-size: 15px;
    font-family: "Quicksand", BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: #7a7a7a;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    margin: 20px 0;
  }
}

.regio-szuro {
  background: #fff;
  padding: 30px 0;
  border-bottom: 1px solid #666;
}
@media (max-width: 37.5em) {
  .regio-szuro {
    display: none;
  }
}
.regio-szuro__tabok {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}
.regio-szuro__tabok::-webkit-scrollbar {
  display: none;
}
@media (max-width: 37.5em) {
  .regio-szuro__tabok {
    display: none;
  }
}
.regio-szuro__tab {
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: color 0.3s ease;
  color: #7a7a7a;
  text-align: center;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 1.92px;
}
.regio-szuro__tab:hover {
  color: #000;
}
.regio-szuro__tab.is-active {
  color: #0073aa;
}
.regio-szuro__almenu {
  display: none;
  padding: 30px 0;
}
.regio-szuro__almenu.is-active {
  display: block;
}
.regio-szuro__desztinaciok {
  list-style: none;
  padding: 0;
  margin: 0;
  column-count: 2;
  column-gap: 20px;
}
.regio-szuro__desztinaciok li {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .regio-szuro__desztinaciok {
    column-count: 4;
  }
}
@media (min-width: 1024px) {
  .regio-szuro__desztinaciok {
    column-count: 5;
  }
}
.regio-szuro__link {
  text-decoration: none;
  color: #555;
  font-size: 15px;
  transition: color 0.3s;
}
.regio-szuro__link:hover {
  color: #0073aa;
}

/*!
Theme Name: mauri-premium-ui
Theme URI: http://underscores.me/
Author: Visionfresh
Author URI: http://underscores.me/
Description: Description
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: mauri-premium-ui
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.

mauri-premium-ui 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
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
.single-desztinacio .featured-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-bottom: 70px;
  color: #fff;
  min-height: 690px;
  display: flex;
  justify-content: flex-start;
  align-items: end;
}
.single-desztinacio .featured-image h3 {
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 400;
  margin: 0 0 10px 0;
}
.single-desztinacio .featured-image h1 {
  margin: 0;
}
.single-desztinacio .description {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 60px 0;
}
.single-desztinacio .kapcsolodo-szallodak__posts {
  padding-bottom: 110px;
}
.single-desztinacio .kapcsolodo-szallodak__posts .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.single-desztinacio .kapcsolodo-elmeny__posts {
  padding-bottom: 110px;
}
.single-desztinacio .kapcsolodo-elmeny__posts .grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.single-desztinacio .praktikus-informaciok .info-box-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 60px;
}
.single-desztinacio .praktikus-informaciok .info-box-wrap .info-box {
  border-left: 4px solid #7A7A7A;
  padding-left: 30px;
  padding-top: 16px;
}
.single-desztinacio .praktikus-informaciok .info-box-wrap .info-box h3 {
  color: #7A7A7A;
  font-size: clamp(36px, 5vw, 40px);
  font-weight: 700;
  margin: 0 0 12px 0;
}
.single-desztinacio .praktikus-informaciok .info-box-wrap .info-box p {
  margin-bottom: 0;
}
.single-desztinacio .kapcsolodo-tanacsado {
  padding-bottom: 110px;
}
.single-desztinacio .featured-destination__item {
  display: flex;
  background-color: #EDEDED;
  margin-bottom: 80px;
}
.single-desztinacio .featured-destination__item .dest-thumb {
  max-width: 530px;
  aspect-ratio: 530/636;
}
.single-desztinacio .featured-destination__item .dest-thumb img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.single-desztinacio .featured-destination__item .featured-destination__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 130px;
}
.single-desztinacio .featured-destination__item .featured-destination__meta .featured-destination__meta_content .featured-destination__regio {
  text-transform: uppercase;
}
.single-desztinacio .featured-destination__item .featured-destination__meta .featured-destination__meta_content .featured-destination__excerpt {
  width: 100%;
  max-width: 375px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.single-desztinacio .featured-destination__item .reszletek-btn {
  margin-top: 24px;
}
.single-desztinacio .featured-destination__item .reszletek-btn__link {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid #7A7A7A;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease-in-out 0s;
}
.single-desztinacio .featured-destination__item .reszletek-btn__link:hover {
  background-color: #0073aa;
  border-color: #0073aa;
  color: #fff;
}

@media screen and (max-width: 900px) {
  .single-desztinacio .description {
    grid-template-columns: minmax(0, 1fr);
  }
  .single-desztinacio .kapcsolodo-szallodak__posts .grid-3,
  .single-desztinacio .kapcsolodo-elmeny__posts .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .single-desztinacio .praktikus-informaciok .info-box-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .single-desztinacio .featured-destination__item {
    flex-direction: column;
  }
  .single-desztinacio .featured-destination__item .dest-thumb {
    width: 100%;
    max-width: 100%;
  }
  .single-desztinacio .featured-destination__item .featured-destination__meta {
    padding: 40px;
  }
}
@media screen and (max-width: 600px) {
  .single-desztinacio .featured-image {
    min-height: 480px;
    padding-bottom: 48px;
  }
  .single-desztinacio .kapcsolodo-szallodak__posts .grid-3,
  .single-desztinacio .kapcsolodo-elmeny__posts .grid-4,
  .single-desztinacio .praktikus-informaciok .info-box-wrap {
    grid-template-columns: minmax(0, 1fr);
  }
  .single-desztinacio .kapcsolodo-szallodak__posts,
  .single-desztinacio .kapcsolodo-elmeny__posts,
  .single-desztinacio .kapcsolodo-tanacsado {
    padding-bottom: 72px;
  }
  .single-desztinacio .featured-destination__item .featured-destination__meta {
    padding: 32px 20px;
  }
}
/*!
Theme Name: mauri-premium-ui
Theme URI: http://underscores.me/
Author: Visionfresh
Author URI: http://underscores.me/
Description: Description
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: mauri-premium-ui
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.

mauri-premium-ui 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
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
.szallas-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
  padding: 60px 0 80px;
}
.szallas-layout .szallas-content h3 {
  margin-bottom: 0.5em;
  margin-top: 1.5em;
  font-weight: 700;
  font-size: 1.15rem;
}
.szallas-layout .szallas-content ul {
  margin: 0 0 1.5em 0;
  padding: 0 0 0 1em;
}

.szallas-sidebar {
  position: sticky;
  top: 100px;
}

.szallas-tanacsado__cim {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 24px;
  font-weight: 700;
  line-height: 1.3;
}

.szallas-ar {
  margin-top: 16px;
  margin-bottom: 20px;
}
.szallas-ar__doboz {
  border: 2px solid #666;
  padding: 20px 24px;
  text-align: center;
  display: flex;
  flex-direction: column-reverse;
  gap: 6px;
  max-width: 306px;
}
.szallas-ar__utotag {
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.szallas-ar__ertek {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.05em;
  
}

.szallas-ar-info .szallas-ar-info-content {
  padding: 24px;
  border-left: 4px solid #7a7a7a;
}
.szallas-ar-info .szallas-ar-info-content h3 {
  text-transform: uppercase;
  font-weight: 500;
}
.szallas-ar-info .szallas-ar-info-content p {
  margin-bottom: 0;
}

.elmeny-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
  padding: 60px 0 80px;
}

.elmeny-sidebar {
  position: sticky;
  top: 100px;
}

.szallas-content iframe,
.elmeny-content iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  margin: 24px 0;
}

.elmeny-tanacsado {
  margin-bottom: 20px;
}
.elmeny-tanacsado__cim {
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 24px;
  line-height: 1.3;
}

.elmeny-highlights {
  padding: 24px;
  border-left: 4px solid #7a7a7a;
}
.elmeny-highlights__cim {
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 24px;
  line-height: 1.3;
}
.elmeny-highlights__content ul {
  margin: 0;
  padding: 0 0 0 1em;
}
.elmeny-highlights__content ul li::marker {
  content: "✓ ";
}

.site-main.szallasok .szallasok-lista {
  padding: 80px 0;
}

.szallas-rendezes {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding: 20px 0 0;
}
.szallas-rendezes__label {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7A7A7A;
  white-space: nowrap;
}
.szallas-rendezes__select {
  min-width: 180px;
  max-width: 236px;
}

.szallas-szuro__mezok {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  padding: 80px 0 20px;
  flex-wrap: wrap;
}
.szallas-szuro__mezo {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
  width: 25%;
}
.szallas-szuro__mezo--kereses {
  flex: 1;
}
.szallas-szuro__label {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7A7A7A;
}
.szallas-szuro__select, .szallas-szuro__input {
  appearance: none;
  border: none;
  border-bottom: 1px solid #7A7A7A;
  background: transparent;
  padding: 6px 0;
  font-family: "Quicksand", BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 0.9rem;
  color: #666;
  width: 100%;
  cursor: pointer;
}
.szallas-szuro__select:focus, .szallas-szuro__input:focus {
  outline: none;
  border-bottom-color: #0073aa;
}
.szallas-szuro__kereses-sor {
  display: flex;
  align-items: center;
  gap: 12px;
}
.szallas-szuro__input {
  flex: 1;
  border-left: 0 !important;
  border-right: 0 !important;
  border-top: 0 !important;
  border-bottom: 1px solid #404040 !important;
  border-radius: 0 !important;
}
.szallas-szuro__btn {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.szallas-szuro__btn--torol {
  background: transparent;
  border: 1px solid #7A7A7A;
  color: #7A7A7A;
}
.szallas-szuro__btn--torol:hover {
  border-color: #0073aa;
  color: #0073aa;
}
.szallas-szuro__btn--szur {
  background: #0073aa;
  border: 1px solid #0073aa;
  color: #fff;
}
.szallas-szuro__btn--szur:hover {
  background: rgb(0, 80.5, 119);
}

.hero-gallery {
  position: relative;
  margin-bottom: 50px;
}
.hero-gallery__main {
  height: 685px;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  transition: opacity 0.3s ease;
}
.hero-gallery__main.is-fading {
  opacity: 0;
}
.hero-gallery__six-stars {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  z-index: 5;
  pointer-events: none;
  display: block;
}
.hero-gallery__main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.15) 60%, transparent 100%);
}
.hero-gallery__meta {
  position: relative;
  z-index: 11;
  padding-bottom: 40px;
  color: #fff;
  font-size: clamp(16px, 1.8vw, 26px);
}
.hero-gallery__elmenytipus {
  text-transform: uppercase;
}
.hero-gallery__meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
}
.hero-gallery__meta-sep {
  opacity: 0.7;
}
.hero-gallery__desztinacio {
  text-transform: uppercase;
}
.hero-gallery__metaleiras {
  font-size: clamp(18px, 1.8vw, 26px);
}
.hero-gallery__metaleiras p {
  margin-bottom: 0;
}
.hero-gallery__regio {
  text-transform: uppercase;
  margin: 0 0 10px;
}
.hero-gallery__cim {
  margin: 0 0 12px;
}
.hero-gallery__csillagok {
  display: flex;
  gap: 3px;
  margin: 0;
}
.hero-gallery__csillagok svg {
  fill: #fff;
}
.hero-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 4px;
}
.hero-gallery__thumb {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: opacity 0.2s;
}
.hero-gallery__thumb:hover {
  opacity: 0.88;
}
.hero-gallery__thumb--more::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.hero-gallery__more-label {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 12px;
}
.hero-gallery__more-label span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-gallery__more-label small {
  font-size: 1rem;
  opacity: 1;
  margin-top: 4px;
}
.hero-gallery__more-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: none;
  width: 48px;
  height: 48px;
  color: #fff;
  transform: translate(-50%, -50%);
  fill: none;
  stroke: currentcolor;
  stroke-width: 1.75;
}

/* ------------------------------------------------------------------------- *
 *  Lightbox
 * ------------------------------------------------------------------------- */
body.has-lightbox-open {
  overflow: hidden;
}

.hero-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999999999;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: rgba(11, 12, 14, 0.97);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  animation: hero-lightbox-in 0.22s ease-out;
}
.hero-lightbox__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  color: #fff;
}
.hero-lightbox__counter {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
  font-variant-numeric: tabular-nums;
}
.hero-lightbox__counter-sep {
  margin: 0 6px;
  opacity: 0.45;
}
.hero-lightbox__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}
.hero-lightbox__close:hover, .hero-lightbox__close:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}
.hero-lightbox__close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentcolor;
  stroke-width: 1.8;
  stroke-linecap: round;
}
.hero-lightbox__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0 76px;
  outline: none;
}
.hero-lightbox__figure {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
}
.hero-lightbox__img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.2s ease;
}
.hero-lightbox__img.is-loading {
  opacity: 0.25;
}
.hero-lightbox__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  margin: -21px 0 0 -21px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: hero-lightbox-spin 0.7s linear infinite;
  pointer-events: none;
}
.hero-lightbox__nav {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease;
  z-index: 2;
}
.hero-lightbox__nav:hover, .hero-lightbox__nav:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}
.hero-lightbox__nav svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentcolor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-lightbox__nav--prev {
  left: 12px;
}
.hero-lightbox__nav--next {
  right: 12px;
}
.hero-lightbox__strip {
  position: relative;
  display: flex;
  justify-content: safe center;
  gap: 8px;
  padding: 14px 20px 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
  -webkit-overflow-scrolling: touch;
}
.hero-lightbox__strip::-webkit-scrollbar {
  height: 6px;
}
.hero-lightbox__strip::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 3px;
}
.hero-lightbox__thumb {
  flex: 0 0 auto;
  width: 104px;
  height: 74px;
  padding: 0;
  border: none;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  overflow: hidden;
  opacity: 0.5;
  transition: opacity 0.2s ease, outline-color 0.2s ease;
  outline: 2px solid transparent;
  outline-offset: -2px;
}
.hero-lightbox__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-lightbox__thumb:hover, .hero-lightbox__thumb:focus-visible {
  opacity: 0.85;
}
.hero-lightbox__thumb.is-active {
  opacity: 1;
  outline-color: #fff;
}

@keyframes hero-lightbox-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes hero-lightbox-spin {
  to {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 900px) {
  .hero-lightbox__stage {
    padding: 0 8px;
  }
  .hero-lightbox__nav {
    width: 44px;
    height: 44px;
  }
  .hero-lightbox__nav--prev {
    left: 4px;
  }
  .hero-lightbox__nav--next {
    right: 4px;
  }
  .hero-lightbox__strip {
    padding: 10px 12px 14px;
    gap: 6px;
  }
  .hero-lightbox__thumb {
    width: 72px;
    height: 52px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-lightbox {
    animation: none;
  }
  .hero-lightbox__spinner {
    animation-duration: 1.6s;
  }
}
.kapcsolodo-szallasok {
  padding-bottom: 110px;
}

.kapcsolodo-elmenyek {
  padding-bottom: 110px;
}

@media screen and (max-width: 900px) {
  .hero-gallery__main {
    height: clamp(520px, 75vw, 600px);
    min-height: 0;
  }
  .hero-gallery__more-label span {
    display: none;
  }
  .szallas-layout,
  .elmeny-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }
  .szallas-sidebar,
  .elmeny-sidebar {
    position: static;
    width: 100%;
    min-width: 0;
  }
  .profil-kartya {
    max-width: 100%;
  }
  .kapcsolodo-szallasok .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 600px) {
  .site-main.szallasok .szallasok-lista {
    padding: 48px 0;
  }
  .szallas-szuro__mezok {
    align-items: stretch;
    gap: 24px;
    padding: 48px 0 20px;
  }
  .szallas-szuro__mezo {
    width: 100%;
    min-width: 0;
  }
  .szallas-szuro__kereses-sor {
    flex-wrap: wrap;
  }
  .szallas-szuro__input {
    flex: 1 1 100%;
    min-width: 0;
  }
  .szallas-szuro__btn {
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
  }
  .szallas-rendezes {
    align-items: stretch;
    flex-direction: column;
  }
  .szallas-rendezes__select {
    width: 100%;
    max-width: 100%;
  }
  .szallas-layout,
  .elmeny-layout {
    gap: 40px;
    padding: 48px 0 64px;
  }
  .kapcsolodo-szallasok {
    padding-bottom: 72px;
  }
  .kapcsolodo-szallasok .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
  .kapcsolodo-elmenyek {
    padding-bottom: 72px;
  }
  .hero-gallery {
    margin-bottom: 32px;
  }
  .hero-gallery__main {
    height: 480px;
    min-height: 0;
  }
  .hero-gallery__meta {
    padding-bottom: 32px;
  }
  .hero-gallery__thumbs {
    min-width: 0;
  }
}
/*!
Theme Name: mauri-premium-ui
Theme URI: http://underscores.me/
Author: Visionfresh
Author URI: http://underscores.me/
Description: Description
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: mauri-premium-ui
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.

mauri-premium-ui 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
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
.profil-kartya {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border: 2px solid #7A7A7A;
  padding: 0 32px 100px;
  text-align: center;
  margin-top: 75px;
  max-width: 306px;
  min-width: 0;
}
.profil-kartya__kep-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-top: -60px;
  flex-shrink: 0;
  background: #EDEDED;
}
.profil-kartya__kep {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.profil-kartya__kep-placeholder {
  width: 100%;
  height: 100%;
  background: #EDEDED;
}
.profil-kartya__tartalom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  width: 100%;
}
.profil-kartya__nev {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.3;
  min-height: 2.6em;
  margin: 0;
  max-width: 160px;
}
.profil-kartya__titulus {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin: 0 0 8px;
}
.profil-kartya__telefon {
  font-size: 26px;
  font-weight: 400;
  margin: 4px 0 0;
}
.profil-kartya__telefon a {
  color: inherit;
  text-decoration: none;
}
.profil-kartya__telefon a:hover {
  color: #0073aa;
}
.profil-kartya__gomb {
  display: block;
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  padding: 14px 16px;
  background: #0073aa;
  border: 1px solid #0073aa;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  transition: background 0.2s, border-color 0.2s;
  text-align: center;
  white-space: nowrap;
}
.profil-kartya__gomb:hover {
  background: rgb(0, 80.5, 119);
  border-color: rgb(0, 80.5, 119);
  color: #fff;
}
.profil-kartya__gomb-sec {
  display: block;
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  padding: 14px 16px;
  border: 1px solid #7A7A7A;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: #7A7A7A;
  transition: background 0.2s, border-color 0.2s;
  text-align: center;
  white-space: nowrap;
}
.profil-kartya__gomb-sec:hover {
  background: #0073aa;
  border-color: #0073aa;
  color: #fff;
}

/*!
Theme Name: mauri-premium-ui
Theme URI: http://underscores.me/
Author: Visionfresh
Author URI: http://underscores.me/
Description: Description
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: mauri-premium-ui
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.

mauri-premium-ui 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
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
.profil-single {
  margin-top: 160px;
}
.profil-single__header {
  display: grid;
  grid-template-columns: 1fr 636px;
  gap: 80px;
  align-items: center;
  padding-bottom: 60px;
  margin-bottom: 60px;
}
.profil-single__kep-wrapper {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  background: #EDEDED;
  flex-shrink: 0;
  margin-inline: auto;
}
.profil-single__kep {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.profil-single__kep-placeholder {
  width: 100%;
  height: 100%;
  background: #EDEDED;
}
.profil-single__nev {
  font-size: clamp(2rem, 4vw, 84px);
  font-weight: 300;
  margin: 0 0 6px;
  line-height: 1.15;
}
.profil-single__titulus {
  font-weight: 400;
  margin: 0 0 24px;
  letter-spacing: 0.02em;
}
.profil-single__kontaktok {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.profil-single__kontakt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}
.profil-single__kontakt svg {
  flex-shrink: 0;
  fill: #666;
}
.profil-single__kontakt:hover {
  color: #0073aa;
}
.profil-single__kontakt:hover svg {
  fill: #0073aa;
}
.profil-single__szekció {
  display: grid;
  grid-template-columns: 1fr 636px;
  gap: 0px;
  padding: 48px 0;
}
.profil-single__szekció-cim {
  max-width: 500px;
  margin: 0;
  line-height: 1.25;
}
.profil-single__szekció-tartalom {
  font-size: 1rem;
  line-height: 1.7;
}
.profil-single__szekció-tartalom p {
  margin: 0 0 1em;
}
.profil-single__desztinaciot {
  padding-top: 48px;
}

@media screen and (max-width: 900px) {
  .profil-single {
    margin-top: 96px;
  }
  .profil-single__header, .profil-single__szekció {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }
}
@media screen and (max-width: 600px) {
  .profil-single {
    margin-top: 64px;
  }
  .profil-single__header {
    gap: 32px;
  }
  .profil-single__szekció {
    gap: 24px;
  }
}
/*!
Theme Name: mauri-premium-ui
Theme URI: http://underscores.me/
Author: Visionfresh
Author URI: http://underscores.me/
Description: Description
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: mauri-premium-ui
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.

mauri-premium-ui 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
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
.banner-cta {
  display: flex;
  align-items: center;
  background-color: #EDEDED;
  padding: 60px 80px;
  position: relative;
  overflow: hidden;
  margin: 60px 0 0;
}
.banner-cta__tartalom {
  flex: 1;
  max-width: 520px;
  position: relative;
  z-index: 2;
}
.banner-cta__cim {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: #666;
  line-height: 1.2;
  margin: 0 0 20px;
}
.banner-cta__szoveg {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.65;
  margin: 0 0 32px;
  max-width: 420px;
}
.banner-cta__gomb {
  display: inline-block;
  background-color: #0073aa;
  color: #fff;
  padding: 16px 32px;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.2s;
}
.banner-cta__gomb:hover {
  background-color: rgb(0, 87.4, 129.2);
  color: #fff;
  text-decoration: none;
}
.banner-cta__kep-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.banner-cta__kep {
  display: block;
  max-height: 340px;
  width: auto;
}

@media only screen and (max-width: 600px) {
  .banner-cta {
    align-items: start;
    padding: 30px;
    min-height: 560px;
  }
  .banner-cta__kep {
    display: block;
    max-height: 260px;
    width: auto;
  }
}
/* 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
--------------------------------------------- */
/*!
Theme Name: mauri-premium-ui
Theme URI: http://underscores.me/
Author: Visionfresh
Author URI: http://underscores.me/
Description: Description
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: mauri-premium-ui
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.

mauri-premium-ui 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
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
.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;
}

/* Layouts
--------------------------------------------- */
.block-title-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 0;
}
.block-title-button__title {
  flex: 1;
  margin: 0;
}
.block-title-button__actions {
  flex-shrink: 0;
}
@media screen and (max-width: 600px) {
  .block-title-button {
    flex-direction: column;
    align-items: flex-start;
  }
  .block-title-button__actions {
    width: 100%;
    flex: 0 0 100%;
  }
  .block-title-button .btn {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.block-two-text {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
}
.block-two-text__col {
  flex: 1;
  min-width: 0;
}
@media screen and (max-width: 600px) {
  .block-two-text {
    flex-direction: column;
  }
}

.block-three-text {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
}
.block-three-text__col {
  flex: 1;
  min-width: 0;
}
@media screen and (max-width: 768px) {
  .block-three-text {
    flex-wrap: wrap;
  }
  .block-three-text .block-three-text__col {
    flex: 0 0 calc(50% - 1rem);
  }
}
@media screen and (max-width: 600px) {
  .block-three-text {
    flex-direction: column;
  }
}

.rolunk-amiben-hiszunk .block-three-text__col {
  border-left: 3px solid #7a7a7a;
  padding-left: 20px;
  padding-top: 20px;
  padding-right: 25px;
}
.rolunk-amiben-hiszunk .block-three-text__col h3 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 16px;
}
.rolunk-amiben-hiszunk .block-three-text__col p {
  margin-bottom: 0;
  max-width: 325px;
}

/*!
Theme Name: mauri-premium-ui
Theme URI: http://underscores.me/
Author: Visionfresh
Author URI: http://underscores.me/
Description: Description
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: mauri-premium-ui
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.

mauri-premium-ui 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
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
.block-divider {
  padding: 3.2rem 0;
}
.block-divider__line {
  position: relative;
  height: 1px;
  background-color: #EDEDED;
}
.block-divider__icon {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 37px;
  background: url("./template-parts/img/logo_szurke_divider.svg") no-repeat center center;
  background-size: contain;
  border-radius: 50%;
  display: block;
}

/*!
Theme Name: mauri-premium-ui
Theme URI: http://underscores.me/
Author: Visionfresh
Author URI: http://underscores.me/
Description: Description
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: mauri-premium-ui
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.

mauri-premium-ui 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
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
.block-post-carousel {
  padding: 2rem 0;
}
.block-post-carousel--full-width {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}
.block-post-carousel--full-width .splide__slide {
  width: 416px;
}
.block-post-carousel--full-width.block-post-carousel--post-type-elmeny .splide__slide {
  width: 306px;
}
.block-post-carousel__item {
  padding: 0 0.5rem;
}
.block-post-carousel .splide__arrows {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
}
.block-post-carousel .splide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: rgba(0, 0, 0, 0.35);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.block-post-carousel .splide__arrow svg {
  width: 32px;
  height: 32px;
  overflow: visible;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.4));
  transition: opacity 0.2s ease;
}
.block-post-carousel .splide__arrow svg path {
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.block-post-carousel .splide__arrow:hover svg {
  opacity: 0.7;
}
.block-post-carousel .splide__arrow--prev {
  left: 12px;
  transform: translateY(-50%) rotate(180deg);
}
.block-post-carousel .splide__arrow--next {
  right: 12px;
}
.block-post-carousel:hover .splide__arrow,
.block-post-carousel .splide__arrow:focus-visible {
  opacity: 1;
}
.block-post-carousel--full-width .splide__arrow--prev {
  left: max(32px, (100vw - 1360px) / 2 + 32px);
}
.block-post-carousel--full-width .splide__arrow--next {
  right: max(32px, (100vw - 1360px) / 2 + 32px);
}
.block-post-carousel .splide__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 16px 0 0;
  margin: 0;
  list-style: none;
  pointer-events: none;
}
.block-post-carousel .splide__pagination li {
  display: inline-block;
  margin: 0;
  pointer-events: auto;
}
.block-post-carousel .splide__pagination__page {
  display: block;
  width: 4px;
  height: 4px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #7a7a7a;
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.block-post-carousel .splide__pagination__page.is-active {
  opacity: 1;
  transform: scale(1.75);
}
.block-post-carousel__thumb {
  display: block;
  overflow: hidden;
  border-radius: 4px;
}
.block-post-carousel__thumb img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.block-post-carousel__thumb:hover img {
  transform: scale(1.03);
}
.block-post-carousel__content {
  padding: 0.75rem 0;
}
.block-post-carousel__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.block-post-carousel__title a {
  color: #7A7A7A;
  text-decoration: none;
}
.block-post-carousel__title a:hover {
  color: #0073aa;
}
.block-post-carousel__excerpt {
  font-size: 0.875rem;
  color: #666;
}
.block-post-carousel__excerpt p {
  margin: 0;
}

@media screen and (max-width: 600px) {
  .block-post-carousel {
    max-width: 100%;
    overflow: hidden;
  }
  .block-post-carousel--full-width {
    width: 100vw;
    max-width: 100vw;
    padding-left: 20px;
    padding-right: 20px;
  }
  .block-post-carousel--full-width .splide__slide, .block-post-carousel--full-width.block-post-carousel--post-type-elmeny .splide__slide {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }
  .block-post-carousel__item {
    min-width: 0;
  }
  .block-post-carousel .splide__track,
  .block-post-carousel .splide__list,
  .block-post-carousel .splide__slide {
    max-width: 100%;
  }
}
/*!
Theme Name: mauri-premium-ui
Theme URI: http://underscores.me/
Author: Visionfresh
Author URI: http://underscores.me/
Description: Description
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: mauri-premium-ui
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.

mauri-premium-ui 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
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
.block-ugyfel-velemenyek {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
  padding: 4rem 0;
}
.block-ugyfel-velemenyek__inner {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 90px;
}
.block-ugyfel-velemenyek__header {
  flex: 0 0 32%;
}
.block-ugyfel-velemenyek__title {
  max-width: 620px;
  margin: 0;
}
.block-ugyfel-velemenyek__cards {
  display: flex;
  flex: 1;
  gap: 1.5rem;
}
.block-ugyfel-velemenyek__card {
  flex: 1;
  border: 1px solid #666;
  padding: 1.5rem 1.5rem 1.5rem;
  padding-top: 3rem;
  position: relative;
}
.block-ugyfel-velemenyek__photo {
  width: 165px;
  height: 165px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: -82px;
  right: 30px;
  transform: translateX(-30px);
}
.block-ugyfel-velemenyek__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.block-ugyfel-velemenyek__body {
  display: flex;
  flex-direction: column;
}
.block-ugyfel-velemenyek__quote {
  font-size: 80px;
  line-height: 1;
  color: #666;
  font-family: "Quicksand", BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  margin-bottom: 0.5rem;
}
.block-ugyfel-velemenyek__text {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.6;
  margin: 0 0 1rem;
}
.block-ugyfel-velemenyek__name {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #666;
  margin: 0 0 0.2rem;
}
.block-ugyfel-velemenyek__uticel {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
}
@media screen and (max-width: 60em) {
  .block-ugyfel-velemenyek__inner {
    flex-direction: column;
  }
  .block-ugyfel-velemenyek__header {
    flex: none;
    width: 100%;
  }
  .block-ugyfel-velemenyek__cards {
    flex-wrap: wrap;
  }
  .block-ugyfel-velemenyek__card {
    flex: 1 1 calc(50% - 0.75rem);
  }
}
@media screen and (min-width: 37.5625em) and (max-width: 60em) {
  .block-ugyfel-velemenyek__cards {
    row-gap: 110px;
  }
  .block-ugyfel-velemenyek__card {
    flex: 0 1 calc(50% - 0.75rem);
  }
  .block-ugyfel-velemenyek__card:last-child:nth-child(odd) {
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 37.5em) {
  .block-ugyfel-velemenyek__inner {
    gap: 64px;
  }
  .block-ugyfel-velemenyek__cards {
    flex-direction: column;
    width: 100%;
  }
  .block-ugyfel-velemenyek__card {
    flex: none;
    width: 100%;
    margin-top: 70px;
  }
}

/*!
Theme Name: mauri-premium-ui
Theme URI: http://underscores.me/
Author: Visionfresh
Author URI: http://underscores.me/
Description: Description
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: mauri-premium-ui
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.

mauri-premium-ui 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
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
.block-dupla-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 60px 0;
}

.dupla-banner__card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  min-height: 380px;
  background: #f7f8fa;
  display: flex;
  flex-direction: column;
  padding: 40px;
}
.dupla-banner__card--right {
  align-items: flex-end;
  text-align: right;
}
.dupla-banner__card--right .dupla-banner__content .dupla-banner__title {
  color: #7a7a7a;
}
.dupla-banner__card--right .dupla-banner__content .dupla-banner__text {
  color: #7a7a7a;
  width: 100%;
  max-width: 380px;
  align-self: flex-end;
}
.dupla-banner__card--right .dupla-banner__content .dupla-banner__btn {
  align-self: flex-end;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 0;
  background-color: none;
}
.dupla-banner__card--has-image .dupla-banner__title,
.dupla-banner__card--has-image .dupla-banner__text {
  color: #fff;
}
.dupla-banner__card--has-image .dupla-banner__btn {
  border: 1px solid #fff;
  color: #fff;
  border-radius: 0;
  background-color: none;
}
.dupla-banner__card--has-image .dupla-banner__btn:hover {
  background: #fff;
  color: #7A7A7A;
}

.dupla-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.dupla-banner__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 32px;
  flex: 1;
}

.dupla-banner__top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dupla-banner__title {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7A7A7A;
}

.dupla-banner__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 600;
  color: #7A7A7A;
}

.dupla-banner__btn {
  align-self: flex-start;
}

.homepage-banner .right-banner .dupla-banner__top .dupla-banner__text p {
  margin: 0;
}
.homepage-banner .left-banner {
  background-color: #f7f8fa;
}
.homepage-banner .left-banner .dupla-banner__bg {
  inset: auto;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.homepage-banner .left-banner .dupla-banner__title,
.homepage-banner .left-banner .dupla-banner__text {
  color: #fff;
}
.homepage-banner .left-banner .dupla-banner__btn {
  border-color: #fff;
  color: #fff;
}
.homepage-banner .left-banner .dupla-banner__btn:hover {
  background: #fff;
  color: #7A7A7A;
}

@media screen and (max-width: 1279px) {
  .homepage-banner .dupla-banner__content {
    width: 100%;
    min-width: 0;
  }
  .homepage-banner .dupla-banner__btn.btn {
    box-sizing: border-box;
    width: 300px;
    min-width: 0;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .block-dupla-banner {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 600px) {
  .block-dupla-banner {
    gap: 20px;
    padding: 16px 0;
  }
  .block-dupla-banner .btn {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .dupla-banner__card {
    min-width: 0;
    padding: 32px !important;
  }
  .homepage-banner .right-banner {
    padding: 32px !important;
  }
  .homepage-banner .right-banner .dupla-banner__btn.btn {
    max-width: 100%;
    margin-left: 0;
  }
}
/*!
Theme Name: mauri-premium-ui
Theme URI: http://underscores.me/
Author: Visionfresh
Author URI: http://underscores.me/
Description: Description
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: mauri-premium-ui
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.

mauri-premium-ui 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
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
.block-single-banner {
  padding: 32px 0;
}

.single-banner__card {
  position: relative;
  border-radius: 0;
  border: 0;
  overflow: hidden;
  min-height: 380px;
  background: #f7f8fa;
  display: flex;
  flex-direction: column;
  padding: 40px;
}
.single-banner__card--right {
  align-items: flex-end;
  text-align: right;
}
.single-banner__card--right .single-banner__content .single-banner__title {
  color: #7a7a7a;
}
.single-banner__card--right .single-banner__content .single-banner__text {
  color: #7a7a7a;
  width: 100%;
  max-width: 380px;
  align-self: flex-end;
}
.single-banner__card--right .single-banner__content .single-banner__btn {
  border: 0;
  color: #FFF;
  border-radius: 0;
  background-color: #0073aa;
  padding: 0 20px;
}
.single-banner__card--has-image .single-banner__title,
.single-banner__card--has-image .single-banner__text {
  color: #fff;
}
.single-banner__card--has-image .single-banner__btn {
  border: 0;
  color: #FFF;
  border-radius: 0;
  background-color: #0073aa;
  padding: 0 20px;
}
.single-banner__card--has-image .single-banner__btn:hover {
  background: #fff;
  color: #7A7A7A;
}

.single-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.single-banner__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 32px;
  flex: 1;
}

.single-banner__top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.single-banner__title {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7A7A7A;
}

.single-banner__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 600;
  color: #7A7A7A;
}

.single-banner__btn {
  align-self: flex-start;
}

@media screen and (max-width: 600px) {
  .block-single-banner {
    padding: 16px 0;
  }
  .single-banner__card {
    min-width: 0;
    padding: 32px !important;
  }
  .single-banner__btn {
    height: auto;
    padding: 6px 20px !important;
  }
}
.block-munkatarsak {
  padding: 75px 0 0;
}
.block-munkatarsak__cim {
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 40px;
  line-height: 1.3;
}
.block-munkatarsak__racs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  row-gap: 80px;
  align-items: stretch;
  padding-top: 60px;
}
.block-munkatarsak__racs .profil-kartya {
  margin-top: 0;
  height: 100%;
}
@media (max-width: 900px) {
  .block-munkatarsak__racs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .block-munkatarsak__racs {
    grid-template-columns: minmax(0, 1fr);
  }
}

.block-one-text {
  padding: 2rem 0;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/* Contact Form 7
--------------------------------------------- */
/*!
Theme Name: mauri-premium-ui
Theme URI: http://underscores.me/
Author: Visionfresh
Author URI: http://underscores.me/
Description: Description
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: mauri-premium-ui
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.

mauri-premium-ui 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
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
.ajanlatkero-szekciok {
  margin-bottom: 60px;
}

.form-szekciocim {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  margin: 0 0 16px;
}

.form-sor {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  padding: 20px 0;
  gap: 40px;
}
.form-sor--textarea {
  align-items: start;
  padding-top: 24px;
}
.form-sor--datumok {
  align-items: center;
}
.form-sor--checkbox {
  grid-template-columns: 1fr;
  border-bottom: none;
  padding: 24px 0 16px;
}

.form-label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #666;
  text-transform: uppercase;
  line-height: 1.4;
}

.wpcf7-form-control.wpcf7-text, .wpcf7-form-control.wpcf7-email, .wpcf7-form-control.wpcf7-tel, .wpcf7-form-control.wpcf7-textarea, .wpcf7-form-control.wpcf7-select {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  padding: 8px 0;
  font-family: "Quicksand", BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 1rem;
  color: #7A7A7A;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
  max-width: 415px;
}
.wpcf7-form-control.wpcf7-text::placeholder, .wpcf7-form-control.wpcf7-email::placeholder, .wpcf7-form-control.wpcf7-tel::placeholder, .wpcf7-form-control.wpcf7-textarea::placeholder, .wpcf7-form-control.wpcf7-select::placeholder {
  color: #666;
}
.wpcf7-form-control.wpcf7-text:focus, .wpcf7-form-control.wpcf7-email:focus, .wpcf7-form-control.wpcf7-tel:focus, .wpcf7-form-control.wpcf7-textarea:focus, .wpcf7-form-control.wpcf7-select:focus {
  border-bottom-color: #0073aa;
  outline: none;
}
.wpcf7-form-control.wpcf7-text[aria-invalid=true], .wpcf7-form-control.wpcf7-email[aria-invalid=true], .wpcf7-form-control.wpcf7-tel[aria-invalid=true], .wpcf7-form-control.wpcf7-textarea[aria-invalid=true], .wpcf7-form-control.wpcf7-select[aria-invalid=true] {
  border-bottom-color: #c0392b;
}
.wpcf7-form-control.wpcf7-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7A7A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
  cursor: pointer;
}
.wpcf7-form-control.wpcf7-textarea {
  resize: vertical;
  height: 120px;
  border-right: 1px solid #ccc;
}

.datum-mezok {
  display: flex;
  gap: 24px;
}
.datum-mezok .wpcf7-form-control-wrap {
  flex: 1;
}

.wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.wpcf7-acceptance label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.wpcf7-acceptance input[type=checkbox] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: #0073aa;
  cursor: pointer;
}
.wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7A7A7A;
}

.wpcf7-form > .g-recaptcha,
.wpcf7-form > [data-sitekey] {
  margin: 24px 0;
}

.wpcf7-submit {
  display: block;
  background-color: #0073aa !important;
  color: #fff !important;
  border: none !important;
  padding: 18px 40px;
  font-family: "Quicksand", BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-top: 32px;
  height: 48px;
  display: flex;
  min-width: 300px;
  align-items: center;
  justify-content: center;
}
.wpcf7-submit:hover {
  background-color: rgb(0, 87.4, 129.2);
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-response-output {
  margin-top: 16px;
  padding: 12px 16px;
  font-size: 0.9rem;
  border: 1px solid #EDEDED;
}

.wpcf7-form.sent .wpcf7-response-output {
  border-color: #27ae60;
  color: #27ae60;
}

.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.invalid .wpcf7-response-output {
  border-color: #c0392b;
  color: #c0392b;
}

@media only screen and (max-width: 800px) {
  .form-sor {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    padding: 20px 0;
    gap: 10px;
  }
}
/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/*!
Theme Name: mauri-premium-ui
Theme URI: http://underscores.me/
Author: Visionfresh
Author URI: http://underscores.me/
Description: Description
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: mauri-premium-ui
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.

mauri-premium-ui 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
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
/* 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
--------------------------------------------- */
/*!
Theme Name: mauri-premium-ui
Theme URI: http://underscores.me/
Author: Visionfresh
Author URI: http://underscores.me/
Description: Description
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: mauri-premium-ui
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.

mauri-premium-ui 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
# Utilities
	- Accessibility
	- 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;
}

/* Scroll fade animation
--------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade {
  opacity: 0;
  transition: opacity 0.4s ease-out;
}
.fade.is-visible {
  opacity: 1;
}

.l-1 {
  transition-delay: 0.3s;
}

.l-2 {
  transition-delay: 0.6s;
}

.l-3 {
  transition-delay: 0.9s;
}

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