@charset "UTF-8";
/* Globalne style (SCSS) */
/* Fonty z Google (na końcu, bo to CSS, nie SCSS) */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&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: bottom;
  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 {
  list-style: none !important;
}
header ul a:visited {
  color: #1e1e1e !important;
}
header ul,
header li {
  list-style: none !important;
}

.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 a:visited {
  color: #ff9d00 !important;
}

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

.menu a:hover {
  background: #f5f5f5;
  color: #e63946;
}

.menu-link {
  padding: 40px 0;
}

/* ================================
   HEADER
   ================================ */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: #fff;
  overflow: visible;
}

.nav__list {
  font-size: 1.7rem;
}

header.site-header .header,
.site-header__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between; /* logo max w lewo, menu max w prawo */
  padding: 0.5rem 2rem;
  overflow: visible;
}

.header__logo {
  flex: 0 0 auto;
}

.header__logo img {
  max-height: 40px;
  width: auto;
  height: auto;
}

.header__menu {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 12px;
  overflow: visible;
}

/* ================================
   HAMBURGER
   ================================ */
.hamburger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  height: 44px;
  padding: 0 0.75rem;
  cursor: pointer;
  user-select: none;
}

.hamburger__box {
  position: relative;
  width: 20px;
  height: 14px;
}

.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 {
  top: 50%;
  transform: translateY(-50%);
}

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

/* ================================
   NAV – MOBILE (DOMYŚLNIE)
   ================================ */
.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: 80px;
  overflow-y: auto;
  overflow-x: hidden;
}

.nav.nav--open {
  transform: translateX(0);
}

.menu-item {
  padding: 0 10px;
}

.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.5rem;
  padding: 0.5rem 1rem;
}

.nav .menu-item.submenu-open > .sub-menu {
  display: flex;
}

/* --- STRZAŁKI tylko mobile --- */
.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;
}

.menu-item.submenu-open > .submenu-toggle {
  transform: rotate(180deg);
}

/* ================================
   NAV – DESKTOP
   ================================ */
@media (min-width: 1024px) {
  .header__menu .nav {
    margin-left: auto;
    overflow: visible;
    position: static;
  }
  .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;
    gap: 2rem;
    width: auto;
    margin-left: auto;
  }
  .nav .menu-item {
    position: relative;
    display: inline-block;
  }
  .nav .menu a {
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
  }
  /* Hover bridge – utrzymanie kursora w dół */
  .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;
  }
  /* SUBMENU – pełna szerokość ekranu, 2 kolumny */
  .nav .menu-item-has-children > .sub-menu {
    position: fixed; /* względem viewportu */
    top: 40px; /* dopasuj do realnej wysokości headera */
    left: 0;
    list-style: none !important;
    width: 100vw;
    background: #fff;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 2rem 3rem;
    display: none;
    flex-direction: row-reverse; /* 2 kolumny: links + icon */
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    z-index: 999;
  }
  .nav .menu-item-has-children:hover > .sub-menu,
  .nav .menu-item-has-children > .sub-menu:hover {
    display: flex;
  }
  /* LEWA kolumna – linki w pionie */
  .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: 1rem;
    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.5rem 0;
    transition: color 0.2s ease;
  }
  .nav .sub-menu__links .sub-menu__list > li > a:hover {
    color: #ff9d00;
  }
  /* PRAWA kolumna – ikona */
  .nav .sub-menu__icon {
    flex: 1 1 50%;
    display: flex;
    align-items: 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);
  }
  .hamburger {
    display: none;
  }
  /* Desktop – chowamy strzałki */
  .submenu-toggle {
    display: none;
  }
}
/* ================================
   BLOKADA SCROLLA przy otwartym mobilnym menu
   ================================ */
html.no-scroll {
  overflow: hidden;
}

.container-fluid {
  margin: 0;
  padding: 0;
}

.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: 550px;
  margin-bottom: 40px;
}
.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;
}
.blog .article-container h2 a {
  color: #ffce00;
}
.blog .article-container h2 a:visited {
  color: #ffce00;
}
.blog .article-container h2 a:hover {
  text-decoration: none;
  color: #ffce00;
}
.blog .article-container a {
  color: #ffce00;
}
.blog .article-container a:visited {
  color: #ffce00;
}
.blog .article-container a:hover {
  text-decoration: none;
  color: #ffce00;
}
.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;
  background-color: #ffce00;
  color: #fff;
  border-color: #ffce00;
  border-radius: 20px;
  width: 30%;
  font-size: 1.2rem;
}
.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: #696969;
}
.blog .pagination .page-numbers:hover {
  color: #ffce00;
}
.blog .pagination .page-numbers.current {
  color: #ffce00;
  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: #1e1e1e;
  padding-top: 40px;
  position: relative;
}
#block_footer .breadcrumbs {
  color: #fff;
  padding-bottom: 20px;
}
#block_footer .breadcrumbs a {
  color: #fff;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_footer .footer {
    display: flex;
    justify-content: space-around;
  }
}
@media (min-width: 1280px) {
  #block_footer .footer {
    display: flex;
    justify-content: space-around;
  }
}
#block_footer .footer h5 {
  color: #fff;
  margin: 0;
  font-size: 2.5rem;
}
#block_footer .footer__line {
  width: 30%;
  background-color: #ffce00;
  height: 1px;
  margin-bottom: 10px;
}
#block_footer .footer__brand img {
  width: 50%;
  margin-bottom: 20px;
}
#block_footer .footer__brand p {
  color: #fff;
  font-size: 1.4rem;
}
@media (min-width: 1280px) {
  #block_footer .footer__brand p {
    width: 80%;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_footer .footer__brand {
    width: 30%;
  }
}
@media (min-width: 1280px) {
  #block_footer .footer__brand {
    width: 40%;
  }
}
#block_footer .footer__adwokatura {
  width: 15% !important;
  padding-top: 20px;
}
#block_footer .footer__menu {
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_footer .footer__menu {
    width: 30%;
  }
}
@media (min-width: 1280px) {
  #block_footer .footer__menu {
    width: 20%;
  }
}
#block_footer .footer__menu h5 {
  padding-top: 30px;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_footer .footer__menu h5 {
    padding: 0;
  }
}
@media (min-width: 1280px) {
  #block_footer .footer__menu h5 {
    padding: 0;
  }
}
#block_footer .footer__menu a {
  color: #fff;
  font-size: 1.4rem;
  padding: 2px 0;
}
#block_footer .footer__social {
  display: block;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_footer .footer__social {
    width: 30%;
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 1280px) {
  #block_footer .footer__social {
    width: 40%;
    display: flex;
    flex-direction: column;
  }
}
#block_footer .footer__social a {
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
}
#block_footer .footer__social img {
  margin: 10px;
  width: 5%;
}
#block_footer .footer__sign {
  position: absolute;
  width: 250px;
  bottom: -50px;
  right: 45%;
  left: 55%;
}
#block_footer .footer__icons {
  display: flex;
  flex-direction: column;
}
#block_footer .footer__copy {
  text-align: center;
}
@media (min-width: 1280px) {
  #block_footer .footer__copy {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
  }
}
#block_footer .footer__copy p {
  color: #fff;
  padding: 5px 0;
}
#block_footer .footer__copy a {
  color: #fff;
}

.hentry {
  margin: 0 !important;
}

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

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

.button__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ff9d00;
  color: #fff !important;
  border: 1px solid #ffce00 !important;
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
  font-size: 1.4rem;
  font-family: inherit;
  font-weight: 500;
  padding: 10px 35px;
  cursor: pointer;
  text-decoration: none !important;
  outline: none;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(79, 209, 199, 0.3);
  min-width: 120px;
  text-transform: none;
}
@media (min-width: 1700px) {
  .button__button {
    font-size: 1.5rem;
    padding: 16px 40px;
  }
}
.button__button:hover {
  background-color: #ffce00;
  box-shadow: 0 6px 20px rgba(79, 209, 199, 0.4);
  transform: translateY(-2px);
  color: #fff !important;
}
.button__button:active {
  transform: translateY(0);
  background-color: #fff;
  color: #ffce00 !important;
  box-shadow: 0 2px 10px rgba(79, 209, 199, 0.3);
}
.button__button:focus {
  background-color: #fff;
  color: #ffce00 !important;
  outline: none;
  box-shadow: 0 4px 15px rgba(79, 209, 199, 0.3), 0 0 0 3px rgba(79, 209, 199, 0.2);
}

.falkheader {
  font-size: 5rem;
  line-height: 50px;
}

.falktop {
  font-size: 2.4rem;
  line-height: 22px;
}

.post-password-form p {
  font-size: 1.7rem;
  text-align: center;
  padding: 20px 0;
}

.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 {
  display: flex;
  padding: 5px 0;
  height: 100%;
}
.topBar__left {
  width: 80%;
}
.topBar__left img {
  width: 7%;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  .topBar__left img {
    width: 3%;
  }
}
@media (min-width: 1280px) {
  .topBar__left img {
    width: 2%;
  }
}
.topBar__right {
  width: 20%;
  text-align: right;
  padding-right: 30px;
}
.topBar__right img {
  width: 50%;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  .topBar__right img {
    width: 20%;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  .topBar__right img {
    width: 15%;
  }
}
@media (min-width: 1280px) {
  .topBar__right img {
    width: 10%;
  }
}
.topBar__top {
  background-color: #ffce00;
}
.topBar a {
  color: #fff;
  padding-left: 5px;
  font-size: 1.4rem;
}
@media (min-width: 1400px) {
  .topBar__left img {
    width: 2%;
  }
  .topBar__right img {
    width: 5%;
  }
}

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: "Bebas Neue", sans-serif !important;
  font-weight: 700;
  font-size: 40px;
  margin: 0;
}

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

h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 200;
}

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

*::selection {
  color: #fff;
  background-color: #ffce00;
}

/* Style dla bloków */
#block_additional {
  background-color: #1e1e1e;
  padding: 50px 0;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_additional {
    padding: 50px;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_additional {
    padding: 50px;
  }
}
@media (min-width: 1280px) {
  #block_additional {
    padding: 50px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_additional .additional {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_additional .additional {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1280px) {
  #block_additional .additional {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_additional .additional__left {
    width: 48%;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_additional .additional__left {
    width: 48%;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1280px) {
  #block_additional .additional__left {
    width: 50%;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_additional .additional__right {
    display: flex;
    justify-content: space-around;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_additional .additional__right {
    width: 48%;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_additional .additional__right {
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (min-width: 1280px) {
  #block_additional .additional__right {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
#block_additional .additional__photo {
  width: 100%;
  height: auto;
  border-radius: 25px;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_additional .additional__photo {
    width: 50%;
  }
}
@media (min-width: 1280px) {
  #block_additional .additional__photo {
    width: 75%;
    margin: 0 auto;
  }
}
#block_additional .additional h3 {
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  padding: 20px 0;
  line-height: 40px;
  font-size: 4rem;
  line-height: 40px;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_additional .additional h3 {
    font-size: 4rem;
    line-height: 33px;
    padding: 10px 0;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_additional .additional h3 {
    font-size: 4rem;
    line-height: 33px;
    padding: 10px 0;
  }
}
@media (min-width: 1280px) {
  #block_additional .additional h3 {
    font-size: 5rem;
    line-height: 47px;
    padding: 10px 0;
  }
}
#block_additional .additional span {
  color: #ffce00;
}
#block_additional .additional__items {
  list-style: disc;
  list-style-position: outside;
  margin: 0;
}
#block_additional .additional__item {
  font-size: 1.7rem;
  color: #fff;
}
#block_additional .additional__item::marker {
  color: #ffce00;
  font-size: 3rem;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_additional .additional__item {
    font-size: 1.8rem;
    line-height: 21px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_additional .additional__item {
    font-size: 1.9rem;
    line-height: 24px;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_additional .additional__item {
    font-size: 1.9rem;
    line-height: 24px;
  }
}

#block_banner {
  margin: 50px 10px;
  padding: 50px 0;
  border-radius: 50px;
  background-color: #1e1e1e;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_banner {
    width: 95%;
    margin: 10px auto;
  }
}
@media (min-width: 1280px) {
  #block_banner {
    width: 95%;
    margin: 10px auto;
  }
}
#block_banner .banner {
  text-align: center;
}
#block_banner .banner__topText {
  color: #fff;
}
#block_banner .banner__header {
  color: #ff9d00;
  font-family: "Bebas Neue", sans-serif;
}
#block_banner input {
  font-size: 2rem;
  margin-bottom: 20px;
}
#block_banner .wpcf7-spinner {
  display: none;
}
#block_banner .wpcf7-response-output {
  color: #fff;
}
#block_banner .wpcf7-form-control {
  border-radius: 10px;
}
#block_banner .wpcf7-submit {
  /* warstwa 1 (góra): pomarańcz „wlewa się” z lewej */
  /* warstwa 2 (dół): stały żółty */
  background-image: linear-gradient(90deg, #ff9d00, #ff9d00), linear-gradient(90deg, #ffce00, #ffce00);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  color: #1e1e1e;
  border: none;
  padding: 14px 35px;
  border-radius: 15px;
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
  min-width: 120px;
  align-self: flex-start;
  transition: background-size 0.4s ease, color 0.3s ease, box-shadow 0.3s ease;
}
#block_banner .wpcf7-submit:hover {
  background-size: 100% 100%, 100% 100%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  color: #fff;
}
#block_banner .wpcf7-submit:active {
  transform: translateY(0);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
#block_banner .wpcf7-submit:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.25);
  outline-offset: 2px;
}

#block_benefits {
  margin: 50px 10px;
  padding: 50px 0;
  border-radius: 50px;
  background-color: #1e1e1e;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_benefits {
    border-radius: 50px;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_benefits {
    border-radius: 50px;
  }
}
@media (min-width: 1280px) {
  #block_benefits {
    margin: 25px 10px;
  }
}
#block_benefits .benefits__header {
  font-size: 5.5rem;
  color: #ffce00;
  font-family: "Bebas Neue", sans-serif;
  line-height: 50px;
}
#block_benefits .benefits__right {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#block_benefits .benefits__box {
  width: 48%;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 50px;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_benefits .benefits__box {
    width: 24%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_benefits .benefits__box {
    width: 24%;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_benefits .benefits__box {
    width: 24%;
  }
}
@media (min-width: 1280px) {
  #block_benefits .benefits__box {
    width: 24%;
  }
}
#block_benefits .benefits__back {
  font-size: 12rem;
  font-family: "Bebas Neue", sans-serif;
  color: #ff9d00;
  position: absolute;
  z-index: 1;
  top: -70px;
  right: 25px;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_benefits .benefits__back {
    right: 60px;
  }
}
@media (min-width: 1280px) {
  #block_benefits .benefits__back {
    right: 90px;
  }
}
#block_benefits .benefits__icon {
  width: 50%;
  position: relative;
  z-index: 999;
}
@media (min-width: 1280px) {
  #block_benefits .benefits__icon {
    width: 35%;
  }
}
#block_benefits .benefits__text {
  color: #fff;
  font-size: 2.3rem;
  padding-top: 10px;
  line-height: 23px;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_benefits .benefits__text {
    font-size: 1.7rem;
    line-height: 17px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_benefits .benefits__text {
    font-size: 1.8rem;
    line-height: 17px;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_benefits .benefits__text {
    font-size: 1.8rem;
    line-height: 17px;
  }
}
@media (min-width: 1280px) {
  #block_benefits .benefits__text {
    font-size: 1.8rem;
    line-height: 17px;
  }
}

#block_blockchange {
  background-color: #1e1e1e;
}
#block_blockchange .blockchange {
  display: flex;
  flex-direction: row-reverse; /* Układa kolumny w kolejności: lewa, prawa */
  gap: 40px; /* Odstęp między kolumnami */
}
#block_blockchange .blockchange__left {
  flex: 2; /* Lewa kolumna zajmuje 2/3 dostępnego miejsca */
  min-width: 0; /* Zapobiega rozpychaniu layoutu przez duże obrazki */
}
#block_blockchange .blockchange__right {
  flex: 1; /* Prawa kolumna zajmuje 1/3 */
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#block_blockchange .blockchange__right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#block_blockchange .blockchange__right a {
  color: #fff;
  font-size: 2.2rem;
  text-transform: capitalize;
  font-weight: normal;
}
#block_blockchange .blockchange__panel {
  display: none;
}
#block_blockchange .blockchange__panel img {
  max-width: 100%; /* Obrazek dopasuje się do szerokości kolumny */
  height: auto;
  margin-bottom: 20px; /* Odstęp między obrazkiem a tekstem */
}
#block_blockchange .blockchange__panel.is-active {
  display: block;
}
#block_blockchange .blockchange__trigger.is-active {
  font-weight: bold;
  color: #ffce00;
}
#block_blockchange .blockchange a {
  cursor: pointer;
  padding: 10px 0;
  display: block;
  text-decoration: none;
  transition: all ease-in-out 0.5s;
}

#block_consultation {
  padding: 40px 0;
  margin-top: 50px;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_consultation {
    padding: 60px 0;
  }
}
@media (min-width: 1280px) {
  #block_consultation {
    padding: 10px 0;
  }
}

.consultation {
  display: flex;
  background-color: #ffce00;
  padding: 20px 40px;
  border-top-right-radius: 75px;
  border-bottom-left-radius: 75px;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  .consultation {
    flex-direction: row;
    padding: 30px 40px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .consultation {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  .consultation {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 30px 40px;
    gap: 40px;
  }
}
@media (min-width: 1280px) {
  .consultation {
    padding: 50px;
    flex-direction: row;
    justify-content: space-around;
  }
}
.consultation__left {
  flex-shrink: 0;
  width: 100%;
  max-width: 300px;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .consultation__left {
    width: 40%;
    max-width: none;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  .consultation__left {
    width: 60%;
  }
}
@media (min-width: 1280px) {
  .consultation__left {
    width: 45%;
  }
}
@media (min-width: 1500px) {
  .consultation__left {
    width: 50%;
  }
}
.consultation__photo {
  width: 30px;
  height: 30px;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  .consultation__photo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
}
@media (min-width: 1280px) {
  .consultation__photo {
    width: 50px;
    height: 50px;
  }
}
.consultation__right {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .consultation__right {
    text-align: left;
    width: 60%;
  }
}
@media (min-width: 1280px) {
  .consultation__right {
    width: 55%;
  }
}
@media (min-width: 1500px) {
  .consultation__right {
    width: 50%;
  }
}
.consultation__header {
  color: #fff;
  font-size: 3.5rem;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.3;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  .consultation__header {
    font-size: 28px;
  }
}
@media (min-width: 1280px) {
  .consultation__header {
    font-size: 32px;
    margin-bottom: 5px;
  }
}
@media (min-width: 1700px) {
  .consultation__header {
    font-size: 4rem;
  }
}
.consultation__subheader {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 24px;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  .consultation__subheader {
    font-size: 17px;
  }
}
@media (min-width: 1280px) {
  .consultation__subheader {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
@media (min-width: 1700px) {
  .consultation__subheader {
    font-size: 1.9rem;
  }
}
.consultation__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .consultation__bottom {
    justify-content: flex-start;
  }
}
.consultation a {
  color: #ff9d00;
  font-size: 3.5rem;
  font-family: "Montserrat", sans-serif;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  .consultation a {
    font-size: 4.5rem;
  }
}
@media (min-width: 1280px) {
  .consultation a {
    font-size: 6rem;
  }
}

#block_contactform {
  background-color: #e8e0d3;
  padding: 40px 0;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_contactform {
    padding: 60px 40px;
  }
}
#block_contactform .contact {
  background-color: #e8e0d3;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_contactform .contact {
    flex-direction: row-reverse;
    min-height: 500px;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_contactform .contact {
    flex-direction: row-reverse;
    min-height: 500px;
  }
}
@media (min-width: 1280px) {
  #block_contactform .contact {
    flex-direction: row-reverse;
  }
}
#block_contactform .contact__back {
  position: absolute;
  color: #f1eadf;
  font-size: 15rem;
  z-index: 1;
  font-weight: bold;
  font-family: "Bebas Neue", sans-serif;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_contactform .contact__back {
    font-size: 15rem;
    top: 50%;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_contactform .contact__back {
    font-size: 17rem;
    top: 70%;
  }
}
@media (min-width: 1280px) {
  #block_contactform .contact__back {
    font-size: 15rem;
    top: 50%;
  }
}
@media (min-width: 1500px) {
  #block_contactform .contact__back {
    font-size: 20rem;
  }
}
#block_contactform .contact__left {
  padding: 40px 30px;
  color: #fff;
  order: 2;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_contactform .contact__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
  }
}
@media (min-width: 1280px) {
  #block_contactform .contact__left {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 1500px) {
  #block_contactform .contact__left {
    width: 30%;
  }
}
#block_contactform .contact__item {
  /* warstwa 1 (góra): żółty „wlewa się” z lewej */
  /* warstwa 2 (dół): stały czarny */
  background-image: linear-gradient(90deg, #ffce00, #ffce00), linear-gradient(90deg, #1e1e1e, #1e1e1e);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  border-radius: 50px;
  padding: 20px;
  transition: background-size 0.5s ease-in-out, color 0.3s ease, box-shadow 0.3s ease;
}
#block_contactform .contact__item:hover {
  background-size: 100% 100%, 100% 100%;
  color: #1e1e1e;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
#block_contactform .contact__right {
  padding: 40px 30px;
  border-radius: 0 30px 30px 0;
  z-index: 999;
  order: 1;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_contactform .contact__right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
  }
}
@media (min-width: 1280px) {
  #block_contactform .contact__right {
    width: 60%;
  }
}
@media (min-width: 1500px) {
  #block_contactform .contact__right {
    width: 70%;
  }
}
#block_contactform .contact__info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
#block_contactform .contact__item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
#block_contactform .contact__item img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
#block_contactform .contact__link {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  line-height: 1.4;
}
@media (min-width: 1280px) {
  #block_contactform .contact__link {
    margin-right: 20px;
    font-size: 1.8rem;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_contactform .contact__link {
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_contactform .contact__link {
    font-size: 1.6rem;
  }
}
#block_contactform .contact__social {
  width: 10%;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_contactform .contact__social {
    width: 7%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_contactform .contact__social {
    width: 15%;
  }
}
@media (min-width: 1500px) {
  #block_contactform .contact__social {
    width: 15%;
  }
}
#block_contactform .contact__text {
  color: #1e1e1e;
  font-size: 1.4rem;
  line-height: 1.4;
  margin: 0;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_contactform .contact__text {
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_contactform .contact__text {
    font-size: 1.6rem;
  }
}
#block_contactform .contact a {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.4;
}
@media (min-width: 1280px) {
  #block_contactform .contact a {
    margin-right: 20px;
    font-size: 1.6rem;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_contactform .contact a {
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_contactform .contact a {
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_contactform .contact a {
    font-size: 1.6rem;
  }
}
#block_contactform .contact__hours p {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 100;
  color: #1e1e1e;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_contactform .contact__hours p {
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_contactform .contact__hours p {
    font-size: 1.6rem;
  }
}
@media (min-width: 1280px) {
  #block_contactform .contact__hours p {
    font-size: 1.6rem;
    padding: 5px 0;
  }
}
#block_contactform .contact__hours p:not(:last-child) {
  margin-bottom: 3px;
}
#block_contactform .wpcf7-form {
  z-index: 999;
}
#block_contactform .wpcf7-form label {
  display: block;
  color: #666;
  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 textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #1e1e1e;
  background-color: transparent;
  color: #333;
  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 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 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 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 textarea:focus {
  border-bottom-color: #ffce00;
}
#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 textarea::placeholder {
  color: #999;
  font-style: italic;
}
#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: #666;
  line-height: 1.4;
  flex: 1;
}
@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 {
  /* warstwa 1 (góra): pomarańcz „wlewa się” z lewej */
  /* warstwa 2 (dół): stały żółty */
  background-image: linear-gradient(90deg, #ff9d00, #ff9d00), linear-gradient(90deg, #ffce00, #ffce00);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  color: #1e1e1e;
  border: none;
  padding: 14px 35px;
  border-radius: 15px;
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
  min-width: 120px;
  align-self: flex-start;
  transition: background-size 0.4s ease, color 0.3s ease, box-shadow 0.3s ease;
}
#block_contactform .wpcf7-form .wpcf7-submit:hover {
  background-size: 100% 100%, 100% 100%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  color: #fff;
}
#block_contactform .wpcf7-form .wpcf7-submit:active {
  transform: translateY(0);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
#block_contactform .wpcf7-form .wpcf7-submit:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.25);
  outline-offset: 2px;
}
#block_contactform .wpcf7-spinner {
  display: none;
}

#block_faq {
  padding: 20px 0;
}
@media (min-width: 1280px) {
  #block_faq {
    height: 550px;
    margin-bottom: 70px;
  }
}
@media (min-width: 1280px) {
  #block_faq .faq {
    display: flex;
    justify-content: space-around;
    height: 500px;
  }
}
#block_faq .faq__title {
  font-size: 5rem !important;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 0 !important;
  line-height: 40px !important;
  line-height: 1;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_faq .faq__title {
    padding-bottom: 10px;
  }
}
@media (min-width: 1280px) {
  #block_faq .faq__title {
    padding-bottom: 0;
  }
}
#block_faq .faq__line {
  height: 3px;
  width: 10%;
  margin-bottom: 20px;
  background-color: #ff9d00;
}
#block_faq .faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1280px) {
  #block_faq .faq__list {
    width: 52%;
    justify-content: center;
  }
}
#block_faq .faq__photo {
  width: 75%;
  margin: 10px auto;
  display: flex;
  justify-content: center;
  padding-top: 20px;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_faq .faq__photo {
    display: none;
  }
}
@media (min-width: 1280px) {
  #block_faq .faq__photo {
    width: 48%;
    align-items: center;
  }
}
#block_faq .faq__photo img {
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
}
@media (min-width: 1280px) {
  #block_faq .faq__photo img {
    width: 50%;
  }
}
#block_faq .faq__item {
  background: #fff;
  overflow: hidden;
}
#block_faq .faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px;
  background: #ffce00;
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
  color: #fff;
  font-size: 1.5rem;
  line-height: 18px;
  text-align: left;
  outline: none;
  cursor: pointer;
  transition: background 0.3s;
}
#block_faq .faq__question:hover {
  background: #ffce00;
}
#block_faq .faq__question[aria-expanded=true] {
  background: #ffce00;
}
#block_faq .faq__question[aria-expanded=true] .faq__icon {
  transform: rotate(360deg);
}
#block_faq .faq__question .faq__icon {
  width: 16px;
  height: 16px;
  margin-left: 15px;
  transition: transform 0.3s ease;
}
#block_faq .faq__answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  color: #ffce00;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
#block_faq .faq__answer p {
  font-size: 1.5rem;
}
#block_faq .faq__item[aria-expanded=true] .faq__answer {
  height: 300px !important;
}

.block_hero {
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  width: 100%;
  height: 85vh;
  max-height: 950px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
  font-family: "Bebas Neue", sans-serif;
  overflow: clip;
}
.block_hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  z-index: 0;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  .block_hero {
    width: 95%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .block_hero {
    width: 95%;
    height: 60vh;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  .block_hero {
    height: 80vh;
  }
}
@media (min-width: 1280px) {
  .block_hero {
    width: 95%;
  }
}
.block_hero .fullscreen__left {
  text-align: left;
  position: relative;
  z-index: 1;
}
@media (min-width: 1280px) {
  .block_hero .fullscreen__left {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.block_hero .fullscreen__left h1 {
  color: #fff;
  font-size: 6rem;
  font-weight: normal;
  font-family: "Bebas Neue", cursive;
  line-height: 55px;
  margin-bottom: 0;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  .block_hero .fullscreen__left h1 {
    font-size: 6rem;
    line-height: 55px;
  }
}
@media (min-width: 1280px) {
  .block_hero .fullscreen__left h1 {
    font-size: 7rem;
    line-height: 60px;
  }
}
@media (min-width: 1700px) {
  .block_hero .fullscreen__left h1 {
    font-size: 10rem;
    line-height: 80px;
  }
}
.block_hero .fullscreen__left h1 span {
  color: #ffce00;
  margin-left: 20px;
}
@media (min-width: 1280px) {
  .block_hero .fullscreen__left h1 span {
    margin-left: 0;
  }
}
.block_hero .fullscreen__left p {
  color: #fff;
  font-family: "Bebas Neue", cursive;
  font-weight: normal;
  font-size: 3rem;
  line-height: 35px;
  margin: 10px 0 0 0;
  padding-left: 0;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  .block_hero .fullscreen__left p {
    font-size: 2.5rem;
    line-height: 25px;
    padding-top: 10px;
  }
}
@media (min-width: 1280px) {
  .block_hero .fullscreen__left p {
    font-size: 4rem;
    line-height: 40px;
  }
}
.block_hero .fullscreen__left a.fullscreen__button {
  font-size: 2rem;
  font-family: "Bebas Neue", cursive;
  color: #fff;
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #1e1e1e, #1e1e1e);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  border: 1px solid #ffce00;
  text-decoration: none;
  border-radius: 5px;
  padding: 7px 25px;
  margin-top: 20px;
  display: inline-block;
  transition: background-size 0.45s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
.block_hero .fullscreen__left a.fullscreen__button:hover {
  background-size: 100% 100%, 100% 100%;
  color: #1e1e1e;
  border-color: #ffce00;
  transform: translateY(-1px);
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  .block_hero .fullscreen__left a.fullscreen__button {
    font-size: 1.6rem;
  }
}
@media (min-width: 1500px) {
  .block_hero .fullscreen__left a.fullscreen__button {
    font-size: 2.3rem;
  }
}
.block_hero .fullscreen__right {
  position: relative;
  z-index: 1;
}

#block_information {
  margin: 50px 0;
  padding: 50px 0;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  background-color: #1e1e1e;
}
@media (min-width: 1280px) {
  #block_information {
    width: 95%;
    margin: 50px auto;
    border-radius: 50px;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_information .info {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1280px) {
  #block_information .info {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_information .info__left {
    width: 39%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (min-width: 1280px) {
  #block_information .info__left {
    width: 39%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
#block_information .info__left a {
  font-size: 2rem;
  font-family: "Bebas Neue", cursive;
  color: #fff;
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #1e1e1e, #1e1e1e);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  border: 1px solid #ffce00;
  text-decoration: none;
  border-radius: 5px;
  padding: 7px 25px;
  margin-top: 20px;
  display: inline-block;
  transition: background-size 0.45s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
#block_information .info__left a:hover {
  background-size: 100% 100%, 100% 100%;
  color: #1e1e1e;
  border-color: #ffce00;
  transform: translateY(-1px);
}
#block_information .info__left a:focus-visible {
  outline: 2px solid rgba(255, 206, 0, 0.6);
  outline-offset: 2px;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_information .info__left a {
    font-size: 1.6rem;
  }
}
@media (min-width: 1500px) {
  #block_information .info__left a {
    font-size: 2.3rem;
  }
}
#block_information .info__subtitle {
  color: #fff;
}
#block_information .info__header {
  font-size: 4rem;
  line-height: 1.1;
  color: #ffce00;
  font-family: "Bebas Neue", sans-serif;
}
#block_information .info__text {
  color: #fff;
  font-size: 1.7rem;
  line-height: 1.25;
  padding-top: 10px;
  font-family: "Montserrat", sans-serif;
}
#block_information .info__right {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 2%;
  padding-top: 30px;
  justify-content: center;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_information .info__right {
    width: 59%;
  }
}
@media (min-width: 1280px) {
  #block_information .info__right {
    width: 59%;
  }
}
#block_information .info__box {
  width: 48%;
  padding: 10px 0;
  contain: content;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_information .info__box {
    width: 23%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_information .info__box {
    width: 48%;
  }
}
#block_information .info__box a {
  display: block;
  text-decoration: none;
}
#block_information .info__box:hover .info__littleheader::after {
  width: 70%;
}
#block_information .info__icon {
  width: 80px;
  height: 80px;
  display: block;
}
#block_information .info__icon img,
#block_information .info__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
#block_information .info__littleheader {
  position: relative;
  color: #fff;
  font-size: clamp(1.8rem, 2.2vw, 2.7rem);
  line-height: 1.2;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_information .info__littleheader {
    min-height: 40px;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1280px) {
  #block_information .info__littleheader {
    min-height: 40px;
    display: flex;
    align-items: center;
  }
}
#block_information .info__littleheader::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 2px;
  width: 0;
  background-color: #ffce00;
  transition: width 0.4s ease;
}
#block_information .info__desc {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.25;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_information .info__desc {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_information .info__desc {
    font-size: 1.6rem;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_information .info__desc {
    font-size: 1.5rem;
  }
}
@media (min-width: 1280px) {
  #block_information .info__desc {
    font-size: 1.5rem;
  }
}
@supports (content-visibility: auto) {
  #block_information .info__box {
    content-visibility: auto;
    contain-intrinsic-size: 200px;
  }
}

#block_klasyczny .klasyczny h2 {
  font-size: 3rem;
  line-height: 32px;
  color: #ffce00;
  padding: 20px 0;
}
#block_klasyczny .klasyczny ol {
  margin: 0 !important;
}
#block_klasyczny .klasyczny h3 {
  font-size: 2.7rem;
  color: #ffce00;
  padding: 20px 0;
}
#block_klasyczny .klasyczny p,
#block_klasyczny .klasyczny li,
#block_klasyczny .klasyczny a {
  font-size: 1.9rem;
  line-height: 25px;
}
#block_klasyczny .klasyczny a {
  color: #ffce00;
}
#block_klasyczny .klasyczny a:visited {
  color: #ffce00;
}

#block_lastentries {
  background-color: #fff;
  padding-bottom: 50px;
  padding-top: 50px;
  text-align: center;
}
@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: 0;
  }
}
@media (min-width: 1700px) {
  #block_lastentries {
    margin-top: 70px;
  }
}
#block_lastentries .read-more-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ffce00;
  color: #1e1e1e;
  border: 1px solid #1e1e1e;
  font-size: 1.2rem;
  border-radius: 2px;
  margin-top: 10px;
  transition: all ease-in-out 0.5s;
}
@media (min-width: 1500px) {
  #block_lastentries .read-more-button {
    font-size: 1.5rem;
  }
}
#block_lastentries .read-more-button:hover {
  background-color: #fff;
  color: #1e1e1e;
  text-decoration: none;
}
@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 a img {
  border-radius: 20px;
}
#block_lastentries .lastentries a img:hover {
  opacity: 0.9;
}
#block_lastentries .lastentries a img {
  width: 250px;
  height: 150px;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_lastentries .lastentries a img {
    width: 300px;
    height: 250px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_lastentries .lastentries a img {
    width: 200px;
    height: 170px;
  }
}
@media (min-width: 1280px) {
  #block_lastentries .lastentries a img {
    height: 220px;
    width: 100%;
  }
}
#block_lastentries .lastentries__content {
  display: none;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_lastentries .lastentries__content {
    display: block;
    padding-top: 10px;
    width: 80%;
    margin: 0 auto;
  }
}
#block_lastentries .lastentries__line {
  width: 80%;
  margin: 0 auto;
  height: 2px;
  background-color: #ffce00;
  margin-bottom: 15px;
}
#block_lastentries .lastentries__container {
  text-align: center;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_lastentries .lastentries__container {
    width: 50%;
  }
}
@media (min-width: 1280px) {
  #block_lastentries .lastentries__container {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30%;
    border-radius: 2px;
  }
}
@media (min-width: 1500px) {
  #block_lastentries .lastentries__container {
    margin-top: -40px;
  }
}
@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_list {
  padding: 30px 0;
}
#block_list .list__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#block_list .list__item {
  width: 50%;
  text-align: center;
  padding: 20px 0;
}
@media (min-width: 1280px) {
  #block_list .list__item {
    width: 20%;
  }
}
#block_list .list__number {
  font-size: 5rem;
  line-height: 48px;
  font-family: "Bebas Neue", sans-serif;
  margin-bottom: 0;
  color: #fff;
  -webkit-text-stroke: 1px #ffce00;
  text-stroke: 1px #ffce00;
}
@supports not (-webkit-text-stroke: 2px #1e1e1e) {
  #block_list .list__number {
    color: transparent;
    text-shadow: 2px 0 #1e1e1e, -2px 0 #1e1e1e, 0 2px #1e1e1e, 0 -2px #1e1e1e, 1px 1px #1e1e1e, -1px -1px #1e1e1e, 1px -1px #1e1e1e, -1px 1px #1e1e1e;
  }
}
@media (min-width: 1280px) {
  #block_list .list__number {
    font-size: 6.5rem;
  }
}
#block_list .list__title {
  font-size: 2.5rem;
  font-family: "Bebas Neue", sans-serif;
}
@media (min-width: 1280px) {
  #block_list .list__title {
    font-size: 3rem;
  }
}
#block_list .list__text {
  font-size: 1.5rem;
  line-height: 16px;
}
@media (min-width: 1280px) {
  #block_list .list__text {
    font-size: 1.6rem;
  }
}

#block_naglowek {
  padding: 30px 0;
}
#block_naglowek .naglowek {
  text-align: center;
  padding-top: 30px;
}
#block_naglowek .naglowek__toptext {
  color: #1e1e1e;
  font-family: "Montserrat", sans-serif;
}
@media (min-width: 1280px) {
  #block_naglowek .naglowek__toptext {
    padding-bottom: 10px;
  }
}
#block_naglowek .naglowek__header {
  font-weight: normal;
  color: #ffce00;
  font-family: "Bebas Neue", sans-serif;
}

#block_newsletter .newsletter {
  position: relative;
  padding: 100px 0;
}
#block_newsletter .newsletter__back {
  position: absolute;
  color: #f8f8f8;
  font-size: 10rem;
  line-height: 100px;
  font-weight: bold;
  font-family: "Bebas Neue", sans-serif;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_newsletter .newsletter__back {
    font-size: 15rem;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_newsletter .newsletter__back {
    font-size: 17rem;
  }
}
@media (min-width: 1280px) {
  #block_newsletter .newsletter__back {
    font-size: 15rem;
  }
}
@media (min-width: 1500px) {
  #block_newsletter .newsletter__back {
    font-size: 20rem;
  }
}
#block_newsletter .newsletter .embedForm {
  background-color: transparent !important;
}
#block_newsletter .newsletter__info {
  text-align: center;
  font-size: 1.4rem;
  position: relative;
  z-index: 999;
}
#block_newsletter .newsletter a {
  color: #1e1e1e !important;
}

#block_offer {
  background-color: #ffce00;
  position: relative;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_offer {
    padding: 30px 0;
  }
}
#block_offer .offer {
  background-color: #ffce00;
  padding: 40px 0;
}
#block_offer .offer__title {
  font-size: 5rem !important;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 0;
  line-height: 1;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_offer .offer__title {
    padding-bottom: 10px;
  }
}
@media (min-width: 1280px) {
  #block_offer .offer__title {
    padding-bottom: 10px;
  }
}
#block_offer .offer__line {
  height: 3px;
  width: 60%;
  background-color: #ff9d00;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_offer .offer__line {
    width: 35%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_offer .offer__line {
    width: 25%;
  }
}
@media (min-width: 1280px) {
  #block_offer .offer__line {
    width: 20%;
  }
}
#block_offer .offer__grid {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
  padding-top: 50px;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_offer .offer__grid {
    justify-content: space-between;
  }
}
@media (min-width: 1280px) {
  #block_offer .offer__grid {
    margin: -15px;
  }
}
@media (min-width: 1700px) {
  #block_offer .offer__grid {
    padding-bottom: 50px;
  }
}
#block_offer .offer__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  width: calc(50% - 20px);
  margin: 10px;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_offer .offer__item {
    align-items: center;
    text-align: center;
    width: calc(48% - 20px);
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_offer .offer__item {
    width: 29%;
    margin: 15px;
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 1280px) {
  #block_offer .offer__item {
    width: calc(33.333% - 30px);
    margin: 15px;
    flex-direction: row;
    align-items: center;
  }
}
#block_offer .offer__link {
  text-decoration: none;
  color: #fff !important;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}
#block_offer .offer__link:hover {
  opacity: 0.8;
}
#block_offer .offer__link:focus {
  outline: 2px solid #ff9d00;
  outline-offset: 2px;
}
#block_offer .offer__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  flex-shrink: 0;
}
#block_offer .offer__icon svg,
#block_offer .offer__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  fill: #fff;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_offer .offer__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1280px) {
  #block_offer .offer__icon {
    margin-right: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_offer .offer__icon {
    margin-right: 20px;
  }
}
#block_offer .offer__content {
  flex: 1;
}
#block_offer .offer__header {
  font-size: 2.5rem;
  line-height: 1.3;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_offer .offer__header {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_offer .offer__header {
    font-size: 2.3rem;
    margin-bottom: 5px;
  }
}
@media (min-width: 1280px) {
  #block_offer .offer__header {
    margin-bottom: 5px;
  }
}
#block_offer .offer p {
  font-size: 1.5rem;
  font-weight: 100;
  color: #fff;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_offer .offer p {
    line-height: 18px;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_offer .offer p {
    line-height: 18px;
  }
}
#block_offer .offer__text {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 100;
  margin: 0;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_offer .offer__text {
    font-size: 15px;
    line-height: 1.6;
  }
}
#block_offer .offer__watermark {
  position: absolute;
  right: -110px;
  top: -50px;
  width: 50%;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_offer .offer__watermark {
    width: 25%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_offer .offer__watermark {
    width: 25%;
    right: -150px;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_offer .offer__watermark {
    width: 30%;
    right: -220px;
  }
}
@media (min-width: 1280px) {
  #block_offer .offer__watermark {
    width: 31%;
    right: -220px;
    top: -80px;
  }
}
@media (min-width: 1700px) {
  #block_offer .offer__watermark {
    right: -190px;
    top: -60px;
    width: 21%;
  }
}

#block_offerlist {
  padding: 30px 0;
}
#block_offerlist .list__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 1280px) {
  #block_offerlist .list {
    flex-wrap: nowrap;
  }
}
#block_offerlist .list__item {
  width: 50%;
  text-align: center;
  padding: 20px 0;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  background-color: #fff;
}
@media (min-width: 1280px) {
  #block_offerlist .list__item {
    width: 21%;
  }
}
#block_offerlist .list__item--current {
  background-color: #fff;
}
#block_offerlist .list__item--current .list__number {
  color: #ffce00;
  -webkit-text-stroke: 0;
  text-stroke: 0;
  text-shadow: none;
}
#block_offerlist .list__item--current .list__title {
  color: #1e1e1e;
}
#block_offerlist .list__item--current .list__text {
  color: rgba(30, 30, 30, 0.8);
}
#block_offerlist .list__number {
  font-size: 5rem;
  line-height: 48px;
  font-family: "Bebas Neue", sans-serif;
  margin-bottom: 0;
  color: #fff;
  -webkit-text-stroke: 1px #ffce00;
  text-stroke: 1px #ffce00;
}
@supports not (-webkit-text-stroke: 2px #1e1e1e) {
  #block_offerlist .list__number {
    color: transparent;
    text-shadow: 2px 0 #1e1e1e, -2px 0 #1e1e1e, 0 2px #1e1e1e, 0 -2px #1e1e1e, 1px 1px #1e1e1e, -1px -1px #1e1e1e, 1px -1px #1e1e1e, -1px 1px #1e1e1e, 1px -1px #1e1e1e;
  }
}
@media (min-width: 1280px) {
  #block_offerlist .list__number {
    font-size: 6.5rem;
  }
}
#block_offerlist .list__title {
  font-size: 2.5rem;
  font-family: "Bebas Neue", sans-serif;
}
@media (min-width: 1280px) {
  #block_offerlist .list__title {
    font-size: 3rem;
  }
}
#block_offerlist .list__text {
  font-size: 1.5rem;
  line-height: 16px;
}
@media (min-width: 1280px) {
  #block_offerlist .list__text {
    font-size: 1.6rem;
  }
}

#block_offeraccept {
  margin: 50px 10px;
  padding: 50px 0;
  border-radius: 50px;
  background-color: #1e1e1e;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_offeraccept {
    width: 95%;
    margin: 10px auto;
  }
}
@media (min-width: 1280px) {
  #block_offeraccept {
    width: 95%;
    margin: 10px auto;
  }
}
#block_offeraccept input {
  font-size: 2rem;
  margin-bottom: 20px;
}
#block_offeraccept .wpcf7-spinner {
  display: none;
}
#block_offeraccept .wpcf7-response-output {
  color: #fff;
}
#block_offeraccept .wpcf7-form-control {
  border-radius: 10px;
}
#block_offeraccept .wpcf7-submit {
  background-image: linear-gradient(90deg, #ff9d00, #ff9d00), linear-gradient(90deg, #ffce00, #ffce00);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  font-family: "Bebas Neue", sans-serif;
  color: #1e1e1e;
  border: none;
  padding: 14px 35px;
  border-radius: 15px;
  margin-top: 20px;
  font-size: 1.8rem;
  font-weight: 500;
  cursor: pointer;
  min-width: 120px;
  align-self: flex-start;
  transition: background-size 0.4s ease, color 0.3s ease, box-shadow 0.3s ease;
}
#block_offeraccept .wpcf7-submit:hover {
  background-size: 100% 100%, 100% 100%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  color: #fff;
}
#block_offeraccept .wpcf7-submit:active {
  transform: translateY(0);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
#block_offeraccept .wpcf7-submit:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.25);
  outline-offset: 2px;
}

#block_offeraccept .offeraccept {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1280px) {
  #block_offeraccept .offeraccept {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
}
#block_offeraccept .offeraccept__header {
  font-size: 3.4rem;
  color: #ffce00;
  font-family: "Bebas Neue", sans-serif;
}
#block_offeraccept .offeraccept__text {
  color: #fff;
  font-size: 1.7rem;
}
@media (min-width: 1280px) {
  #block_offeraccept .offeraccept__left {
    width: 50%;
  }
}
@media (min-width: 1280px) {
  #block_offeraccept .offeraccept__right {
    width: 50%;
    display: flex;
    justify-content: center;
  }
}
#block_offeraccept .offeraccept__thanks {
  text-align: center;
  width: 100%;
  padding: 6rem 2rem;
}
#block_offeraccept .offeraccept__thanks-header {
  font-size: 5rem;
  color: #ffce00;
}
#block_offeraccept .offeraccept__thanks-text {
  font-size: 1.7rem;
  color: #fff;
}

#block_offerprice {
  position: relative;
}
#block_offerprice .offerprice {
  margin: 50px auto;
  padding: 50px 0;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  background-color: #1e1e1e;
  width: 90%;
  height: 300px;
}
@media (min-width: 1280px) {
  #block_offerprice .offerprice {
    height: 500px;
  }
}
#block_offerprice .offerprice__back {
  position: absolute;
  color: #222222;
  font-size: 10rem;
  z-index: 1;
  font-weight: bold;
  font-family: "Bebas Neue", sans-serif;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_offerprice .offerprice__back {
    font-size: 15rem;
    top: 50%;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_offerprice .offerprice__back {
    font-size: 17rem;
    top: 70%;
  }
}
@media (min-width: 1280px) {
  #block_offerprice .offerprice__back {
    font-size: 15rem;
    top: 50%;
  }
}
@media (min-width: 1500px) {
  #block_offerprice .offerprice__back {
    font-size: 20rem;
  }
}
#block_offerprice .offerprice__text {
  color: #fff;
  font-size: 2.4rem;
  line-height: 26px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  padding-top: 20px;
  z-index: 999;
}
#block_offerprice .offerprice__text span {
  color: #ffce00;
}
#block_offerprice .offerprice {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#block_offerprice .offerprice p {
  color: #fff;
}

#block_offertext {
  padding: 50px 0;
  margin-bottom: 20px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  background-color: #1e1e1e;
}
@media (min-width: 1280px) {
  #block_offertext {
    width: 95%;
    border-radius: 50px;
    margin: auto;
    margin-bottom: 30px;
  }
}
#block_offertext p {
  font-family: "Montserrat", sans-serif;
  font-size: 1.7rem;
  line-height: 1.6;
  color: #fff;
}
#block_offertext span {
  color: #ffce00;
}

#block_offerhero {
  padding-bottom: 50px;
}
#block_offerhero .offerhero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 4rem 0;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_offerhero .offerhero {
    flex-direction: row;
    align-items: stretch;
  }
}
@media (min-width: 1280px) {
  #block_offerhero .offerhero {
    flex-direction: row;
    align-items: stretch;
  }
}
#block_offerhero .offerhero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 20px;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_offerhero .offerhero__left {
    width: 40%;
  }
}
@media (min-width: 1280px) {
  #block_offerhero .offerhero__left {
    width: 40%;
  }
}
#block_offerhero .offerhero__toptext {
  font-family: "Montserrat", sans-serif;
  font-size: 2.3rem;
  text-transform: uppercase;
  color: #ffce00;
}
#block_offerhero .offerhero__client {
  font-family: "Bebas Neue", sans-serif;
  font-size: 8rem;
  line-height: 60px;
  font-weight: 700;
  color: #1e1e1e;
  border-bottom: 5px solid #ffce00;
  width: 70%;
}
@media (min-width: 1700px) {
  #block_offerhero .offerhero__client {
    font-size: 10rem;
    line-height: 9rem;
  }
}
#block_offerhero .offerhero__right {
  position: relative;
  background-color: #1e1e1e;
  color: #fff;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 50px;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_offerhero .offerhero__right {
    width: 60%;
  }
}
@media (min-width: 1280px) {
  #block_offerhero .offerhero__right {
    width: 60%;
  }
}
#block_offerhero .offerhero__right::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: -1.5rem;
  right: -0.5rem;
  bottom: -1.5rem;
  width: 98%;
  border: 2px solid #ffce00;
  z-index: 999;
  pointer-events: none;
  border-radius: 50px;
}
#block_offerhero .offerhero__title {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: #ffce00;
}
#block_offerhero .offerhero__description {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #fff;
}
#block_offerhero .offerhero__description p {
  color: #fff;
  font-size: 1.7rem;
}
#block_offerhero .offerhero__description p + p {
  margin-top: 1rem;
}

#offer_points .offerpoints {
  background-color: #1e1e1e;
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#offer_points .offerpoints__header {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 2vw, 2.6rem);
  text-align: center;
  color: #fff;
  margin-bottom: 3rem;
}
#offer_points .offerpoints__list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 1280px) {
  #offer_points .offerpoints__list {
    gap: 2rem;
  }
}
#offer_points .offerpoints__item {
  position: relative;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: left;
  max-width: 40%;
  padding-left: 2rem;
}
@media (min-width: 1280px) {
  #offer_points .offerpoints__item {
    max-width: 30%;
  }
}
#offer_points .offerpoints__item::before {
  content: "";
  position: absolute;
  top: 0.9rem;
  left: 0;
  width: 0.8rem;
  height: 0.8rem;
  background-color: #ffce00;
  border-radius: 50%;
}

#block_portfolio {
  padding-bottom: 20px;
}
@media (min-width: 1280px) {
  #block_portfolio {
    padding: 30px 0;
  }
}
#block_portfolio .portfolio {
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
#block_portfolio .portfolio__box {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: all ease-in-out 0.5s;
  position: relative;
}
#block_portfolio .portfolio__box:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  transition: all ease-in-out 0.5s;
}
#block_portfolio .portfolio__box:hover .portfolio__content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 0;
  z-index: 1;
  font-size: 2rem;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_portfolio .portfolio__box {
    height: 150px;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_portfolio .portfolio__box {
    height: 150px;
  }
}
#block_portfolio .portfolio a {
  width: 45%;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_portfolio .portfolio a {
    width: 48%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_portfolio .portfolio a {
    width: 30%;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_portfolio .portfolio a {
    width: 30%;
  }
}
@media (min-width: 1280px) {
  #block_portfolio .portfolio a {
    width: 20%;
  }
}
#block_portfolio .portfolio__content {
  font-size: 1.7rem;
  line-height: 17px;
  color: #fff;
  background-color: #ff9d00;
  padding: 20px 30px;
  position: absolute;
  bottom: 0;
  right: 0;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  transition: all ease-in-out 0.7s;
}

.pricing {
  padding: 150px 0 80px 0;
  background-color: #1e1e1e;
  position: relative;
}
.pricing__container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.pricing__box {
  background: #fff;
  color: #1e1e1e;
  position: relative;
  z-index: 999;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  padding: 28px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  max-width: 100%;
  flex: 1 1 100%;
  min-width: 260px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .pricing__box {
    flex: 1 1 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}
@media (min-width: 1280px) {
  .pricing__box {
    flex: 1 1 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
  }
}
.pricing__box:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
  border-color: rgba(0, 0, 0, 0.12);
}
.pricing__box--featured {
  background: #ffce00;
  color: #1e1e1e;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}
@media (min-width: 1280px) {
  .pricing__box--featured {
    margin-top: -15px;
  }
}
.pricing__back {
  position: absolute;
  color: #292929;
  font-size: 10rem;
  line-height: 100px;
  font-weight: bold;
  font-family: "Bebas Neue", sans-serif;
  z-index: 1;
  top: 17%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .pricing__back {
    font-size: 15rem;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  .pricing__back {
    font-size: 17rem;
  }
}
@media (min-width: 1280px) {
  .pricing__back {
    font-size: 15rem;
  }
}
@media (min-width: 1500px) {
  .pricing__back {
    font-size: 30rem;
  }
}
.pricing__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4.2rem;
  line-height: 1.05;
  margin: 0 0 8px 0;
  letter-spacing: 0.5px;
}
.pricing__box--featured .pricing__title {
  color: #1e1e1e;
}
.pricing__subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 1.7rem;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.7);
  margin: 0 0 16px 0;
  min-height: 4.2em;
  display: block;
}
.pricing__box--featured .pricing__subtitle {
  color: #1e1e1e;
}
.pricing__price {
  font-family: "Montserrat", sans-serif;
  font-size: 4.1rem;
  font-weight: bold;
  line-height: 1.1;
  margin: 0 0 20px 0;
  color: #ffce00;
  display: inline-flex;
  align-items: baseline;
  column-gap: 6px;
  flex-wrap: wrap;
}
.pricing__price > p {
  margin: 0;
  padding: 0;
  background: none;
  color: inherit;
  font: inherit;
  line-height: inherit;
  display: contents;
}
.pricing__price > span:first-child {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  font-weight: normal;
  color: #696969;
  margin-right: 0;
}
.pricing__price br {
  display: none;
}
.pricing__box--featured .pricing__price {
  color: #1e1e1e;
}
.pricing__box--featured .pricing__price > span:first-child {
  color: rgba(0, 0, 0, 0.75);
}
.pricing__buttons {
  display: flex;
  margin-bottom: 16px;
  width: 100%;
}
.pricing__buttons .wpcf7 {
  width: 100%;
}
.pricing__buttons .wpcf7-form {
  display: flex;
  flex-direction: column;
}
.pricing__buttons .wpcf7-spinner {
  display: none;
}
.pricing__buttons .wpcf7-response-output {
  margin: 10px 0 0 0;
  padding: 10px;
  border-radius: 8px;
  font-size: 1.4rem;
}
.pricing__buttons .wpcf7-form-control {
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  padding: 10px 14px;
  margin-bottom: 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  width: 100%;
}
.pricing__buttons .wpcf7-submit {
  background-image: linear-gradient(90deg, #ff9d00, #ff9d00), linear-gradient(90deg, #ffce00, #ffce00);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  font-family: "Bebas Neue", sans-serif;
  color: #1e1e1e;
  border: 1px solid #ffce00;
  padding: 12px 18px;
  border-radius: 10px;
  margin-top: 8px;
  font-size: 1.7rem;
  cursor: pointer;
  width: 100%;
  transition: background-size 0.45s ease, color 0.3s ease, transform 0.2s ease;
}
.pricing__buttons .wpcf7-submit:hover {
  background-size: 100% 100%, 100% 100%;
  color: #fff;
  transform: translateY(-1px);
}
.pricing__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  padding: 12px 18px;
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.7rem;
  border: 1px solid #ffce00;
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  transition: background-size 0.45s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  width: 100%;
}
.pricing__button:hover {
  background-size: 100% 100%, 100% 100%;
  transform: translateY(-1px);
}
.pricing__button--primary {
  background-image: linear-gradient(90deg, #ff9d00, #ff9d00), linear-gradient(90deg, #ffce00, #ffce00);
  color: #1e1e1e;
}
.pricing__button--primary:hover {
  color: #fff;
}
.pricing__box--featured .pricing__button--primary {
  background-image: linear-gradient(90deg, #1e1e1e, #1e1e1e), linear-gradient(90deg, #1e1e1e, #1e1e1e);
  color: #fff;
  border-color: #1e1e1e;
}
.pricing__box--featured .pricing__button--primary:hover {
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #1e1e1e, #1e1e1e);
  color: #1e1e1e;
}
.pricing__box--featured .wpcf7-submit {
  background-image: linear-gradient(90deg, #1e1e1e, #1e1e1e), linear-gradient(90deg, #1e1e1e, #1e1e1e);
  color: #fff;
  border-color: #1e1e1e;
}
.pricing__box--featured .wpcf7-submit:hover {
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #1e1e1e, #1e1e1e);
  color: #1e1e1e;
}
.pricing__box--featured .wpcf7-form-control {
  border-color: rgba(0, 0, 0, 0.2);
}
.pricing__list {
  margin: 8px 0 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.pricing__item {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  color: #1e1e1e;
  line-height: 1.4;
  position: relative;
  min-height: 28px;
}
.pricing__item::before {
  content: "✓";
  color: #ffce00;
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 0.2em;
}
.pricing__box--featured .pricing__item {
  color: #1e1e1e;
}
.pricing__box--featured .pricing__item::before {
  color: #1e1e1e;
  opacity: 1;
}
.pricing__thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  min-height: 300px;
}
.pricing__thanks-header {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.2rem;
  line-height: 1.2;
  margin: 0 0 16px 0;
  color: #1e1e1e;
}
.pricing__thanks-text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  line-height: 1.4;
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
}
.pricing__box--featured .pricing__thanks-header, .pricing__box--featured .pricing__thanks-text {
  color: #1e1e1e;
}
@media (prefers-reduced-motion: reduce) {
  .pricing__button {
    transition: none;
    background-size: 100% 100%, 100% 100%;
  }
}

#block_parallax {
  position: relative;
  overflow: hidden;
  padding-bottom: 40px;
}
#block_parallax .parallax {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_parallax .parallax {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 6rem;
  }
}
@media (min-width: 960px) and (max-width: 1280px) {
  #block_parallax .parallax {
    flex-direction: row;
  }
}
@media (min-width: 1280px) {
  #block_parallax .parallax {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 6rem;
  }
}
#block_parallax .parallax__left, #block_parallax .parallax__right {
  width: 100%;
  position: relative;
}
@media (min-width: 1280px) {
  #block_parallax .parallax__left, #block_parallax .parallax__right {
    width: 50%;
  }
}
#block_parallax .parallax__header {
  color: #ffce00;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 500;
  font-size: 4.5rem;
  line-height: 1.1;
  margin: 0 0 1.5rem 0;
}
@media (min-width: 1700px) {
  #block_parallax .parallax__header {
    padding-left: 50px;
  }
}
#block_parallax .parallax__text {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 700;
  max-width: 600px;
  font-family: "Montserrat", sans-serif;
}
#block_parallax .parallax__text span {
  color: #ffce00;
  font-weight: 600;
}
#block_parallax .parallax__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 1280px) {
  #block_parallax .parallax__list {
    flex-direction: column;
    flex-wrap: nowrap;
  }
}
@media (min-width: 1700px) {
  #block_parallax .parallax__list {
    padding-left: 50px;
  }
}
#block_parallax .parallax__item {
  position: relative;
  color: #1e1e1e;
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  padding: 5px 0;
  max-width: 100%;
  width: 50%;
  padding-left: 2rem;
}
@media (min-width: 1280px) {
  #block_parallax .parallax__item {
    max-width: 30%;
  }
}
#block_parallax .parallax__item::before {
  content: "";
  position: absolute;
  top: 0.9rem;
  left: 0;
  width: 0.8rem;
  height: 0.8rem;
  background-color: #ffce00;
  border-radius: 50%;
}
#block_parallax .multi-parallax {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding-top: 50px;
  padding-bottom: 100px;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_parallax .multi-parallax {
    height: 400px;
  }
}
@media (min-width: 1700px) {
  #block_parallax .multi-parallax {
    height: 550px;
  }
}
#block_parallax .layer {
  position: absolute;
  transition: transform 0.2s linear;
  will-change: transform;
  pointer-events: none;
  user-select: none;
  width: 100%;
  height: 500px;
}
#block_parallax .layer img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
}
#block_parallax .layer img::selection {
  background: transparent;
  color: transparent;
}
#block_parallax #first__id_1 {
  position: absolute;
  width: 95%;
  top: 31%;
  left: 0%;
  rotate: -15deg;
}
@media (min-width: 1280px) {
  #block_parallax #first__id_1 {
    width: 70%;
    top: 30%;
    left: 10%;
  }
}
@media (min-width: 1700px) {
  #block_parallax #first__id_1 {
    width: 70%;
    top: 20%;
  }
}
#block_parallax #first__id_2 {
  position: absolute;
  width: 40%;
  top: 15%;
  right: 0%;
  rotate: 10deg;
}
@media (min-width: 1280px) {
  #block_parallax #first__id_2 {
    width: 20%;
    top: 45%;
    right: 20%;
  }
}
@media (min-width: 1700px) {
  #block_parallax #first__id_2 {
    right: 15%;
  }
}

#block_podstronahero {
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  object-fit: cover;
  font-family: "Bebas Neue", sans-serif;
  background-attachment: fixed;
  padding-top: 100px;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_podstronahero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 0;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_podstronahero {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_podstronahero {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1280px) {
  #block_podstronahero {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_podstronahero .subpage {
    display: flex;
    justify-content: center;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_podstronahero .subpage {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1280px) {
  #block_podstronahero .subpage {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_podstronahero .subpage__left {
    width: 60%;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_podstronahero .subpage__left {
    width: 59%;
  }
}
@media (min-width: 1280px) {
  #block_podstronahero .subpage__left {
    width: 59%;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
}
#block_podstronahero .subpage__right {
  padding-top: 20px;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_podstronahero .subpage__right {
    width: 50%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_podstronahero .subpage__right {
    width: 40%;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_podstronahero .subpage__right {
    width: 39%;
  }
}
@media (min-width: 1280px) {
  #block_podstronahero .subpage__right {
    width: 39%;
  }
}
#block_podstronahero .subpage__header h1 {
  font-size: 4.6rem;
  line-height: 46px;
  font-weight: normal;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_podstronahero .subpage__header h1 {
    font-size: 5.5rem;
  }
}
@media (min-width: 1280px) {
  #block_podstronahero .subpage__header h1 {
    font-size: 5.5rem;
  }
}
@media (min-width: 1700px) {
  #block_podstronahero .subpage__header h1 {
    font-size: 6.5rem;
    line-height: 63px;
  }
}
#block_podstronahero .subpage__header span {
  color: #ffce00;
}
#block_podstronahero .subpage__text {
  font-size: 1.7rem;
  line-height: 19px;
  font-family: "Montserrat", sans-serif;
}
#block_podstronahero .subpage__list {
  padding-top: 20px;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_podstronahero .subpage__list {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_podstronahero .subpage__list {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_podstronahero .subpage__list {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1280px) {
  #block_podstronahero .subpage__list {
    display: flex;
    justify-content: space-between;
  }
}
#block_podstronahero .subpage__box {
  padding-top: 20px;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_podstronahero .subpage__box {
    width: 33%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_podstronahero .subpage__box {
    width: 33%;
  }
}
#block_podstronahero .subpage__line {
  width: 40%;
  height: 3px;
  background-color: #ffce00;
  margin-bottom: 20px;
}
#block_podstronahero .subpage__photo {
  border-radius: 25px;
}
#block_podstronahero .subpage__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.7rem;
  line-height: 27px;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_podstronahero .subpage__title {
    font-size: 2.2rem;
    line-height: 22px;
    height: 50px;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_podstronahero .subpage__title {
    height: 50px;
    align-items: unset;
    font-size: 2.2rem;
    line-height: 22px;
  }
}
@media (min-width: 1280px) {
  #block_podstronahero .subpage__title {
    height: 80px;
  }
}
@media (min-width: 1500px) {
  #block_podstronahero .subpage__title {
    height: 60px;
  }
}
#block_podstronahero .subpage__desc {
  font-size: 1.7rem;
  line-height: 17px;
  font-family: "Montserrat", sans-serif;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_podstronahero .subpage__desc {
    font-size: 1.5rem;
    line-height: 15px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_podstronahero .subpage__desc {
    font-size: 1.5rem;
    line-height: 16px;
  }
}
#block_podstronahero .subpage h3 {
  margin-bottom: 0;
}

#block_shortcode {
  padding: 40px 0;
}
#block_shortcode .shortcode__header {
  font-size: 5rem !important;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 0;
  line-height: 50px;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_shortcode .shortcode__header {
    padding-bottom: 10px;
  }
}
@media (min-width: 1280px) {
  #block_shortcode .shortcode__header {
    padding-bottom: 0px;
  }
}
#block_shortcode .shortcode__line {
  height: 3px;
  width: 60%;
  background-color: #ff9d00;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_shortcode .shortcode__line {
    width: 35%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_shortcode .shortcode__line {
    width: 25%;
  }
}
@media (min-width: 1280px) {
  #block_shortcode .shortcode__line {
    width: 25%;
    margin-bottom: 40px;
  }
}
@media (min-width: 1280px) {
  #block_shortcode .shortcode__line {
    width: 18%;
    margin-bottom: 40px;
  }
}

@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_whyus .whyus {
    display: flex;
    justify-content: space-around;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_whyus .whyus {
    display: flex;
    justify-content: space-around;
  }
}
@media (min-width: 1280px) {
  #block_whyus .whyus {
    display: flex;
    justify-content: space-around;
  }
}
#block_whyus .whyus__left {
  position: relative;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_whyus .whyus__left {
    width: 48%;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_whyus .whyus__left {
    width: 48%;
  }
}
@media (min-width: 1280px) {
  #block_whyus .whyus__left {
    width: 48%;
  }
}
#block_whyus .whyus__right {
  padding-top: 80px;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_whyus .whyus__right {
    width: 48%;
    padding-top: 0;
    padding: 20px 0;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_whyus .whyus__right {
    width: 48%;
    padding-top: unset;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (min-width: 1280px) {
  #block_whyus .whyus__right {
    width: 48%;
    padding-top: unset;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_whyus .whyus__photo {
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 1280px) {
  #block_whyus .whyus__photo {
    border-radius: 50px;
  }
}
#block_whyus .whyus__numbers {
  position: absolute;
  bottom: -50px;
  left: 20px;
  z-index: 999;
  display: flex;
  justify-content: center;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_whyus .whyus__numbers {
    bottom: 0;
    right: 0;
    left: unset;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_whyus .whyus__numbers {
    bottom: 0;
    right: 0;
    left: unset;
  }
}
@media (min-width: 1280px) {
  #block_whyus .whyus__numbers {
    bottom: 0;
    right: 0;
    left: unset;
  }
}
#block_whyus .whyus__projects {
  width: 200px;
  height: 100px;
  background-color: #ffce00;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#block_whyus .whyus__projects p {
  color: #fff;
  font-size: 2.7rem;
  line-height: 30px;
  font-family: "Bebas Neue", sans-serif;
}
#block_whyus .whyus__topText {
  font-family: "Roboto Condensed", sans-serif;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_whyus .whyus__topText {
    font-size: 2rem;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_whyus .whyus__topText {
    font-size: 1.8rem;
  }
}
@media (min-width: 1280px) {
  #block_whyus .whyus__topText {
    font-size: 1.8rem;
  }
}
#block_whyus .whyus__header {
  font-family: "Bebas Neue", sans-serif;
  color: #ffce00;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_whyus .whyus__header {
    font-size: 4.7rem;
    line-height: 45px;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_whyus .whyus__header {
    font-size: 4.7rem;
    line-height: 45px;
  }
}
@media (min-width: 1280px) {
  #block_whyus .whyus__header {
    font-size: 4.7rem;
    line-height: 45px;
  }
}
#block_whyus .whyus__text {
  font-size: 1.7rem;
  line-height: 19px;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_whyus .whyus__text {
    font-size: 1.5rem;
    line-height: 17px;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_whyus .whyus__text {
    font-size: 1.5rem;
    line-height: 17px;
  }
}
@media (min-width: 1280px) {
  #block_whyus .whyus__text {
    font-size: 2rem;
    line-height: 21px;
  }
}

#block_gallery .gallery-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
#block_gallery .gallery-item {
  flex: 0 0 calc((100% - 20px) / 3);
  max-width: calc((100% - 20px) / 3);
  position: relative;
}
#block_gallery .gallery-item a {
  display: block;
}
#block_gallery .gallery-item img {
  width: 100%;
  height: 200px;
  display: block;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  #block_gallery .gallery-item {
    flex: 0 0 calc((100% - 20px) / 3);
    max-width: calc((100% - 20px) / 3);
  }
}
@media (min-width: 992px) {
  #block_gallery .gallery-item {
    flex: 0 0 calc((100% - 30px) / 4);
    max-width: calc((100% - 30px) / 4);
  }
}
@media (min-width: 1200px) {
  #block_gallery .gallery-item {
    flex: 0 0 calc((100% - 50px) / 6);
    max-width: calc((100% - 50px) / 6);
  }
}
@media (min-width: 1660px) {
  #block_gallery .gallery-item {
    flex: 0 0 calc((100% - 70px) / 8);
    max-width: calc((100% - 70px) / 8);
  }
}