@charset "UTF-8";
/* Globalne style (SCSS) */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
/* 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: center;
  background-repeat: no-repeat;
  background-image: url(images/aktualnosci.webp);
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#article__hero .article__header {
  font-weight: normal;
  z-index: 2;
  text-align: center;
  font-size: 5rem;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
}
#article__hero .article__header h1 {
  margin: 0;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #article__hero .article__header {
    bottom: 0;
  }
}
@media (min-width: 1280px) {
  #article__hero .article__header {
    font-size: 11rem;
    bottom: -120px;
  }
}
#article__hero .article__box {
  display: flex;
  justify-content: center;
}

header ul a:visited {
  color: #1e1e1e !important;
}
header ul,
header li {
  list-style: none !important;
}
header.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: #fff;
  overflow: visible;
}
header.site-header .header,
header.site-header .site-header__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
  overflow: visible;
}

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

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

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

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

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

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

html.no-scroll {
  overflow: hidden;
}

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

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

.blog .article-container {
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 400px;
  margin-bottom: 40px;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  .blog .article-container {
    height: 450px;
  }
}
.blog .article-container .thumbnail-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 300px;
  border: none;
  padding: 0;
  margin: 0;
}
.blog .article-container .thumbnail-image img {
  display: none;
}
.blog .article-container h2 {
  font-size: 2rem;
  margin-top: 20px;
  margin-bottom: 0;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  .blog .article-container h2 {
    height: 80px;
  }
}
.blog .article-container h2 a {
  color: #3757a1;
}
.blog .article-container h2 a:visited {
  color: #3757a1;
}
.blog .article-container h2 a:hover {
  text-decoration: none;
  color: #3757a1;
}
.blog .article-container a {
  color: #3757a1;
}
.blog .article-container a:visited {
  color: #3757a1;
}
.blog .article-container a:hover {
  text-decoration: none;
  color: #3757a1;
}
.blog .article-container .article-content {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding-bottom: 20px;
  font-size: 1.7rem;
}
.blog .article-container .article-content:hover {
  text-decoration: none;
}
.blog .article-container .article-content .entry-content {
  margin-bottom: 15px;
}
.blog .article-container .article-content a.btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-family: inherit;
  font-weight: 500;
  color: #fff !important;
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #3757a1, #3757a1);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  border: 1px solid #3757a1;
  text-decoration: none !important;
  border-radius: 10px;
  padding: 12px 24px;
  cursor: pointer;
  outline: none;
  min-width: 120px;
  max-width: 50%;
  text-transform: none;
  transition: background-size 0.45s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
@media (min-width: 1280px) {
  .blog .article-container .article-content a.btn {
    max-width: 25%;
  }
}
@media (min-width: 1500px) {
  .blog .article-container .article-content a.btn {
    max-width: 25%;
  }
}
@media (min-width: 1700px) {
  .blog .article-container .article-content a.btn {
    max-width: 25%;
  }
}
.blog .article-container .article-content a.btn:hover {
  background-size: 100% 100%, 100% 100%;
  color: #1e1e1e !important;
  border-color: #3757a1;
  transform: translateY(-1px);
}
.blog .article-container .article-content a.btn:active {
  transform: translateY(0);
}
.blog .article-container .article-content a.btn:focus {
  outline: 2px solid #3757a1;
  outline-offset: 3px;
}
.blog .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.blog .pagination .page-numbers {
  margin: 0 5px;
  font-size: 1.6rem;
  text-decoration: none;
  color: #E5E5E5;
}
.blog .pagination .page-numbers:hover {
  color: #3757a1;
}
.blog .pagination .page-numbers.current {
  color: #3757a1;
  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: #3757a1;
  padding-top: 40px;
  position: relative;
}
#block_footer .breadcrumbs {
  color: #fff;
  padding-bottom: 20px;
}
#block_footer .breadcrumbs a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
#block_footer .breadcrumbs a:hover {
  opacity: 0.8;
}
@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: #3757a1;
  height: 1px;
  margin-bottom: 10px;
}
#block_footer .footer__brand img {
  width: 50%;
  margin-bottom: 20px;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_footer .footer__brand img {
    width: 25%;
  }
}
#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: 25%;
  }
}
#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-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#block_footer .footer__menu-nav a {
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
#block_footer .footer__menu-nav a:hover {
  opacity: 0.8;
}
#block_footer .footer__contact {
  display: block;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_footer .footer__contact {
    width: 30%;
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 1280px) {
  #block_footer .footer__contact {
    width: 35%;
    display: flex;
    flex-direction: column;
  }
}
#block_footer .footer__contact h5 {
  padding-top: 30px;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_footer .footer__contact h5 {
    padding: 0;
  }
}
#block_footer .footer__contact-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#block_footer .footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #fff !important;
  font-size: 1.4rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
#block_footer .footer__contact-item:hover {
  opacity: 0.8;
}
#block_footer .footer__contact-item span {
  line-height: 1.6;
}
#block_footer .footer__contact-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
  margin-top: 3px;
}
#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;
  font-family: "DM Sans", sans-serif;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

p {
  margin-bottom: 0 !important;
}

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

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

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

h3 {
  font-family: "DM Sans", sans-serif;
  font-weight: 200;
}

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

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

/* Style dla bloków */
#block_banner {
  position: relative;
  width: 100%;
  color: #fff;
  text-align: center;
  overflow: hidden;
  background: url("images/tlo1.webp") center top/cover no-repeat;
}
#block_banner .banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
#block_banner .banner__bg::after {
  content: "";
  position: absolute;
  inset: 0;
}
#block_banner .banner__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 10vh;
  padding: 30px 20px;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_banner .banner__content {
    padding: 20px 20px;
    min-height: auto;
  }
}
#block_banner .banner__logo {
  margin-bottom: 20px;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_banner .banner__logo {
    margin-bottom: 10px;
  }
}
#block_banner .banner__logo img {
  max-width: 160px;
  height: auto;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_banner .banner__logo img {
    max-width: 120px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_banner .banner__logo img {
    max-width: 200px;
  }
}
#block_banner .banner__title {
  font-family: "DM Sans", sans-serif;
  font-size: 2.8rem;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 30px;
  color: #fff;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_banner .banner__title {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_banner .banner__title {
    font-size: 2.2rem;
  }
}
@media (min-width: 1700px) {
  #block_banner .banner__title {
    font-size: 2.8rem;
  }
}
#block_banner .banner__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  color: #1e1e1e !important;
  background-image: linear-gradient(90deg, #3757a1, #3757a1), linear-gradient(90deg, #fff, #fff);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  border: 1px solid #fff;
  transition: background-size 0.45s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
#block_banner .banner__button:hover {
  background-size: 100% 100%, 100% 100%;
  color: #fff !important;
  border-color: #fff;
  transform: translateY(-1px);
}
#block_banner .banner__button:active {
  transform: translateY(0);
}
#block_banner .banner__button:focus {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_banner .banner__button {
    font-size: 1rem;
    padding: 8px 16px;
    gap: 6px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_banner .banner__button {
    font-size: 1.35rem;
    padding: 9px 18px;
    gap: 7px;
  }
}
@media (min-width: 1700px) {
  #block_banner .banner__button {
    font-size: 1.1rem;
    padding: 16px 30px;
  }
}
#block_banner .banner__icon {
  display: flex;
  align-items: center;
}
#block_banner .banner__icon svg {
  width: 20px;
  height: 20px;
}
@media (min-width: 1700px) {
  #block_banner .banner__icon svg {
    width: 24px;
    height: 24px;
  }
}
#block_banner .banner__text strong {
  color: #1e1e1e;
  font-weight: 700;
}

#block_cennikbiofeed {
  background-color: #fff;
  padding: 30px 0;
}
#block_cennikbiofeed .cennik__header {
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #1e1e1e;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cennikbiofeed .cennik__header {
    font-size: 3.9rem;
    margin-bottom: 50px;
  }
}
#block_cennikbiofeed .cennik__subheader {
  font-family: "DM Sans", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #3757a1;
  margin-bottom: 25px;
  text-align: left;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cennikbiofeed .cennik__subheader {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
}
#block_cennikbiofeed .cennik__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}
#block_cennikbiofeed .cennik__table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
#block_cennikbiofeed .cennik__table thead {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
#block_cennikbiofeed .cennik__table tbody tr {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: background-color 0.6s ease;
}
#block_cennikbiofeed .cennik__table tbody tr:hover {
  background-color: #d9e2f3;
}
#block_cennikbiofeed .cennik__table td {
  padding: 12px 8px;
  font-family: "DM Sans", sans-serif;
  color: #1e1e1e;
  line-height: 1.2;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_cennikbiofeed .cennik__table td {
    padding: 20px 20px;
    line-height: 1.3;
  }
}
@media (min-width: 1280px) {
  #block_cennikbiofeed .cennik__table td {
    padding: 25px 25px;
  }
}
#block_cennikbiofeed .cennik__table td:first-child {
  font-size: 1.4rem;
  font-weight: 600;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  width: 50%;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cennikbiofeed .cennik__table td:first-child {
    font-size: 1.9rem;
    width: 60%;
  }
}
#block_cennikbiofeed .cennik__table td:nth-child(2) {
  font-family: "DM Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #3757a1;
  text-align: center;
  width: 25%;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cennikbiofeed .cennik__table td:nth-child(2) {
    font-size: 1.7rem;
    width: 20%;
  }
}
#block_cennikbiofeed .cennik__table td:last-child {
  font-size: 1.5rem;
  font-weight: bold;
  color: #3757a1;
  text-align: right;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  width: 25%;
  white-space: nowrap;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cennikbiofeed .cennik__table td:last-child {
    font-size: 2.2rem;
    width: 20%;
  }
}

#block_cennikfizjoterapia {
  background-color: #fff;
  padding: 30px 0;
}
#block_cennikfizjoterapia .cennik__header {
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #1e1e1e;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cennikfizjoterapia .cennik__header {
    font-size: 3.9rem;
    margin-bottom: 50px;
  }
}
#block_cennikfizjoterapia .cennik__subheader {
  font-family: "DM Sans", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #3757a1;
  margin-bottom: 25px;
  text-align: left;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cennikfizjoterapia .cennik__subheader {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
}
#block_cennikfizjoterapia .cennik__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}
#block_cennikfizjoterapia .cennik__table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
#block_cennikfizjoterapia .cennik__table thead {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
#block_cennikfizjoterapia .cennik__table tbody tr {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: background-color 0.6s ease;
}
#block_cennikfizjoterapia .cennik__table tbody tr:hover {
  background-color: #d9e2f3;
}
#block_cennikfizjoterapia .cennik__table td {
  padding: 12px 8px;
  font-family: "DM Sans", sans-serif;
  color: #1e1e1e;
  line-height: 1.2;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_cennikfizjoterapia .cennik__table td {
    padding: 20px 20px;
    line-height: 1.3;
  }
}
@media (min-width: 1280px) {
  #block_cennikfizjoterapia .cennik__table td {
    padding: 25px 25px;
  }
}
#block_cennikfizjoterapia .cennik__table td:first-child {
  font-size: 1.4rem;
  font-weight: 600;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  width: 50%;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cennikfizjoterapia .cennik__table td:first-child {
    font-size: 1.9rem;
    width: 60%;
  }
}
#block_cennikfizjoterapia .cennik__table td:nth-child(2) {
  font-family: "DM Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #3757a1;
  text-align: center;
  width: 25%;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cennikfizjoterapia .cennik__table td:nth-child(2) {
    font-size: 1.7rem;
    width: 20%;
  }
}
#block_cennikfizjoterapia .cennik__table td:last-child {
  font-size: 1.5rem;
  font-weight: bold;
  color: #3757a1;
  text-align: right;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  width: 25%;
  white-space: nowrap;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cennikfizjoterapia .cennik__table td:last-child {
    font-size: 2.2rem;
    width: 20%;
  }
}

#block_cenniklogopeda {
  background-color: #fff;
  padding: 30px 0;
}
#block_cenniklogopeda .cennik__header {
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #1e1e1e;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cenniklogopeda .cennik__header {
    font-size: 3.9rem;
    margin-bottom: 50px;
  }
}
#block_cenniklogopeda .cennik__subheader {
  font-family: "DM Sans", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #3757a1;
  margin-bottom: 25px;
  text-align: left;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cenniklogopeda .cennik__subheader {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
}
#block_cenniklogopeda .cennik__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}
#block_cenniklogopeda .cennik__table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
#block_cenniklogopeda .cennik__table thead {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
#block_cenniklogopeda .cennik__table tbody tr {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: background-color 0.6s ease;
}
#block_cenniklogopeda .cennik__table tbody tr:hover {
  background-color: #d9e2f3;
}
#block_cenniklogopeda .cennik__table td {
  padding: 12px 8px;
  font-family: "DM Sans", sans-serif;
  color: #1e1e1e;
  line-height: 1.2;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_cenniklogopeda .cennik__table td {
    padding: 20px 20px;
    line-height: 1.3;
  }
}
@media (min-width: 1280px) {
  #block_cenniklogopeda .cennik__table td {
    padding: 25px 25px;
  }
}
#block_cenniklogopeda .cennik__table td:first-child {
  font-size: 1.4rem;
  font-weight: 600;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  width: 50%;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cenniklogopeda .cennik__table td:first-child {
    font-size: 1.9rem;
    width: 60%;
  }
}
#block_cenniklogopeda .cennik__table td:nth-child(2) {
  font-family: "DM Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #3757a1;
  text-align: center;
  width: 25%;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cenniklogopeda .cennik__table td:nth-child(2) {
    font-size: 1.7rem;
    width: 20%;
  }
}
#block_cenniklogopeda .cennik__table td:last-child {
  font-size: 1.5rem;
  font-weight: bold;
  color: #3757a1;
  text-align: right;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  width: 25%;
  white-space: nowrap;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cenniklogopeda .cennik__table td:last-child {
    font-size: 2.2rem;
    width: 20%;
  }
}

#block_cennikmikro {
  background-color: #fff;
  padding: 30px 0;
}
#block_cennikmikro .cennik__header {
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #1e1e1e;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cennikmikro .cennik__header {
    font-size: 3.9rem;
    margin-bottom: 50px;
  }
}
#block_cennikmikro .cennik__subheader {
  font-family: "DM Sans", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #3757a1;
  margin-bottom: 25px;
  text-align: left;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cennikmikro .cennik__subheader {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
}
#block_cennikmikro .cennik__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}
#block_cennikmikro .cennik__table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
#block_cennikmikro .cennik__table thead {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
#block_cennikmikro .cennik__table tbody tr {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: background-color 0.6s ease;
}
#block_cennikmikro .cennik__table tbody tr:hover {
  background-color: #d9e2f3;
}
#block_cennikmikro .cennik__table td {
  padding: 12px 8px;
  font-family: "DM Sans", sans-serif;
  color: #1e1e1e;
  line-height: 1.2;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_cennikmikro .cennik__table td {
    padding: 20px 20px;
    line-height: 1.3;
  }
}
@media (min-width: 1280px) {
  #block_cennikmikro .cennik__table td {
    padding: 25px 25px;
  }
}
#block_cennikmikro .cennik__table td:first-child {
  font-size: 1.4rem;
  font-weight: 600;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  width: 50%;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cennikmikro .cennik__table td:first-child {
    font-size: 1.9rem;
    width: 60%;
  }
}
#block_cennikmikro .cennik__table td:nth-child(2) {
  font-family: "DM Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #3757a1;
  text-align: center;
  width: 25%;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cennikmikro .cennik__table td:nth-child(2) {
    font-size: 1.7rem;
    width: 20%;
  }
}
#block_cennikmikro .cennik__table td:last-child {
  font-size: 1.5rem;
  font-weight: bold;
  color: #3757a1;
  text-align: right;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  width: 25%;
  white-space: nowrap;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cennikmikro .cennik__table td:last-child {
    font-size: 2.2rem;
    width: 20%;
  }
}

#block_cennikneurologopeda {
  background-color: #fff;
  padding: 30px 0;
}
#block_cennikneurologopeda .cennik__header {
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #1e1e1e;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cennikneurologopeda .cennik__header {
    font-size: 3.9rem;
    margin-bottom: 50px;
  }
}
#block_cennikneurologopeda .cennik__subheader {
  font-family: "DM Sans", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #3757a1;
  margin-bottom: 25px;
  text-align: left;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cennikneurologopeda .cennik__subheader {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
}
#block_cennikneurologopeda .cennik__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}
#block_cennikneurologopeda .cennik__table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
#block_cennikneurologopeda .cennik__table thead {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
#block_cennikneurologopeda .cennik__table tbody tr {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: background-color 0.6s ease;
}
#block_cennikneurologopeda .cennik__table tbody tr:hover {
  background-color: #d9e2f3;
}
#block_cennikneurologopeda .cennik__table td {
  padding: 12px 8px;
  font-family: "DM Sans", sans-serif;
  color: #1e1e1e;
  line-height: 1.2;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_cennikneurologopeda .cennik__table td {
    padding: 20px 20px;
    line-height: 1.3;
  }
}
@media (min-width: 1280px) {
  #block_cennikneurologopeda .cennik__table td {
    padding: 25px 25px;
  }
}
#block_cennikneurologopeda .cennik__table td:first-child {
  font-size: 1.4rem;
  font-weight: 600;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  width: 50%;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cennikneurologopeda .cennik__table td:first-child {
    font-size: 1.9rem;
    width: 60%;
  }
}
#block_cennikneurologopeda .cennik__table td:nth-child(2) {
  font-family: "DM Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #3757a1;
  text-align: center;
  width: 25%;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cennikneurologopeda .cennik__table td:nth-child(2) {
    font-size: 1.7rem;
    width: 20%;
  }
}
#block_cennikneurologopeda .cennik__table td:last-child {
  font-size: 1.5rem;
  font-weight: bold;
  color: #3757a1;
  text-align: right;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  width: 25%;
  white-space: nowrap;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cennikneurologopeda .cennik__table td:last-child {
    font-size: 2.2rem;
    width: 20%;
  }
}

#block_cennikopinie {
  background-color: #fff;
  padding: 30px 0;
}
#block_cennikopinie .cennik__header {
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #1e1e1e;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cennikopinie .cennik__header {
    font-size: 3.9rem;
    margin-bottom: 50px;
  }
}
#block_cennikopinie .cennik__subheader {
  font-family: "DM Sans", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #3757a1;
  margin-bottom: 25px;
  text-align: left;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cennikopinie .cennik__subheader {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
}
#block_cennikopinie .cennik__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}
#block_cennikopinie .cennik__table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
#block_cennikopinie .cennik__table thead {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
#block_cennikopinie .cennik__table tbody tr {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: background-color 0.6s ease;
}
#block_cennikopinie .cennik__table tbody tr:hover {
  background-color: #d9e2f3;
}
#block_cennikopinie .cennik__table td {
  padding: 12px 8px;
  font-family: "DM Sans", sans-serif;
  color: #1e1e1e;
  line-height: 1.2;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_cennikopinie .cennik__table td {
    padding: 20px 20px;
    line-height: 1.3;
  }
}
@media (min-width: 1280px) {
  #block_cennikopinie .cennik__table td {
    padding: 25px 25px;
  }
}
#block_cennikopinie .cennik__table td:first-child {
  font-size: 1.4rem;
  font-weight: 600;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  width: 50%;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cennikopinie .cennik__table td:first-child {
    font-size: 1.9rem;
    width: 60%;
  }
}
#block_cennikopinie .cennik__table td:nth-child(2) {
  font-family: "DM Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #3757a1;
  text-align: center;
  width: 25%;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cennikopinie .cennik__table td:nth-child(2) {
    font-size: 1.7rem;
    width: 20%;
  }
}
#block_cennikopinie .cennik__table td:last-child {
  font-size: 1.5rem;
  font-weight: bold;
  color: #3757a1;
  text-align: right;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  width: 25%;
  white-space: nowrap;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cennikopinie .cennik__table td:last-child {
    font-size: 2.2rem;
    width: 20%;
  }
}

#block_cennikpedagog {
  background-color: #fff;
  padding: 30px 0;
}
#block_cennikpedagog .cennik__header {
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #1e1e1e;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cennikpedagog .cennik__header {
    font-size: 3.9rem;
    margin-bottom: 50px;
  }
}
#block_cennikpedagog .cennik__subheader {
  font-family: "DM Sans", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #3757a1;
  margin-bottom: 25px;
  text-align: left;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cennikpedagog .cennik__subheader {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
}
#block_cennikpedagog .cennik__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}
#block_cennikpedagog .cennik__table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
#block_cennikpedagog .cennik__table thead {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
#block_cennikpedagog .cennik__table tbody tr {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: background-color 0.6s ease;
}
#block_cennikpedagog .cennik__table tbody tr:hover {
  background-color: #d9e2f3;
}
#block_cennikpedagog .cennik__table td {
  padding: 12px 8px;
  font-family: "DM Sans", sans-serif;
  color: #1e1e1e;
  line-height: 1.2;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_cennikpedagog .cennik__table td {
    padding: 20px 20px;
    line-height: 1.3;
  }
}
@media (min-width: 1280px) {
  #block_cennikpedagog .cennik__table td {
    padding: 25px 25px;
  }
}
#block_cennikpedagog .cennik__table td:first-child {
  font-size: 1.4rem;
  font-weight: 600;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  width: 50%;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cennikpedagog .cennik__table td:first-child {
    font-size: 1.9rem;
    width: 60%;
  }
}
#block_cennikpedagog .cennik__table td:nth-child(2) {
  font-family: "DM Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #3757a1;
  text-align: center;
  width: 25%;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cennikpedagog .cennik__table td:nth-child(2) {
    font-size: 1.7rem;
    width: 20%;
  }
}
#block_cennikpedagog .cennik__table td:last-child {
  font-size: 1.5rem;
  font-weight: bold;
  color: #3757a1;
  text-align: right;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  width: 25%;
  white-space: nowrap;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cennikpedagog .cennik__table td:last-child {
    font-size: 2.2rem;
    width: 20%;
  }
}

#block_cennikpsycholog {
  background-color: #fff;
  padding: 30px 0;
}
#block_cennikpsycholog .cennik__header {
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #1e1e1e;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cennikpsycholog .cennik__header {
    font-size: 3.9rem;
    margin-bottom: 50px;
  }
}
#block_cennikpsycholog .cennik__subheader {
  font-family: "DM Sans", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #3757a1;
  margin-bottom: 25px;
  text-align: left;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cennikpsycholog .cennik__subheader {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
}
#block_cennikpsycholog .cennik__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}
#block_cennikpsycholog .cennik__table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
#block_cennikpsycholog .cennik__table thead {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
#block_cennikpsycholog .cennik__table tbody tr {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: background-color 0.6s ease;
}
#block_cennikpsycholog .cennik__table tbody tr:hover {
  background-color: #d9e2f3;
}
#block_cennikpsycholog .cennik__table td {
  padding: 12px 8px;
  font-family: "DM Sans", sans-serif;
  color: #1e1e1e;
  line-height: 1.2;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_cennikpsycholog .cennik__table td {
    padding: 20px 20px;
    line-height: 1.3;
  }
}
@media (min-width: 1280px) {
  #block_cennikpsycholog .cennik__table td {
    padding: 25px 25px;
  }
}
#block_cennikpsycholog .cennik__table td:first-child {
  font-size: 1.4rem;
  font-weight: 600;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  width: 50%;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cennikpsycholog .cennik__table td:first-child {
    font-size: 1.9rem;
    width: 60%;
  }
}
#block_cennikpsycholog .cennik__table td:nth-child(2) {
  font-family: "DM Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #3757a1;
  text-align: center;
  width: 25%;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cennikpsycholog .cennik__table td:nth-child(2) {
    font-size: 1.7rem;
    width: 20%;
  }
}
#block_cennikpsycholog .cennik__table td:last-child {
  font-size: 1.5rem;
  font-weight: bold;
  color: #3757a1;
  text-align: right;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  width: 25%;
  white-space: nowrap;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cennikpsycholog .cennik__table td:last-child {
    font-size: 2.2rem;
    width: 20%;
  }
}

#block_cenniktreningi {
  background-color: #fff;
  padding: 30px 0;
}
#block_cenniktreningi .cennik__header {
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #1e1e1e;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cenniktreningi .cennik__header {
    font-size: 3.9rem;
    margin-bottom: 50px;
  }
}
#block_cenniktreningi .cennik__subheader {
  font-family: "DM Sans", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #3757a1;
  margin-bottom: 25px;
  text-align: left;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cenniktreningi .cennik__subheader {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
}
#block_cenniktreningi .cennik__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}
#block_cenniktreningi .cennik__table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
#block_cenniktreningi .cennik__table thead {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
#block_cenniktreningi .cennik__table tbody tr {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: background-color 0.6s ease;
}
#block_cenniktreningi .cennik__table tbody tr:hover {
  background-color: #d9e2f3;
}
#block_cenniktreningi .cennik__table td {
  padding: 12px 8px;
  font-family: "DM Sans", sans-serif;
  color: #1e1e1e;
  line-height: 1.2;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_cenniktreningi .cennik__table td {
    padding: 20px 20px;
    line-height: 1.3;
  }
}
@media (min-width: 1280px) {
  #block_cenniktreningi .cennik__table td {
    padding: 25px 25px;
  }
}
#block_cenniktreningi .cennik__table td:first-child {
  font-size: 1.4rem;
  font-weight: 600;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  width: 50%;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cenniktreningi .cennik__table td:first-child {
    font-size: 1.9rem;
    width: 60%;
  }
}
#block_cenniktreningi .cennik__table td:nth-child(2) {
  font-family: "DM Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #3757a1;
  text-align: center;
  width: 25%;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cenniktreningi .cennik__table td:nth-child(2) {
    font-size: 1.7rem;
    width: 20%;
  }
}
#block_cenniktreningi .cennik__table td:last-child {
  font-size: 1.5rem;
  font-weight: bold;
  color: #3757a1;
  text-align: right;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  width: 25%;
  white-space: nowrap;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cenniktreningi .cennik__table td:last-child {
    font-size: 2.2rem;
    width: 20%;
  }
}

#block_cenniktreningisluchowe {
  background-color: #fff;
  padding: 30px 0;
}
#block_cenniktreningisluchowe .cennik__header {
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #1e1e1e;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cenniktreningisluchowe .cennik__header {
    font-size: 3.9rem;
    margin-bottom: 50px;
  }
}
#block_cenniktreningisluchowe .cennik__subheader {
  font-family: "DM Sans", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #3757a1;
  margin-bottom: 25px;
  text-align: left;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cenniktreningisluchowe .cennik__subheader {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
}
#block_cenniktreningisluchowe .cennik__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}
#block_cenniktreningisluchowe .cennik__table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
#block_cenniktreningisluchowe .cennik__table thead {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
#block_cenniktreningisluchowe .cennik__table tbody tr {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: background-color 0.6s ease;
}
#block_cenniktreningisluchowe .cennik__table tbody tr:hover {
  background-color: #d9e2f3;
}
#block_cenniktreningisluchowe .cennik__table td {
  padding: 12px 8px;
  font-family: "DM Sans", sans-serif;
  color: #1e1e1e;
  line-height: 1.2;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_cenniktreningisluchowe .cennik__table td {
    padding: 20px 20px;
    line-height: 1.3;
  }
}
@media (min-width: 1280px) {
  #block_cenniktreningisluchowe .cennik__table td {
    padding: 25px 25px;
  }
}
#block_cenniktreningisluchowe .cennik__table td:first-child {
  font-size: 1.4rem;
  font-weight: 600;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  width: 50%;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cenniktreningisluchowe .cennik__table td:first-child {
    font-size: 1.9rem;
    width: 60%;
  }
}
#block_cenniktreningisluchowe .cennik__table td:nth-child(2) {
  font-family: "DM Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #3757a1;
  text-align: center;
  width: 25%;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cenniktreningisluchowe .cennik__table td:nth-child(2) {
    font-size: 1.7rem;
    width: 20%;
  }
}
#block_cenniktreningisluchowe .cennik__table td:last-child {
  font-size: 1.5rem;
  font-weight: bold;
  color: #3757a1;
  text-align: right;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  width: 25%;
  white-space: nowrap;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_cenniktreningisluchowe .cennik__table td:last-child {
    font-size: 2.2rem;
    width: 20%;
  }
}

#block_contactform {
  background-color: #E5E5E5;
  padding: 40px 0;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_contactform {
    padding: 60px 40px;
  }
}
#block_contactform .form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
#block_contactform .form-col {
  flex: 1;
  min-width: 260px;
}
#block_contactform input,
#block_contactform select,
#block_contactform textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  box-sizing: border-box;
}
#block_contactform textarea {
  min-height: 180px;
}
#block_contactform input[type=submit] {
  background: #94924c;
  width: 30%;
  color: #fff;
  border: none;
  padding: 10px 30px;
  cursor: pointer;
  transition: background 0.2s;
}
#block_contactform input[type=submit]:hover {
  background: #7b7a3c;
}
#block_contactform .contact {
  background-color: #E5E5E5;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 30px;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_contactform .contact {
    flex-direction: row-reverse;
    min-height: 500px;
    gap: 15px;
  }
}
@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__header {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  color: #1e1e1e;
}
#block_contactform .contact__desc {
  font-size: 2rem;
  margin: auto;
  text-align: center;
}
@media (min-width: 1280px) {
  #block_contactform .contact__desc {
    width: 40%;
  }
}
#block_contactform .contact__hours {
  background-color: #fff;
  margin-top: 20px;
  border-radius: 5px 5px 30px 30px;
  padding: 20px;
  width: 100%;
}
#block_contactform .contact__button {
  display: flex;
  justify-content: flex-start;
  width: 100% ś;
}
#block_contactform .contact__appointment-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  margin-left: 0 !important;
  padding: 12px 24px;
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  text-decoration: none !important;
  cursor: pointer;
  color: #fff !important;
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #3757a1, #3757a1);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  border: 1px solid #3757a1;
  transition: background-size 0.45s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_contactform .contact__appointment-btn {
    font-size: 1.3rem;
    padding: 8px 16px;
  }
}
#block_contactform .contact__appointment-btn:hover {
  background-size: 100% 100%, 100% 100%;
  color: #1e1e1e !important;
  border-color: #3757a1;
  transform: translateY(-1px);
}
#block_contactform .contact__appointment-btn:active {
  transform: translateY(0);
}
#block_contactform .contact__appointment-btn:focus {
  outline: 2px solid #3757a1;
  outline-offset: 3px;
}
#block_contactform .contact__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#block_contactform .contact__icon img {
  width: 25px;
  height: 25px;
}
#block_contactform .contact__icon--phone {
  background-color: #9cae55;
}
#block_contactform .contact__icon--email {
  background-color: #c26b6b;
}
#block_contactform .contact__icon--address {
  background-color: #a4bcd6;
}
#block_contactform .contact__left {
  order: 2;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_contactform .contact__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 35%;
  }
}
@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;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 1500px) {
  #block_contactform .contact__left {
    width: 30%;
  }
}
#block_contactform .contact__content strong {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #1e1e1e;
}
#block_contactform .contact__content a:hover {
  text-decoration: underline;
}
#block_contactform .contact__right {
  padding: 40px 30px;
  background-color: #fff;
  border-radius: 5px 5px 30px 30px;
  z-index: 999;
  order: 1;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_contactform .contact__right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 65%;
    padding: 30px 20px;
  }
}
@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%;
    margin-left: 30px;
  }
}
@media (min-width: 1500px) {
  #block_contactform .contact__right {
    width: 70%;
  }
}
#block_contactform .contact__info {
  display: flex;
  flex-direction: column;
  gap: 25px;
  border-radius: 5px 5px 30px 30px;
  background-color: #fff;
  width: 100%;
  font-family: "DM Sans", sans-serif;
  padding: 40px 20px;
  margin-top: 20px;
}
#block_contactform .contact__info h4 {
  font-size: 2.8rem;
  font-weight: bold;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_contactform .contact__info {
    margin-top: 0;
  }
}
@media (min-width: 1280px) {
  #block_contactform .contact__info {
    margin-top: 0;
  }
}
#block_contactform .contact__item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
#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: #1e1e1e;
  font-size: 1.6rem;
  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.5rem;
  line-height: 1.3;
  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 .contact__label {
  font-size: 2.8rem !important;
  font-weight: bold;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_contactform .contact__label {
    font-size: 2.2rem !important;
    font-weight: 600;
  }
}
#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 select,
#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 select,
  #block_contactform .wpcf7-form textarea {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_contactform .wpcf7-form input[type=text],
  #block_contactform .wpcf7-form input[type=email],
  #block_contactform .wpcf7-form input[type=tel],
  #block_contactform .wpcf7-form select,
  #block_contactform .wpcf7-form textarea {
    margin-bottom: 0;
  }
}
@media (min-width: 1280px) {
  #block_contactform .wpcf7-form input[type=text],
  #block_contactform .wpcf7-form input[type=email],
  #block_contactform .wpcf7-form input[type=tel],
  #block_contactform .wpcf7-form select,
  #block_contactform .wpcf7-form textarea {
    margin-bottom: 0;
  }
}
#block_contactform .wpcf7-form input[type=text]:focus,
#block_contactform .wpcf7-form input[type=email]:focus,
#block_contactform .wpcf7-form input[type=tel]:focus,
#block_contactform .wpcf7-form select:focus,
#block_contactform .wpcf7-form textarea:focus {
  border-bottom-color: #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 select::placeholder,
#block_contactform .wpcf7-form textarea::placeholder {
  color: #999;
  font-style: italic;
}
#block_contactform .wpcf7-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 20px;
  padding-right: 30px;
  cursor: pointer;
}
#block_contactform .wpcf7-form select::-ms-expand {
  display: none;
}
#block_contactform .wpcf7-form textarea {
  min-height: 40px;
  height: 110px;
  resize: vertical;
  padding-top: 12px;
}
#block_contactform .wpcf7-form .form-submit-section {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_contactform .wpcf7-form .form-submit-section {
    align-items: flex-start;
  }
}
@media (min-width: 1280px) {
  #block_contactform .wpcf7-form .form-submit-section {
    flex-direction: row;
    justify-content: space-between;
  }
}
#block_contactform .wpcf7-form .consent-text {
  font-size: 1.1rem;
  color: #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 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  text-decoration: none !important;
  cursor: pointer;
  min-width: 120px;
  align-self: flex-start;
  color: #fff !important;
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #3757a1, #3757a1);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  border: 1px solid #3757a1;
  transition: background-size 0.45s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_contactform .wpcf7-form .wpcf7-submit {
    font-size: 1.35rem;
    padding: 9px 18px;
  }
}
#block_contactform .wpcf7-form .wpcf7-submit:hover {
  background-size: 100% 100%, 100% 100%;
  color: #1e1e1e !important;
  border-color: #3757a1;
  transform: translateY(-1px);
}
#block_contactform .wpcf7-form .wpcf7-submit:active {
  transform: translateY(0);
}
#block_contactform .wpcf7-form .wpcf7-submit:focus {
  outline: 2px solid #3757a1;
  outline-offset: 3px;
}
#block_contactform .wpcf7-spinner {
  display: none;
}

#block_elements {
  background-color: #E5E5E5;
  padding: 4rem 0;
}
#block_elements .elements__header {
  font-family: "Playfair Display", serif;
  color: #1e1e1e;
  margin-bottom: 2.5rem;
  padding-bottom: 20px;
}
#block_elements .elements__header h2 {
  font-family: "DM Sans", sans-serif;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 0.8;
  margin-bottom: 1.5rem;
  color: #1e1e1e;
}
#block_elements .elements__header h2 span,
#block_elements .elements__header h2 .highlight {
  color: #3757a1;
  font-weight: bold;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_elements .elements__header h2 {
    font-size: 3.2rem;
  }
}
#block_elements .elements__header em,
#block_elements .elements__header strong,
#block_elements .elements__header b {
  color: var(--color-main);
  font-weight: 700;
}
#block_elements .elements__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  padding: 0 1rem;
}
#block_elements .btn,
#block_elements .elements__btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
  color: #1e1e1e;
  position: relative;
  overflow: hidden;
  line-height: 1.2;
  transition: color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
#block_elements a.btn,
#block_elements a.elements__btn {
  cursor: pointer;
}
#block_elements a.btn::before,
#block_elements a.elements__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  transition: left 0.5s ease;
  z-index: 0;
}
#block_elements a.btn:hover, #block_elements a.btn:focus,
#block_elements a.elements__btn:hover,
#block_elements a.elements__btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
#block_elements a.btn:hover::before, #block_elements a.btn:focus::before,
#block_elements a.elements__btn:hover::before,
#block_elements a.elements__btn:focus::before {
  left: 0;
}
#block_elements a.btn:active,
#block_elements a.elements__btn:active {
  transform: translateY(0);
}
#block_elements a.btn:active::before,
#block_elements a.elements__btn:active::before {
  left: -100%;
}
#block_elements a.btn:focus-visible,
#block_elements a.elements__btn:focus-visible {
  outline: 2px solid var(--color-main);
  outline-offset: 3px;
}
#block_elements .btn--disabled {
  cursor: default;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_elements .btn,
  #block_elements .elements__btn {
    font-size: 1.35rem;
    padding: 9px 18px;
  }
}
@media (min-width: 1280px) {
  #block_elements .elements__buttons {
    gap: 1rem;
  }
  #block_elements .btn,
  #block_elements .elements__btn {
    font-size: 1.6rem;
    padding: 0.9rem 2rem;
  }
}

#block_elements .btn--1 {
  background-color: #4d77a1;
}
#block_elements .btn--2 {
  background-color: #b6d0df;
}
#block_elements .btn--3 {
  background-color: #d4c7a1;
}
#block_elements .btn--4 {
  background-color: #89964d;
}
#block_elements .btn--5 {
  background-color: #c26b68;
}
#block_elements .btn--6 {
  background-color: #bcc47f;
}
#block_elements .btn--7 {
  background-color: #c4c8ba;
}
#block_elements .btn--8 {
  background-color: #dee4e7;
}
#block_elements .btn--9 {
  background-color: #a4bac7;
}
#block_elements .btn--10 {
  background-color: #d9a2a0;
}
#block_elements .btn--11 {
  background-color: #b6d0df;
}
#block_elements .btn--12 {
  background-color: #d4c7a1;
}
#block_elements .elements__bottom {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_elements .elements__bottom {
    gap: 30px;
    margin-top: 60px;
  }
}
#block_elements .elements__bottom-text {
  font-size: 2rem;
  font-weight: 500;
  color: #1e1e1e;
  margin: 0;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_elements .elements__bottom-text {
    font-size: 2.6rem;
  }
}
@media (min-width: 1280px) {
  #block_elements .elements__bottom-text {
    font-size: 3rem;
  }
}
#block_elements .elements__bottom-button {
  font-size: 1.6rem;
  padding: 14px 40px;
  border-radius: 10px;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_elements .elements__bottom-button {
    font-size: 1.35rem;
    padding: 9px 18px;
  }
}
@media (min-width: 1280px) {
  #block_elements .elements__bottom-button {
    font-size: 1.7rem;
    padding: 12px 24px;
  }
}

#block_faq {
  padding: 60px 0;
  background-color: #3757a1;
}
@media (max-width: 767px) {
  #block_faq {
    padding: 40px 0;
  }
}
#block_faq .faq-title-wrapper {
  position: relative;
  margin-bottom: 40px;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_faq .faq-title-wrapper {
    margin-bottom: 50px;
  }
}
@media (min-width: 1280px) {
  #block_faq .faq-title-wrapper {
    margin-bottom: 50px;
  }
}
#block_faq .faq-title-bg {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 120px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_faq .faq-title-bg {
    font-size: 180px;
  }
}
@media (min-width: 1280px) {
  #block_faq .faq-title-bg {
    font-size: 180px;
  }
}
#block_faq .faq-main-title {
  position: relative;
  z-index: 1;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
  text-align: left;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_faq .faq-main-title {
    font-size: 42px;
  }
}
@media (min-width: 1280px) {
  #block_faq .faq-main-title {
    font-size: 42px;
  }
}
#block_faq .faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 767px) {
  #block_faq .faq-grid {
    gap: 30px;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_faq .faq-grid {
    grid-template-columns: 70% 1fr;
    gap: 50px;
  }
}
@media (min-width: 1280px) {
  #block_faq .faq-grid {
    grid-template-columns: 70% 1fr;
    gap: 50px;
  }
}
#block_faq .faq-left {
  width: 100%;
}
#block_faq .faq-wrapper {
  width: 100%;
}
#block_faq .faq-item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
#block_faq .faq-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
#block_faq .faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  transition: background-color 0.3s ease;
}
@media (max-width: 767px) {
  #block_faq .faq-question {
    padding: 16px 20px;
    font-size: 16px;
  }
}
#block_faq .faq-question:hover {
  background-color: #f5f5f5;
}
#block_faq .faq-question:focus {
  outline: none;
}
#block_faq .faq-question[aria-expanded=true] .faq-icon .icon-plus {
  display: none;
}
#block_faq .faq-question[aria-expanded=true] .faq-icon .icon-minus {
  display: block;
}
#block_faq .faq-question-text {
  flex: 1;
  padding-right: 16px;
}
#block_faq .faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: #45901d;
  background: rgba(255, 206, 0, 0.15);
  border: 1px solid rgba(255, 206, 0, 0.3);
  border-radius: 6px;
  padding: 4px;
  transition: all 0.3s ease;
}
#block_faq .faq-icon .icon-minus {
  display: none;
}
#block_faq .faq-icon svg {
  width: 20px;
  height: 20px;
}
#block_faq .faq-question:hover .faq-icon {
  background: rgba(255, 206, 0, 0.25);
  border-color: rgba(255, 206, 0, 0.4);
}
#block_faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
#block_faq .faq-answer[aria-hidden=false] {
  max-height: 1000px;
  transition: max-height 0.5s ease-in;
}
#block_faq .faq-answer-content {
  padding: 0 24px 20px 24px;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  #block_faq .faq-answer-content {
    padding: 0 20px 16px 20px;
    font-size: 15px;
  }
}
#block_faq .faq-answer-content p:first-child {
  margin-top: 0;
}
#block_faq .faq-answer-content p:last-child {
  margin-bottom: 0;
}
#block_faq .faq-no-items {
  text-align: center;
  color: #999;
  font-size: 16px;
  padding: 40px 20px;
}
#block_faq .faq-right {
  width: 100%;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_faq .faq-right {
    position: sticky;
    top: 20px;
  }
}
@media (min-width: 1280px) {
  #block_faq .faq-right {
    position: sticky;
    top: 20px;
  }
}
#block_faq .faq-cta-box {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}
@media (max-width: 767px) {
  #block_faq .faq-cta-box {
    padding: 24px 20px;
  }
}
#block_faq .faq-cta-box:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}
#block_faq .faq-cta-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin: 0 0 24px 0;
  line-height: 1.4;
}
@media (max-width: 767px) {
  #block_faq .faq-cta-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_faq .faq-cta-title {
    font-size: 22px;
  }
}
@media (min-width: 1280px) {
  #block_faq .faq-cta-title {
    font-size: 22px;
  }
}
#block_faq .faq-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-family: inherit;
  font-weight: 500;
  color: #1e1e1e !important;
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #ffce00, #ffce00);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  border: 1px solid #ffce00;
  text-decoration: none !important;
  border-radius: 10px;
  padding: 12px 24px;
  cursor: pointer;
  outline: none;
  min-width: 120px;
  text-transform: none;
  transition: background-size 0.45s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
@media (min-width: 1700px) {
  #block_faq .faq-cta-button {
    font-size: 1.4rem;
    padding: 7px 40px;
  }
}
#block_faq .faq-cta-button:hover {
  background-size: 100% 100%, 100% 100%;
  color: #1e1e1e !important;
  border-color: #ffce00;
  transform: translateY(-1px);
}
#block_faq .faq-cta-button:active {
  transform: translateY(0);
}
#block_faq .faq-cta-button:focus {
  outline: 2px solid #3757a1;
  outline-offset: 3px;
}

#block_header {
  padding-top: 30px;
  text-align: left;
}
#block_header .falktop {
  margin-bottom: 0.5rem;
}
#block_header .header__top {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #3757a1 !important;
  margin-bottom: 1rem;
}
#block_header .header__title h2 {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.1;
  color: #1e1e1e;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  #block_header .header__title h2 {
    line-height: 1.05;
  }
}
#block_header .header__title h2 .highlight {
  color: #3757a1;
}
#block_header .header__text {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  line-height: 1.3;
  color: #1e1e1e;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_header {
    padding: 6rem 0;
  }
  #block_header .header__title h2 {
    font-size: clamp(2rem, 3vw, 3.2rem);
  }
}

#block_hero {
  padding: 4rem 0;
}
#block_hero .hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_hero .hero {
    flex-direction: row;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_hero .hero {
    flex-direction: row;
  }
}
@media (min-width: 1280px) {
  #block_hero .hero {
    flex-direction: row;
    justify-content: space-around;
    text-align: left;
    align-items: center;
    gap: 4rem;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_hero .hero__left {
    width: 70%;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_hero .hero__left {
    width: 50%;
  }
}
@media (min-width: 1280px) {
  #block_hero .hero__left {
    width: 50%;
  }
}
#block_hero .hero__title {
  font-size: 1.8rem;
  font-weight: 400;
  color: #3757a1;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_hero .hero__title {
    font-size: 1.9rem;
  }
}
@media (min-width: 1500px) {
  #block_hero .hero__title {
    font-size: 2rem;
  }
}
#block_hero .hero__subtitle {
  font-family: "DM Sans", sans-serif;
  font-size: 3.2rem;
  line-height: 32px;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #1e1e1e;
}
#block_hero .hero__subtitle .highlight {
  color: #3757a1;
  font-weight: 700;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_hero .hero__subtitle {
    font-size: 3.6rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_hero .hero__subtitle {
    font-size: 3.8rem;
  }
}
@media (min-width: 1500px) {
  #block_hero .hero__subtitle {
    font-size: 4.5rem;
    line-height: 42px;
  }
}
#block_hero .hero__text {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #1e1e1e;
  padding-bottom: 20px;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_hero .hero__text {
    font-size: 1.7rem;
  }
}
@media (min-width: 1500px) {
  #block_hero .hero__text {
    font-size: 1.8rem;
  }
}
#block_hero .hero__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 1rem;
}
@media (min-width: 1280px) {
  #block_hero .hero__buttons {
    justify-content: flex-start;
  }
}
#block_hero .hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_hero .hero__btn {
    font-size: 1.4rem;
    padding: 8px 16px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_hero .hero__btn {
    font-size: 1.35rem;
    padding: 9px 18px;
    gap: 7px;
  }
}
#block_hero .hero__btn--primary {
  color: #fff !important;
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #3757a1, #3757a1);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  border: 1px solid #3757a1;
  transition: background-size 0.45s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
#block_hero .hero__btn--primary .hero__icon {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease-in-out;
}
#block_hero .hero__btn--primary:hover {
  background-size: 100% 100%, 100% 100%;
  color: #1e1e1e !important;
  border-color: #3757a1;
  transform: translateY(-1px);
}
#block_hero .hero__btn--primary:hover .hero__icon {
  filter: brightness(0);
}
#block_hero .hero__btn--primary:active {
  transform: translateY(0);
}
#block_hero .hero__btn--secondary {
  color: #1e1e1e !important;
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, transparent, transparent);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  border: 2px solid #3757a1;
  transition: background-size 0.45s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
#block_hero .hero__btn--secondary:hover {
  background-size: 100% 100%, 100% 100%;
  color: #1e1e1e !important;
  border-color: #3757a1;
  transform: translateY(-1px);
}
#block_hero .hero__btn--secondary:active {
  transform: translateY(0);
}
#block_hero .hero__right {
  display: flex;
  justify-content: end;
  align-items: center;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_hero .hero__right {
    justify-content: center;
    width: 30%;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_hero .hero__right {
    width: 50%;
  }
}
@media (min-width: 1280px) {
  #block_hero .hero__right {
    width: 50%;
  }
}
#block_hero .hero__image-wrapper {
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_hero .hero__image-wrapper {
    width: 100vw;
    height: 300px;
  }
}
#block_hero .hero__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_hero .hero__image {
    height: 100%;
    object-position: top;
  }
}

#block_icons {
  padding: 40px 0;
  position: relative;
}
@media (min-width: 1280px) {
  #block_icons {
    padding: 60px 0;
  }
}
#block_icons .icons__header-section {
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_icons .icons__header-section {
    margin-bottom: 50px;
  }
}
@media (min-width: 1280px) {
  #block_icons .icons__header-section {
    margin-bottom: 60px;
  }
}
#block_icons .icons__toptext {
  margin: 0 0 15px 0;
}
#block_icons .icons__main-header {
  margin: 0;
}
#block_icons .icons__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_icons .icons__wrapper {
    gap: 25px;
  }
}
@media (min-width: 1280px) {
  #block_icons .icons__wrapper {
    gap: 30px;
  }
}
#block_icons .icons__box {
  width: calc(50% - 15px);
  contain: content;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_icons .icons__box {
    width: calc(16.666% - 25px);
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_icons .icons__box {
    width: calc(50% - 15px);
  }
}
@media (min-width: 1280px) {
  #block_icons .icons__box {
    width: calc(33.333% - 20px);
  }
}
@media (min-width: 1500px) {
  #block_icons .icons__box {
    width: calc(16.666% - 25px);
  }
}
#block_icons .icons__box-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
}
#block_icons .icons__icon-container {
  flex-shrink: 0;
  position: relative;
  width: 120px;
  height: 120px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_icons .icons__icon-container {
    width: 80px;
    height: 80px;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_icons .icons__icon-container {
    width: 100px;
    height: 100px;
  }
}
@media (min-width: 1280px) {
  #block_icons .icons__icon-container {
    width: 120px;
    height: 120px;
  }
}
#block_icons .icons__icon-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
#block_icons .icons__lottie-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_icons .icons__lottie-wrapper {
    width: 50px;
    height: 50px;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_icons .icons__lottie-wrapper {
    width: 70px;
    height: 70px;
  }
}
@media (min-width: 1280px) {
  #block_icons .icons__lottie-wrapper {
    width: 80px;
    height: 80px;
  }
}
#block_icons .icons__lottie-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  transition: opacity 0.3s ease;
  z-index: 1;
  object-fit: contain;
}
#block_icons .icons__lottie-fallback.lottie-loaded {
  opacity: 0;
  pointer-events: none;
}
#block_icons .icons__icon {
  width: 80px;
  height: 80px;
  display: block;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_icons .icons__icon {
    width: 50px;
    height: 50px;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_icons .icons__icon {
    width: 70px;
    height: 70px;
  }
}
@media (min-width: 1280px) {
  #block_icons .icons__icon {
    width: 80px;
    height: 80px;
  }
}
#block_icons .icons__icon img,
#block_icons .icons__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
#block_icons .icons__lottie-wrapper #block_icons .icons__icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 2;
}
#block_icons .icons__text-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  align-items: center;
}
#block_icons .icons__header {
  color: #1e1e1e;
  font-size: 1.8rem;
  line-height: 1.3;
  margin: 0;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_icons .icons__header {
    font-size: 1.6rem;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_icons .icons__header {
    font-size: 1.6rem;
  }
}
@media (min-width: 1280px) {
  #block_icons .icons__header {
    font-size: 1.8rem;
  }
}
@media (min-width: 1500px) {
  #block_icons .icons__header {
    font-size: 2rem;
  }
}
#block_icons .icons__name {
  color: #1e1e1e;
  font-size: 1.4rem;
  line-height: 1.4;
  margin: 0;
  opacity: 0.75;
  font-family: "DM Sans", sans-serif;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_icons .icons__name {
    font-size: 1.3rem;
  }
}
@media (min-width: 1280px) {
  #block_icons .icons__name {
    font-size: 1.4rem;
  }
}
@supports (content-visibility: auto) {
  #block_icons .icons__box {
    content-visibility: auto;
    contain-intrinsic-size: 250px;
  }
}

#block_information {
  padding: 20px 0;
  position: relative;
}
@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;
    gap: 30px;
  }
}
@media (min-width: 1280px) {
  #block_information .info {
    display: flex;
    justify-content: space-between;
    gap: 40px;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_information .info--reverse {
    flex-direction: row-reverse;
  }
}
@media (min-width: 1280px) {
  #block_information .info--reverse {
    flex-direction: row-reverse;
  }
}
#block_information .info__left {
  position: relative;
  overflow: visible;
  border-radius: 20px;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_information .info__left {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    border-radius: 0;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_information .info__left {
    width: 45%;
    margin-left: 0;
    border-radius: 20px;
  }
}
@media (min-width: 1280px) {
  #block_information .info__left {
    width: 45%;
  }
}
#block_information .info__background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_information .info__background-image {
    height: 250px;
    min-height: 250px;
    object-position: top;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_information .info__background-image {
    height: 350px;
    object-position: center;
    border-radius: 0;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_information .info__background-image {
    min-height: 500px;
    border-radius: 20px;
  }
}
@media (min-width: 1280px) {
  #block_information .info__background-image {
    min-height: 400px;
  }
}
#block_information .info__subtitle {
  color: #fff;
}
#block_information .info__header {
  color: #45901d;
  font-family: "DM Sans", sans-serif;
  padding-bottom: 2rem;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_information .info__header {
    padding-bottom: 2.5rem;
    padding-top: 20px;
  }
}
@media (min-width: 1280px) {
  #block_information .info__header {
    padding-bottom: 3rem;
  }
}
#block_information .info__text {
  color: #1e1e1e;
  font-size: 1.7rem;
  line-height: 1.25;
  padding-top: 10px;
  font-family: "DM Sans", sans-serif;
}
#block_information .info__right {
  display: flex;
  flex-direction: column;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_information .info__right {
    width: 50%;
  }
}
@media (min-width: 1280px) {
  #block_information .info__right {
    width: 50%;
  }
}
#block_information .info__content {
  margin-bottom: 30px;
}
#block_information .info__framed-content {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  padding: 30px 20px;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_information .info__framed-content {
    padding: 35px 25px;
  }
}
@media (min-width: 1280px) {
  #block_information .info__framed-content {
    padding: 45px 30px;
  }
}
#block_information .info__icons-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_information .info__icons-wrapper {
    gap: 25px;
  }
}
@media (min-width: 1280px) {
  #block_information .info__icons-wrapper {
    gap: 20px;
  }
}
#block_information .info__box {
  width: 100%;
  contain: content;
  min-height: 80px;
  display: flex;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_information .info__box {
    width: calc(50% - 10px);
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_information .info__box {
    width: calc(25% - 20px);
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_information .info__box {
    width: calc(50% - 10px);
  }
}
@media (min-width: 1280px) {
  #block_information .info__box {
    width: calc(50% - 10px);
  }
}
#block_information .info__box a {
  display: flex;
  width: 100%;
  text-decoration: none;
}
#block_information .info__box:hover .info__littleheader::after {
  width: 70%;
}
#block_information .info__box-inner {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_information .info__box-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_information .info__box-inner {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }
}
#block_information .info__icon-container {
  flex-shrink: 0;
  position: relative;
  width: 80px;
  height: 80px;
  min-height: 80px;
  max-height: 80px;
  line-height: 0;
  overflow: hidden;
}
#block_information .info__lottie-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  line-height: 0;
}
#block_information .info__lottie-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  display: none;
  z-index: 1;
}
#block_information .info__icon {
  width: 80px;
  height: 80px;
  display: block;
  line-height: 0;
}
#block_information .info__icon img,
#block_information .info__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
#block_information .info__lottie-wrapper #block_information .info__icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px !important;
  height: 80px !important;
  z-index: 2;
}
#block_information .info__lottie-wrapper #block_information .info__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
#block_information .info__text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#block_information .info__littleheader {
  position: relative;
  color: #1e1e1e;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  line-height: 1.2;
  margin: 0;
  font-weight: 600;
}
#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: #1e1e1e;
  font-size: 1.4rem;
  line-height: 1.4;
  margin: 0;
  opacity: 0.9;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_information .info__desc {
    font-size: 1.3rem;
  }
}
@media (min-width: 1280px) {
  #block_information .info__desc {
    font-size: 1.4rem;
  }
}
#block_information .info__short {
  color: #1e1e1e;
  font-size: 1.8rem;
  line-height: 1.3;
  margin: 0;
  font-weight: 700;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_information .info__short {
    font-size: 1.6rem;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_information .info__short {
    font-size: 1.7rem;
  }
}
@media (min-width: 1280px) {
  #block_information .info__short {
    font-size: 1.9rem;
  }
}
@media (min-width: 1500px) {
  #block_information .info__short {
    font-size: 2rem;
  }
}
#block_information .info__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-family: inherit;
  font-weight: 500;
  color: #1e1e1e !important;
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #ffce00, #ffce00);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  border: 1px solid #ffce00;
  text-decoration: none !important;
  border-radius: 10px;
  padding: 12px 24px;
  cursor: pointer;
  outline: none;
  min-width: 120px;
  text-transform: none;
  transition: background-size 0.45s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_information .info__button {
    font-size: 1.35rem;
    padding: 9px 18px;
  }
}
@media (min-width: 1700px) {
  #block_information .info__button {
    font-size: 1.4rem;
    padding: 7px 40px;
  }
}
#block_information .info__button:hover {
  background-size: 100% 100%, 100% 100%;
  color: #1e1e1e !important;
  border-color: #ffce00;
  transform: translateY(-1px);
}
#block_information .info__button:active {
  transform: translateY(0);
}
#block_information .info__button:focus {
  outline: 2px solid #3757a1;
  outline-offset: 3px;
}
#block_information .info__button-wrapper {
  margin-top: 30px;
  display: flex;
  justify-content: flex-start;
}
@supports (content-visibility: auto) {
  #block_information .info__box {
    content-visibility: auto;
    contain-intrinsic-size: 200px;
  }
}

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

#block_maps {
  background-color: #fff;
  padding-bottom: 50px;
  padding-top: 50px;
  position: relative;
}
#block_maps iframe {
  filter: grayscale(100%);
}
@media (min-width: 1280px) {
  #block_maps {
    padding: 50px 0;
  }
}
#block_maps .contact__map {
  position: relative;
  width: 100%;
  height: 450px;
}
#block_maps .contact__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#block_maps .contact {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  padding: 20px;
  flex-direction: column;
  padding-top: 30px;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_maps .contact {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    flex-direction: column;
    gap: 0;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 50px;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_maps .contact {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    flex-direction: column;
    gap: 0;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 50px;
  }
}
@media (min-width: 1280px) {
  #block_maps .contact {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    flex-direction: column;
    gap: 0;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 50px;
  }
}
#block_maps .contact__box {
  background-color: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  order: 2;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_maps .contact__box {
    padding: 40px;
    order: 2;
    position: relative;
    pointer-events: auto;
    margin-top: -120px;
    max-width: 500px;
    width: auto;
    z-index: 2;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_maps .contact__box {
    padding: 40px;
    order: 2;
    position: relative;
    pointer-events: auto;
    margin-top: -120px;
    max-width: 500px;
    width: auto;
    z-index: 2;
  }
}
@media (min-width: 1280px) {
  #block_maps .contact__box {
    padding: 40px;
    order: 2;
    position: relative;
    pointer-events: auto;
    margin-top: -120px;
    max-width: 500px;
    width: auto;
    z-index: 2;
  }
}
#block_maps .contact__image {
  flex: 0 0 auto;
  order: 1;
  width: 100%;
  padding: 0 20px;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_maps .contact__image {
    position: relative;
    pointer-events: auto;
    z-index: 1;
    margin-top: 20px;
    max-width: 400px;
    order: 1;
    padding: 0;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_maps .contact__image {
    position: relative;
    pointer-events: auto;
    z-index: 1;
    margin-top: 20px;
    max-width: 400px;
    order: 1;
    padding: 0;
  }
}
@media (min-width: 1280px) {
  #block_maps .contact__image {
    position: relative;
    pointer-events: auto;
    z-index: 1;
    margin-top: 20px;
    max-width: 300px;
    order: 1;
    padding: 0;
  }
}
@media (min-width: 1700px) {
  #block_maps .contact__image {
    max-width: 400px;
  }
}
#block_maps .contact__image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
#block_maps .contact__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#block_maps .contact__info a {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.5rem;
  color: #1e1e1e;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
  font-weight: 500;
}
#block_maps .contact__info a:hover {
  color: #3757a1;
  transform: translateX(5px);
}
#block_maps .contact__info a img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_maps .contact__info a img {
    width: 28px;
    height: 28px;
  }
}
#block_maps .contact__info a img#phone {
  width: 20px;
  height: 20px;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_maps .contact__info a img#phone {
    width: 24px;
    height: 24px;
  }
}

.place {
  padding: 4rem 0;
  padding-bottom: 2rem;
  position: relative;
}
@media (min-width: 960px) and (orientation: landscape) {
  .place {
    padding-bottom: 280px;
  }
}
@media (min-width: 1280px) {
  .place {
    padding-bottom: 30px;
  }
}
.place__container {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
}
@media (min-width: 768px) {
  .place__container {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, 20rem);
  }
}
.place__gallery {
  display: contents;
}
.place__photo {
  position: relative;
  overflow: hidden;
  border-radius: 0.8rem;
  aspect-ratio: 3/2;
}
.place__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.3s ease;
}
.place__photo:hover img {
  transform: scale(1.04);
  filter: brightness(1.05);
}
@media (min-width: 768px) {
  .place__photo {
    aspect-ratio: auto;
  }
  .place__photo:nth-child(1) {
    grid-area: 1/1/2/3;
  }
  .place__photo:nth-child(2) {
    grid-area: 1/3/2/5;
  }
  .place__photo:nth-child(3) {
    grid-area: 1/5/2/7;
  }
  .place__photo:nth-child(4) {
    grid-area: 2/1/3/3;
  }
  .place__photo:nth-child(5) {
    grid-area: 3/1/5/3;
  }
  .place__photo:nth-child(6) {
    grid-area: 4/3/4/5;
  }
  .place__photo:nth-child(7) {
    grid-area: 2/5/4/7;
  }
  .place__photo:nth-child(8) {
    grid-area: 4/5/5/7;
  }
}
.place__photo:nth-child(n+9) {
  display: none;
}
.place__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-area: auto;
  grid-column: 1/-1;
  order: 99;
  z-index: 2;
  background: transparent;
  border-radius: 1rem;
  padding: 3rem 1rem 2rem 1rem;
  box-shadow: none;
}
@media (min-width: 768px) {
  .place__content {
    grid-area: 2/3/4/5;
    order: initial;
    padding: 20px 10px;
    background: #fff;
    box-shadow: 0 0.6rem 2rem rgba(0, 0, 0, 0.05);
  }
}
.place__content--text {
  position: relative;
}
.place__label {
  color: #3757a1;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.place__title {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(2rem, 2vw, 2.6rem);
  font-weight: 700;
  margin: 0 0 1.6rem 0;
  line-height: 1.1;
  color: #1e1e1e;
}
.place__title span.highlight,
.place__title .highlight {
  color: #3757a1;
}
.place__text {
  font-size: 1.6rem;
  line-height: 1.2;
  color: #333;
  opacity: 0.9;
  max-width: 48rem;
}

#block_reviews {
  background-color: #fff;
  padding: 30px 0;
}
#block_reviews .reviews__header {
  text-align: center;
  padding-bottom: 20px;
}
#block_reviews .reviews__wrapper {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: auto;
  touch-action: pan-y;
  will-change: scroll-position;
  user-select: none;
  padding-bottom: 20px;
}
#block_reviews .reviews__item {
  flex: 0 0 80%;
  background-color: transparent;
  border-radius: 20px;
  box-shadow: 4px 4px 4px rgba(30, 30, 30, 0.08);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: grab;
  backdrop-filter: blur(4px);
}
#block_reviews .reviews__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 30px rgba(30, 30, 30, 0.12);
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_reviews .reviews__item {
    flex: 0 0 50%;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_reviews .reviews__item {
    flex: 0 0 80%;
  }
}
@media (min-width: 1280px) {
  #block_reviews .reviews__item {
    flex: 0 0 calc(33.333% - 20px);
  }
}
@media (min-width: 1500px) {
  #block_reviews .reviews__item {
    flex: 0 0 calc(33.333% - 20px);
  }
}
#block_reviews .reviews__stars {
  width: 70px;
  height: 20px;
  margin: 0 auto 18px;
  background: url("../../images/star.svg") no-repeat center/contain;
}
#block_reviews .reviews__text {
  font-size: 1.5rem;
  color: #1e1e1e;
  line-height: 1.1;
  font-family: "DM Sans", sans-serif;
}
#block_reviews .reviews__info {
  background-color: #fff;
  padding-top: 40px;
}
#block_reviews .reviews__info .reviewsinfo {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  width: 70%;
  margin: auto;
}
#block_reviews .reviews__info .reviewsinfo__item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#block_reviews .reviews__info .reviewsinfo__value {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 20px;
  color: #1e1e1e;
}
#block_reviews .reviews__info .reviewsinfo__value .reviewsinfo__scale {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(30, 30, 30, 0.7);
  margin-left: 4px;
}
#block_reviews .reviews__info .reviewsinfo__label {
  font-family: "DM Sans", sans-serif;
  font-size: 1.7rem;
  color: rgba(30, 30, 30, 0.7);
}
#block_reviews .reviews__info .reviewsinfo__btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  margin-top: 20px;
  font-size: 1.4rem;
  text-decoration: none !important;
  cursor: pointer;
  color: #fff !important;
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #3757a1, #3757a1);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  border: 1px solid #3757a1;
  transition: background-size 0.45s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_reviews .reviews__info .reviewsinfo__btn {
    font-size: 1.35rem;
    padding: 9px 18px;
  }
}
#block_reviews .reviews__info .reviewsinfo__btn:hover {
  background-size: 100% 100%, 100% 100%;
  color: #1e1e1e !important;
  border-color: #3757a1;
  transform: translateY(-1px);
}
#block_reviews .reviews__info .reviewsinfo__btn:active {
  transform: translateY(0);
}
#block_reviews .reviews__info .reviewsinfo__btn:focus {
  outline: 2px solid #3757a1;
  outline-offset: 3px;
}
@media (min-width: 1280px) {
  #block_reviews .reviews__info .reviewsinfo__btn {
    margin-top: 0;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_reviews .reviews__info .reviewsinfo {
    flex-direction: column;
    gap: 20px;
  }
  #block_reviews .reviews__info .reviewsinfo__value {
    font-size: 1.8rem;
  }
  #block_reviews .reviews__info .reviewsinfo__btn {
    margin-top: 10px;
  }
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_reviews {
    padding: 40px 0;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_reviews {
    padding: 50px 0;
  }
}
@media (min-width: 1700px) {
  #block_reviews {
    padding: 80px 0;
  }
}

#block_smallhero {
  padding: 0;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_smallhero .smallhero {
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_smallhero .smallhero {
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }
}
@media (min-width: 1280px) {
  #block_smallhero .smallhero {
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }
}
#block_smallhero .smallhero__left {
  width: 100%;
  height: 400px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_smallhero .smallhero__left {
    width: 50%;
    height: 40vh;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_smallhero .smallhero__left {
    width: 40%;
    height: 60vh;
  }
}
@media (min-width: 1280px) {
  #block_smallhero .smallhero__left {
    width: 40%;
    height: 60vh;
  }
}
#block_smallhero .smallhero img {
  border-radius: 0 0 60px 60px;
}
#block_smallhero .smallhero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
#block_smallhero .smallhero__right {
  padding: 40px 0;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_smallhero .smallhero__right {
    width: 50%;
    padding: 30px 40px;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_smallhero .smallhero__right {
    width: 60%;
    padding: 40px 50px;
  }
}
@media (min-width: 1280px) {
  #block_smallhero .smallhero__right {
    width: 60%;
    padding: 50px 60px;
  }
}
#block_smallhero .smallhero__littleheader {
  display: block;
  font-size: 19px;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_smallhero .smallhero__littleheader {
    font-size: 20px;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_smallhero .smallhero__littleheader {
    font-size: 20px;
  }
}
@media (min-width: 1280px) {
  #block_smallhero .smallhero__littleheader {
    font-size: 22px;
  }
}
#block_smallhero .smallhero__littleheader p {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}
#block_smallhero .smallhero__header {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px 0;
  color: #45901d;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_smallhero .smallhero__header {
    font-size: 36px;
    margin: 12px 0 16px 0;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_smallhero .smallhero__header {
    font-size: 38px;
  }
}
@media (min-width: 1280px) {
  #block_smallhero .smallhero__header {
    font-size: 42px;
  }
}
#block_smallhero .smallhero__text {
  font-size: 16px;
  line-height: 1.6;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_smallhero .smallhero__text {
    font-size: 17px;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_smallhero .smallhero__text {
    font-size: 17px;
  }
}
@media (min-width: 1280px) {
  #block_smallhero .smallhero__text {
    font-size: 18px;
  }
}

#block_smalllist {
  padding: 40px 0;
}
#block_smalllist .smalllist__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_smalllist .smalllist__wrapper {
    flex-direction: row;
    gap: 30px;
    align-items: center;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_smalllist .smalllist__wrapper {
    flex-direction: row;
    gap: 40px;
    align-items: center;
  }
}
@media (min-width: 1280px) {
  #block_smalllist .smalllist__wrapper {
    flex-direction: row;
    gap: 50px;
    align-items: center;
  }
}
@media (min-width: 1500px) {
  #block_smalllist .smalllist__wrapper {
    gap: 60px;
  }
}
#block_smalllist .smalllist__left {
  order: 2;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_smalllist .smalllist__left {
    order: 1;
    flex: 0 0 50%;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_smalllist .smalllist__left {
    order: 1;
    flex: 0 0 50%;
  }
}
@media (min-width: 1280px) {
  #block_smalllist .smalllist__left {
    order: 1;
    flex: 0 0 50%;
  }
}
@media (min-width: 1500px) {
  #block_smalllist .smalllist__left {
    flex: 0 0 60%;
  }
}
#block_smalllist .smalllist__header {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #45901d;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_smalllist .smalllist__header {
    font-size: 30px;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_smalllist .smalllist__header {
    font-size: 32px;
  }
}
@media (min-width: 1280px) {
  #block_smalllist .smalllist__header {
    font-size: 36px;
  }
}
@media (min-width: 1500px) {
  #block_smalllist .smalllist__header {
    font-size: 40px;
  }
}
#block_smalllist .smalllist__maintext {
  font-size: 16px;
  line-height: 1.6;
  color: #1e1e1e;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_smalllist .smalllist__maintext {
    font-size: 16px;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_smalllist .smalllist__maintext {
    font-size: 17px;
  }
}
@media (min-width: 1280px) {
  #block_smalllist .smalllist__maintext {
    font-size: 18px;
  }
}
#block_smalllist .smalllist__maintext p {
  margin-bottom: 15px !important;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_smalllist .smalllist__maintext p {
    margin-bottom: 10px !important;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_smalllist .smalllist__maintext p {
    margin-bottom: 12px !important;
  }
}
@media (min-width: 1280px) {
  #block_smalllist .smalllist__maintext p {
    margin-bottom: 5px !important;
  }
}
#block_smalllist .smalllist__maintext h3 {
  font-size: 20px;
  font-weight: 700;
  color: #45901d;
  margin-bottom: 15px;
  margin-top: 20px;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_smalllist .smalllist__maintext h3 {
    font-size: 21px;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_smalllist .smalllist__maintext h3 {
    font-size: 22px;
  }
}
@media (min-width: 1280px) {
  #block_smalllist .smalllist__maintext h3 {
    font-size: 24px;
  }
}
#block_smalllist .smalllist__maintext ul {
  list-style: none;
  margin-left: 0;
  margin-bottom: 15px;
  padding-left: 0;
  text-transform: none !important;
}
#block_smalllist .smalllist__maintext ul li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 25px;
}
#block_smalllist .smalllist__maintext ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #45901d;
  font-size: 24px;
  line-height: 1;
}
#block_smalllist .smalllist__maintext strong {
  color: #45901d;
}
#block_smalllist .smalllist__maintext ol {
  margin-left: 20px;
  margin-bottom: 15px;
}
#block_smalllist .smalllist__maintext ol li {
  margin-bottom: 8px;
}
#block_smalllist .smalllist__right {
  order: 1;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_smalllist .smalllist__right {
    order: 2;
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_smalllist .smalllist__right {
    order: 2;
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 1280px) {
  #block_smalllist .smalllist__right {
    order: 2;
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 1500px) {
  #block_smalllist .smalllist__right {
    flex: 0 0 40%;
  }
}
#block_smalllist .smalllist__image {
  width: 100%;
  height: auto;
  border-radius: 0 0 60px 60px;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_smalllist .smalllist__image {
    height: 400px;
    object-fit: cover;
    object-position: top;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_smalllist .smalllist__image {
    height: 450px;
    object-fit: cover;
    object-position: top;
  }
}
@media (min-width: 1280px) {
  #block_smalllist .smalllist__image {
    height: 500px;
    object-fit: cover;
    object-position: top;
  }
}
@media (min-width: 1500px) {
  #block_smalllist .smalllist__image {
    height: 550px;
  }
}

#block_specialization {
  padding-bottom: 50px;
  position: relative;
  color: #fff;
  background-color: #E5E5E5;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_specialization {
    padding-bottom: 30px;
  }
}
#block_specialization .specialization__back {
  position: absolute;
  width: 100vw;
  height: 300px;
  background: url("images/poradnia.webp") center top/cover no-repeat;
}
@media (min-width: 1500px) {
  #block_specialization .specialization__back {
    height: 400px;
  }
}
#block_specialization .specialization__all {
  position: relative;
  z-index: 999;
}
#block_specialization .specialization__toptext {
  color: #1e1e1e;
}
#block_specialization .specialization__header {
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 3.9rem;
  font-weight: bold;
  padding-top: 40px;
  margin-bottom: 12px;
  color: #fff;
}
@media (min-width: 1280px) {
  #block_specialization .specialization__header {
    padding-top: 60px;
  }
}
#block_specialization .specialization__text {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 1.7rem;
  line-height: 1.2;
  color: #fff;
}
#block_specialization .specialization__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  justify-items: center;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_specialization .specialization__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_specialization .specialization__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
}
@media (min-width: 1280px) {
  #block_specialization .specialization__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
}
#block_specialization .specialization__card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  padding: 45px 10px 50px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 320px;
  display: flex;
  flex-direction: column;
}
#block_specialization .specialization__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
#block_specialization .specialization__icon-container {
  flex-shrink: 0;
  position: relative;
  width: 90px;
  height: 90px;
  min-height: 90px;
  max-height: 90px;
  border-radius: 50%;
  background-color: #fff;
  margin: 0 auto 25px;
  line-height: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_specialization .specialization__icon-container {
    width: 70px;
    height: 70px;
    min-height: 70px;
    max-height: 70px;
    margin-bottom: 20px;
  }
}
#block_specialization .specialization__icon {
  width: 62px;
  height: 62px;
  line-height: 0;
  flex-shrink: 0;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_specialization .specialization__icon {
    width: 48px;
    height: 48px;
  }
}
#block_specialization .specialization__icon img,
#block_specialization .specialization__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
#block_specialization .specialization__title {
  font-family: "DM Sans", sans-serif;
  font-size: 2.3rem;
  font-weight: bold;
  color: #1e1e1e;
  margin-bottom: 10px;
}
#block_specialization .specialization__desc {
  font-family: "DM Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: #1e1e1e;
  line-height: 1.2;
  margin-bottom: auto;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
#block_specialization .specialization__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  margin-top: 25px;
  text-decoration: none !important;
  cursor: pointer;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_specialization .specialization__link {
    font-size: 1.35rem;
    padding: 9px 18px;
  }
}
#block_specialization .specialization__link {
  color: #fff !important;
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #3757a1, #3757a1);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  border: 1px solid #3757a1;
  transition: background-size 0.45s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
#block_specialization .specialization__link:hover {
  background-size: 100% 100%, 100% 100%;
  color: #1e1e1e !important;
  border-color: #3757a1;
  transform: translateY(-1px);
}
#block_specialization .specialization__link:active {
  transform: translateY(0);
}
#block_specialization .specialization__link:focus {
  outline: 2px solid #3757a1;
  outline-offset: 3px;
}

#block_subpagehero .subpagehero {
  padding: 20px 0;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_subpagehero .subpagehero {
    display: flex;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_subpagehero .subpagehero {
    display: flex;
  }
}
@media (min-width: 1280px) {
  #block_subpagehero .subpagehero {
    display: flex;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_subpagehero .subpagehero__left {
    width: 50%;
    margin-left: 50px;
  }
}
@media (min-width: 1280px) {
  #block_subpagehero .subpagehero__left {
    width: 50%;
    position: relative;
    margin-left: 50px;
  }
}
#block_subpagehero .subpagehero__right {
  width: 100%;
  height: 350px;
  position: relative;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_subpagehero .subpagehero__right {
    width: 50%;
  }
}
@media (min-width: 1280px) {
  #block_subpagehero .subpagehero__right {
    width: 50%;
    height: 400px;
  }
}
@media (min-width: 1700px) {
  #block_subpagehero .subpagehero__right {
    height: 500px;
  }
}
#block_subpagehero .subpagehero__toptext {
  margin-bottom: 15px;
}
#block_subpagehero .subpagehero__box {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  padding: 45px 10px 50px;
}
@media (min-width: 1280px) {
  #block_subpagehero .subpagehero__box {
    position: absolute;
    right: -50px;
    z-index: 99;
  }
}
#block_subpagehero .subpagehero__header {
  margin-bottom: 15px;
  font-family: "DM Sans", sans-serif !important;
}
#block_subpagehero .subpagehero__header p {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
#block_subpagehero .subpagehero__header strong, #block_subpagehero .subpagehero__header b {
  font-weight: 700;
}
#block_subpagehero .subpagehero__header em, #block_subpagehero .subpagehero__header i {
  font-style: italic;
}
#block_subpagehero .subpagehero__header a {
  color: inherit;
  text-decoration: underline;
}
#block_subpagehero .subpagehero__header a:hover {
  opacity: 0.8;
}
#block_subpagehero .subpagehero__header br {
  display: block;
  content: "";
  margin-top: 0.5em;
}
#block_subpagehero .subpagehero__desc {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #1e1e1e;
  margin-bottom: 30px;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_subpagehero .subpagehero__desc {
    font-size: 1.8rem;
  }
}
@media (min-width: 1700px) {
  #block_subpagehero .subpagehero__desc {
    font-size: 2rem;
  }
}
#block_subpagehero .subpagehero__button {
  margin-top: 20px;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_subpagehero .subpagehero__button {
    margin-top: 30px;
  }
}
#block_subpagehero .subpagehero__logo {
  position: absolute;
  bottom: 40%;
  width: 80%;
  right: -150px;
  rotate: -90deg;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_subpagehero .subpagehero__logo {
    bottom: 40px;
    left: unset;
    width: 40%;
    right: -140px;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_subpagehero .subpagehero__logo {
    width: 35%;
    bottom: 30%;
  }
}
@media (min-width: 1280px) {
  #block_subpagehero .subpagehero__logo {
    width: 25%;
    right: -150px;
  }
}
@media (min-width: 1500px) {
  #block_subpagehero .subpagehero__logo {
    width: 30%;
    right: -200px;
    bottom: 25%;
  }
}
@media (min-width: 1700px) {
  #block_subpagehero .subpagehero__logo {
    width: 45%;
  }
}
#block_subpagehero .subpagehero__left {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#block_subpagehero .subpagehero__right {
  overflow: hidden;
}
#block_subpagehero .subpagehero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

#block_subheroteam .subheroteam__header {
  font-family: "DM Sans", sans-serif;
  font-size: 3.3rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 2rem 0;
  color: #1e1e1e;
  text-align: center;
}
#block_subheroteam .subheroteam__header .highlight {
  color: #3757a1;
}
#block_subheroteam .subheroteam__gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem 0;
}
#block_subheroteam .subheroteam__box {
  flex: 0 0 calc(50% - 0.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#block_subheroteam .subheroteam__box:nth-child(even) .subheroteam__gallery-item:nth-child(odd) {
  height: 150px;
}
#block_subheroteam .subheroteam__box:nth-child(even) .subheroteam__gallery-item:nth-child(odd) img {
  border-radius: 30px;
}
#block_subheroteam .subheroteam__box:nth-child(even) .subheroteam__gallery-item:nth-child(even) {
  height: 250px;
}
#block_subheroteam .subheroteam__box:nth-child(even) .subheroteam__gallery-item:nth-child(even) img {
  border-radius: 60px;
}
@media (min-width: 1500px) {
  #block_subheroteam .subheroteam__box {
    flex: 1 1 0;
    gap: 1.5rem;
  }
  #block_subheroteam .subheroteam__box:nth-child(even) .subheroteam__gallery-item:nth-child(odd) {
    height: 250px;
  }
  #block_subheroteam .subheroteam__box:nth-child(even) .subheroteam__gallery-item:nth-child(odd) img {
    border-radius: 50px;
  }
  #block_subheroteam .subheroteam__box:nth-child(even) .subheroteam__gallery-item:nth-child(even) {
    height: 500px;
  }
  #block_subheroteam .subheroteam__box:nth-child(even) .subheroteam__gallery-item:nth-child(even) img {
    border-radius: 100px;
  }
}
#block_subheroteam .subheroteam__gallery-item {
  position: relative;
  transition: height 1s ease;
}
#block_subheroteam .subheroteam__gallery-item:nth-child(odd) {
  height: 250px;
}
#block_subheroteam .subheroteam__gallery-item:nth-child(even) {
  height: 150px;
}
#block_subheroteam .subheroteam__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 60px;
  transition: border-radius 1s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
#block_subheroteam .subheroteam__gallery-item:nth-child(even) img {
  border-radius: 30px;
}
@media (min-width: 1500px) {
  #block_subheroteam .subheroteam__gallery-item:nth-child(odd) {
    height: 500px;
  }
  #block_subheroteam .subheroteam__gallery-item:nth-child(even) {
    height: 250px;
  }
  #block_subheroteam .subheroteam__gallery-item img {
    border-radius: 100px;
  }
  #block_subheroteam .subheroteam__gallery-item:nth-child(even) img {
    border-radius: 50px;
  }
}

#block_sublistteam {
  padding: 80px 0 40px;
}
#block_sublistteam .sublistteam__header {
  font-family: "DM Sans", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 40px 0;
  color: #1e1e1e;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_sublistteam .sublistteam__header {
    font-size: 2.8rem;
  }
}
@media (min-width: 1280px) {
  #block_sublistteam .sublistteam__header {
    font-size: 3.6rem;
    margin: 0 0 60px 0;
  }
}
@media (min-width: 1500px) {
  #block_sublistteam .sublistteam__header {
    font-size: 4.4rem;
  }
}
#block_sublistteam .sublistteam__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  justify-items: start;
  align-items: start;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_sublistteam .sublistteam__list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_sublistteam .sublistteam__list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 1280px) {
  #block_sublistteam .sublistteam__list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 32px;
  }
}
#block_sublistteam .sublistteam__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 16px;
  width: 100%;
}
#block_sublistteam .sublistteam__image {
  width: 100%;
}
#block_sublistteam .sublistteam__image img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
}
@media (min-width: 1280px) {
  #block_sublistteam .sublistteam__image {
    width: 200px;
  }
}
#block_sublistteam .sublistteam__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
#block_sublistteam .sublistteam__name {
  font-family: "DM Sans", sans-serif;
  font-size: 1.9rem;
  font-weight: 600;
  margin: 0;
  color: #1e1e1e;
  height: 3.6rem;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_sublistteam .sublistteam__name {
    font-size: 2.3rem;
    height: 4rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_sublistteam .sublistteam__name {
    height: 4.2rem;
    font-size: 2.1rem;
  }
}
#block_sublistteam .sublistteam__position {
  font-size: 1.5rem;
  font-weight: 600;
  color: #3757a1;
  margin: 0;
  height: 2.5rem;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_sublistteam .sublistteam__position {
    height: 2.2rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_sublistteam .sublistteam__position {
    font-size: 1.6rem;
    height: 2.8rem;
  }
}
#block_sublistteam .sublistteam__description {
  font-size: 1.4rem;
  line-height: 1.5;
  color: #1e1e1e;
  margin: 4px 0 0;
}

#block_team {
  position: relative;
  background-color: #E5E5E5;
  overflow: hidden;
}
#block_team .team {
  padding: 30px 0 10px 0;
}
#block_team .team__toptext {
  font-size: 1.4rem;
  color: #3757a1;
  margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_team .team__toptext {
    font-size: 1rem;
  }
}
#block_team .team__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
#block_team .team__header {
  font-family: "DM Sans", sans-serif;
  font-size: 2.2rem;
  line-height: 1.1;
  font-weight: bold;
  margin: 0;
  flex: 1;
  text-align: left;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_team .team__header {
    font-size: 2.5rem;
  }
}
#block_team .team__header .highlight {
  color: #3757a1;
}
#block_team .team__btn {
  background-color: #3757a1;
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 1.3rem;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_team .team__btn {
    font-size: 1.35rem;
    padding: 9px 18px;
  }
}
#block_team .team__slider {
  width: 100%;
  overflow: hidden;
  padding: 36px 0;
  background-color: #E5E5E5;
}
#block_team .team__slider .team__track {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scrollbar-width: none;
  user-select: none;
}
#block_team .team__slider .team__track::-webkit-scrollbar {
  display: none;
}
#block_team .team__slider .team__slide {
  flex: 0 0 auto;
  width: 15.3846153846%;
  min-width: 140px;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_team .team__slider .team__slide {
    width: 28.5714285714%;
    min-width: 100px;
  }
}
#block_team .team__slider .team__slide img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 10px;
  pointer-events: none;
}

#block_whyus {
  padding: 40px 0;
  position: relative;
}
@media (min-width: 1280px) {
  #block_whyus {
    padding: 60px 0;
  }
}
#block_whyus .whyus {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_whyus .whyus {
    gap: 40px;
  }
}
#block_whyus .whyus__intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  width: 100%;
}
#block_whyus .whyus__header {
  color: #45901d;
  font-family: "DM Sans", sans-serif;
  margin: 0;
}
#block_whyus .whyus__text {
  color: #1e1e1e;
  font-size: 1.7rem;
  line-height: 1.5;
  font-family: "DM Sans", sans-serif;
  margin: 0;
  width: 50%;
}
#block_whyus .whyus__text p {
  margin: 0 0 10px 0;
}
#block_whyus .whyus__text p:last-child {
  margin: 0;
}
#block_whyus .whyus__icon-container {
  flex-shrink: 0;
  position: relative;
  width: 120px;
  height: 120px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 1280px) {
  #block_whyus .whyus__icon-container {
    width: 140px;
    height: 140px;
  }
}
#block_whyus .whyus__icon-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
#block_whyus .whyus__icon {
  width: 80px;
  height: 80px;
  display: block;
}
@media (min-width: 1280px) {
  #block_whyus .whyus__icon {
    width: 90px;
    height: 90px;
  }
}
#block_whyus .whyus__icon img,
#block_whyus .whyus__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

#block_workshops .workshops__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_workshops .workshops__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_workshops .workshops__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
@media (min-width: 1280px) {
  #block_workshops .workshops__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
#block_workshops .workshops__left .workshops__header {
  font-size: 5rem;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #45901d;
  line-height: 1.2;
}
#block_workshops .workshops__left .workshops__text {
  font-size: 1.9rem;
  line-height: 1.6;
  color: #1e1e1e;
}
#block_workshops .workshops__right .workshops__photo {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 767px) {
  #block_workshops .workshops__right .workshops__photo {
    max-height: 300px;
  }
}
#block_workshops .workshops__elements {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_workshops .workshops__elements {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_workshops .workshops__elements {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  #block_workshops .workshops__elements {
    grid-template-columns: repeat(4, 1fr);
  }
}
#block_workshops .workshops__element {
  display: flex;
  flex-direction: column;
}
#block_workshops .workshops__element-title {
  margin-bottom: 1.5rem;
  color: #1e1e1e;
  font-family: "DM Sans", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  min-height: 60px;
  display: flex;
  align-items: center;
  position: relative;
  padding-bottom: 0.5rem;
}
#block_workshops .workshops__element-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90%;
  height: 2px;
  background-color: #45901d;
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_workshops .workshops__element-title {
    font-size: 2.1rem;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_workshops .workshops__element-title {
    font-size: 2.1rem;
  }
}
@media (min-width: 1280px) {
  #block_workshops .workshops__element-title {
    font-size: 2.2rem;
  }
}
#block_workshops .workshops__element-desc {
  margin-bottom: 1.5rem;
  flex-grow: 1;
  color: #1e1e1e;
  font-size: 1.5rem;
  line-height: 1.6;
}
#block_workshops .workshops__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  align-self: flex-start;
  color: #1e1e1e !important;
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #ffce00, #ffce00);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  border: 1px solid #ffce00;
  transition: background-size 0.45s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
#block_workshops .workshops__button:hover {
  background-size: 100% 100%, 100% 100%;
  color: #1e1e1e !important;
  border-color: #ffce00;
  transform: translateY(-1px);
}
#block_workshops .workshops__button:active {
  transform: translateY(0);
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_workshops .workshops__button {
    font-size: 1.35rem;
    padding: 9px 18px;
    gap: 7px;
  }
}
@media (min-width: 960px) and (max-width: 1366px) and (orientation: landscape) {
  #block_workshops .workshops__button {
    font-size: 1.5rem;
    padding: 10px 20px;
  }
}
@media (min-width: 1280px) {
  #block_workshops .workshops__button {
    font-size: 1.5rem;
    padding: 10px 20px;
  }
}