@charset "UTF-8";
/* Globalne style (SCSS) */
@import url("https://fonts.googleapis.com/css2?family=Joan&display=swap");
/* Fonty z Google (na końcu, bo to CSS, nie SCSS) */
@import url("https://fonts.googleapis.com/css2?family=Joan&display=swap");
#article__hero {
  width: 100%;
  height: 50vh;
  padding-bottom: 40px;
  position: relative;
  background-size: cover;
}
@media (min-width: 1280px) {
  #article__hero {
    height: 650px;
  }
}
#article__hero .article__background {
  width: 100%;
  min-height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/aktualnosci.webp);
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#article__hero .article__header {
  font-weight: normal;
  z-index: 2;
  text-align: center;
  font-size: 5rem;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
}
#article__hero .article__header h1 {
  margin: 0;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #article__hero .article__header {
    bottom: 0;
  }
}
@media (min-width: 1280px) {
  #article__hero .article__header {
    font-size: 11rem;
    bottom: -120px;
  }
}
#article__hero .article__box {
  display: flex;
  justify-content: center;
}

header ul a:visited {
  color: #1e1e1e !important;
}
header ul,
header li {
  list-style: none !important;
}
header.site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 2rem);
  max-width: 1320px;
  background: #fff;
  border-radius: 20px 0 20px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: visible;
}
header.site-header > .container {
  max-width: none;
  width: 100%;
  padding: 10px 30px;
}
header.site-header .header,
header.site-header .site-header__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  overflow: visible;
}

.header__logo {
  flex: 0 0 auto;
}
.header__logo img {
  max-height: 50px;
  width: auto;
  height: auto;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  .header__logo img {
    max-height: 65px;
  }
}
.header__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 12px;
  overflow: visible;
}
@media (min-width: 1024px) {
  .header__menu .nav {
    overflow: visible;
    position: static;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  .header__menu {
    order: 3;
    flex: 0 0 auto;
  }
}
.header__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  .header__right {
    order: 2;
    margin-left: auto;
    margin-right: 2rem;
  }
}
.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .header__phone {
    font-size: 1.7rem;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  .header__phone {
    font-size: 1.7rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .header__phone {
    font-size: 1.6rem;
  }
}
@media (min-width: 1280px) {
  .header__phone {
    font-size: 1.7rem;
  }
}
.header__phone-icon {
  width: 20px;
  height: 20px;
}
@media (max-width: 767px) {
  .header__phone-icon {
    width: 26px;
    height: 26px;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  .header__phone-icon {
    width: 25px;
    height: 25px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .header__phone-icon {
    width: 24px;
    height: 24px;
  }
}
.header__location {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.header__location-icon {
  width: 22px;
  height: 22px;
}
@media (max-width: 767px) {
  .header__location-icon {
    width: 28px;
    height: 28px;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  .header__location-icon {
    width: 27px;
    height: 27px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .header__location-icon {
    width: 26px;
    height: 26px;
  }
}
.header__buttons {
  display: none;
  gap: 12px;
  align-items: center;
  margin-right: 12px;
}
@media (min-width: 768px) {
  .header__buttons {
    display: flex;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .header__buttons {
    gap: 8px;
    margin-right: 8px;
  }
}
.header__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .header__button {
    padding: 8px 14px;
    font-size: 0.85rem;
    gap: 6px;
  }
}
@media (min-width: 1400px) {
  .header__button {
    padding: 12px 24px;
    font-size: 1.1rem;
  }
}
.header__button-icon {
  width: 20px;
  height: 20px;
  transition: filter 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  filter: brightness(0) invert(1);
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .header__button-icon {
    width: 16px;
    height: 16px;
  }
}
.header__button span {
  position: relative;
  z-index: 1;
}
.header__button:hover .header__button-icon {
  filter: brightness(0);
}
.header__button--call {
  background-color: #3757a1;
  border-color: #3757a1 !important;
}
.header__button--call::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-color: #1e1e1e !important;
  color: #3757a1;
  transition: left 0.5s ease;
  z-index: 0;
}
.header__button--call:hover {
  border-color: #3757a1 !important;
  color: #3757a1;
}
.header__button--call:hover::before {
  left: 0;
}
.header__button--call:active {
  background-color: #fff;
  color: #3757a1 !important;
  border-color: #3757a1 !important;
}
.header__button--call:active::before {
  left: -100%;
}

.hamburger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #fff;
  height: 44px;
  padding: 0 0.75rem;
  cursor: pointer;
  user-select: none;
}
@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}
.hamburger__box {
  position: relative;
  width: 20px;
  height: 14px;
}
.hamburger__inner {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger__inner, .hamburger__inner::before, .hamburger__inner::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
  transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
}
.hamburger__inner::before {
  top: -6px;
}
.hamburger__inner::after {
  top: 6px;
}
.hamburger.is-active .hamburger__inner {
  transform: rotate(45deg);
}
.hamburger.is-active .hamburger__inner::before {
  top: 0;
  transform: rotate(90deg);
}
.hamburger.is-active .hamburger__inner::after {
  top: 0;
  opacity: 0;
}
.hamburger__label {
  font-size: 0.85rem;
  font-weight: 600;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu a {
  text-decoration: none;
  color: #000;
  display: block;
  padding: 0.75rem 1rem;
  transition: color 0.2s ease, background 0.2s ease;
}
.menu a:visited {
  color: #ff9d00 !important;
}
.menu a:hover {
  background: #f5f5f5;
  color: #e63946;
}
.menu-link {
  padding: 40px 0;
}
.menu-item {
  padding: 0 10px;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .menu-item {
    padding: 0 6px;
  }
}
.menu-item.submenu-open > .sub-menu {
  display: flex;
}
.menu-item.submenu-open > .submenu-toggle {
  transform: rotate(180deg);
}

ul {
  margin: 0 !important;
  text-transform: uppercase;
}

.nav {
  position: fixed;
  inset: 0 0 0 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding-top: 150px;
  overflow-y: auto;
  overflow-x: hidden;
}
.nav--open {
  transform: translateX(0);
}
.nav__list {
  font-size: 1.7rem;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .nav__list {
    font-size: 1.4rem;
  }
}
.nav .menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  margin: 0;
  padding: 0 1.5rem;
}
.nav .sub-menu {
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.3rem 1rem;
}
.nav .sub-menu__links {
  flex: 1 1 50%;
}
.nav .sub-menu__links .sub-menu__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav .sub-menu__links .sub-menu__list > li {
  width: 100%;
}
.nav .sub-menu__links .sub-menu__list > li > a {
  display: block;
  width: 100%;
  font-size: 1.8rem;
  text-transform: uppercase;
  padding: 0.2rem 0;
  transition: color 0.2s ease;
}
.nav .sub-menu__links .sub-menu__list > li > a:hover {
  color: #ff9d00;
}
.nav .sub-menu__icon {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  align-self: center;
  justify-content: center;
  font-size: 4rem;
  color: #ccc;
  transition: color 0.3s ease, transform 0.3s ease;
}
.nav .sub-menu__icon img {
  max-width: 220px !important;
}
.nav .sub-menu__icon.is-active {
  color: #e63946;
  transform: scale(1.1);
}
@media (min-width: 1024px) {
  .nav {
    position: static;
    transform: none;
    width: auto;
    height: auto;
    background: transparent;
    padding-top: 0;
    flex-direction: row;
  }
  .nav .menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: auto;
  }
}
@media (min-width: 1024px) and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .nav .menu {
    gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .nav .menu a {
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
  }
}
@media (min-width: 1024px) and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .nav .menu a {
    font-size: 0.85rem;
    padding: 0.4rem 0.5rem;
  }
}
@media (min-width: 1024px) {
  .nav .menu-item {
    position: relative;
    display: inline-block;
  }
  .nav .menu-item-has-children > a {
    position: relative;
  }
  .nav .menu-item-has-children > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12px;
    height: 12px;
  }
  .nav .menu-item-has-children > .sub-menu {
    position: fixed;
    top: 140px;
    left: 0;
    list-style: none !important;
    width: 100vw;
    background: #fff;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 2rem 3rem;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0s linear 0.2s;
    pointer-events: none;
  }
  .nav .menu-item-has-children:hover > .sub-menu,
  .nav .menu-item-has-children > .sub-menu:hover {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s ease, visibility 0s linear 0s;
    pointer-events: auto;
  }
  .nav .menu-item-has-children > a::after {
    content: "";
    position: absolute;
    left: -50px;
    right: -50px;
    bottom: -12px;
    height: 110px;
    z-index: 998;
  }
}

@keyframes submenuFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.submenu-toggle {
  display: inline-block;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 0.5rem;
  font-size: 0.9rem;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
@media (min-width: 1024px) {
  .submenu-toggle {
    display: none;
  }
}

html.no-scroll {
  overflow: hidden;
}

.content-area .entry-header {
  height: 0;
}
.content-area .entry-title {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.7);
  padding: 20px;
  font-size: 4rem;
  text-align: center;
}
.content-area .entry-content {
  font-size: 1.7rem;
}
.content-area .entry-content p {
  font-size: 1.7rem;
}

.blog__background {
  height: 70vh;
  width: 100%;
  background-position: top;
  background-size: cover;
  position: relative;
}

.blog .article-container {
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 400px;
  margin-bottom: 40px;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  .blog .article-container {
    height: 450px;
  }
}
.blog .article-container .thumbnail-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 300px;
  border: none;
  padding: 0;
  margin: 0;
}
.blog .article-container .thumbnail-image img {
  display: none;
}
.blog .article-container h2 {
  font-size: 2rem;
  margin-top: 20px;
  margin-bottom: 0;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  .blog .article-container h2 {
    height: 80px;
  }
}
.blog .article-container h2 a {
  color: #784848;
}
.blog .article-container h2 a:visited {
  color: #784848;
}
.blog .article-container h2 a:hover {
  text-decoration: none;
  color: #784848;
}
.blog .article-container a {
  color: #784848;
}
.blog .article-container a:visited {
  color: #784848;
}
.blog .article-container a:hover {
  text-decoration: none;
  color: #784848;
}
.blog .article-container .article-content {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding-bottom: 20px;
  font-size: 1.7rem;
}
.blog .article-container .article-content:hover {
  text-decoration: none;
}
.blog .article-container .article-content .entry-content {
  margin-bottom: 15px;
}
.blog .article-container .article-content a.btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-family: inherit;
  font-weight: 500;
  color: #fff !important;
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #3757a1, #3757a1);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  border: 1px solid #784848;
  text-decoration: none !important;
  border-radius: 10px;
  padding: 12px 24px;
  cursor: pointer;
  outline: none;
  min-width: 120px;
  max-width: 50%;
  text-transform: none;
  transition: background-size 0.45s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
@media (min-width: 1280px) {
  .blog .article-container .article-content a.btn {
    max-width: 25%;
  }
}
@media (min-width: 1500px) {
  .blog .article-container .article-content a.btn {
    max-width: 25%;
  }
}
@media (min-width: 1700px) {
  .blog .article-container .article-content a.btn {
    max-width: 25%;
  }
}
.blog .article-container .article-content a.btn:hover {
  background-size: 100% 100%, 100% 100%;
  color: #1e1e1e !important;
  border-color: #784848;
  transform: translateY(-1px);
}
.blog .article-container .article-content a.btn:active {
  transform: translateY(0);
}
.blog .article-container .article-content a.btn:focus {
  outline: 2px solid #784848;
  outline-offset: 3px;
}
.blog .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.blog .pagination .page-numbers {
  margin: 0 5px;
  font-size: 1.6rem;
  text-decoration: none;
  color: #E5E5E5;
}
.blog .pagination .page-numbers:hover {
  color: #784848;
}
.blog .pagination .page-numbers.current {
  color: #784848;
  font-weight: bold;
}

/*!
Theme Name: ExistAgency
Theme URI: http://underscores.me/
Author: Agency
Author URI: http://google.com
Description:
Version: 5.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: 
Tags: 

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

ekspresowe is based on Underscores https://underscores.me/, (C) 2012-2022 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:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
/* normalize.css v8.0.0 | 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; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

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

/**
 * 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; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 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; /* 1 */
  font-size: 1em; /* 2 */
}

/* 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; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * 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; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * 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; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

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

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  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; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * 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; /* 1 */
  padding: 0; /* 2 */
}

/**
 * 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; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * 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; /* 1 */
  font: inherit; /* 2 */
}

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

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
  color: #404040;
  font-family: sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

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

p {
  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;
  font-size: 15px;
  font-size: 0.9375rem;
  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;
  font-size: 15px;
  font-size: 0.9375rem;
}

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

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

big {
  font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}

body {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */
}

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

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

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

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

dt {
  font-weight: bold;
}

dd {
  margin: 0 1.5em 1.5em;
}

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}

figure {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */
}

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

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type=button],
input[type=reset],
input[type=submit] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  font-size: 12px;
  font-size: 0.75rem;
  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;
}

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

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: royalblue;
}

a:visited {
  color: purple;
}

a:hover, a:focus, a:active {
  color: midnightblue;
}

a:focus {
  outline: thin dotted;
}

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

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
  clear: both;
  display: block;
  float: left;
  width: 100%;
}

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

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

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

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

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

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

.main-navigation li {
  float: left;
  position: relative;
}

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

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

@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none;
  }
  .main-navigation ul {
    display: block;
  }
}
.site-main .comment-navigation, .site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.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: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

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

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

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

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
  /* Make sure select elements fit in widgets. */
}

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

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.hentry {
  margin: 0 0 1.5em;
}

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

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

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

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

.bypostauthor {
  display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# 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 embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

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

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

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

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

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

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

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

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

#block_footer {
  background-color: #b89898;
  position: relative;
  overflow: hidden;
  padding: 60px 0 40px;
  isolation: isolate;
  font-weight: 400;
}
#block_footer > .container {
  position: relative;
  z-index: 1;
}
#block_footer .footer__ornament {
  position: absolute;
  left: -50px;
  bottom: -40px;
  width: 200px;
  height: auto;
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
@media (max-width: 767px) {
  #block_footer .footer__ornament {
    left: auto;
    right: -50px;
  }
}
#block_footer .footer {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 900px) {
  #block_footer .footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
  }
}
#block_footer .footer h5 {
  color: #fff;
  margin: 0 0 18px;
  font-family: "Joan", serif;
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  #block_footer .footer h5 {
    font-size: 3rem;
  }
}
@media (min-width: 900px) {
  #block_footer .footer__brand {
    flex: 1 1 40%;
    max-width: 460px;
  }
}
#block_footer .footer__logo {
  display: inline-block;
  margin-bottom: 22px;
}
#block_footer .footer__logo img {
  display: block;
  width: 200px;
  height: auto;
  filter: brightness(0);
}
#block_footer .footer__brand p {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 767px) {
  #block_footer .footer__brand p {
    font-size: 1.7rem;
  }
}
@media (min-width: 900px) {
  #block_footer .footer__menu, #block_footer .footer__contact {
    flex: 0 0 auto;
  }
}
#block_footer .footer__menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
#block_footer .footer__menu-list li {
  list-style: none;
  margin: 0;
  padding: 0;
}
#block_footer .footer__menu-list li::before, #block_footer .footer__menu-list li::marker {
  content: none;
}
#block_footer .footer__menu-list a {
  color: #1e1e1e;
  font-size: 1.5rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
#block_footer .footer__menu-list a:hover {
  opacity: 0.75;
}
@media (max-width: 767px) {
  #block_footer .footer__menu-list a {
    font-size: 1.8rem;
  }
}
#block_footer .footer__menu-list .current-menu-item > a,
#block_footer .footer__menu-list .current_page_item > a,
#block_footer .footer__menu-list a[aria-current=page] {
  color: #1e1e1e;
}
#block_footer .footer__contact-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#block_footer .footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #1e1e1e;
  font-size: 1.5rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
@media (max-width: 767px) {
  #block_footer .footer__contact-item {
    font-size: 1.8rem;
  }
}
#block_footer .footer__contact-item:hover {
  opacity: 0.75;
}
#block_footer .footer__contact-item span {
  line-height: 1.5;
}
#block_footer .footer__contact-item--mail {
  margin-top: 8px;
}
#block_footer .footer__contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 4px;
}
#block_footer .footer__contact-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.hentry {
  margin: 0 !important;
}

body {
  --selection-bg: #45901d;
  --selection-color: #fff;
  background-color: #fff;
  overflow-x: hidden !important;
  overflow-y: hidden !important;
}

::selection {
  background-color: var(--selection-bg);
  color: var(--selection-color);
}

* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100% !important;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
  font-size: 10px;
}

a,
img,
img a {
  outline: none !important;
}

p,
a {
  color: #000;
  text-decoration: none;
  font-family: "Joan", serif;
}

.button__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-family: inherit;
  font-weight: 500;
  color: #fff !important;
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #3757a1, #3757a1);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  border: 1px solid #784848;
  text-decoration: none !important;
  border-radius: 10px;
  padding: 12px 24px;
  cursor: pointer;
  outline: none;
  min-width: 120px;
  text-transform: none;
  transition: background-size 0.45s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .button__button {
    padding: 7px 15px;
  }
}
@media (min-width: 1700px) {
  .button__button {
    font-size: 1.4rem;
    padding: 7px 40px;
  }
}
.button__button:hover {
  background-size: 100% 100%, 100% 100%;
  color: #1e1e1e !important;
  border-color: #784848;
}
.button__button:active {
  transform: translateY(0);
}
.button__button:focus {
  outline: 2px solid #784848;
  outline-offset: 3px;
}

.falkheader {
  font-size: 3.2rem !important;
  line-height: 0.9 !important;
  font-weight: bold !important;
  color: #1e1e1e;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .falkheader {
    font-size: 3.5rem !important;
    line-height: 1.05 !important;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  .falkheader {
    font-size: 4rem !important;
    line-height: 1.1 !important;
  }
}
@media (min-width: 1280px) {
  .falkheader {
    font-size: 4rem !important;
    line-height: 1 !important;
  }
}

.falktop {
  font-size: 1.5rem !important;
  line-height: 1 !important;
  color: #1e1e1e;
}

.falkh1 {
  font-size: 4rem !important;
  line-height: 1.2 !important;
  font-weight: bold !important;
  font-family: "Joan", serif !important;
  color: #1e1e1e;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  .falkh1 {
    font-size: 4.5rem !important;
  }
}
@media (min-width: 1700px) {
  .falkh1 {
    font-size: 5rem !important;
  }
}

.falkh2 {
  font-size: 3rem !important;
  line-height: 1.1 !important;
  font-weight: bold !important;
  font-family: "Joan", serif !important;
  color: #1e1e1e;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  .falkh2 {
    font-size: 3.4rem !important;
  }
}
@media (min-width: 1700px) {
  .falkh2 {
    font-size: 3.8rem !important;
  }
}

.falkh3 {
  font-size: 2.4rem !important;
  line-height: 1.3 !important;
  font-weight: bold !important;
  color: #1e1e1e;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  .falkh3 {
    font-size: 2.8rem !important;
  }
}
@media (min-width: 1700px) {
  .falkh3 {
    font-size: 3rem !important;
  }
}

.falkh4 {
  font-size: 2rem !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
  color: #1e1e1e;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  .falkh4 {
    font-size: 2.2rem !important;
  }
}
@media (min-width: 1700px) {
  .falkh4 {
    font-size: 2.4rem !important;
  }
}

.falktext {
  font-size: 1.6rem !important;
  line-height: 1.5 !important;
  color: #1e1e1e;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  .falktext {
    font-size: 1.8rem !important;
  }
}
@media (min-width: 1700px) {
  .falktext {
    font-size: 2rem !important;
  }
}

.falktext-small {
  font-size: 1.4rem !important;
  line-height: 1.4 !important;
  color: #1e1e1e;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  .falktext-small {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 1700px) {
  .falktext-small {
    font-size: 1.6rem !important;
  }
}

.single-post article header {
  position: unset;
  background-color: #fff;
}
.single-post article .post-thumbnail img {
  display: none;
}
.single-post article h1 {
  font-size: 2rem;
}
.single-post article p {
  font-size: 1.2rem;
  padding-top: 20px;
}

#social-media-fixed {
  position: fixed;
  left: calc((100vw - 1616px) / 2 - 50px);
  bottom: 10vh;
  z-index: 9999;
}
#social-media-fixed a {
  display: block;
  opacity: 1;
  transition: all 0.3s ease;
}
#social-media-fixed a:hover {
  opacity: 0.5;
}
#social-media-fixed a img {
  width: 100%;
  height: 100%;
  max-width: 25px;
  max-height: 25px;
  display: block;
  margin-top: 30px;
}
@media screen and (max-width: 1850px) {
  #social-media-fixed {
    left: calc((100% - 1616px) / 2 - 50px);
  }
}
@media screen and (max-width: 1700px) {
  #social-media-fixed {
    left: calc((100% - 1476px) / 2 - 50px);
  }
}
@media screen and (max-width: 1616px) {
  #social-media-fixed {
    left: 20px;
  }
}
@media screen and (max-width: 576px) {
  #social-media-fixed {
    display: none;
  }
}

.topBar__top {
  background-color: #784848;
  padding: 12px 0;
}

@media (max-width: 767px) {
  .topBar #hidden {
    display: none !important;
  }
}
.topBar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topBar__left {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
}
.topBar__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}
.topBar__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff !important;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 400;
  transition: opacity 0.3s ease;
}
.topBar__link:hover {
  opacity: 0.8;
}
.topBar__link span {
  white-space: nowrap;
}
@media (max-width: 1300px) {
  .topBar__link span {
    font-size: 1.2rem;
  }
}
.topBar__icon {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}
@media (min-width: 1400px) {
  .topBar__icon {
    width: 20px;
    height: 20px;
  }
}

p {
  margin-bottom: 0 !important;
}

a,
p,
h1,
h2,
h3,
h4,
h5,
ul li,
ol li {
  -webkit-font-smoothing: antialiased;
  -webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}

h1 {
  font-family: "Joan", serif !important;
  font-weight: 700;
  font-size: 40px;
  margin: 0;
}

h2 {
  font-family: "Joan", serif;
  font-weight: 200;
  font-size: 45px;
}

h3 {
  font-family: "Joan", serif;
  font-weight: 200;
}

a {
  text-decoration: none;
  outline: none;
}

*::selection {
  color: #fff;
  background-color: #3757a1;
}

/* Style dla bloków */
#block_about {
  padding: 3rem 0;
}
#block_about .about {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  text-align: center;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_about .about {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    text-align: left;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_about .about {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    text-align: left;
  }
}
@media (min-width: 1280px) {
  #block_about .about {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    text-align: left;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_about .about {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    text-align: left;
  }
}
@media (min-width: 1500px) {
  #block_about .about {
    gap: 5rem;
  }
}
@media (min-width: 1700px) {
  #block_about .about {
    gap: 6rem;
  }
}
#block_about .about__left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  width: 100%;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_about .about__left {
    width: 50%;
    align-items: flex-start;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_about .about__left {
    width: 50%;
    align-items: flex-start;
  }
}
@media (min-width: 1280px) {
  #block_about .about__left {
    width: 50%;
    align-items: flex-start;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_about .about__left {
    width: 50%;
    align-items: flex-start;
  }
}
#block_about .about__header {
  font-family: "Joan", serif;
  font-size: 2.4rem;
  line-height: 1.25;
  font-weight: 400;
  color: #784848;
}
#block_about .about__header,
#block_about .about__header * {
  font-family: "Joan", serif;
  font-weight: 400;
  color: #784848;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_about .about__header {
    font-size: 2.8rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_about .about__header {
    font-size: 2.6rem;
  }
}
@media (min-width: 1280px) {
  #block_about .about__header {
    font-size: 3rem;
  }
}
@media (min-width: 1500px) {
  #block_about .about__header {
    font-size: 3.4rem;
  }
}
@media (min-width: 1700px) {
  #block_about .about__header {
    font-size: 3.8rem;
  }
}
#block_about .about__editor {
  font-family: "Joan", serif;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #1e1e1e;
}
#block_about .about__editor p {
  margin-bottom: 1.2rem;
}
#block_about .about__editor p:last-child {
  margin-bottom: 0;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_about .about__editor {
    font-size: 1.7rem;
  }
}
@media (min-width: 1280px) {
  #block_about .about__editor {
    font-size: 1.75rem;
  }
}
@media (min-width: 1500px) {
  #block_about .about__editor {
    font-size: 1.8rem;
  }
}
@media (min-width: 1700px) {
  #block_about .about__editor {
    font-size: 1.9rem;
  }
}
#block_about .about__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  color: #784848;
  background-color: transparent;
  border: 1px solid #784848;
  border-radius: 0;
  margin-top: 0.5rem;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
#block_about .about__btn:hover {
  background-color: #784848;
  color: #fff;
  transform: translateY(-1px);
}
#block_about .about__btn:active {
  transform: translateY(0);
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_about .about__btn {
    font-size: 1.5rem;
    padding: 12px 32px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_about .about__btn {
    font-size: 1.5rem;
    padding: 12px 32px;
  }
}
@media (min-width: 1500px) {
  #block_about .about__btn {
    font-size: 1.7rem;
    padding: 14px 36px;
  }
}
@media (min-width: 1700px) {
  #block_about .about__btn {
    font-size: 1.8rem;
    padding: 16px 40px;
  }
}
#block_about .about__images {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_about .about__images {
    width: 50%;
    display: block;
    position: relative;
    gap: 0;
    aspect-ratio: 4/3;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_about .about__images {
    width: 50%;
    display: block;
    position: relative;
    gap: 0;
    aspect-ratio: 4/3;
  }
}
@media (min-width: 1280px) {
  #block_about .about__images {
    width: 50%;
    display: block;
    position: relative;
    gap: 0;
    aspect-ratio: 4/3;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_about .about__images {
    width: 50%;
    display: block;
    position: relative;
    gap: 0;
    aspect-ratio: 4/3;
  }
}
#block_about .about__image {
  width: 100%;
  height: 220px;
  display: block;
  object-fit: cover;
  border-radius: 20px 0 20px 0;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_about .about__image--1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 60%;
    object-fit: cover;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_about .about__image--1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 60%;
    object-fit: cover;
  }
}
@media (min-width: 1280px) {
  #block_about .about__image--1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 60%;
    object-fit: cover;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_about .about__image--1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 60%;
    object-fit: cover;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_about .about__image--2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 62%;
    height: 60%;
    object-fit: cover;
    z-index: 2;
    border: 3px solid #fff;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_about .about__image--2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 62%;
    height: 60%;
    object-fit: cover;
    z-index: 2;
    border: 3px solid #fff;
  }
}
@media (min-width: 1280px) {
  #block_about .about__image--2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 62%;
    height: 60%;
    object-fit: cover;
    z-index: 2;
    border: 3px solid #fff;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_about .about__image--2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 62%;
    height: 60%;
    object-fit: cover;
    z-index: 2;
    border: 3px solid #fff;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_about {
    padding: 6rem 0;
  }
}
@media (min-width: 1280px) {
  #block_about {
    padding: 7rem 0;
  }
}
@media (min-width: 1500px) {
  #block_about {
    padding: 8rem 0;
  }
}
@media (min-width: 1700px) {
  #block_about {
    padding: 10rem 0;
  }
}

#block_banner {
  position: relative;
  width: 100%;
  padding: 5rem 1.5rem;
  background-color: #784848;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
#block_banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(120, 72, 72, 0.6);
  pointer-events: none;
}
#block_banner .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}
#block_banner .banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  text-align: center;
}
#block_banner .banner__header {
  font-family: "Joan", serif;
  font-size: 3.4rem;
  line-height: 1.3;
  font-weight: 400;
  color: #fff;
}
#block_banner .banner__header,
#block_banner .banner__header * {
  font-family: "Joan", serif;
  font-weight: 400;
  color: #fff;
  margin: 0;
}
#block_banner .banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  font-family: "Joan", serif;
  font-size: 1.4rem;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  color: #784848;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 0;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
#block_banner .banner__btn:hover {
  background-color: transparent;
  color: #fff;
  transform: translateY(-1px);
}
#block_banner .banner__btn:active {
  transform: translateY(0);
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_banner {
    padding: 6rem 2rem;
  }
  #block_banner .banner {
    gap: 2rem;
  }
  #block_banner .banner__header {
    font-size: 2.8rem;
  }
  #block_banner .banner__btn {
    font-size: 1.5rem;
    padding: 11px 30px;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_banner {
    padding: 7rem 2rem;
  }
  #block_banner .banner {
    gap: 2.25rem;
  }
  #block_banner .banner__header {
    font-size: 3rem;
  }
  #block_banner .banner__btn {
    font-size: 1.5rem;
    padding: 11px 30px;
  }
}
@media (min-width: 1280px) {
  #block_banner {
    padding: 8rem 2rem;
  }
  #block_banner .banner {
    gap: 2.5rem;
  }
  #block_banner .banner__header {
    font-size: 3.2rem;
  }
  #block_banner .banner__btn {
    font-size: 1.6rem;
    padding: 12px 32px;
  }
}
@media (min-width: 1500px) {
  #block_banner {
    padding: 9rem 2rem;
  }
  #block_banner .banner__header {
    font-size: 3.6rem;
  }
  #block_banner .banner__btn {
    font-size: 1.7rem;
    padding: 13px 34px;
  }
}
@media (min-width: 1700px) {
  #block_banner {
    padding: 11rem 2rem;
  }
  #block_banner .banner {
    gap: 3rem;
  }
  #block_banner .banner__header {
    font-size: 4rem;
  }
  #block_banner .banner__btn {
    font-size: 1.8rem;
    padding: 14px 38px;
  }
}

#block_contactform {
  padding: 100px 0 50px;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 700px;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_contactform {
    padding: 100px 40px 50px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_contactform {
    min-height: 800px;
  }
}
#block_contactform > .container {
  position: relative;
  z-index: 1;
  pointer-events: none;
}
#block_contactform .contact__right,
#block_contactform .wpcf7,
#block_contactform .wpcf7-form {
  pointer-events: auto;
}
#block_contactform .contact__map-bg {
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
#block_contactform .contact__map-bg iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
#block_contactform .contact__map-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(120, 72, 72, 0.35);
  pointer-events: none;
  mix-blend-mode: multiply;
}
#block_contactform .contact__map-bg .contact__map-overlay {
  display: none;
}
#block_contactform .form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
#block_contactform .form-col {
  flex: 1;
  min-width: 260px;
}
#block_contactform input,
#block_contactform select,
#block_contactform textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  box-sizing: border-box;
}
#block_contactform textarea {
  min-height: 180px;
}
#block_contactform input[type=submit] {
  background: #94924c;
  width: 30%;
  color: #fff;
  border: none;
  padding: 10px 30px;
  cursor: pointer;
  transition: background 0.2s;
}
#block_contactform input[type=submit]:hover {
  background: #7b7a3c;
}
#block_contactform .contact {
  position: relative;
  display: flex;
}
#block_contactform .contact__header {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  color: #1e1e1e;
}
#block_contactform .contact__desc {
  font-size: 2rem;
  margin: auto;
  text-align: center;
}
@media (min-width: 1280px) {
  #block_contactform .contact__desc {
    width: 40%;
  }
}
#block_contactform .contact__right {
  width: 100%;
  padding: 30px 20px;
  margin-top: -100px;
  background-color: #fff;
  border: 1px solid #784848;
  border-radius: 30px 0 30px 0;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_contactform .contact__right {
    width: 50%;
    padding: 40px 30px;
  }
}
@media (min-width: 1280px) {
  #block_contactform .contact__right {
    width: 40%;
  }
}
@media (min-width: 1500px) {
  #block_contactform .contact__right {
    width: 35%;
  }
}
#block_contactform .wpcf7-form {
  z-index: 999;
}
#block_contactform .wpcf7-form label {
  display: block;
  color: #784848;
  font-size: 1.4rem;
  margin-bottom: 8px;
  font-weight: 400;
}
#block_contactform .wpcf7-form input[type=text],
#block_contactform .wpcf7-form input[type=email],
#block_contactform .wpcf7-form input[type=tel],
#block_contactform .wpcf7-form select,
#block_contactform .wpcf7-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #784848;
  background-color: transparent;
  color: #784848;
  font-size: 1.4rem;
  padding: 12px 0;
  margin-bottom: 25px;
  outline: none;
  transition: border-color 0.3s ease;
  font-family: inherit;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_contactform .wpcf7-form input[type=text],
  #block_contactform .wpcf7-form input[type=email],
  #block_contactform .wpcf7-form input[type=tel],
  #block_contactform .wpcf7-form select,
  #block_contactform .wpcf7-form textarea {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_contactform .wpcf7-form input[type=text],
  #block_contactform .wpcf7-form input[type=email],
  #block_contactform .wpcf7-form input[type=tel],
  #block_contactform .wpcf7-form select,
  #block_contactform .wpcf7-form textarea {
    margin-bottom: 0;
  }
}
@media (min-width: 1280px) {
  #block_contactform .wpcf7-form input[type=text],
  #block_contactform .wpcf7-form input[type=email],
  #block_contactform .wpcf7-form input[type=tel],
  #block_contactform .wpcf7-form select,
  #block_contactform .wpcf7-form textarea {
    margin-bottom: 0;
  }
}
#block_contactform .wpcf7-form input[type=text]:focus,
#block_contactform .wpcf7-form input[type=email]:focus,
#block_contactform .wpcf7-form input[type=tel]:focus,
#block_contactform .wpcf7-form select:focus,
#block_contactform .wpcf7-form textarea:focus {
  border-bottom-color: #784848;
}
#block_contactform .wpcf7-form input[type=text]::placeholder,
#block_contactform .wpcf7-form input[type=email]::placeholder,
#block_contactform .wpcf7-form input[type=tel]::placeholder,
#block_contactform .wpcf7-form select::placeholder,
#block_contactform .wpcf7-form textarea::placeholder {
  color: rgba(120, 72, 72, 0.5);
  font-style: italic;
}
#block_contactform .wpcf7-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 20px;
  padding-right: 30px;
  cursor: pointer;
}
#block_contactform .wpcf7-form select::-ms-expand {
  display: none;
}
#block_contactform .wpcf7-form textarea {
  min-height: 40px;
  height: 110px;
  resize: vertical;
  padding-top: 12px;
}
#block_contactform .wpcf7-form .form-submit-section {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_contactform .wpcf7-form .form-submit-section {
    align-items: flex-start;
  }
}
@media (min-width: 1280px) {
  #block_contactform .wpcf7-form .form-submit-section {
    flex-direction: row;
    justify-content: space-between;
  }
}
#block_contactform .wpcf7-form .consent-text {
  font-size: 1.1rem;
  color: #784848;
  line-height: 1.4;
  flex: 1;
}
#block_contactform .wpcf7-form .consent-text a {
  color: #784848;
  text-decoration: underline;
}
#block_contactform .wpcf7-form .consent-text a:hover {
  text-decoration: none;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_contactform .wpcf7-form .consent-text {
    max-width: 60%;
  }
}
@media (min-width: 1280px) {
  #block_contactform .wpcf7-form .consent-text {
    max-width: 60%;
    order: 2;
  }
}
#block_contactform .wpcf7-form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 0;
  font-family: "Joan", serif;
  font-weight: 600;
  font-size: 1.4rem;
  text-decoration: none !important;
  cursor: pointer;
  min-width: 120px;
  align-self: flex-start;
  color: #784848 !important;
  background-color: transparent;
  border: 1px solid #784848;
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.2s ease;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_contactform .wpcf7-form .wpcf7-submit {
    font-size: 1.35rem;
    padding: 9px 18px;
  }
}
#block_contactform .wpcf7-form .wpcf7-submit:hover {
  color: #fff !important;
  background-color: #784848;
  transform: translateY(-1px);
}
#block_contactform .wpcf7-form .wpcf7-submit:active {
  transform: translateY(0);
}
#block_contactform .wpcf7-form .wpcf7-submit:focus {
  outline: 2px solid #784848;
  outline-offset: 3px;
}
#block_contactform .wpcf7-spinner {
  display: none;
}

#block_elements {
  position: relative;
  width: 100%;
  padding-bottom: 8rem;
  background-color: #fff;
}
@media (max-width: 767px) {
  #block_elements {
    padding-bottom: 4rem;
  }
}
#block_elements .elements__media {
  position: relative;
  width: 100%;
  height: 50rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 1280px) {
  #block_elements .elements__media {
    height: 60rem;
  }
}
@media (min-width: 1500px) {
  #block_elements .elements__media {
    height: 68rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_elements .elements__media {
    height: 40rem;
  }
}
@media (max-width: 767px) {
  #block_elements .elements__media {
    height: 28rem;
  }
}
#block_elements .elements__panel {
  position: relative;
  z-index: 2;
  margin-top: -16rem;
  display: grid;
  grid-template-columns: 1fr minmax(28rem, auto) 1fr;
  align-items: center;
  row-gap: 2rem;
  padding: 5.5rem 6rem;
  background-color: rgba(120, 72, 72, 0.9);
  color: #fff;
}
@media (min-width: 1280px) {
  #block_elements .elements__panel {
    margin-top: -20rem;
    padding: 6.5rem 6rem;
  }
}
@media (min-width: 1500px) {
  #block_elements .elements__panel {
    margin-top: -24rem;
    padding: 7.5rem 6rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_elements .elements__panel {
    margin-top: -12rem;
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  #block_elements .elements__panel {
    margin-top: -6rem;
    grid-template-columns: 1fr;
    padding: 3.5rem 2rem;
    text-align: center;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_elements .elements__panel {
    margin-top: -4rem;
    padding: 3rem 2.5rem;
    grid-template-columns: 1fr minmax(14rem, auto) 1fr;
    row-gap: 1.5rem;
  }
}
#block_elements .elements__header {
  grid-column: 2;
  grid-row: 1;
  font-family: "Joan", serif;
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 2rem;
  color: #fff;
  text-wrap: balance;
}
@media (max-width: 767px) {
  #block_elements .elements__header {
    grid-column: 1;
    grid-row: auto;
    font-size: 3.4rem;
    margin-bottom: 0;
    text-align: center;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_elements .elements__header {
    grid-column: 1/-1;
    font-size: 2.6rem;
    margin-bottom: 1rem;
  }
}
#block_elements .elements__lists {
  display: contents;
}
@media (max-width: 767px) {
  #block_elements .elements__lists {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
  }
}
#block_elements .elements__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: "Joan", serif;
  font-size: 1.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}
@media (max-width: 767px) {
  #block_elements .elements__list {
    font-size: 1.7rem;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_elements .elements__list {
    font-size: 1.5rem;
  }
}
#block_elements .elements__list--left {
  grid-column: 1;
  grid-row: 2;
  align-self: center;
  padding-right: 3rem;
}
@media (min-width: 1280px) {
  #block_elements .elements__list--left {
    padding-right: 5rem;
  }
}
@media (min-width: 1500px) {
  #block_elements .elements__list--left {
    padding-right: 7rem;
  }
}
@media (max-width: 767px) {
  #block_elements .elements__list--left {
    grid-column: auto;
    grid-row: auto;
    padding-right: 0;
    text-align: center;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_elements .elements__list--left {
    padding-right: 1rem;
  }
}
#block_elements .elements__list--right {
  grid-column: 3;
  grid-row: 2;
  align-self: center;
  padding-left: 3rem;
}
@media (min-width: 1280px) {
  #block_elements .elements__list--right {
    padding-left: 5rem;
  }
}
@media (min-width: 1500px) {
  #block_elements .elements__list--right {
    padding-left: 7rem;
  }
}
@media (max-width: 767px) {
  #block_elements .elements__list--right {
    grid-column: auto;
    grid-row: auto;
    padding-left: 0;
    text-align: center;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_elements .elements__list--right {
    padding-left: 1rem;
  }
}
#block_elements .elements__item {
  line-height: 1.2;
  padding: 0.8rem 0;
}
@media (min-width: 1280px) {
  #block_elements .elements__item {
    padding: 1rem 0;
  }
}
@media (min-width: 1500px) {
  #block_elements .elements__item {
    padding: 1.2rem 0;
  }
}
@media (max-width: 767px) {
  #block_elements .elements__item {
    padding: 0.5rem 0;
  }
}
#block_elements .elements__divider {
  grid-column: 2;
  grid-row: 2;
  justify-self: center;
  display: block;
  width: 16rem;
  height: 16rem;
  background-image: url(images/miraviolielement.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 767px) {
  #block_elements .elements__divider {
    grid-column: 1/-1;
    grid-row: 1;
    width: 9rem;
    height: 9rem;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_elements .elements__divider {
    width: 12rem;
    height: 12rem;
  }
}

#block_hero {
  padding: 4rem 0;
  min-height: 80vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
#block_hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #784848;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
#block_hero > .container {
  position: relative;
  z-index: 1;
}
#block_hero .hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
}
#block_hero .hero__left {
  text-align: center;
}
#block_hero .hero__title {
  font-size: 1.8rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_hero .hero__title {
    font-size: 1.9rem;
  }
}
@media (min-width: 1500px) {
  #block_hero .hero__title {
    font-size: 2rem;
  }
}
#block_hero .hero__subtitle {
  font-family: "Joan", serif;
  font-size: 3.2rem;
  line-height: 32px;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #fff;
}
#block_hero .hero__subtitle,
#block_hero .hero__subtitle * {
  color: #fff;
  font-weight: 400;
}
#block_hero .hero__subtitle .highlight {
  color: #fff;
  font-weight: 400;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_hero .hero__subtitle {
    font-size: 3.6rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_hero .hero__subtitle {
    font-size: 3.8rem;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_hero .hero__subtitle {
    font-size: 3.5rem;
  }
}
@media (min-width: 1500px) {
  #block_hero .hero__subtitle {
    font-size: 4.5rem;
    line-height: 42px;
  }
}
#block_hero .hero__text {
  font-family: "Joan", serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #fff;
  padding-bottom: 20px;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_hero .hero__text {
    font-size: 1.7rem;
  }
}
@media (min-width: 1500px) {
  #block_hero .hero__text {
    font-size: 1.8rem;
  }
}
#block_hero .hero__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
#block_hero .hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_hero .hero__btn {
    font-size: 1.4rem;
    padding: 8px 16px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_hero .hero__btn {
    font-size: 1.35rem;
    padding: 9px 18px;
    gap: 7px;
  }
}
#block_hero .hero__btn--primary {
  color: #fff !important;
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #784848, #784848);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  border: 1px solid #784848;
  transition: background-size 0.45s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
#block_hero .hero__btn--primary .hero__icon {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease-in-out;
}
#block_hero .hero__btn--primary:hover {
  background-size: 100% 100%, 100% 100%;
  color: #1e1e1e !important;
  border-color: #784848;
  transform: translateY(-1px);
}
#block_hero .hero__btn--primary:hover .hero__icon {
  filter: brightness(0);
}
#block_hero .hero__btn--primary:active {
  transform: translateY(0);
}
#block_hero .hero__btn--secondary {
  color: #1e1e1e !important;
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, transparent, transparent);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  border: 2px solid #784848;
  transition: background-size 0.45s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
#block_hero .hero__btn--secondary:hover {
  background-size: 100% 100%, 100% 100%;
  color: #1e1e1e !important;
  border-color: #784848;
  transform: translateY(-1px);
}
#block_hero .hero__btn--secondary:active {
  transform: translateY(0);
}

#block_lastentries {
  background-color: #E5E5E5;
  padding-bottom: 50px;
  padding-top: 50px;
  text-align: left;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_lastentries {
    padding-bottom: 0;
    padding-top: 20px;
  }
}
@media (min-width: 1500px) {
  #block_lastentries {
    padding-top: 50px;
  }
}
@media (min-width: 1700px) {
  #block_lastentries {
    margin-top: 70px;
  }
}
#block_lastentries .lastentries__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_lastentries .lastentries__header {
    margin-bottom: 50px;
  }
}
#block_lastentries .lastentries__title {
  font-size: 2.4rem;
  font-weight: 400;
  color: #1e1e1e;
  margin: 0;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_lastentries .lastentries__title {
    font-size: 3.5rem;
  }
}
@media (min-width: 1280px) {
  #block_lastentries .lastentries__title {
    font-size: 4rem;
  }
}
#block_lastentries .lastentries__button {
  padding: 12px 24px;
  font-size: 1.4rem;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_lastentries .lastentries__button {
    font-size: 1.35rem;
    padding: 9px 18px;
  }
}
@media (min-width: 1280px) {
  #block_lastentries .lastentries__button {
    padding: 14px 35px;
    font-size: 1.5rem;
  }
}
#block_lastentries .read-more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 10px;
  font-family: "Joan", serif;
  font-weight: 600;
  font-size: 1.3rem;
  text-decoration: none !important;
  cursor: pointer;
  margin-top: 15px;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_lastentries .read-more-button {
    margin-top: 0;
    font-size: 1.35rem;
    padding: 9px 18px;
  }
}
#block_lastentries .read-more-button {
  color: #fff !important;
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #784848, #784848);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  border: 1px solid #784848;
  transition: background-size 0.45s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
#block_lastentries .read-more-button:hover {
  background-size: 100% 100%, 100% 100%;
  color: #1e1e1e !important;
  border-color: #784848;
  transform: translateY(-1px);
}
#block_lastentries .read-more-button:active {
  transform: translateY(0);
}
#block_lastentries .read-more-button:focus {
  outline: 2px solid #784848;
  outline-offset: 3px;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_lastentries .lastentries {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_lastentries .lastentries {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
}
@media (min-width: 1280px) {
  #block_lastentries .lastentries {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
}
@media (min-width: 1700px) {
  #block_lastentries .lastentries {
    justify-content: space-around;
  }
}
#block_lastentries .lastentries__image-link {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}
#block_lastentries .lastentries__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: block;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_lastentries .lastentries__image {
    height: 220px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_lastentries .lastentries__image {
    height: 200px;
  }
}
@media (min-width: 1280px) {
  #block_lastentries .lastentries__image {
    height: 220px;
  }
}
#block_lastentries .lastentries__image:hover {
  transform: scale(1.05);
  opacity: 0.9;
}
#block_lastentries .lastentries__top {
  font-family: "Joan", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #784848;
  margin-bottom: 1rem;
}
#block_lastentries .lastentries__post-title {
  display: block;
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #1e1e1e;
  line-height: 1.2;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_lastentries .lastentries__post-title {
    font-size: 1.8rem;
  }
}
@media (min-width: 1280px) {
  #block_lastentries .lastentries__post-title {
    font-size: 2rem;
    min-height: 80px;
    line-height: 1.1;
  }
}
#block_lastentries .lastentries__line {
  width: 80%;
  margin: 0 auto;
  height: 2px;
  background-color: #ffce00;
  margin-bottom: 15px;
}
#block_lastentries .lastentries__container {
  padding: 0 0 25px;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_lastentries .lastentries__container {
    width: 50%;
    padding: 0 10px 25px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_lastentries .lastentries__container {
    width: 33.333%;
    padding: 0 10px 15px;
  }
}
@media (min-width: 1280px) {
  #block_lastentries .lastentries__container {
    padding: 20px 0;
    width: 30%;
    border-radius: 2px;
  }
}
@media (min-width: 1500px) {
  #block_lastentries .lastentries__container p {
    font-size: 1.6rem;
  }
}
#block_lastentries .lastentries__container h3 {
  margin-top: 15px;
}
#block_lastentries .lastentries__container .article {
  padding: 30px 0;
  width: 100%;
  height: 400px;
}
@media (min-width: 1500px) {
  #block_lastentries .lastentries__container .article {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
#block_lastentries .lastentries__container .article p {
  font-size: 1.2rem;
}
#block_lastentries .lastentries__container .article p,
#block_lastentries .lastentries__container .article h3 {
  color: #1e1e1e;
}

#block_reverseblock {
  padding: 2rem 0;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_reverseblock {
    padding: 2.5rem 0;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_reverseblock {
    padding: 3rem 0;
  }
}
@media (min-width: 1280px) {
  #block_reverseblock {
    padding: 3.5rem 0;
  }
}
@media (min-width: 1500px) {
  #block_reverseblock {
    padding: 4rem 0;
  }
}
@media (min-width: 1700px) {
  #block_reverseblock {
    padding: 5rem 0;
  }
}
#block_reverseblock .reverseblock {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 767px) {
  #block_reverseblock .reverseblock {
    flex-direction: column-reverse;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_reverseblock .reverseblock {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_reverseblock .reverseblock {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
}
@media (min-width: 1280px) {
  #block_reverseblock .reverseblock {
    flex-direction: row;
    align-items: center;
    gap: 5rem;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_reverseblock .reverseblock {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
}
@media (min-width: 1500px) {
  #block_reverseblock .reverseblock {
    gap: 6rem;
  }
}
@media (min-width: 1700px) {
  #block_reverseblock .reverseblock {
    gap: 7rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_reverseblock .reverseblock--reverse {
    flex-direction: row-reverse;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_reverseblock .reverseblock--reverse {
    flex-direction: row-reverse;
  }
}
@media (min-width: 1280px) {
  #block_reverseblock .reverseblock--reverse {
    flex-direction: row-reverse;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_reverseblock .reverseblock--reverse {
    flex-direction: row-reverse;
  }
}
#block_reverseblock .reverseblock__media {
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_reverseblock .reverseblock__media {
    width: 45%;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_reverseblock .reverseblock__media {
    width: 45%;
  }
}
@media (min-width: 1280px) {
  #block_reverseblock .reverseblock__media {
    width: 45%;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_reverseblock .reverseblock__media {
    width: 45%;
  }
}
#block_reverseblock .reverseblock__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 20px 0 20px 0;
  border: 3px solid #784848;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  aspect-ratio: 4/3;
}
#block_reverseblock .reverseblock__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  color: #784848;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_reverseblock .reverseblock__content {
    width: 55%;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_reverseblock .reverseblock__content {
    width: 55%;
  }
}
@media (min-width: 1280px) {
  #block_reverseblock .reverseblock__content {
    width: 55%;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_reverseblock .reverseblock__content {
    width: 55%;
  }
}
#block_reverseblock .reverseblock__header {
  font-family: "Joan", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 3.2rem;
  line-height: 1.1;
  color: #784848;
  margin: 0;
}
@media (max-width: 767px) {
  #block_reverseblock .reverseblock__header {
    font-size: 4.2rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_reverseblock .reverseblock__header {
    font-size: 3.6rem;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_reverseblock .reverseblock__header {
    font-size: 4rem;
  }
}
@media (min-width: 1280px) {
  #block_reverseblock .reverseblock__header {
    font-size: 4.4rem;
  }
}
@media (min-width: 1500px) {
  #block_reverseblock .reverseblock__header {
    font-size: 5rem;
  }
}
@media (min-width: 1700px) {
  #block_reverseblock .reverseblock__header {
    font-size: 5.6rem;
  }
}
#block_reverseblock .reverseblock__bottom-text {
  font-family: "Joan", serif;
  font-style: italic;
  font-size: 2rem;
  line-height: 1.2;
  color: #784848;
  margin-top: -1.6rem;
}
#block_reverseblock .reverseblock__bottom-text p {
  margin: 0;
}
@media (max-width: 767px) {
  #block_reverseblock .reverseblock__bottom-text {
    font-size: 2.6rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_reverseblock .reverseblock__bottom-text {
    font-size: 2.2rem;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_reverseblock .reverseblock__bottom-text {
    font-size: 2.4rem;
  }
}
@media (min-width: 1280px) {
  #block_reverseblock .reverseblock__bottom-text {
    font-size: 2.6rem;
  }
}
@media (min-width: 1500px) {
  #block_reverseblock .reverseblock__bottom-text {
    font-size: 2.8rem;
  }
}
@media (min-width: 1700px) {
  #block_reverseblock .reverseblock__bottom-text {
    font-size: 3rem;
  }
}
#block_reverseblock .reverseblock__main-text {
  font-family: "Joan", serif;
  font-size: 1.4rem;
  line-height: 1.55;
  color: #1e1e1e;
}
#block_reverseblock .reverseblock__main-text p {
  margin-bottom: 1.2rem;
}
#block_reverseblock .reverseblock__main-text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  #block_reverseblock .reverseblock__main-text {
    font-size: 1.7rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_reverseblock .reverseblock__main-text {
    font-size: 1.5rem;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_reverseblock .reverseblock__main-text {
    font-size: 1.55rem;
  }
}
@media (min-width: 1280px) {
  #block_reverseblock .reverseblock__main-text {
    font-size: 1.6rem;
  }
}
@media (min-width: 1500px) {
  #block_reverseblock .reverseblock__main-text {
    font-size: 1.7rem;
  }
}
@media (min-width: 1700px) {
  #block_reverseblock .reverseblock__main-text {
    font-size: 1.8rem;
  }
}
#block_reverseblock .reverseblock__items {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 0.5rem;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_reverseblock .reverseblock__items {
    gap: 2.5rem;
  }
}
@media (min-width: 1280px) {
  #block_reverseblock .reverseblock__items {
    gap: 3rem;
  }
}
#block_reverseblock .reverseblock__item {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Joan", serif;
  font-size: 1.4rem;
  color: #1e1e1e;
}
@media (max-width: 767px) {
  #block_reverseblock .reverseblock__item {
    font-size: 1.8rem;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_reverseblock .reverseblock__item {
    font-size: 1.5rem;
  }
}
@media (min-width: 1280px) {
  #block_reverseblock .reverseblock__item {
    font-size: 1.6rem;
  }
}
@media (min-width: 1500px) {
  #block_reverseblock .reverseblock__item {
    font-size: 1.7rem;
  }
}
#block_reverseblock .reverseblock__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  color: #1e1e1e;
}
#block_reverseblock .reverseblock__icon svg,
#block_reverseblock .reverseblock__icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
@media (max-width: 767px) {
  #block_reverseblock .reverseblock__icon {
    width: 3.4rem;
    height: 3.4rem;
  }
}
@media (min-width: 1280px) {
  #block_reverseblock .reverseblock__icon {
    width: 3rem;
    height: 3rem;
  }
}
#block_reverseblock .reverseblock__lottie {
  width: 100%;
  height: 100%;
  display: block;
}
#block_reverseblock .reverseblock__lottie-fallback {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
#block_reverseblock .reverseblock__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 6px 40px;
  font-family: "Joan", serif;
  font-size: 1.4rem;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  color: #1e1e1e;
  background-color: transparent;
  border: 1px solid #1e1e1e;
  border-radius: 0;
  margin-top: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
#block_reverseblock .reverseblock__btn:hover {
  background-color: #784848;
  color: #fff;
  border-color: #784848;
  transform: translateY(-1px);
}
#block_reverseblock .reverseblock__btn:active {
  transform: translateY(0);
}
@media (max-width: 767px) {
  #block_reverseblock .reverseblock__btn {
    font-size: 1.7rem;
    padding: 8px 48px;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_reverseblock .reverseblock__btn {
    font-size: 1.5rem;
    padding: 7px 48px;
  }
}
@media (min-width: 1280px) {
  #block_reverseblock .reverseblock__btn {
    font-size: 1.6rem;
    padding: 7px 52px;
  }
}
@media (min-width: 1500px) {
  #block_reverseblock .reverseblock__btn {
    font-size: 1.7rem;
    padding: 8px 56px;
  }
}
@media (min-width: 1700px) {
  #block_reverseblock .reverseblock__btn {
    font-size: 1.8rem;
    padding: 9px 62px;
  }
}

#block_weddingsection {
  padding: 1rem 0;
  background-color: #c9b4b0;
  position: relative;
}
@media (max-width: 767px) {
  #block_weddingsection {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_weddingsection {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
#block_weddingsection > .container {
  position: relative;
  z-index: 1;
}
#block_weddingsection .weddingsection__decor {
  position: absolute;
  top: 150px;
  left: -200px;
  width: 40rem;
  height: auto;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
@media (max-width: 767px) {
  #block_weddingsection .weddingsection__decor {
    top: auto;
    bottom: 20px;
    left: -120px;
    width: 22rem;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_weddingsection .weddingsection__decor {
    width: 18rem;
    left: -120px;
    top: auto;
    bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_weddingsection .weddingsection__decor {
    width: 18rem;
    left: -60px;
    top: auto;
    bottom: 0;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_weddingsection .weddingsection__decor {
    width: 25rem;
    left: -120px;
    top: auto;
    bottom: 0;
  }
}
@media (min-width: 1280px) {
  #block_weddingsection .weddingsection__decor {
    width: 23rem;
    left: -110px;
    top: auto;
    bottom: 0;
  }
}
@media (min-width: 1500px) {
  #block_weddingsection .weddingsection__decor {
    width: 30rem;
    left: -150px;
  }
}
#block_weddingsection .weddingsection__font {
  position: absolute;
  top: -5%;
  right: -50px;
  transform-origin: center center;
  width: 20rem;
  height: auto;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
@media (max-width: 767px) {
  #block_weddingsection .weddingsection__font {
    top: 0;
    right: -25px;
    width: 11rem;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_weddingsection .weddingsection__font {
    width: 9rem;
    right: -30px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_weddingsection .weddingsection__font {
    width: 10rem;
    right: -25px;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_weddingsection .weddingsection__font {
    width: 14.4rem;
    right: -36px;
  }
}
@media (min-width: 1280px) {
  #block_weddingsection .weddingsection__font {
    width: 14rem;
    right: -36px;
  }
}
@media (min-width: 1500px) {
  #block_weddingsection .weddingsection__font {
    width: 15rem;
    right: -38px;
  }
}
@media (min-width: 1700px) {
  #block_weddingsection .weddingsection__font {
    width: 22rem;
    right: -55px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_weddingsection {
    padding: 1.5rem 0;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_weddingsection {
    padding: 2rem 0;
  }
}
@media (min-width: 1280px) {
  #block_weddingsection {
    padding: 2rem 0;
  }
}
@media (min-width: 1500px) {
  #block_weddingsection {
    padding: 2.5rem 0;
  }
}
@media (min-width: 1700px) {
  #block_weddingsection {
    padding: 3rem 0;
  }
}
#block_weddingsection .weddingsection {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_weddingsection .weddingsection {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_weddingsection .weddingsection {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
}
@media (min-width: 1280px) {
  #block_weddingsection .weddingsection {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_weddingsection .weddingsection {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
}
@media (min-width: 1500px) {
  #block_weddingsection .weddingsection {
    gap: 5rem;
  }
}
@media (min-width: 1700px) {
  #block_weddingsection .weddingsection {
    gap: 6rem;
  }
}
#block_weddingsection .weddingsection__left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  color: #784848;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_weddingsection .weddingsection__left {
    width: 40%;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_weddingsection .weddingsection__left {
    width: 40%;
  }
}
@media (min-width: 1280px) {
  #block_weddingsection .weddingsection__left {
    width: 40%;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_weddingsection .weddingsection__left {
    width: 50%;
  }
}
#block_weddingsection .weddingsection__header {
  font-family: "Joan", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 3.2rem;
  line-height: 1.1;
  color: #784848;
  margin: 0;
}
@media (max-width: 767px) {
  #block_weddingsection .weddingsection__header {
    font-size: 4.2rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_weddingsection .weddingsection__header {
    font-size: 3.6rem;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_weddingsection .weddingsection__header {
    font-size: 4rem;
  }
}
@media (min-width: 1280px) {
  #block_weddingsection .weddingsection__header {
    font-size: 4.4rem;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_weddingsection .weddingsection__header {
    font-size: 5.6rem;
  }
}
@media (min-width: 1500px) {
  #block_weddingsection .weddingsection__header {
    font-size: 5rem;
  }
}
@media (min-width: 1700px) {
  #block_weddingsection .weddingsection__header {
    font-size: 5.6rem;
  }
}
#block_weddingsection .weddingsection__bottom-text {
  font-family: "Joan", serif;
  font-style: italic;
  font-size: 2rem;
  line-height: 1.2;
  color: #784848;
  margin-top: -1.6rem;
}
#block_weddingsection .weddingsection__bottom-text p {
  margin: 0;
}
@media (max-width: 767px) {
  #block_weddingsection .weddingsection__bottom-text {
    font-size: 2.6rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_weddingsection .weddingsection__bottom-text {
    font-size: 2.2rem;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_weddingsection .weddingsection__bottom-text {
    font-size: 2.4rem;
  }
}
@media (min-width: 1280px) {
  #block_weddingsection .weddingsection__bottom-text {
    font-size: 2.6rem;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_weddingsection .weddingsection__bottom-text {
    font-size: 2.9rem;
  }
}
@media (min-width: 1500px) {
  #block_weddingsection .weddingsection__bottom-text {
    font-size: 2.8rem;
  }
}
@media (min-width: 1700px) {
  #block_weddingsection .weddingsection__bottom-text {
    font-size: 3rem;
  }
}
#block_weddingsection .weddingsection__main-text {
  font-family: "Joan", serif;
  font-size: 1.4rem;
  line-height: 1.55;
  color: #784848;
}
#block_weddingsection .weddingsection__main-text p {
  margin-bottom: 1.2rem;
}
#block_weddingsection .weddingsection__main-text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  #block_weddingsection .weddingsection__main-text {
    font-size: 1.7rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_weddingsection .weddingsection__main-text {
    font-size: 1.5rem;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_weddingsection .weddingsection__main-text {
    font-size: 1.55rem;
  }
}
@media (min-width: 1280px) {
  #block_weddingsection .weddingsection__main-text {
    font-size: 1.6rem;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_weddingsection .weddingsection__main-text {
    font-size: 1.85rem;
  }
}
@media (min-width: 1500px) {
  #block_weddingsection .weddingsection__main-text {
    font-size: 1.7rem;
  }
}
@media (min-width: 1700px) {
  #block_weddingsection .weddingsection__main-text {
    font-size: 1.8rem;
  }
}
#block_weddingsection .weddingsection__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 0.5rem;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_weddingsection .weddingsection__meta {
    gap: 2.5rem;
  }
}
@media (min-width: 1280px) {
  #block_weddingsection .weddingsection__meta {
    gap: 3rem;
  }
}
#block_weddingsection .weddingsection__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Joan", serif;
  font-size: 1.4rem;
  color: #1e1e1e;
}
@media (max-width: 767px) {
  #block_weddingsection .weddingsection__meta-item {
    font-size: 1.8rem;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_weddingsection .weddingsection__meta-item {
    font-size: 1.5rem;
  }
}
@media (min-width: 1280px) {
  #block_weddingsection .weddingsection__meta-item {
    font-size: 1.6rem;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_weddingsection .weddingsection__meta-item {
    font-size: 1.85rem;
  }
}
@media (min-width: 1500px) {
  #block_weddingsection .weddingsection__meta-item {
    font-size: 1.7rem;
  }
}
#block_weddingsection .weddingsection__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  color: #1e1e1e;
}
#block_weddingsection .weddingsection__icon svg,
#block_weddingsection .weddingsection__icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
@media (max-width: 767px) {
  #block_weddingsection .weddingsection__icon {
    width: 3.4rem;
    height: 3.4rem;
  }
}
@media (min-width: 1280px) {
  #block_weddingsection .weddingsection__icon {
    width: 3rem;
    height: 3rem;
  }
}
#block_weddingsection .weddingsection__lottie {
  width: 100%;
  height: 100%;
  display: block;
}
#block_weddingsection .weddingsection__lottie-fallback {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
#block_weddingsection .weddingsection__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 6px 40px;
  font-family: "Joan", serif;
  font-size: 1.4rem;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  color: #1e1e1e;
  background-color: transparent;
  border: 1px solid #1e1e1e;
  border-radius: 0;
  margin-top: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
#block_weddingsection .weddingsection__btn:hover {
  background-color: #1e1e1e;
  color: #fff;
  transform: translateY(-1px);
}
#block_weddingsection .weddingsection__btn:active {
  transform: translateY(0);
}
@media (max-width: 767px) {
  #block_weddingsection .weddingsection__btn {
    font-size: 1.7rem;
    padding: 8px 48px;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_weddingsection .weddingsection__btn {
    font-size: 1.5rem;
    padding: 7px 48px;
  }
}
@media (min-width: 1280px) {
  #block_weddingsection .weddingsection__btn {
    font-size: 1.6rem;
    padding: 7px 52px;
  }
}
@media (min-width: 1500px) {
  #block_weddingsection .weddingsection__btn {
    font-size: 1.7rem;
    padding: 8px 56px;
  }
}
@media (min-width: 1700px) {
  #block_weddingsection .weddingsection__btn {
    font-size: 1.8rem;
    padding: 9px 62px;
  }
}
#block_weddingsection .weddingsection__right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_weddingsection .weddingsection__right {
    width: 60%;
    display: block;
    position: relative;
    gap: 0;
    aspect-ratio: 4/3;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_weddingsection .weddingsection__right {
    width: 60%;
    display: block;
    position: relative;
    gap: 0;
    aspect-ratio: 4/3;
  }
}
@media (min-width: 1280px) {
  #block_weddingsection .weddingsection__right {
    width: 60%;
    display: block;
    position: relative;
    gap: 0;
    aspect-ratio: 4/3;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_weddingsection .weddingsection__right {
    width: 50%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    position: static;
    aspect-ratio: auto;
  }
}
#block_weddingsection .weddingsection__image {
  width: 100%;
  height: 220px;
  display: block;
  object-fit: cover;
  border-radius: 20px 0 20px 0;
  border: 3px solid #784848;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_weddingsection .weddingsection__image--1 {
    position: absolute;
    top: 10%;
    left: 0;
    width: 45%;
    height: 55%;
    object-fit: cover;
    z-index: 2;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_weddingsection .weddingsection__image--1 {
    position: absolute;
    top: 10%;
    left: 0;
    width: 45%;
    height: 55%;
    object-fit: cover;
    z-index: 2;
  }
}
@media (min-width: 1280px) {
  #block_weddingsection .weddingsection__image--1 {
    position: absolute;
    top: 10%;
    left: 0;
    width: 45%;
    height: 55%;
    object-fit: cover;
    z-index: 2;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_weddingsection .weddingsection__image--1 {
    position: static;
    width: 100%;
    height: 180px;
    grid-column: 1/2;
    grid-row: 1/2;
    object-fit: cover;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_weddingsection .weddingsection__image--2 {
    position: absolute;
    top: 18%;
    left: 10%;
    width: 75%;
    height: 50%;
    object-fit: cover;
    z-index: 1;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_weddingsection .weddingsection__image--2 {
    position: absolute;
    top: 18%;
    left: 10%;
    width: 75%;
    height: 50%;
    object-fit: cover;
    z-index: 1;
  }
}
@media (min-width: 1280px) {
  #block_weddingsection .weddingsection__image--2 {
    position: absolute;
    top: 18%;
    left: 10%;
    width: 75%;
    height: 50%;
    object-fit: cover;
    z-index: 1;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_weddingsection .weddingsection__image--2 {
    position: static;
    width: 100%;
    height: 180px;
    grid-column: 2/3;
    grid-row: 1/2;
    object-fit: cover;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_weddingsection .weddingsection__image--3 {
    position: absolute;
    bottom: 10%;
    right: 0;
    width: 50%;
    height: 45%;
    object-fit: cover;
    z-index: 3;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_weddingsection .weddingsection__image--3 {
    position: absolute;
    bottom: 10%;
    right: 0;
    width: 50%;
    height: 45%;
    object-fit: cover;
    z-index: 3;
  }
}
@media (min-width: 1280px) {
  #block_weddingsection .weddingsection__image--3 {
    position: absolute;
    bottom: 10%;
    right: 0;
    width: 50%;
    height: 45%;
    object-fit: cover;
    z-index: 3;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_weddingsection .weddingsection__image--3 {
    position: static;
    width: 100%;
    height: 200px;
    grid-column: 1/3;
    grid-row: 2/3;
    object-fit: cover;
  }
}

#block_whyus {
  padding: 8rem 0;
}
@media (max-width: 767px) {
  #block_whyus {
    padding: 5rem 0;
  }
}
#block_whyus .whyus {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6rem;
}
@media (max-width: 767px) {
  #block_whyus .whyus {
    gap: 4rem;
  }
}
#block_whyus .whyus__header {
  text-align: center;
  font-family: "Joan", serif;
  font-size: 5.6rem;
  line-height: 1.15;
  color: #784848;
  margin: 0;
  max-width: 90rem;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_whyus .whyus__header {
    font-size: 4.8rem;
  }
}
@media (max-width: 767px) {
  #block_whyus .whyus__header {
    font-size: 3.6rem;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_whyus .whyus__header {
    font-size: 3.2rem;
  }
}
#block_whyus .whyus__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
}
@media (max-width: 767px) {
  #block_whyus .whyus__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-items: start;
    row-gap: 3rem;
    column-gap: 1.5rem;
  }
}
@media (min-width: 1280px) {
  #block_whyus .whyus__list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    justify-items: center;
    row-gap: 6rem;
    column-gap: 4rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_whyus .whyus__list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    justify-items: center;
    align-items: start;
    row-gap: 4rem;
    column-gap: 2rem;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_whyus .whyus__list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    justify-items: center;
    align-items: start;
    row-gap: 3rem;
    column-gap: 1.5rem;
  }
}
#block_whyus .whyus__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2.4rem;
}
@media (max-width: 767px) {
  #block_whyus .whyus__item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    width: 100%;
  }
  #block_whyus .whyus__item:last-child:nth-child(odd) {
    grid-column: 1/-1;
  }
}
@media (min-width: 1280px) {
  #block_whyus .whyus__item {
    grid-column: span 2;
    gap: 1.8rem;
  }
  #block_whyus .whyus__item:nth-child(4) {
    grid-column: 2/span 2;
  }
  #block_whyus .whyus__item:nth-child(5) {
    grid-column: 4/span 2;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_whyus .whyus__item {
    grid-column: span 2;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
    width: 100%;
  }
  #block_whyus .whyus__item:nth-child(4) {
    grid-column: 2/span 2;
  }
  #block_whyus .whyus__item:nth-child(5) {
    grid-column: 4/span 2;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_whyus .whyus__item {
    grid-column: span 2;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    width: 100%;
  }
  #block_whyus .whyus__item:nth-child(4) {
    grid-column: 2/span 2;
  }
  #block_whyus .whyus__item:nth-child(5) {
    grid-column: 4/span 2;
  }
}
#block_whyus .whyus__animation {
  flex: 0 0 auto;
  width: 14rem;
  height: 14rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_whyus .whyus__animation {
    width: 12rem;
    height: 12rem;
  }
}
@media (max-width: 767px) {
  #block_whyus .whyus__animation {
    width: 8rem;
    height: 8rem;
  }
}
@media (min-width: 1280px) {
  #block_whyus .whyus__animation {
    width: 10rem;
    height: 10rem;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_whyus .whyus__animation {
    width: 8rem;
    height: 8rem;
  }
}
#block_whyus .whyus__lottie,
#block_whyus .whyus__lottie-fallback {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#block_whyus .whyus__content {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 1.2rem;
}
@media (max-width: 767px) {
  #block_whyus .whyus__content {
    align-items: center;
    text-align: center;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_whyus .whyus__content {
    align-items: center;
    text-align: center;
  }
}
#block_whyus .whyus__item-header {
  font-family: "Joan", serif;
  font-size: 2.2rem;
  line-height: 1.2;
  color: #784848;
  margin: 0;
  text-transform: none;
  text-align: left;
}
@media (max-width: 767px) {
  #block_whyus .whyus__item-header {
    font-size: 2rem;
    text-align: center;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_whyus .whyus__item-header {
    font-size: 1.8rem;
    text-align: center;
  }
}
#block_whyus .whyus__item-text {
  font-family: "Joan", serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #1e1e1e;
  margin: 0;
  text-transform: none;
  text-align: left;
}
@media (max-width: 767px) {
  #block_whyus .whyus__item-text {
    font-size: 1.5rem;
    text-align: center;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_whyus .whyus__item-text {
    font-size: 1.4rem;
    text-align: center;
  }
}