@charset "UTF-8";
/* Globalne style (SCSS) */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..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: 1200px) {
  #article__hero {
    height: 650px;
  }
}
#article__hero .article__background {
  width: 100%;
  min-height: 100%;
  background-position: bottom;
  background-repeat: no-repeat;
  background-image: url(images/aktualnosci.webp);
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#article__hero .article__header {
  font-weight: normal;
  z-index: 2;
  text-align: center;
  font-size: 5rem;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
}
#article__hero .article__header h1 {
  margin: 0;
}
@media (min-width: 576px) and (orientation: landscape) {
  #article__hero .article__header {
    bottom: 0;
  }
}
@media (min-width: 1200px) {
  #article__hero .article__header {
    font-size: 15rem;
    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;
}
@media (min-width: 1200px) {
  .header__logo img {
    max-height: 70px;
  }
}
.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: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  .header__buttons {
    gap: 8px;
    margin-right: 8px;
  }
}
.header__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  transition: all 0.3s ease;
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  .header__button {
    padding: 6px 12px;
    font-size: 0.85rem;
    gap: 6px;
  }
}
@media (min-width: 1400px) {
  .header__button {
    padding: 10px 20px;
    font-size: 1.1rem;
  }
}
.header__button-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  .header__button-icon {
    width: 16px;
    height: 16px;
  }
}
.header__button span {
  position: relative;
  z-index: 1;
}
.header__button:hover .header__button-icon {
  transform: scale(1.1);
}
.header__button--panel {
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #EB811A, #EB811A) !important;
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  color: #fff !important;
  border: 1px solid #EB811A !important;
  transition: background-size 0.45s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
.header__button--panel span {
  color: #fff !important;
  transition: color 0.3s ease;
}
.header__button--panel:hover {
  background-size: 100% 100%, 100% 100%;
  color: #EB811A !important;
  border-color: #EB811A !important;
  transform: translateY(-1px);
}
.header__button--panel:hover span {
  color: #EB811A !important;
}
.header__button--panel:active {
  transform: translateY(0);
}
.header__button--call {
  background-image: linear-gradient(90deg, #EB811A, #EB811A), linear-gradient(90deg, #fff, #fff) !important;
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  color: #1e1e1e !important;
  border: 1px solid #EB811A !important;
  transition: background-size 0.45s ease, color 0.3s ease, transform 0.2s ease;
}
.header__button--call span {
  color: #1e1e1e !important;
  transition: color 0.3s ease;
}
.header__button--call:hover {
  background-size: 100% 100%, 100% 100%;
  color: #fff !important;
  border-color: #EB811A !important;
  transform: translateY(-1px);
}
.header__button--call:hover span {
  color: #fff !important;
}
.header__button--call:active {
  transform: translateY(0);
}

.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: #1e1e1e !important;
}
.menu a:hover {
  color: #EB811A;
}
.menu-link {
  padding: 40px 0;
  transition: color 0.2s ease;
}
.menu-link:hover {
  color: #EB811A !important;
}
.menu-item {
  padding: 0 10px;
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  .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: capitalize;
}

.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: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  .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: capitalize;
  padding: 0.2rem 0;
  transition: color 0.2s ease;
}
.nav .sub-menu__links .sub-menu__list > li > a:hover {
  color: #EB811A;
}
.nav .sub-menu__icon {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #ccc;
  transition: color 0.3s ease, transform 0.3s ease;
}
.nav .sub-menu__icon img {
  max-width: 220px !important;
}
.nav .sub-menu__icon.is-active {
  color: #e63946;
  transform: scale(1.1);
}
@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: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  .nav .menu {
    gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .nav .menu a {
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    transition: color 0.2s ease;
  }
  .nav .menu a:hover {
    color: #EB811A;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  .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: none;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    z-index: 999;
  }
  .nav .menu-item-has-children:hover > .sub-menu,
  .nav .menu-item-has-children > .sub-menu:hover {
    display: flex;
  }
}

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

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

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

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

.blog .article-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
.blog .article-container .thumbnail-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 300px;
  border: none;
  padding: 0;
  margin: 0;
}
.blog .article-container .thumbnail-image img {
  display: none;
}
.blog .article-container h2 {
  font-size: 2rem;
  margin-top: 20px;
  margin-bottom: 0;
}
.blog .article-container h2 a {
  color: #092730;
}
.blog .article-container h2 a:visited {
  color: #092730;
}
.blog .article-container h2 a:hover {
  text-decoration: none;
  color: #092730;
}
.blog .article-container a {
  color: #092730;
}
.blog .article-container a:visited {
  color: #092730;
}
.blog .article-container a:hover {
  text-decoration: none;
  color: #092730;
}
.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 {
  background-color: #092730;
  color: #fff;
  border-color: #092730;
  border-radius: 20px;
  width: 30%;
  font-size: 1.2rem;
}
.blog .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.blog .pagination .page-numbers {
  margin: 0 5px;
  font-size: 1.6rem;
  text-decoration: none;
  color: #E5E5E5;
}
.blog .pagination .page-numbers:hover {
  color: #092730;
}
.blog .pagination .page-numbers.current {
  color: #092730;
  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: #092730;
  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: 768px) and (orientation: portrait) {
  #block_footer .footer {
    display: flex;
    justify-content: space-around;
  }
}
@media (min-width: 1200px) {
  #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: #092730;
  height: 1px;
  margin-bottom: 10px;
}
#block_footer .footer__brand img {
  width: 80%;
  margin-bottom: 20px;
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #block_footer .footer__brand img {
    width: 40%;
  }
}
@media (min-width: 1200px) {
  #block_footer .footer__brand img {
    width: 30%;
  }
}
#block_footer .footer__brand p {
  color: #fff;
  font-size: 1.4rem;
}
@media (min-width: 1200px) {
  #block_footer .footer__brand p {
    width: 80%;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_footer .footer__brand {
    width: 30%;
  }
}
@media (min-width: 1200px) {
  #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: 768px) and (orientation: portrait) {
  #block_footer .footer__menu {
    width: 30%;
  }
}
@media (min-width: 1200px) {
  #block_footer .footer__menu {
    width: 25%;
  }
}
#block_footer .footer__menu h5 {
  padding-top: 30px;
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_footer .footer__menu h5 {
    padding: 0;
  }
}
@media (min-width: 1200px) {
  #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: 768px) and (orientation: portrait) {
  #block_footer .footer__contact {
    width: 30%;
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 1200px) {
  #block_footer .footer__contact {
    width: 35%;
    display: flex;
    flex-direction: column;
  }
}
#block_footer .footer__contact h5 {
  padding-top: 30px;
}
@media (min-width: 768px) and (orientation: portrait) {
  #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: 1200px) {
  #block_footer .footer__copy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
  }
}
#block_footer .footer__copy p {
  color: #fff;
  padding: 5px 0;
  font-size: 1.4rem;
}
#block_footer .footer__copy a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
#block_footer .footer__copy a:hover {
  opacity: 0.8;
}
#block_footer .footer__studio p {
  font-size: 1.4rem;
}

.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: "Inter", 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, #092730, #092730);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  border: 1px solid #092730;
  text-decoration: none !important;
  border-radius: 30px;
  padding: 8px 16px;
  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: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  .button__button {
    padding: 7px 15px;
  }
}
@media (min-width: 1560px) {
  .button__button {
    font-size: 1.4rem;
    padding: 7px 40px;
  }
}
.button__button:hover {
  background-size: 100% 100%, 100% 100%;
  color: #1e1e1e !important;
  border-color: #092730;
  transform: translateY(-1px);
}
.button__button:active {
  transform: translateY(0);
}
.button__button:focus {
  outline: 2px solid #092730;
  outline-offset: 3px;
}

.falkheader {
  font-size: 3.2rem !important;
  line-height: 0.9 !important;
  font-weight: bold !important;
  color: #1e1e1e;
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  .falkheader {
    font-size: 3.5rem !important;
    line-height: 1.05 !important;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  .falkheader {
    font-size: 4rem !important;
    line-height: 1.1 !important;
  }
}
@media (min-width: 1200px) {
  .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: "Inter", sans-serif !important;
  color: #1e1e1e;
}
@media (min-width: 768px) and (orientation: portrait) {
  .falkh1 {
    font-size: 4.5rem !important;
  }
}
@media (min-width: 1560px) {
  .falkh1 {
    font-size: 5rem !important;
  }
}

.falkh2 {
  font-size: 3rem !important;
  line-height: 1.1 !important;
  font-weight: bold !important;
  font-family: "Inter", sans-serif !important;
  color: #1e1e1e;
}
@media (min-width: 768px) and (orientation: portrait) {
  .falkh2 {
    font-size: 3.4rem !important;
  }
}
@media (min-width: 1560px) {
  .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: 768px) and (orientation: portrait) {
  .falkh3 {
    font-size: 2.8rem !important;
  }
}
@media (min-width: 1560px) {
  .falkh3 {
    font-size: 3rem !important;
  }
}

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

.falktext {
  font-size: 1.6rem !important;
  line-height: 1.5 !important;
  color: #1e1e1e;
}
@media (min-width: 768px) and (orientation: portrait) {
  .falktext {
    font-size: 1.8rem !important;
  }
}
@media (min-width: 1560px) {
  .falktext {
    font-size: 2rem !important;
  }
}

.falktext-small {
  font-size: 1.4rem !important;
  line-height: 1.4 !important;
  color: #1e1e1e;
}
@media (min-width: 768px) and (orientation: portrait) {
  .falktext-small {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 1560px) {
  .falktext-small {
    font-size: 1.6rem !important;
  }
}

.header-logo {
  max-width: 300px;
  width: 100%;
  height: auto;
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  .header-logo {
    max-width: 350px;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  .header-logo {
    max-width: 380px;
  }
}
@media (min-width: 1200px) {
  .header-logo {
    max-width: 420px;
  }
}

.header__cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  transition: all 0.3s ease;
  margin-right: 15px;
}
.header__cart-icon {
  width: 28px;
  height: 28px;
  filter: brightness(0) saturate(100%) invert(52%) sepia(89%) saturate(1887%) hue-rotate(1deg) brightness(97%) contrast(94%);
  transition: filter 0.3s ease;
}
.header__cart:hover .header__cart-icon {
  filter: brightness(0) saturate(100%) invert(37%) sepia(71%) saturate(564%) hue-rotate(123deg) brightness(93%) contrast(94%);
}
.header__cart:hover {
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .header__cart {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
  .header__cart-icon {
    width: 24px;
    height: 24px;
  }
}

.header__cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #EB811A;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 5px;
}
.header__cart-count.has-items {
  background-color: #0D7368;
}
@media (max-width: 767px) {
  .header__cart-count {
    font-size: 10px;
    min-width: 18px;
    height: 18px;
  }
}

.woocommerce-product-tabs ul.tabs {
  display: none !important;
}
.woocommerce-product-tabs .woocommerce-Tabs-panel > h2 {
  display: none !important;
}
.woocommerce-product-tabs .woocommerce-Tabs-panel h1 {
  color: #EB811A !important;
  font-size: 2.4rem !important;
}
@media (min-width: 1441px) {
  .woocommerce-product-tabs .woocommerce-Tabs-panel h1 {
    font-size: 2.8rem !important;
  }
}
.woocommerce-product-tabs .woocommerce-Tabs-panel h2,
.woocommerce-product-tabs .woocommerce-Tabs-panel h3 {
  color: #EB811A !important;
}
.woocommerce-product-tabs strong {
  font-weight: normal;
}
@media (min-width: 1441px) {
  .woocommerce-product-tabs strong {
    font-size: 1.9rem;
  }
}
.woocommerce-product-tabs p {
  font-size: 1.6rem;
  padding: 7px 0;
}
@media (min-width: 1441px) {
  .woocommerce-product-tabs p {
    font-size: 1.8rem;
  }
}
.woocommerce-product-tabs ul,
.woocommerce-product-tabs li {
  font-size: 1.6rem;
  font-weight: normal;
  color: #1e1e1e;
  padding-top: 2px;
}
@media (min-width: 1441px) {
  .woocommerce-product-tabs ul,
  .woocommerce-product-tabs li {
    font-size: 1.8rem;
  }
}
.woocommerce-product-inner div.summary {
  width: 90% !important;
}
.woocommerce-product-inner .product_meta {
  display: none !important;
}
.woocommerce-product-inner .woocommerce-product-gallery__image a {
  pointer-events: none;
  cursor: default;
}
.woocommerce-product-inner .product_title {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: static !important;
  transform: none !important;
  background-color: transparent !important;
  padding: 0 !important;
  text-align: left !important;
}
.woocommerce-product-inner .single_add_to_cart_button.button.alt,
.woocommerce-product-inner button.single_add_to_cart_button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.4rem !important;
  font-family: inherit !important;
  font-weight: 500 !important;
  color: #fff !important;
  background-color: transparent !important;
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #EB811A, #EB811A) !important;
  background-size: 0% 100%, 100% 100% !important;
  background-position: left top, left top !important;
  background-repeat: no-repeat !important;
  border: 1px solid #EB811A !important;
  text-decoration: none !important;
  border-radius: 30px !important;
  padding: 10px 30px !important;
  cursor: pointer !important;
  outline: none !important;
  min-width: 180px !important;
  text-transform: none !important;
  margin: 30px 0 0 0 !important;
  transition: background-size 0.45s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease !important;
}
@media (min-width: 1441px) {
  .woocommerce-product-inner .single_add_to_cart_button.button.alt,
  .woocommerce-product-inner button.single_add_to_cart_button {
    font-size: 1.6rem !important;
    padding: 12px 40px !important;
  }
}
.woocommerce-product-inner .single_add_to_cart_button.button.alt:hover,
.woocommerce-product-inner button.single_add_to_cart_button:hover {
  background-color: transparent !important;
  background-size: 100% 100%, 100% 100% !important;
  color: #092730 !important;
  border-color: #EB811A !important;
  transform: translateY(-1px) !important;
}
.woocommerce-product-inner .single_add_to_cart_button.button.alt:active,
.woocommerce-product-inner button.single_add_to_cart_button:active {
  transform: translateY(0) !important;
}
.woocommerce-product-inner .single_add_to_cart_button.button.alt:focus,
.woocommerce-product-inner button.single_add_to_cart_button:focus {
  outline: 2px solid #EB811A !important;
  outline-offset: 2px !important;
}
.woocommerce-product-inner .product__box {
  display: flex;
  flex-direction: column;
}
@media (min-width: 576px) and (orientation: landscape) {
  .woocommerce-product-inner .product__box {
    flex-direction: row;
    gap: 40px;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  .woocommerce-product-inner .product__box {
    flex-direction: row;
    gap: 40px;
  }
}
@media (min-width: 1200px) {
  .woocommerce-product-inner .product__box {
    gap: 60px;
  }
}
@media (min-width: 576px) and (orientation: landscape) {
  .woocommerce-product-inner .product__left {
    width: 55%;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  .woocommerce-product-inner .product__left {
    width: 55%;
  }
}
@media (min-width: 1200px) {
  .woocommerce-product-inner .product__left {
    width: 40% !important;
  }
}
.woocommerce-product-inner .product__left .woocommerce-product-gallery {
  width: 100% !important;
}
.woocommerce-product-inner .product__left img {
  height: 550px;
  width: 100%;
  padding-bottom: 20px;
}
@media (min-width: 576px) and (orientation: landscape) {
  .woocommerce-product-inner .product__left img {
    width: 85%;
  }
}
@media (min-width: 1200px) {
  .woocommerce-product-inner .product__left img {
    width: 85%;
  }
}
@media (min-width: 1441px) {
  .woocommerce-product-inner .product__left img {
    width: 90%;
    height: unset;
    max-height: 700px;
  }
}
@media (min-width: 576px) and (orientation: landscape) {
  .woocommerce-product-inner .product__right {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  .woocommerce-product-inner .product__right {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (min-width: 1200px) {
  .woocommerce-product-inner .product__right {
    width: 60%;
  }
}
.woocommerce-product-inner .product__right p {
  font-size: 1.6rem;
  padding-bottom: 20px;
}
@media (min-width: 576px) and (orientation: landscape) {
  .woocommerce-product-inner .product__right p {
    font-size: 1.5rem;
    padding-bottom: 5px;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  .woocommerce-product-inner .product__right p {
    font-size: 1.5rem;
    padding-bottom: 5px;
  }
}
@media (min-width: 1441px) {
  .woocommerce-product-inner .product__right p {
    width: 70%;
    font-size: 2rem;
  }
}
.woocommerce-product-inner .product_title {
  font-size: 2.5rem;
  line-height: 27px;
  color: #092730;
  padding-bottom: 10px;
}
@media (min-width: 576px) and (orientation: landscape) {
  .woocommerce-product-inner .product_title {
    font-size: 2.2rem;
    line-height: 24px;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  .woocommerce-product-inner .product_title {
    font-size: 2.2rem;
    line-height: 24px;
  }
}
@media (min-width: 1441px) {
  .woocommerce-product-inner .product_title {
    font-size: 3.2rem;
    line-height: 35px;
  }
}
.woocommerce-product-inner .product_meta {
  font-size: 1.4rem;
  padding: 10px 0;
}

.tutor-wrap {
  padding-bottom: 50px;
}

.tutor-fs-5.tutor-color-black.tutor-mb-32 {
  font-size: 2rem !important;
  font-weight: 700 !important;
}

.tutor-fs-7 {
  font-size: 1.4rem !important;
}
@media (min-width: 768px) {
  .tutor-fs-7 {
    font-size: 1.5rem !important;
  }
}

.tutor-fs-4 {
  font-size: 2.4rem !important;
}
@media (min-width: 768px) {
  .tutor-fs-4 {
    font-size: 2.6rem !important;
  }
}

.tutor-fs-5 {
  font-size: 2rem !important;
}
@media (min-width: 768px) {
  .tutor-fs-5 {
    font-size: 2.1rem !important;
  }
}

.tutor-fs-6 {
  font-size: 1.6rem !important;
}
@media (min-width: 768px) {
  .tutor-fs-6 {
    font-size: 1.7rem !important;
  }
}

.tutor-course-content-list-item-title {
  font-size: 1.5rem !important;
}
@media (min-width: 768px) {
  .tutor-course-content-list-item-title {
    font-size: 1.6rem !important;
  }
}

.tutor-meta,
.tutor-course-details-info {
  font-size: 1.5rem !important;
}
@media (min-width: 768px) {
  .tutor-meta,
  .tutor-course-details-info {
    font-size: 1.6rem !important;
  }
}

.tutor-btn,
.tutor-btn-primary,
a.tutor-btn,
button.tutor-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem !important;
  font-family: inherit;
  font-weight: 500;
  color: #fff !important;
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #092730, #092730);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  border: 1px solid #092730 !important;
  text-decoration: none !important;
  border-radius: 30px;
  padding: 10px 24px !important;
  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) {
  .tutor-btn,
  .tutor-btn-primary,
  a.tutor-btn,
  button.tutor-btn {
    font-size: 1.6rem !important;
    padding: 12px 40px !important;
  }
}
.tutor-btn:hover,
.tutor-btn-primary:hover,
a.tutor-btn:hover,
button.tutor-btn:hover {
  background-size: 100% 100%, 100% 100% !important;
  color: #1e1e1e !important;
  border-color: #092730 !important;
  transform: translateY(-1px);
}
.tutor-btn:active,
.tutor-btn-primary:active,
a.tutor-btn:active,
button.tutor-btn:active {
  transform: translateY(0);
}
.tutor-btn:focus,
.tutor-btn-primary:focus,
a.tutor-btn:focus,
button.tutor-btn:focus {
  outline: 2px solid #092730;
  outline-offset: 3px;
}

#tutor-registration-wrap {
  max-width: none !important;
  box-shadow: none !important;
}

.tutor-registration-two-column {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .tutor-registration-two-column {
    flex-direction: column;
  }
}
.tutor-registration-left {
  flex: 0 0 60%;
  min-width: 0;
  max-width: 60%;
}
.tutor-registration-title {
  font-size: 3rem;
  font-weight: 700;
  color: #092730;
  margin-bottom: 32px;
}
.tutor-registration-right {
  flex: 0 0 40%;
  min-width: 0;
  max-width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  padding: 60px 40px;
  min-height: 400px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .tutor-registration-right {
    width: 100%;
    min-height: 300px;
  }
}
.tutor-registration-right-content {
  text-align: left;
  color: #1e1e1e;
  width: 100%;
}
@media (min-width: 1200px) {
  .tutor-registration-right-content {
    padding-left: 50px;
  }
}
.tutor-registration-right-content h3 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1e1e1e;
  line-height: 1.2;
}
.tutor-registration-right-content p {
  font-size: 1.6rem;
  margin-bottom: 40px;
  color: #1e1e1e;
  line-height: 1.6;
}
.tutor-registration-right-content .tutor-btn {
  background: #EB811A;
  color: #fff !important;
  border: 1px solid #EB811A;
  border-radius: 30px;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 10px 40px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  width: auto;
  max-width: 200px;
  margin-top: 40px;
}
.tutor-registration-right-content .tutor-btn:hover {
  background: rgb(193.1325301205, 103.734939759, 16.8674698795);
  color: #fff !important;
  border-color: rgb(193.1325301205, 103.734939759, 16.8674698795);
  transform: translateY(-1px);
}

.tutor-form-control,
#tutor-registration-form input[type=text],
#tutor-registration-form input[type=password],
#tutor-registration-form input[type=email] {
  box-shadow: none !important;
  font-size: 1.6rem !important;
  padding: 12px 16px !important;
}
.tutor-form-control:focus,
#tutor-registration-form input[type=text]:focus,
#tutor-registration-form input[type=password]:focus,
#tutor-registration-form input[type=email]:focus {
  box-shadow: none !important;
}

input[type=checkbox]:checked {
  background-color: #0D7368 !important;
  border-color: #0D7368 !important;
}

#tutor-registration-form .tutor-form-row {
  margin-bottom: 12px;
}

#tutor-registration-form .tutor-form-group {
  margin-bottom: 0;
}

.tutor-registration-left {
  overflow: hidden;
  box-sizing: border-box;
}

#tutor-registration-form {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
#tutor-registration-form input,
#tutor-registration-form button {
  max-width: 100%;
  box-sizing: border-box;
}
#tutor-registration-form .tutor-form-row {
  width: 100%;
  box-sizing: border-box;
}
#tutor-registration-form button.tutor-btn-primary {
  background: #EB811A;
  color: #fff !important;
  border: 1px solid #EB811A;
  border-radius: 30px;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 10px 40px;
  transition: all 0.3s ease;
  width: auto !important;
  max-width: 200px;
  display: inline-block;
}
#tutor-registration-form button.tutor-btn-primary:hover {
  background: rgb(193.1325301205, 103.734939759, 16.8674698795);
  color: #fff !important;
  border-color: rgb(193.1325301205, 103.734939759, 16.8674698795);
  transform: translateY(-1px);
}

.tutor-login-wrap {
  max-width: none !important;
}

.tutor-login {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1200px) {
  .tutor-login {
    flex-direction: row;
    gap: 60px;
  }
}
.tutor-login__left {
  flex: 1;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.tutor-login__left .tutor-btn-primary,
.tutor-login__left button[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff !important;
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #EB811A, #EB811A);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  border: 1px solid #EB811A !important;
  border-radius: 30px;
  padding: 12px 40px;
  cursor: pointer;
  width: auto;
  max-width: 250px;
  transition: background-size 0.45s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
.tutor-login__left .tutor-btn-primary:hover,
.tutor-login__left button[type=submit]:hover {
  background-size: 100% 100%, 100% 100%;
  color: #EB811A !important;
  border-color: #EB811A !important;
  transform: translateY(-1px);
}
.tutor-login__left .tutor-btn-primary:active,
.tutor-login__left button[type=submit]:active {
  transform: translateY(0);
}
.tutor-login__right {
  flex: 1;
  background: linear-gradient(135deg, #092730 0%, #0a3a47 100%);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.tutor-login__right .tutor-fs-5 {
  margin-bottom: 20px;
  color: #fff !important;
}
.tutor-login__right .tutor-btn {
  max-width: 300px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff !important;
  background: #EB811A;
  border: 2px solid #EB811A !important;
  border-radius: 30px;
  padding: 10px 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.tutor-login__right .tutor-btn:hover {
  background: transparent !important;
  color: #fff !important;
  border-color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(235, 129, 26, 0.3);
}
.tutor-login__right .tutor-btn:active {
  transform: translateY(0);
}

.tutor-dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px 0;
  border-bottom: 2px solid #e0e0e0;
  flex-wrap: wrap;
  gap: 15px;
}
.tutor-dashboard-header h1 {
  margin: 0;
  font-size: 2.2rem;
  color: #092730;
  flex: 1;
  min-width: 200px;
}
@media (max-width: 768px) {
  .tutor-dashboard-header h1 {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .tutor-dashboard-header h1 {
    font-size: 1.6rem;
  }
}
.tutor-dashboard-header .tutor-logout-button {
  padding: 10px 20px;
  font-size: 1.5rem;
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #EB811A, #EB811A);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  background-color: transparent;
  color: #fff;
  border: 1px solid #EB811A;
  text-decoration: none;
  border-radius: 30px;
  display: inline-block;
  transition: background-size 0.45s ease, color 0.3s ease, transform 0.2s ease;
  font-weight: normal;
}
@media (max-width: 768px) {
  .tutor-dashboard-header .tutor-logout-button {
    padding: 8px 16px;
    font-size: 1.4rem;
  }
}
.tutor-dashboard-header .tutor-logout-button:hover {
  background-size: 100% 100%, 100% 100%;
  color: #EB811A;
  border-color: #EB811A;
  transform: translateY(-1px);
}
.tutor-dashboard-header .tutor-logout-button:active {
  transform: translateY(0);
}

.tutor-dashboard-left-menu .tutor-round-box,
.tutor-dashboard-left-menu .tutor-icon-book-open,
.tutor-dashboard-left-menu .tutor-icon,
.tutor-dashboard-left-menu [class*=tutor-icon-],
.tutor-dashboard-content-inner .tutor-round-box,
.tutor-dashboard-content-inner .tutor-icon-book-open,
.tutor-dashboard-content-inner .tutor-icon,
.tutor-dashboard-content-inner [class*=tutor-icon-] {
  color: #EB811A !important;
  font-size: 22px !important;
}
.tutor-dashboard-left-menu .tutor-round-box i,
.tutor-dashboard-left-menu .tutor-icon-book-open i,
.tutor-dashboard-left-menu .tutor-icon i,
.tutor-dashboard-left-menu [class*=tutor-icon-] i,
.tutor-dashboard-content-inner .tutor-round-box i,
.tutor-dashboard-content-inner .tutor-icon-book-open i,
.tutor-dashboard-content-inner .tutor-icon i,
.tutor-dashboard-content-inner [class*=tutor-icon-] i {
  color: #EB811A !important;
  font-size: 22px !important;
}
.tutor-dashboard-left-menu .tutor-dashboard-permalinks a .tutor-round-box,
.tutor-dashboard-content-inner .tutor-dashboard-permalinks a .tutor-round-box {
  background: rgba(9, 39, 48, 0.1) !important;
  color: #EB811A !important;
  width: 60px !important;
  height: 60px !important;
  min-width: 60px !important;
  min-height: 60px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.tutor-dashboard-left-menu .tutor-dashboard-permalinks a:hover .tutor-round-box,
.tutor-dashboard-content-inner .tutor-dashboard-permalinks a:hover .tutor-round-box {
  background: #EB811A !important;
  color: #fff !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: #092730;
  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;
  }
}

.auth-wrapper {
  width: 100%;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
}
@media (min-width: 768px) and (orientation: portrait) {
  .auth-wrapper {
    min-height: 50vh;
    padding: 20px 20px;
  }
}
.auth-wrapper .woocommerce-form {
  border: none !important;
}
.auth-wrapper .woocommerce-privacy-policy-text {
  font-size: 1.4rem;
  padding-top: 10px;
}
.auth-wrapper .woocommerce-notices-wrapper {
  height: 0px !important;
  position: relative;
  z-index: 9999;
}
.auth-wrapper.show-register .auth-column.auth-left {
  display: none;
}
@media (min-width: 1200px) {
  .auth-wrapper.show-register .auth-column.auth-left {
    display: flex;
  }
}
.auth-wrapper.show-register .auth-column.auth-right {
  display: flex;
}
@media (min-width: 768px) and (orientation: portrait) {
  .auth-wrapper.show-register .auth-column.auth-right {
    justify-content: flex-start !important;
  }
}
@media (max-width: 767px) {
  .auth-wrapper {
    padding: 10px 10px;
  }
}
.auth-wrapper.show-register .auth-info-panel .panel-content h2 {
  color: #092730 !important;
}
@media (min-width: 1200px) {
  .auth-wrapper.show-register .auth-info-panel .panel-content h2 {
    width: 90%;
  }
}
.auth-wrapper.show-register .auth-info-panel .panel-content p {
  color: #092730 !important;
}
.auth-wrapper.show-login .auth-info-panel .panel-content h2 {
  color: #fff !important;
  width: 100% !important;
}
.auth-wrapper.show-login .auth-info-panel .panel-content p {
  color: #fff !important;
}
.auth-logo {
  display: block;
  width: 250px;
  max-width: 80%;
  margin: 0 auto 20px;
}
@media (min-width: 768px) and (orientation: portrait) {
  .auth-logo {
    width: 350px;
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .auth-logo {
    width: 450px;
    margin-bottom: 40px;
  }
}
@media (max-width: 374px) {
  .auth-logo {
    width: 120px;
    margin-bottom: 20px;
  }
}
.auth-container {
  width: 100%;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  min-height: 650px;
}
@media (min-width: 1200px) {
  .auth-container {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: row;
    height: 750px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .auth-container {
    margin: 0 5px;
    min-height: 550px;
  }
}
.auth-column {
  width: 100%;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 1200px) {
  .auth-column {
    flex: 1;
    padding: 40px 40px;
    position: relative;
  }
}
@media (max-width: 767px) {
  .auth-column {
    padding: 15px 15px;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  .auth-column {
    padding: 30px 25px;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  .auth-column {
    padding: 30px 25px;
  }
}
.auth-column.auth-left {
  background: white;
}
.auth-column.auth-right {
  background: linear-gradient(135deg, #092730 0%, hsl(193.8461538462, 68.4210526316%, -3.8235294118%) 100%);
  color: white;
  display: none;
  justify-content: flex-start;
}
@media (min-width: 1200px) {
  .auth-column.auth-right {
    display: flex;
  }
}
.auth-column.auth-right .woocommerce-privacy-policy-text p {
  color: #fff;
}
.auth-column.auth-right .woocommerce-privacy-policy-text a {
  color: rgb(37.1842105263, 161.1315789474, 198.3157894737);
  text-decoration: underline;
}
.auth-column.auth-right .woocommerce-privacy-policy-text a:hover {
  color: rgb(45.3157894737, 176.3684210526, 215.6842105263);
}
.auth-column.auth-right .auth-form-container h2 {
  color: #fff;
}
.auth-column.auth-right .auth-form .input-group {
  border-bottom-color: rgba(255, 255, 255, 0.3);
}
.auth-column.auth-right .auth-form .input-group:focus-within {
  border-bottom-color: white;
}
.auth-column.auth-right .auth-form .input-group input {
  color: white;
}
.auth-column.auth-right .auth-form .input-group input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.auth-column.auth-right .auth-form .input-group img {
  opacity: 1;
  filter: brightness(0) invert(1);
}
.auth-column.auth-right .social-login-wrapper a {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}
.auth-column.auth-right .social-login-wrapper a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}
.auth-column.auth-right .auth-divider {
  color: rgba(255, 255, 255, 0.8);
}
.auth-column.auth-right .auth-divider::before, .auth-column.auth-right .auth-divider::after {
  border-bottom-color: rgba(255, 255, 255, 0.3);
}
.auth-column.auth-right .auth-switch-link {
  border-top-color: rgba(255, 255, 255, 0.3);
}
.auth-column.auth-right .auth-switch-link p {
  color: rgba(255, 255, 255, 0.9);
}
.auth-column.auth-right .auth-switch-link .auth-switch-text-btn {
  color: white;
}
.auth-column.auth-right .auth-switch-link .auth-switch-text-btn:hover {
  color: rgba(255, 255, 255, 0.8);
}
.auth-form-container, .auth-info-panel {
  width: 100%;
  max-width: 400px;
  display: none;
}
.auth-form-container.active, .auth-info-panel.active {
  display: block;
}
@media (min-width: 1200px) {
  .auth-form-container, .auth-info-panel {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
  }
  .auth-form-container.active, .auth-info-panel.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateX(0);
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  .auth-form-container, .auth-info-panel {
    max-width: 500px;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  .auth-form-container, .auth-info-panel {
    max-width: 500px;
  }
}
.auth-info-panel {
  text-align: left;
}
.auth-info-panel .panel-content h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: white;
}
@media (min-width: 768px) and (orientation: portrait) {
  .auth-info-panel .panel-content h2 {
    font-size: 3.2rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .auth-info-panel .panel-content h2 {
    font-size: 2.2rem;
  }
}
@media (max-width: 374px) {
  .auth-info-panel .panel-content h2 {
    font-size: 2rem;
  }
}
.auth-info-panel .panel-content p {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
  color: #fff;
}
@media (min-width: 768px) and (orientation: portrait) {
  .auth-info-panel .panel-content p {
    font-size: 1.6rem;
    margin-bottom: 50px;
  }
}
.auth-form-container h2 {
  font-size: 3.6rem;
  margin-bottom: 25px;
  padding-top: 30px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
}
@media (min-width: 768px) and (orientation: portrait) {
  .auth-form-container h2 {
    font-size: 4.4rem;
    margin-bottom: 30px;
    padding-top: 40px;
  }
}
@media (max-width: 767px) {
  .auth-form-container h2 {
    font-size: 2.2rem;
  }
}
@media (max-width: 374px) {
  .auth-form-container h2 {
    font-size: 2rem;
  }
}
.auth-form {
  width: 100%;
}
.auth-form .input-group {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 8px;
  transition: border-color 0.3s ease;
}
.auth-form .input-group:focus-within {
  border-color: #092730;
}
.auth-form .input-group img {
  width: 18px;
  height: 18px;
  margin-right: 12px;
  opacity: 0.6;
  flex-shrink: 0;
}
@media (min-width: 768px) and (orientation: portrait) {
  .auth-form .input-group img {
    width: 20px;
    height: 20px;
    margin-right: 15px;
  }
}
.auth-form .input-group input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.5rem;
  padding: 8px 0;
  background: transparent;
  min-width: 0;
}
@media (min-width: 768px) and (orientation: portrait) {
  .auth-form .input-group input {
    font-size: 1.6rem;
  }
}
.auth-form .input-group input::placeholder {
  color: #999;
  font-size: 1.4rem;
}
@media (min-width: 768px) and (orientation: portrait) {
  .auth-form .input-group input::placeholder {
    font-size: 1.5rem;
  }
}
.auth-form .input-group input.invalid {
  border-color: #e74c3c !important;
}
.auth-form .forgot-password {
  display: inline-block;
  font-size: 1.3rem;
  color: #092730;
  text-decoration: none;
  margin: 10px 0 15px;
  transition: color 0.3s ease;
}
@media (min-width: 768px) and (orientation: portrait) {
  .auth-form .forgot-password {
    font-size: 1.4rem;
    margin: 10px 0 20px;
  }
}
.auth-form .forgot-password:hover {
  color: hsl(193.8461538462, 68.4210526316%, -3.8235294118%);
  text-decoration: underline;
}
.auth-btn, .auth-switch-btn {
  margin-top: 40px;
  width: 50%;
  padding: 10px 20px;
  font-size: 1.4rem;
  font-weight: 600;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (min-width: 768px) and (orientation: portrait) {
  .auth-btn, .auth-switch-btn {
    padding: 15px 30px;
    font-size: 1.6rem;
    letter-spacing: 1px;
    margin-top: 50px;
  }
}
@media (max-width: 374px) {
  .auth-btn, .auth-switch-btn {
    padding: 12px 20px;
    font-size: 1.3rem;
  }
}
.auth-btn {
  background: #092730;
  color: white;
  margin-top: 30px;
}
.auth-btn:hover {
  background: rgb(0.9473684211, 4.1052631579, 5.0526315789);
}
@media (min-width: 1200px) {
  .auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(9, 39, 48, 0.3);
  }
}
.auth-btn:active {
  transform: translateY(0);
}
.auth-switch-btn {
  background: white;
  color: #092730;
  border: 2px solid #092730;
}
.auth-divider {
  display: flex;
  align-items: center;
  margin: 20px 0;
  color: #999;
}
@media (min-width: 768px) and (orientation: portrait) {
  .auth-divider {
    margin: 25px 0;
  }
}
.auth-divider::before, .auth-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ddd;
}
.auth-divider span {
  padding: 0 12px;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.4;
  white-space: nowrap;
}
@media (min-width: 768px) and (orientation: portrait) {
  .auth-divider span {
    padding: 0 15px;
    font-size: 1.3rem;
  }
}
@media (max-width: 767px) {
  .auth-divider span {
    font-size: 1.1rem;
    padding: 0 10px;
  }
}
.auth-switch-link {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}
@media (min-width: 1200px) {
  .auth-switch-link {
    display: none;
  }
}
.auth-switch-link p {
  font-size: 1.4rem;
  color: #666;
  margin: 0;
}
.auth-switch-link .auth-switch-text-btn {
  background: none;
  border: none;
  color: #092730;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.auth-switch-link .auth-switch-text-btn:hover {
  color: hsl(193.8461538462, 68.4210526316%, -3.8235294118%);
}

.social-login-wrapper {
  margin: 15px 0;
  text-align: center;
}
@media (min-width: 768px) and (orientation: portrait) {
  .social-login-wrapper {
    margin: 20px 0;
  }
}
.social-login-wrapper a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  padding: 11px 18px;
  background: white;
  border: 2px solid #ddd;
  border-radius: 50px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (min-width: 768px) and (orientation: portrait) {
  .social-login-wrapper a {
    padding: 12px 20px;
    font-size: 1.6rem;
  }
}
@media (max-width: 374px) {
  .social-login-wrapper a {
    font-size: 1.3rem;
    padding: 10px 15px;
  }
}
.social-login-wrapper a img {
  margin-right: 8px;
  width: 18px;
  height: 18px;
}
@media (min-width: 768px) and (orientation: portrait) {
  .social-login-wrapper a img {
    margin-right: 10px;
    width: 20px;
    height: 20px;
  }
}

.password-error {
  background: #ffe6e6;
  padding: 8px 12px;
  border-radius: 6px;
  border-left: 3px solid #e74c3c;
  font-size: 1.3rem;
  margin-top: 10px;
}
@media (min-width: 768px) and (orientation: portrait) {
  .password-error {
    padding: 10px 15px;
    border-radius: 8px;
    border-left-width: 4px;
    font-size: 1.4rem;
  }
}

#register-container div.nsl-container .nsl-button-google[data-skin=light] {
  color: #fff !important;
  background-color: transparent !important;
  box-shadow: inset 0 0 0 1px #fff !important;
}

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

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

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

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

ul {
  text-transform: none !important;
}

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

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.woocommerce-notices-wrapper {
  height: 30px;
}
.woocommerce span.onsale {
  display: none !important;
}
.woocommerce-error, .woocommerce-message, .woocommerce-info {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  z-index: 9999;
}
.woocommerce-error.woocommerce-checkout-login-required, .woocommerce-message.woocommerce-checkout-login-required, .woocommerce-info.woocommerce-checkout-login-required {
  font-size: 1.8rem;
  padding: 30px 20px;
  text-align: center;
}
.woocommerce-error.woocommerce-checkout-login-required strong, .woocommerce-message.woocommerce-checkout-login-required strong, .woocommerce-info.woocommerce-checkout-login-required strong {
  font-size: 2rem;
  display: block;
  margin-bottom: 20px;
}
.woocommerce-error.woocommerce-checkout-login-required .button.wc-forward, .woocommerce-message.woocommerce-checkout-login-required .button.wc-forward, .woocommerce-info.woocommerce-checkout-login-required .button.wc-forward {
  margin-top: 10px;
}
.woocommerce-error .button,
.woocommerce-error a.button, .woocommerce-message .button,
.woocommerce-message a.button, .woocommerce-info .button,
.woocommerce-info a.button {
  padding: 6px 16px !important;
  font-size: 1.5rem !important;
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #092730, #092730) !important;
  background-size: 0% 100%, 100% 100% !important;
  background-position: left top, left top !important;
  background-repeat: no-repeat !important;
  background-color: transparent !important;
  color: #fff !important;
  border: 1px solid #092730 !important;
  text-decoration: none !important;
  border-radius: 30px !important;
  margin-left: 10px !important;
  display: inline-block !important;
  transition: background-size 0.45s ease, color 0.3s ease, transform 0.2s ease !important;
  font-weight: normal !important;
  text-transform: none !important;
}
@media (min-width: 768px) {
  .woocommerce-error .button,
  .woocommerce-error a.button, .woocommerce-message .button,
  .woocommerce-message a.button, .woocommerce-info .button,
  .woocommerce-info a.button {
    padding: 7px 20px !important;
    font-size: 1.6rem !important;
  }
}
.woocommerce-error .button:hover,
.woocommerce-error a.button:hover, .woocommerce-message .button:hover,
.woocommerce-message a.button:hover, .woocommerce-info .button:hover,
.woocommerce-info a.button:hover {
  background-size: 100% 100%, 100% 100% !important;
  color: #092730 !important;
  border-color: #092730 !important;
  transform: translateY(-1px) !important;
}
.woocommerce-error .button:active,
.woocommerce-error a.button:active, .woocommerce-message .button:active,
.woocommerce-message a.button:active, .woocommerce-info .button:active,
.woocommerce-info a.button:active {
  transform: translateY(0) !important;
}
.woocommerce-breadcrumb {
  display: none;
}
.woocommerce-products-header {
  display: none;
}
.woocommerce-content-area-full-width {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.woocommerce-result-count {
  font-size: 18px;
}
.woocommerce-ordering select {
  font-size: 16px;
  padding: 10px 15px;
  min-width: 200px;
}
.woocommerce-no-products-found {
  background-color: #f8f8f8;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  margin: 40px 0;
}
.woocommerce-no-products-found::before {
  display: none;
  content: none;
}
.woocommerce-info::before {
  display: none;
  content: none;
}
.woocommerce th {
  font-size: 1.4rem;
}
.woocommerce .tabs {
  display: flex;
  justify-content: space-around;
  padding: 0;
  width: 100%;
  list-style: none;
  padding: 10px 0;
}
@media (min-width: 576px) and (orientation: landscape) {
  .woocommerce .tabs {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .woocommerce .tabs {
    width: 40%;
  }
}
.woocommerce .tabs th {
  font-size: 1.4rem;
}
.woocommerce .tabs a {
  font-size: 1.6rem;
  background-color: #fff;
  color: #1e1e1e;
  border-bottom: 1px solid #092730;
  padding: 5px 20px;
  font-weight: normal;
  text-decoration: none;
}
@media (min-width: 1200px) {
  .woocommerce .related .products {
    justify-content: center;
  }
}
.woocommerce .related h2 {
  font-size: 3rem;
  color: #092730;
  padding-bottom: 10px;
}
.woocommerce .related img,
.woocommerce .related .attachment-woocommerce_thumbnail {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 4px;
}
.woocommerce .related .price {
  font-size: 1.8rem;
  color: #1e1e1e;
  padding-top: 8px;
  margin-bottom: 0;
  font-weight: 600;
}
@media (min-width: 768px) {
  .woocommerce .related .price {
    font-size: 2.2rem;
    padding-top: 10px;
  }
}
.woocommerce .related .button {
  padding: 6px 16px;
  font-size: 1.5rem;
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #092730, #092730);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  background-color: transparent;
  color: #fff;
  border: 1px solid #092730;
  text-decoration: none;
  border-radius: 30px;
  margin-top: 12px;
  display: inline-block;
  transition: background-size 0.45s ease, color 0.3s ease, transform 0.2s ease;
  font-weight: normal;
  text-transform: none;
}
@media (min-width: 768px) {
  .woocommerce .related .button {
    padding: 7px 20px;
    font-size: 1.8rem;
    margin-top: 20px;
  }
}
.woocommerce .related .button:hover {
  background-size: 100% 100%, 100% 100%;
  color: #092730;
  border-color: #092730;
  transform: translateY(-1px);
}
.woocommerce .related .button:active {
  transform: translateY(0);
}
.woocommerce .related .woocommerce-loop-product__title {
  font-size: 1.6rem;
  font-weight: normal;
  height: 85px;
  color: #092730;
  line-height: 1.3;
  margin: 8px 0;
}
@media (min-width: 768px) {
  .woocommerce .related .woocommerce-loop-product__title {
    font-size: 2rem;
    height: 100px;
    line-height: 1.4;
    margin: 10px 0;
  }
}
@media (min-width: 1200px) {
  .woocommerce h1 {
    width: 70%;
  }
}
.woocommerce strong {
  color: #092730;
}
.woocommerce .product_meta a {
  color: #092730;
}
.woocommerce .post-navigation {
  display: none;
}
.woocommerce .acf-product-blocks p {
  color: red;
}
.woocommerce .woocommerce-product-tabs h3 {
  font-size: 1.9rem;
  font-weight: 500;
  color: #092730;
  padding-top: 10px;
  line-height: 1.4;
}
@media (min-width: 768px) and (orientation: portrait) {
  .woocommerce .woocommerce-product-tabs h3 {
    font-size: 1.9rem;
  }
}
@media (min-width: 1200px) {
  .woocommerce .woocommerce-product-tabs h3 {
    font-size: 1.9rem;
  }
}
@media (min-width: 1200px) {
  .woocommerce .single-product {
    margin-top: 20px;
  }
}
.woocommerce .single-product h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #092730;
  margin: 20px 0 15px 0;
  line-height: 1.4;
}
@media (min-width: 768px) and (orientation: portrait) {
  .woocommerce .single-product h3 {
    font-size: 2.6rem;
    margin: 25px 0 18px 0;
  }
}
@media (min-width: 1200px) {
  .woocommerce .single-product h3 {
    font-size: 3rem;
    margin: 30px 0 20px 0;
  }
}
.woocommerce .price {
  padding: 7px 0;
  font-size: 3.5rem !important;
  color: #EB811A !important;
}
.woocommerce .button {
  background-color: #092730;
  color: #fff;
  padding: 5px 20px;
  border: 1px solid #092730;
  font-size: 1.4rem;
}
.woocommerce .added_to_cart {
  padding: 6px 16px;
  font-size: 1.5rem;
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #092730, #092730);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  background-color: transparent;
  color: #fff;
  border: 1px solid #092730;
  text-decoration: none;
  border-radius: 30px;
  margin-top: 12px;
  margin-left: 8px;
  display: inline-block;
  transition: background-size 0.45s ease, color 0.3s ease, transform 0.2s ease;
  font-weight: normal;
  text-transform: none;
}
@media (min-width: 768px) {
  .woocommerce .added_to_cart {
    padding: 7px 20px;
    font-size: 1.8rem;
    margin-top: 20px;
  }
}
.woocommerce .added_to_cart:hover {
  background-size: 100% 100%, 100% 100%;
  color: #092730;
  border-color: #092730;
  transform: translateY(-1px);
}
.woocommerce .added_to_cart:active {
  transform: translateY(0);
}
.woocommerce ul.products li.product a {
  padding: 5px;
}
@media (min-width: 768px) {
  .woocommerce ul.products li.product a {
    padding: 10px;
  }
}

.shop-hero-section {
  width: 100%;
  margin-bottom: 40px;
}
@media (min-width: 768px) and (orientation: portrait) {
  .shop-hero-section {
    margin-bottom: 50px;
  }
}

.shop-container-with-filters {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 20px;
  box-sizing: border-box;
}
@media (min-width: 1024px) and (orientation: landscape) {
  .shop-container-with-filters {
    padding: 30px;
    flex-direction: row;
  }
}
@media (min-width: 1367px) and (orientation: portrait) {
  .shop-container-with-filters {
    padding: 30px;
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .shop-container-with-filters {
    padding: 30px 60px;
  }
}
@media (min-width: 1441px) {
  .shop-container-with-filters {
    padding: 40px 80px;
  }
}

.shop-filters-sidebar {
  flex: 0 0 auto;
  position: static;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
@media (min-width: 1024px) and (orientation: landscape) {
  .shop-filters-sidebar {
    flex: 0 0 300px;
    position: sticky;
    top: 20px;
    height: fit-content;
    max-height: none;
    overflow: visible;
  }
}
@media (min-width: 1367px) and (orientation: portrait) {
  .shop-filters-sidebar {
    flex: 0 0 300px;
    position: sticky;
    top: 20px;
    height: fit-content;
    max-height: none;
    overflow: visible;
  }
}
@media (min-width: 1441px) {
  .shop-filters-sidebar {
    flex: 0 0 320px;
  }
}
.shop-filters-sidebar.filters-visible {
  max-height: 2000px;
  transition: max-height 0.5s ease-in;
}
.shop-filters-sidebar.filters-visible .filters-title {
  display: none;
}
.shop-filters-sidebar.filters-visible .filters-wrapper {
  padding-top: 10px;
}
@media (min-width: 1024px) and (orientation: landscape) {
  .shop-filters-sidebar.filters-visible .filters-title {
    display: block;
  }
  .shop-filters-sidebar.filters-visible .filters-wrapper {
    padding-top: 20px;
  }
}
@media (min-width: 1367px) and (orientation: portrait) {
  .shop-filters-sidebar.filters-visible .filters-title {
    display: block;
  }
  .shop-filters-sidebar.filters-visible .filters-wrapper {
    padding-top: 20px;
  }
}

.filters-wrapper {
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 0 0 8px 8px;
  border-top: none;
  padding: 20px;
  margin-bottom: 20px;
}
@media (min-width: 1024px) and (orientation: landscape) {
  .filters-wrapper {
    border-radius: 8px;
    border-top: 1px solid #e0e0e0;
    margin-bottom: 0;
  }
}
@media (min-width: 1367px) and (orientation: portrait) {
  .filters-wrapper {
    border-radius: 8px;
    border-top: 1px solid #e0e0e0;
    margin-bottom: 0;
  }
}
.filters-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #ddd;
}
@media (min-width: 1024px) and (orientation: landscape) {
  .filters-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }
}
@media (min-width: 1367px) and (orientation: portrait) {
  .filters-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }
}
.filters-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.filter-section {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}
.filter-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.filter-section.filter-reset-section {
  border-bottom: 2px solid #ddd;
  display: none;
}
.filter-section-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: #333;
}
.filter-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.filter-checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 4px;
  transition: background-color 0.2s;
}
.filter-checkbox-label:hover {
  background-color: #e8e8e8;
}
.filter-checkbox-label.active {
  background-color: #e0f2ff;
}
.filter-checkbox-label.filter-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.filter-checkbox-label.filter-disabled input[type=checkbox] {
  cursor: not-allowed;
}
.filter-checkbox-label input[type=checkbox] {
  margin-right: 10px;
  cursor: pointer;
  width: 18px;
  height: 18px;
}
.filter-checkbox-text {
  flex: 1;
  font-size: 14px;
  color: #555;
}
.filter-count {
  color: #999;
  font-size: 13px;
  margin-left: 5px;
}
.filter-icon {
  margin-right: 12px;
  font-size: 20px;
  font-weight: 400;
}
.filter-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #666;
}

.reset-filters-btn:not(.reset-filters-btn-header):not(.reset-filters-btn-inline) {
  width: 100%;
  padding: 12px 20px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}
.reset-filters-btn:not(.reset-filters-btn-header):not(.reset-filters-btn-inline):hover {
  background-color: #555;
}
.reset-filters-btn-header {
  width: 100%;
  padding: 8px 18px;
  font-size: 1.4rem;
  background-image: linear-gradient(90deg, #092730, #092730), linear-gradient(90deg, #fff, #fff);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  border: 1px solid #092730;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  cursor: pointer;
  transition: background-size 0.45s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  color: #092730;
  white-space: nowrap;
  font-weight: 600;
}
.reset-filters-btn-header:hover {
  background-size: 100% 100%, 100% 100%;
  color: #fff;
  border-color: #092730;
}
@media (min-width: 1024px) and (orientation: landscape) {
  .reset-filters-btn-header {
    width: auto;
  }
}
@media (min-width: 1367px) and (orientation: portrait) {
  .reset-filters-btn-header {
    width: auto;
  }
}
.reset-filters-btn-inline {
  font-size: 1.7rem;
  padding: 10px 20px;
  color: #fff;
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #092730, #092730);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  border: 1px solid #092730;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
  display: inline-block;
  cursor: pointer;
  transition: background-size 0.45s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
.reset-filters-btn-inline:hover {
  background-size: 100% 100%, 100% 100%;
  color: #092730;
  border-color: #092730;
}

.mobile-filters-toggle {
  display: block;
  width: 100%;
  padding: 20px;
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  color: #333;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 10px;
  text-align: left;
  position: relative;
  transition: background-color 0.2s;
}
.mobile-filters-toggle:hover {
  background-color: #f0f0f0;
}
@media (min-width: 1024px) and (orientation: landscape) {
  .mobile-filters-toggle {
    display: none;
  }
}
@media (min-width: 1367px) and (orientation: portrait) {
  .mobile-filters-toggle {
    display: none;
  }
}

.shop-main-content {
  flex: 1;
  min-width: 0;
  transition: opacity 0.3s ease;
  position: relative;
}
.shop-main-content.loading {
  pointer-events: none;
}
.shop-main-content ul.products {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100% !important;
  text-transform: none !important;
}
.shop-main-content ul.products::before, .shop-main-content ul.products::after {
  display: none;
  content: none;
}
@media (min-width: 576px) and (max-width: 767px) {
  .shop-main-content ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .shop-main-content ul.products {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) and (orientation: landscape) {
  .shop-main-content ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1366px) and (orientation: portrait) {
  .shop-main-content ul.products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }
}
@media (min-width: 1024px) and (orientation: landscape) {
  .shop-main-content ul.products {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}
@media (min-width: 1367px) and (orientation: portrait) {
  .shop-main-content ul.products {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}
@media (min-width: 1441px) {
  .shop-main-content ul.products {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}
.shop-main-content ul.products li.product {
  margin: 0;
  width: 100% !important;
  padding: 8px;
}
.shop-main-content ul.products li.product::before, .shop-main-content ul.products li.product::after {
  display: none;
  content: none;
}
@media (min-width: 768px) {
  .shop-main-content ul.products li.product {
    padding: 10px;
  }
}
.shop-main-content ul.products li.product h2,
.shop-main-content ul.products li.product .woocommerce-loop-product__title {
  font-size: 1.6rem;
  font-weight: normal;
  height: 85px;
  color: #092730;
  line-height: 1.3;
  margin: 8px 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
@media (min-width: 768px) {
  .shop-main-content ul.products li.product h2,
  .shop-main-content ul.products li.product .woocommerce-loop-product__title {
    font-size: 2rem;
    height: 100px;
    line-height: 1.4;
    margin: 10px 0;
  }
}
.shop-main-content ul.products li.product .price {
  font-size: 1.8rem !important;
  color: #EB811A !important;
  padding-top: 8px;
  margin-bottom: 0;
  font-weight: 600;
}
@media (min-width: 768px) {
  .shop-main-content ul.products li.product .price {
    font-size: 2rem !important;
    padding-top: 10px;
  }
}
.shop-main-content ul.products li.product .price .woocommerce-Price-amount,
.shop-main-content ul.products li.product .price bdi,
.shop-main-content ul.products li.product .price span {
  font-size: 1.8rem !important;
  color: #EB811A !important;
  font-weight: 600 !important;
}
@media (min-width: 768px) {
  .shop-main-content ul.products li.product .price .woocommerce-Price-amount,
  .shop-main-content ul.products li.product .price bdi,
  .shop-main-content ul.products li.product .price span {
    font-size: 2rem !important;
  }
}
.shop-main-content ul.products li.product .button {
  padding: 6px 16px;
  font-size: 1.5rem;
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #092730, #092730);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  background-color: transparent;
  color: #fff;
  border: 1px solid #092730;
  text-decoration: none;
  border-radius: 30px;
  margin-top: 12px;
  display: inline-block;
  transition: background-size 0.45s ease, color 0.3s ease, transform 0.2s ease;
  font-weight: normal;
  text-transform: none;
}
@media (min-width: 768px) {
  .shop-main-content ul.products li.product .button {
    padding: 7px 20px;
    font-size: 1.8rem;
    margin-top: 20px;
  }
}
.shop-main-content ul.products li.product .button:hover {
  background-size: 100% 100%, 100% 100%;
  color: #092730;
  border-color: #092730;
  transform: translateY(-1px);
}
.shop-main-content ul.products li.product .button:active {
  transform: translateY(0);
}
.shop-main-content ul.products li.product img,
.shop-main-content ul.products li.product .attachment-woocommerce_thumbnail {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 4px;
}
.shop-main-content ul.products li.product a {
  padding: 0;
}

.no-products-message {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0 0 15px 0;
}
.no-products-suggestion {
  font-size: 16px;
  color: #666;
  margin: 0 0 25px 0;
  line-height: 1.5;
}

.woocommerce-cart .wp-block-woocommerce-cart {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) and (orientation: portrait) {
  .woocommerce-cart .wp-block-woocommerce-cart {
    padding: 0 30px;
  }
}
@media (min-width: 1200px) {
  .woocommerce-cart .wp-block-woocommerce-cart {
    padding: 0 40px;
  }
}

.woocommerce-cart-form .shop_table,
.cart-collaterals .shop_table,
body.woocommerce-cart .shop_table {
  font-size: 1.6rem;
}
@media (min-width: 1560px) {
  .woocommerce-cart-form .shop_table,
  .cart-collaterals .shop_table,
  body.woocommerce-cart .shop_table {
    font-size: 1.8rem;
  }
}
.woocommerce-cart-form .shop_table thead th,
.cart-collaterals .shop_table thead th,
body.woocommerce-cart .shop_table thead th {
  font-size: 1.6rem;
  font-weight: 600;
}
@media (min-width: 1560px) {
  .woocommerce-cart-form .shop_table thead th,
  .cart-collaterals .shop_table thead th,
  body.woocommerce-cart .shop_table thead th {
    font-size: 1.8rem;
  }
}
.woocommerce-cart-form .shop_table td,
.cart-collaterals .shop_table td,
body.woocommerce-cart .shop_table td {
  font-size: 1.6rem;
}
@media (min-width: 1560px) {
  .woocommerce-cart-form .shop_table td,
  .cart-collaterals .shop_table td,
  body.woocommerce-cart .shop_table td {
    font-size: 1.8rem;
  }
}
.woocommerce-cart-form .product-name a,
.woocommerce-cart-form td.product-name a,
.cart-collaterals .product-name a,
.cart-collaterals td.product-name a,
body.woocommerce-cart .product-name a,
body.woocommerce-cart td.product-name a {
  color: #092730 !important;
  font-size: 1.6rem;
  font-weight: 600;
}
@media (min-width: 1560px) {
  .woocommerce-cart-form .product-name a,
  .woocommerce-cart-form td.product-name a,
  .cart-collaterals .product-name a,
  .cart-collaterals td.product-name a,
  body.woocommerce-cart .product-name a,
  body.woocommerce-cart td.product-name a {
    font-size: 1.8rem;
  }
}
.woocommerce-cart-form .product-name a:visited,
.woocommerce-cart-form td.product-name a:visited,
.cart-collaterals .product-name a:visited,
.cart-collaterals td.product-name a:visited,
body.woocommerce-cart .product-name a:visited,
body.woocommerce-cart td.product-name a:visited {
  color: #092730 !important;
}
.woocommerce-cart-form .product-name a:hover, .woocommerce-cart-form .product-name a:focus, .woocommerce-cart-form .product-name a:active,
.woocommerce-cart-form td.product-name a:hover,
.woocommerce-cart-form td.product-name a:focus,
.woocommerce-cart-form td.product-name a:active,
.cart-collaterals .product-name a:hover,
.cart-collaterals .product-name a:focus,
.cart-collaterals .product-name a:active,
.cart-collaterals td.product-name a:hover,
.cart-collaterals td.product-name a:focus,
.cart-collaterals td.product-name a:active,
body.woocommerce-cart .product-name a:hover,
body.woocommerce-cart .product-name a:focus,
body.woocommerce-cart .product-name a:active,
body.woocommerce-cart td.product-name a:hover,
body.woocommerce-cart td.product-name a:focus,
body.woocommerce-cart td.product-name a:active {
  color: #004a7a !important;
}
.woocommerce-cart-form .product-price,
.woocommerce-cart-form .product-subtotal,
.cart-collaterals .product-price,
.cart-collaterals .product-subtotal,
body.woocommerce-cart .product-price,
body.woocommerce-cart .product-subtotal {
  font-size: 1.6rem !important;
  font-weight: 600;
}
@media (min-width: 1560px) {
  .woocommerce-cart-form .product-price,
  .woocommerce-cart-form .product-subtotal,
  .cart-collaterals .product-price,
  .cart-collaterals .product-subtotal,
  body.woocommerce-cart .product-price,
  body.woocommerce-cart .product-subtotal {
    font-size: 1.8rem !important;
  }
}
.woocommerce-cart-form button.button,
.woocommerce-cart-form input.button,
.woocommerce-cart-form a.button,
.woocommerce-cart-form button[type=submit],
.woocommerce-cart-form input[type=submit],
.woocommerce-cart-form .button.checkout-button,
.cart-collaterals button.button,
.cart-collaterals input.button,
.cart-collaterals a.button,
.cart-collaterals button[type=submit],
.cart-collaterals input[type=submit],
.cart-collaterals .button.checkout-button,
body.woocommerce-cart button.button,
body.woocommerce-cart input.button,
body.woocommerce-cart a.button,
body.woocommerce-cart button[type=submit],
body.woocommerce-cart input[type=submit],
body.woocommerce-cart .button.checkout-button {
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #092730, #092730) !important;
  background-size: 0% 100%, 100% 100% !important;
  background-position: left top, left top !important;
  background-repeat: no-repeat !important;
  background-color: transparent !important;
  color: #fff !important;
  border: 1px solid #092730 !important;
  font-size: 1.4rem !important;
  padding: 10px 20px !important;
  border-radius: 30px !important;
  font-weight: normal !important;
  transition: background-size 0.45s ease, color 0.3s ease, transform 0.2s ease !important;
  line-height: normal !important;
}
@media (min-width: 1560px) {
  .woocommerce-cart-form button.button,
  .woocommerce-cart-form input.button,
  .woocommerce-cart-form a.button,
  .woocommerce-cart-form button[type=submit],
  .woocommerce-cart-form input[type=submit],
  .woocommerce-cart-form .button.checkout-button,
  .cart-collaterals button.button,
  .cart-collaterals input.button,
  .cart-collaterals a.button,
  .cart-collaterals button[type=submit],
  .cart-collaterals input[type=submit],
  .cart-collaterals .button.checkout-button,
  body.woocommerce-cart button.button,
  body.woocommerce-cart input.button,
  body.woocommerce-cart a.button,
  body.woocommerce-cart button[type=submit],
  body.woocommerce-cart input[type=submit],
  body.woocommerce-cart .button.checkout-button {
    font-size: 1.6rem !important;
    padding: 12px 24px !important;
  }
}
.woocommerce-cart-form button.button:hover,
.woocommerce-cart-form input.button:hover,
.woocommerce-cart-form a.button:hover,
.woocommerce-cart-form button[type=submit]:hover,
.woocommerce-cart-form input[type=submit]:hover,
.woocommerce-cart-form .button.checkout-button:hover,
.cart-collaterals button.button:hover,
.cart-collaterals input.button:hover,
.cart-collaterals a.button:hover,
.cart-collaterals button[type=submit]:hover,
.cart-collaterals input[type=submit]:hover,
.cart-collaterals .button.checkout-button:hover,
body.woocommerce-cart button.button:hover,
body.woocommerce-cart input.button:hover,
body.woocommerce-cart a.button:hover,
body.woocommerce-cart button[type=submit]:hover,
body.woocommerce-cart input[type=submit]:hover,
body.woocommerce-cart .button.checkout-button:hover {
  background-size: 100% 100%, 100% 100% !important;
  color: #092730 !important;
  border-color: #092730 !important;
  transform: translateY(-1px) !important;
}
.woocommerce-cart-form button.button:active,
.woocommerce-cart-form input.button:active,
.woocommerce-cart-form a.button:active,
.woocommerce-cart-form button[type=submit]:active,
.woocommerce-cart-form input[type=submit]:active,
.woocommerce-cart-form .button.checkout-button:active,
.cart-collaterals button.button:active,
.cart-collaterals input.button:active,
.cart-collaterals a.button:active,
.cart-collaterals button[type=submit]:active,
.cart-collaterals input[type=submit]:active,
.cart-collaterals .button.checkout-button:active,
body.woocommerce-cart button.button:active,
body.woocommerce-cart input.button:active,
body.woocommerce-cart a.button:active,
body.woocommerce-cart button[type=submit]:active,
body.woocommerce-cart input[type=submit]:active,
body.woocommerce-cart .button.checkout-button:active {
  transform: translateY(0) !important;
}
.woocommerce-cart-form .product-remove a.remove,
.cart-collaterals .product-remove a.remove,
body.woocommerce-cart .product-remove a.remove {
  color: #092730 !important;
  font-size: 2rem;
  font-weight: normal;
  text-decoration: none;
}
.woocommerce-cart-form .product-remove a.remove:hover,
.cart-collaterals .product-remove a.remove:hover,
body.woocommerce-cart .product-remove a.remove:hover {
  color: #004a7a !important;
}
.woocommerce-cart-form .coupon .input-text,
.cart-collaterals .coupon .input-text,
body.woocommerce-cart .coupon .input-text {
  font-size: 1.4rem;
  padding: 10px 15px;
  border-radius: 5px;
  min-width: 140px;
}
@media (min-width: 1560px) {
  .woocommerce-cart-form .coupon .input-text,
  .cart-collaterals .coupon .input-text,
  body.woocommerce-cart .coupon .input-text {
    font-size: 1.6rem;
    padding: 12px 18px;
    min-width: 160px;
  }
}
.woocommerce-cart-form .quantity input,
.cart-collaterals .quantity input,
body.woocommerce-cart .quantity input {
  font-size: 1.4rem;
  padding: 8px;
}
@media (min-width: 1560px) {
  .woocommerce-cart-form .quantity input,
  .cart-collaterals .quantity input,
  body.woocommerce-cart .quantity input {
    font-size: 1.6rem;
    padding: 10px;
  }
}

.cart-collaterals .cart_totals h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (min-width: 1560px) {
  .cart-collaterals .cart_totals h2 {
    font-size: 2rem;
  }
}
.cart-collaterals .cart_totals table {
  font-size: 1.4rem;
}
@media (min-width: 1560px) {
  .cart-collaterals .cart_totals table {
    font-size: 1.6rem;
  }
}
.cart-collaterals .cart_totals table th {
  font-size: 1.4rem;
  font-weight: 600;
}
@media (min-width: 1560px) {
  .cart-collaterals .cart_totals table th {
    font-size: 1.6rem;
  }
}
.cart-collaterals .cart_totals table td {
  font-size: 1.4rem;
}
@media (min-width: 1560px) {
  .cart-collaterals .cart_totals table td {
    font-size: 1.6rem;
  }
}
.cart-collaterals .cart_totals table .order-total th,
.cart-collaterals .cart_totals table .order-total td {
  font-size: 1.6rem;
  font-weight: 400;
}
@media (min-width: 1560px) {
  .cart-collaterals .cart_totals table .order-total th,
  .cart-collaterals .cart_totals table .order-total td {
    font-size: 1.8rem;
  }
}
.cart-collaterals .cart_totals .wc-proceed-to-checkout a.button,
.cart-collaterals .cart_totals .wc-proceed-to-checkout .button {
  width: 50%;
  text-align: center;
  font-size: 1.4rem !important;
  font-weight: normal !important;
  padding: 12px 28px !important;
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #EB811A, #EB811A) !important;
  background-size: 0% 100%, 100% 100% !important;
  background-position: left top, left top !important;
  background-repeat: no-repeat !important;
  background-color: transparent !important;
  color: #fff !important;
  border: 1px solid #EB811A !important;
  border-radius: 30px !important;
  margin: 0 auto !important;
  display: block !important;
  transition: background-size 0.45s ease, color 0.3s ease, transform 0.2s ease !important;
}
@media (min-width: 1560px) {
  .cart-collaterals .cart_totals .wc-proceed-to-checkout a.button,
  .cart-collaterals .cart_totals .wc-proceed-to-checkout .button {
    font-size: 1.6rem !important;
    padding: 14px 32px !important;
  }
}
.cart-collaterals .cart_totals .wc-proceed-to-checkout a.button:hover,
.cart-collaterals .cart_totals .wc-proceed-to-checkout .button:hover {
  background-size: 100% 100%, 100% 100% !important;
  color: #EB811A !important;
  border-color: #EB811A !important;
  transform: translateY(-1px) !important;
}
.cart-collaterals .cart_totals .wc-proceed-to-checkout a.button:active,
.cart-collaterals .cart_totals .wc-proceed-to-checkout .button:active {
  transform: translateY(0) !important;
}

.cart-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  margin-top: 20px;
}
@media (min-width: 576px) and (orientation: landscape) {
  .cart-header {
    margin-bottom: 50px;
    margin-top: 30px;
  }
}

.cart-title-wrapper {
  position: relative;
  text-align: center;
}

.cart-title-bg {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 900;
  color: #F7F7F7;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  position: absolute;
  z-index: 0;
  font-size: 8rem;
}
@media (min-width: 576px) and (orientation: landscape) {
  .cart-title-bg {
    font-size: 10rem;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  .cart-title-bg {
    font-size: 12rem;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  .cart-title-bg {
    font-size: 14rem;
  }
}
@media (min-width: 1200px) {
  .cart-title-bg {
    font-size: 15rem;
  }
}
@media (min-width: 1441px) {
  .cart-title-bg {
    font-size: 16rem;
  }
}
.cart-title-bg {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cart-title {
  position: relative;
  z-index: 1;
  font-size: 2.8rem;
  font-weight: 600;
  color: #1e1e1e;
  margin: 0;
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  .cart-title {
    font-size: 4rem;
  }
}
@media (min-width: 1200px) {
  .cart-title {
    font-size: 4.5rem;
  }
}

.cart-empty-container {
  min-height: 50vh;
}
.cart-empty-container .cart-header {
  margin-top: 60px;
}
@media (min-width: 768px) and (orientation: portrait) {
  .cart-empty-container .cart-header {
    margin-top: 80px;
  }
}
@media (min-width: 1200px) {
  .cart-empty-container .cart-header {
    margin-top: 100px;
  }
}
.cart-empty-container .return-to-shop {
  text-align: center;
  margin-top: 30px;
}
@media (min-width: 768px) and (orientation: portrait) {
  .cart-empty-container .return-to-shop {
    margin-top: 40px;
  }
}
.cart-empty-container .return-to-shop .button {
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #092730, #092730) !important;
  background-size: 0% 100%, 100% 100% !important;
  background-position: left top, left top !important;
  background-repeat: no-repeat !important;
  background-color: transparent !important;
  color: #fff !important;
  border: 1px solid #092730 !important;
  font-size: 1.4rem !important;
  padding: 10px 20px !important;
  border-radius: 30px !important;
  font-weight: normal !important;
  transition: background-size 0.45s ease, color 0.3s ease, transform 0.2s ease !important;
  line-height: normal !important;
  text-decoration: none !important;
  display: inline-block !important;
}
@media (min-width: 1560px) {
  .cart-empty-container .return-to-shop .button {
    font-size: 1.6rem !important;
    padding: 12px 24px !important;
  }
}
.cart-empty-container .return-to-shop .button:hover {
  background-size: 100% 100%, 100% 100% !important;
  color: #092730 !important;
  border-color: #092730 !important;
  transform: translateY(-1px) !important;
}
.cart-empty-container .return-to-shop .button:active {
  transform: translateY(0) !important;
}

.woocommerce-checkout .woocommerce-input-wrapper input[type=text],
.woocommerce-checkout .woocommerce-input-wrapper input[type=email],
.woocommerce-checkout .woocommerce-input-wrapper input[type=tel],
.woocommerce-checkout .woocommerce-input-wrapper textarea {
  min-height: 50px;
  font-size: 1.6rem;
  padding: 12px 15px;
  border-radius: 5px;
  border: 1px solid #ddd;
  width: 100%;
}
.woocommerce-checkout textarea#order_comments {
  min-height: 120px;
}
.woocommerce-checkout label,
.woocommerce-checkout .form-row label {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table th,
.woocommerce-checkout .woocommerce-checkout-review-order-table td {
  font-size: 1.6rem;
  padding: 15px 12px;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .product-name {
  font-size: 1.6rem;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .product-total,
.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total {
  font-size: 1.8rem;
  font-weight: 600;
}
.woocommerce-checkout #place_order {
  width: 30%;
  text-align: center;
  font-size: 1.4rem;
  font-weight: normal;
  padding: 12px 28px;
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #EB811A, #EB811A);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  background-color: transparent;
  color: #fff;
  border: 1px solid #EB811A;
  border-radius: 30px;
  margin: 30px auto 0 auto;
  display: block;
  transition: background-size 0.45s ease, color 0.3s ease, transform 0.2s ease;
}
@media (min-width: 1560px) {
  .woocommerce-checkout #place_order {
    font-size: 1.6rem;
    padding: 14px 32px;
  }
}
.woocommerce-checkout #place_order:hover {
  background-size: 100% 100%, 100% 100%;
  color: #EB811A;
  border-color: #EB811A;
  transform: translateY(-1px);
}
.woocommerce-checkout #place_order:active {
  transform: translateY(0);
}
.woocommerce-checkout .woocommerce-form-coupon button {
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #092730, #092730);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  background-color: transparent;
  color: #fff;
  border: 1px solid #092730;
  border-radius: 30px;
  font-weight: normal;
  padding: 10px 20px;
  font-size: 1.4rem;
  transition: background-size 0.45s ease, color 0.3s ease, transform 0.2s ease;
}
@media (min-width: 1560px) {
  .woocommerce-checkout .woocommerce-form-coupon button {
    font-size: 1.6rem;
    padding: 12px 24px;
  }
}
.woocommerce-checkout .woocommerce-form-coupon button:hover {
  background-size: 100% 100%, 100% 100%;
  color: #092730;
  border-color: #092730;
  transform: translateY(-1px);
}
.woocommerce-checkout .woocommerce-form-coupon button:active {
  transform: translateY(0);
}
.woocommerce-checkout .woocommerce-checkout-payment {
  font-size: 1.6rem;
}
.woocommerce-checkout .woocommerce-checkout-payment .wc_payment_method label {
  font-size: 1.6rem;
  font-weight: 600;
}
.woocommerce-checkout .woocommerce-checkout-payment .payment_box {
  font-size: 1.6rem;
  line-height: 1.6;
}
.woocommerce-checkout .woocommerce-checkout-payment .woocommerce-privacy-policy-text,
.woocommerce-checkout .woocommerce-checkout-payment .woocommerce-terms-and-conditions-wrapper {
  font-size: 1.5rem;
}
.woocommerce-checkout .woocommerce-checkout-payment .woocommerce-privacy-policy-text p,
.woocommerce-checkout .woocommerce-checkout-payment .woocommerce-terms-and-conditions-wrapper p {
  font-size: 1.5rem;
}

body.woocommerce-order-received .woocommerce-order {
  padding-top: 0;
}
body.woocommerce-order-received > .container:first-of-type {
  padding-top: 60px;
}

.woocommerce-order {
  font-size: 1.6rem;
}
.woocommerce-order .woocommerce-order-overview {
  font-size: 1.6rem;
}
.woocommerce-order .woocommerce-order-overview li {
  font-size: 1.6rem;
}
.woocommerce-order .woocommerce-order-overview strong {
  font-size: 1.6rem;
  font-weight: 600;
}
.woocommerce-order .woocommerce-table--order-details {
  font-size: 1.6rem;
}
.woocommerce-order .woocommerce-table--order-details th,
.woocommerce-order .woocommerce-table--order-details td {
  font-size: 1.6rem;
  padding: 15px 12px;
}
.woocommerce-order .woocommerce-table--order-details .product-name {
  font-size: 1.6rem;
}
.woocommerce-order .woocommerce-table--order-details .product-total,
.woocommerce-order .woocommerce-table--order-details .order-total {
  font-size: 1.8rem;
  font-weight: 600;
}
.woocommerce-order .woocommerce-customer-details {
  font-size: 1.6rem;
}
.woocommerce-order .woocommerce-customer-details address {
  font-size: 1.6rem;
}
.woocommerce-order .woocommerce-notice {
  font-size: 1.6rem;
}

.woocommerce-register-toggle {
  font-size: 1.6rem;
}
.woocommerce-register-toggle button {
  background-color: #092730;
  color: #fff;
  border-radius: 5px;
}

@media (min-width: 1200px) {
  .ms-no-courses-prompt {
    font-size: 1.5rem;
    margin-left: 100px;
  }
}
.woocommerce-info {
  font-size: 1.5rem !important;
}
.woocommerce-MyAccount-navigation {
  width: 100% !important;
}
@media (min-width: 1200px) {
  .woocommerce-MyAccount-navigation {
    display: flex;
    justify-content: center;
  }
}
.woocommerce-MyAccount-navigation ul {
  display: flex;
  list-style: none;
}
.woocommerce-MyAccount-navigation li {
  padding: 10px 5px !important;
  transition: all ease-in-out 0.5s !important;
}
.woocommerce-MyAccount-navigation li:hover {
  border-bottom: 1px solid #1e1e1e !important;
}
.woocommerce-MyAccount-navigation a:hover {
  text-decoration: none !important;
}
.woocommerce-MyAccount-content {
  width: 100% !important;
}
.woocommerce-MyAccount-content .woocommerce-notices-wrapper {
  height: 50px !important;
  position: relative;
  z-index: 9999;
}

/* Style dla bloków */
.about {
  padding: 80px 0;
  background-color: #fff;
  position: relative;
}
@media (max-width: 767px) {
  .about {
    padding: 40px 0;
  }
}
@media (min-width: 576px) and (orientation: landscape) {
  .about {
    padding: 20px 0;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  .about {
    padding: 50px 0;
  }
}
@media (min-width: 1200px) {
  .about {
    padding: 30px 0;
  }
}
.about__box {
  position: relative;
  background-color: #092730;
  padding: 50px 20px;
  border-radius: 30px;
}
@media (min-width: 768px) and (orientation: portrait) {
  .about__box {
    display: flex;
    justify-content: space-around;
  }
}
@media (min-width: 1200px) {
  .about__box {
    display: flex;
    justify-content: space-around;
  }
}
.about__left {
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) and (orientation: portrait) {
  .about__left {
    width: 60%;
    padding-left: 40px;
    justify-content: center;
  }
}
@media (min-width: 1200px) {
  .about__left {
    width: 60%;
    padding-left: 40px;
    justify-content: center;
  }
}
@media (min-width: 1200px) {
  .about__left {
    flex: 0 0 50%;
    width: 50%;
  }
}
.about__right {
  flex: 1;
  position: relative;
  min-height: 300px;
}
@media (min-width: 576px) and (orientation: landscape) {
  .about__right {
    width: 100%;
    min-height: 300px;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  .about__right {
    padding: 40px 0;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  .about__right {
    width: 40%;
  }
}
@media (min-width: 1200px) {
  .about__right {
    flex: 0 0 50%;
    width: 40%;
  }
}
@media (min-width: 1560px) {
  .about__right {
    flex: 0 0 50%;
    min-height: 400px;
  }
}
.about__title {
  font-size: 2.6rem !important;
  line-height: 1.1 !important;
  font-weight: bold !important;
  font-family: "Inter", sans-serif !important;
}
@media (min-width: 768px) and (orientation: portrait) {
  .about__title {
    font-size: 2.6rem !important;
  }
}
@media (min-width: 1560px) {
  .about__title {
    font-size: 2.8rem !important;
  }
}
.about__title {
  color: #fff;
  margin: 0;
}
.about__title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: fit-content;
}
@media (max-width: 767px) {
  .about__title-wrapper {
    gap: 8px;
  }
}
.about__line {
  width: 100%;
  height: 3px;
  background-color: #EB811A;
}
.about__text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  margin: 0;
  padding-top: 30px;
}
@media (max-width: 767px) {
  .about__text {
    font-size: 15px;
  }
}
.about__stats {
  display: flex;
  margin-top: 20px;
  gap: 30px;
  padding-bottom: 30px;
}
.about__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about__stat-number {
  font-family: "Inter", sans-serif;
  font-size: 64px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}
@media (max-width: 767px) {
  .about__stat-number {
    font-size: 40px;
  }
}
@media (min-width: 576px) and (orientation: landscape) {
  .about__stat-number {
    font-size: 32px;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  .about__stat-number {
    font-size: 40px;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  .about__stat-number {
    font-size: 40px;
  }
}
@media (min-width: 1200px) {
  .about__stat-number {
    font-size: 40px;
  }
}
.about__stat-label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
}
.about__decorative-box {
  display: none;
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  .about__decorative-box {
    display: block;
    position: absolute;
    top: -100px;
    right: 0;
    width: 150px;
    height: 150px;
    background-color: #EB811A;
    border-radius: 15px;
  }
}
@media (min-width: 1200px) {
  .about__decorative-box {
    display: block;
    position: absolute;
    top: -150px;
    right: -20px;
    width: 200px;
    height: 400px;
    background-color: #EB811A;
    border-radius: 15px;
  }
}
@media (min-width: 1560px) {
  .about__decorative-box {
    width: 250px;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  .about__decorative-box--left {
    bottom: -20px;
    left: -20px;
    right: auto;
    width: 150px;
    height: 150px;
    top: unset;
  }
}
@media (min-width: 1200px) {
  .about__decorative-box--left {
    bottom: -20px;
    left: -20px;
    top: unset;
    right: auto;
    width: 200px;
    height: 150px;
  }
}
@media (min-width: 1560px) {
  .about__decorative-box--left {
    width: 300px;
  }
}
.about__image {
  position: absolute;
  object-fit: cover;
  object-position: top;
  border-radius: 15px;
}
@media (min-width: 768px) and (orientation: portrait) {
  .about__image {
    height: 120%;
  }
}
@media (min-width: 1200px) {
  .about__image {
    height: 120%;
  }
}
.about__image--first {
  top: 0;
  left: 0;
  width: 50%;
}
@media (min-width: 576px) and (orientation: landscape) {
  .about__image--first {
    height: 100%;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  .about__image--first {
    width: 40%;
    height: 100%;
    top: 0;
    left: 5%;
    transform: none;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  .about__image--first {
    top: -100px;
    left: 25px;
  }
}
@media (min-width: 1200px) {
  .about__image--first {
    top: -100px;
    left: 25px;
  }
}
@media (min-width: 1560px) {
  .about__image--first {
    width: 40%;
    left: 100px;
  }
}
.about__image--second {
  width: 50%;
  bottom: 0;
  right: -10px;
}
@media (min-width: 576px) and (orientation: landscape) {
  .about__image--second {
    bottom: unset;
    top: 20px;
    height: 100%;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  .about__image--second {
    width: 40%;
    height: 100%;
    bottom: auto;
    top: 0;
    right: 5%;
    transform: none;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  .about__image--second {
    bottom: -100px;
    right: 50px;
  }
}
@media (min-width: 1200px) {
  .about__image--second {
    bottom: -100px;
    right: 50px;
  }
}
@media (min-width: 1560px) {
  .about__image--second {
    width: 40%;
    right: 100px;
  }
}

#block_benefits {
  padding: 50px 0 20px;
  position: relative;
}
@media (min-width: 1200px) {
  #block_benefits {
    width: 95%;
    margin: 50px auto;
    border-radius: 50px;
    padding: 20px 0;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_benefits .benefits {
    display: flex;
    justify-content: space-between;
    gap: 30px;
  }
}
@media (min-width: 1200px) {
  #block_benefits .benefits {
    display: flex;
    justify-content: space-between;
    gap: 40px;
  }
}
#block_benefits .benefits__left {
  position: relative;
  overflow: visible;
  border-radius: 20px;
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #block_benefits .benefits__left {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    border-radius: 0;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_benefits .benefits__left {
    width: 35%;
    margin-left: 0;
    border-radius: 20px;
    height: 100%;
  }
}
@media (min-width: 1200px) {
  #block_benefits .benefits__left {
    width: 35%;
    height: 100%;
    display: flex;
    align-items: center;
  }
}
#block_benefits .benefits__left::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #092730;
  border-radius: 20px;
  z-index: -1;
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_benefits .benefits__left::before {
    top: 20px;
    left: -20px;
  }
}
@media (min-width: 1200px) {
  #block_benefits .benefits__left::before {
    top: 25px;
    left: -25px;
  }
}
@media (min-width: 1441px) {
  #block_benefits .benefits__left::before {
    top: 30px;
    left: -30px;
  }
}
#block_benefits .benefits__background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}
@media (min-width: 576px) and (orientation: landscape) {
  #block_benefits .benefits__background-image {
    height: 250px;
    min-height: 250px;
    object-position: top;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #block_benefits .benefits__background-image {
    height: 350px;
    object-position: center;
    border-radius: 0;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_benefits .benefits__background-image {
    height: 100%;
    min-height: unset;
    border-radius: 20px;
  }
}
@media (min-width: 1200px) {
  #block_benefits .benefits__background-image {
    height: 100%;
    min-height: unset;
  }
}
#block_benefits .benefits__subtitle {
  color: #fff;
}
#block_benefits .benefits__header {
  font-size: 2.6rem !important;
  line-height: 1.1 !important;
  font-weight: bold !important;
  font-family: "Inter", sans-serif !important;
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_benefits .benefits__header {
    font-size: 2.6rem !important;
  }
}
@media (min-width: 1560px) {
  #block_benefits .benefits__header {
    font-size: 2.8rem !important;
  }
}
#block_benefits .benefits__header {
  color: #1e1e1e;
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  #block_benefits .benefits__header {
    padding-top: 30px;
    padding-bottom: 3rem;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #block_benefits .benefits__header {
    padding-bottom: 2.5rem;
    padding-top: 20px;
  }
}
@media (min-width: 1200px) {
  #block_benefits .benefits__header {
    padding-bottom: 3rem;
  }
}
#block_benefits .benefits__text {
  color: #1e1e1e;
  font-size: 1.7rem;
  line-height: 1.25;
  padding-top: 10px;
  font-family: "Inter", sans-serif;
}
#block_benefits .benefits__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_benefits .benefits__right {
    width: 60%;
  }
}
@media (min-width: 1200px) {
  #block_benefits .benefits__right {
    width: 60%;
  }
}
#block_benefits .benefits__framed-content {
  background-color: #fff;
  border-radius: 16px;
}
#block_benefits .benefits__icons-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #block_benefits .benefits__icons-wrapper {
    gap: 25px;
  }
}
@media (min-width: 1200px) {
  #block_benefits .benefits__icons-wrapper {
    gap: 20px;
  }
}
#block_benefits .benefits__box {
  width: 100%;
  contain: content;
  min-height: 80px;
  display: flex;
}
@media (min-width: 576px) and (orientation: landscape) {
  #block_benefits .benefits__box {
    width: calc(50% - 10px);
  }
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #block_benefits .benefits__box {
    width: calc(25% - 20px);
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_benefits .benefits__box {
    width: calc(50% - 10px);
  }
}
@media (min-width: 1200px) {
  #block_benefits .benefits__box {
    width: calc(50% - 10px);
  }
}
#block_benefits .benefits__box a {
  display: flex;
  width: 100%;
  text-decoration: none;
}
#block_benefits .benefits__box:hover .info__littleheader::after {
  width: 70%;
}
#block_benefits .benefits__box-inner {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #block_benefits .benefits__box-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_benefits .benefits__box-inner {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }
}
#block_benefits .benefits__icon-container {
  flex-shrink: 0;
  position: relative;
  width: 80px;
  height: 80px;
  min-height: 80px;
  max-height: 80px;
  line-height: 0;
  overflow: hidden;
}
#block_benefits .benefits__lottie-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  line-height: 0;
}
#block_benefits .benefits__lottie-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  display: none;
  z-index: 1;
}
#block_benefits .benefits__icon {
  width: 80px;
  height: 80px;
  display: block;
  line-height: 0;
}
#block_benefits .benefits__icon img,
#block_benefits .benefits__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
#block_benefits .benefits__lottie-wrapper #block_benefits .benefits__icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px !important;
  height: 80px !important;
  z-index: 2;
}
#block_benefits .benefits__lottie-wrapper #block_benefits .benefits__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
#block_benefits .benefits__text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#block_benefits .benefits__littleheader {
  position: relative;
  color: #1e1e1e;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  line-height: 1.2;
  margin: 0;
  font-weight: 600;
}
#block_benefits .benefits__littleheader::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 2px;
  width: 0;
  background-color: #ffce00;
  transition: width 0.4s ease;
}
#block_benefits .benefits__desc {
  color: #1e1e1e;
  font-size: 1.4rem;
  line-height: 1.4;
  margin: 0;
  opacity: 0.9;
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_benefits .benefits__desc {
    font-size: 1.3rem;
  }
}
@media (min-width: 1200px) {
  #block_benefits .benefits__desc {
    font-size: 1.4rem;
  }
}
#block_benefits .benefits__short {
  font-size: 2rem !important;
  line-height: 1.3 !important;
  font-weight: bold !important;
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_benefits .benefits__short {
    font-size: 2rem !important;
  }
}
@media (min-width: 1560px) {
  #block_benefits .benefits__short {
    font-size: 2.2rem !important;
  }
}
#block_benefits .benefits__short {
  color: #1e1e1e;
  margin: 0;
}
#block_benefits .benefits__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: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #block_benefits .benefits__button {
    font-size: 1.35rem;
    padding: 9px 18px;
  }
}
@media (min-width: 1560px) {
  #block_benefits .benefits__button {
    font-size: 1.4rem;
    padding: 7px 40px;
  }
}
#block_benefits .benefits__button:hover {
  background-size: 100% 100%, 100% 100%;
  color: #1e1e1e !important;
  border-color: #ffce00;
  transform: translateY(-1px);
}
#block_benefits .benefits__button:active {
  transform: translateY(0);
}
#block_benefits .benefits__button:focus {
  outline: 2px solid #092730;
  outline-offset: 3px;
}
#block_benefits .benefits__button-wrapper {
  margin-top: 30px;
  display: flex;
  justify-content: flex-start;
}
@supports (content-visibility: auto) {
  #block_benefits .info__box {
    content-visibility: auto;
    contain-intrinsic-size: 200px;
  }
}

.certyficate {
  padding: 40px 0;
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  .certyficate {
    padding: 60px 0;
  }
}
@media (min-width: 1200px) {
  .certyficate {
    padding: 80px 0 40px 0;
  }
}
.certyficate__box {
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 30px;
  border: 4px solid #1e1e1e;
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  .certyficate__box {
    padding: 50px 40px;
  }
}
@media (min-width: 1200px) {
  .certyficate__box {
    width: 90%;
    padding: 30px 0;
  }
}
@media (min-width: 1441px) {
  .certyficate__box {
    width: 80%;
    padding: 60px;
  }
}
.certyficate__header {
  font-size: 2.6rem !important;
  line-height: 1.1 !important;
  font-weight: bold !important;
  font-family: "Inter", sans-serif !important;
}
@media (min-width: 768px) and (orientation: portrait) {
  .certyficate__header {
    font-size: 2.6rem !important;
  }
}
@media (min-width: 1560px) {
  .certyficate__header {
    font-size: 2.8rem !important;
  }
}
.certyficate__header {
  text-align: center;
  margin-bottom: 30px;
  color: #092730;
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  .certyficate__header {
    margin-bottom: 40px;
  }
}
.certyficate__photos {
  display: flex;
  gap: 20px;
  justify-content: space-around;
  flex-wrap: wrap;
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  .certyficate__photos {
    gap: 30px;
  }
}
.certyficate__photo-link {
  display: block;
  width: 100%;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  pointer-events: none;
  cursor: default;
}
@media (min-width: 768px) and (orientation: portrait) {
  .certyficate__photo-link {
    width: calc(50% - 15px);
    height: 100px;
  }
}
@media (min-width: 1200px) {
  .certyficate__photo-link {
    width: 250px;
    height: 100px;
  }
}
.certyficate__photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

#block_contactform {
  background-color: #fff;
  padding: 40px 0;
}
@media (min-width: 576px) and (orientation: landscape) {
  #block_contactform {
    padding: 60px 40px;
  }
}
#block_contactform .contact {
  background-color: #fff;
  overflow: visible;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 2px solid #E5E5E5;
  border-radius: 30px;
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #block_contactform .contact {
    flex-direction: row-reverse;
    min-height: 500px;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_contactform .contact {
    flex-direction: row-reverse;
    min-height: 500px;
  }
}
@media (min-width: 1200px) {
  #block_contactform .contact {
    flex-direction: row-reverse;
  }
}
#block_contactform .contact__back {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 900;
  color: #F7F7F7;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  position: absolute;
  z-index: 0;
  font-size: 8rem;
}
@media (min-width: 576px) and (orientation: landscape) {
  #block_contactform .contact__back {
    font-size: 10rem;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #block_contactform .contact__back {
    font-size: 12rem;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_contactform .contact__back {
    font-size: 14rem;
  }
}
@media (min-width: 1200px) {
  #block_contactform .contact__back {
    font-size: 15rem;
  }
}
@media (min-width: 1441px) {
  #block_contactform .contact__back {
    font-size: 16rem;
  }
}
#block_contactform .contact__back {
  text-transform: uppercase;
  top: -5%;
  right: 0;
  transform: translateY(-50%);
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #block_contactform .contact__back {
    top: 0%;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_contactform .contact__back {
    top: 0%;
  }
}
#block_contactform .contact__left {
  padding: 40px 30px;
  color: #fff;
  order: 2;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_contactform .contact__left {
    justify-content: center;
    width: 40%;
  }
}
@media (min-width: 1200px) {
  #block_contactform .contact__left {
    width: 40%;
    justify-content: center;
  }
}
@media (min-width: 1441px) {
  #block_contactform .contact__left {
    width: 40%;
  }
}
#block_contactform .contact__photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  margin-bottom: 20px;
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_contactform .contact__photo {
    height: auto;
    margin-bottom: 20px;
  }
}
@media (min-width: 1200px) {
  #block_contactform .contact__photo {
    height: auto;
    margin-bottom: 20px;
  }
}
#block_contactform .contact__social {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  align-items: center;
  padding-left: 0;
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_contactform .contact__social {
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  #block_contactform .contact__social {
    padding-left: 0;
  }
}
#block_contactform .contact__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_contactform .contact__social-link {
    width: 80px;
    height: 80px;
  }
}
@media (min-width: 1200px) {
  #block_contactform .contact__social-link {
    width: 100px;
    height: 100px;
  }
}
@media (min-width: 1441px) {
  #block_contactform .contact__social-link {
    width: 50px;
    height: 50px;
  }
}
#block_contactform .contact__social-link:hover {
  transform: scale(1.1);
  opacity: 0.8;
}
#block_contactform .contact__social-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
@media (min-width: 1441px) {
  #block_contactform .contact__social-icon {
    width: 35px;
    height: 35px;
  }
}
#block_contactform .contact__item {
  /* warstwa 1 (góra): żółty „wlewa się” z lewej */
  /* warstwa 2 (dół): stały czarny */
  background-image: linear-gradient(90deg, #ffce00, #ffce00), linear-gradient(90deg, #1e1e1e, #1e1e1e);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  border-radius: 50px;
  padding: 20px;
  transition: background-size 0.5s ease-in-out, color 0.3s ease, box-shadow 0.3s ease;
}
#block_contactform .contact__item:hover {
  background-size: 100% 100%, 100% 100%;
  color: #1e1e1e;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
#block_contactform .contact__right {
  padding: 40px 30px;
  border-radius: 0 30px 30px 0;
  z-index: 999;
  order: 1;
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_contactform .contact__right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60%;
  }
}
@media (min-width: 1200px) {
  #block_contactform .contact__right {
    width: 60%;
  }
}
@media (min-width: 1441px) {
  #block_contactform .contact__right {
    width: 60%;
  }
}
#block_contactform .contact__heading {
  position: absolute;
  top: -30px;
  right: -2px;
  font-size: 2.2rem;
  font-weight: 700;
  color: #1e1e1e;
  padding: 15px 25px;
  margin: 0;
  z-index: 1000;
}
@media (max-width: 767px) {
  #block_contactform .contact__heading {
    font-size: 2rem;
    padding: 12px 20px;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_contactform .contact__heading {
    font-size: 2.8rem;
    padding: 18px 30px;
  }
}
@media (min-width: 1200px) {
  #block_contactform .contact__heading {
    font-size: 3rem;
  }
}
#block_contactform .contact__info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
#block_contactform .contact__item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
#block_contactform .contact__item img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
#block_contactform .contact__link {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  line-height: 1.4;
}
@media (min-width: 1200px) {
  #block_contactform .contact__link {
    font-size: 1.8rem;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_contactform .contact__link {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #block_contactform .contact__link {
    font-size: 1.6rem;
  }
}
#block_contactform .contact__social {
  width: 15%;
}
@media (min-width: 576px) and (orientation: landscape) {
  #block_contactform .contact__social {
    width: 12%;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #block_contactform .contact__social {
    width: 20%;
  }
}
@media (min-width: 1441px) {
  #block_contactform .contact__social {
    width: 20%;
  }
}
#block_contactform .contact__text {
  color: #1e1e1e;
  font-size: 1.4rem;
  line-height: 1.4;
  margin: 0;
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_contactform .contact__text {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #block_contactform .contact__text {
    font-size: 1.6rem;
  }
}
#block_contactform .contact a {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.4;
}
@media (min-width: 1200px) {
  #block_contactform .contact a {
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_contactform .contact a {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #block_contactform .contact a {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #block_contactform .contact a {
    font-size: 1.6rem;
  }
}
#block_contactform .contact__hours p {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 100;
  color: #1e1e1e;
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_contactform .contact__hours p {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #block_contactform .contact__hours p {
    font-size: 1.6rem;
  }
}
@media (min-width: 1200px) {
  #block_contactform .contact__hours p {
    font-size: 1.6rem;
    padding: 5px 0;
  }
}
#block_contactform .contact__hours p:not(:last-child) {
  margin-bottom: 3px;
}
#block_contactform .wpcf7-form {
  z-index: 999;
}
#block_contactform .wpcf7-form label {
  display: block;
  color: #666;
  font-size: 1.4rem;
  margin-bottom: 8px;
  font-weight: 400;
}
#block_contactform .wpcf7-form input[type=text],
#block_contactform .wpcf7-form input[type=email],
#block_contactform .wpcf7-form input[type=tel],
#block_contactform .wpcf7-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #1e1e1e;
  background-color: transparent;
  color: #333;
  font-size: 1.4rem;
  padding: 12px 0;
  margin-bottom: 25px;
  outline: none;
  transition: border-color 0.3s ease;
  font-family: inherit;
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_contactform .wpcf7-form input[type=text],
  #block_contactform .wpcf7-form input[type=email],
  #block_contactform .wpcf7-form input[type=tel],
  #block_contactform .wpcf7-form textarea {
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #block_contactform .wpcf7-form input[type=text],
  #block_contactform .wpcf7-form input[type=email],
  #block_contactform .wpcf7-form input[type=tel],
  #block_contactform .wpcf7-form textarea {
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  #block_contactform .wpcf7-form input[type=text],
  #block_contactform .wpcf7-form input[type=email],
  #block_contactform .wpcf7-form input[type=tel],
  #block_contactform .wpcf7-form textarea {
    margin-bottom: 0;
  }
}
#block_contactform .wpcf7-form input[type=text]:focus,
#block_contactform .wpcf7-form input[type=email]:focus,
#block_contactform .wpcf7-form input[type=tel]:focus,
#block_contactform .wpcf7-form textarea:focus {
  border-bottom-color: #ffce00;
}
#block_contactform .wpcf7-form input[type=text]::placeholder,
#block_contactform .wpcf7-form input[type=email]::placeholder,
#block_contactform .wpcf7-form input[type=tel]::placeholder,
#block_contactform .wpcf7-form textarea::placeholder {
  color: #999;
  font-style: italic;
}
#block_contactform .wpcf7-form textarea {
  min-height: 40px;
  height: 110px;
  resize: vertical;
  padding-top: 12px;
}
#block_contactform .wpcf7-form .form-submit-section {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_contactform .wpcf7-form .form-submit-section {
    align-items: flex-start;
  }
}
@media (min-width: 1200px) {
  #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: 768px) and (orientation: portrait) {
  #block_contactform .wpcf7-form .consent-text {
    max-width: 60%;
  }
}
@media (min-width: 1200px) {
  #block_contactform .wpcf7-form .consent-text {
    max-width: 60%;
    order: 2;
  }
}
#block_contactform .wpcf7-form .wpcf7-submit {
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #EB811A, #EB811A);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  color: #fff !important;
  border: 1px solid #EB811A;
  padding: 14px 35px;
  border-radius: 15px;
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
  min-width: 120px;
  align-self: flex-start;
  transition: background-size 0.45s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
#block_contactform .wpcf7-form .wpcf7-submit:hover {
  background-size: 100% 100%, 100% 100%;
  color: #EB811A !important;
  border-color: #EB811A;
  transform: translateY(-1px);
}
#block_contactform .wpcf7-form .wpcf7-submit:active {
  transform: translateY(0);
}
#block_contactform .wpcf7-form .wpcf7-submit:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.25);
  outline-offset: 2px;
}
#block_contactform .wpcf7-spinner {
  display: none;
}

#block_edytorwpisu {
  margin: 20px 0;
}
#block_edytorwpisu .edytorwpisu {
  text-align: left;
  font-size: 2rem;
  width: 100%;
  font-family: "Inter", sans-serif;
  color: #1e1e1e;
}
#block_edytorwpisu .edytorwpisu h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #EB811A;
  font-family: "Inter", sans-serif;
}
#block_edytorwpisu .edytorwpisu h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 12px;
  line-height: 1.3;
  color: #0D7368;
  font-family: "Inter", sans-serif;
}
#block_edytorwpisu .edytorwpisu h3 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-top: 18px;
  margin-bottom: 10px;
  line-height: 1.4;
  color: #092730;
  font-family: "Inter", sans-serif;
}
#block_edytorwpisu .edytorwpisu h4 {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 8px;
  line-height: 1.4;
  color: #092730;
  font-family: "Inter", sans-serif;
}
#block_edytorwpisu .edytorwpisu p {
  margin-bottom: 10px;
  color: #1e1e1e;
}

#block_faq {
  padding: 60px 0;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  #block_faq {
    padding: 40px 0;
  }
}
#block_faq .faq-title-wrapper {
  position: relative;
  margin-bottom: 40px;
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_faq .faq-title-wrapper {
    margin-bottom: 50px;
  }
}
@media (min-width: 1200px) {
  #block_faq .faq-title-wrapper {
    margin-bottom: 50px;
  }
}
#block_faq .faq-title-bg {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 900;
  color: #F7F7F7;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  position: absolute;
  z-index: 0;
  font-size: 8rem;
}
@media (min-width: 576px) and (orientation: landscape) {
  #block_faq .faq-title-bg {
    font-size: 10rem;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #block_faq .faq-title-bg {
    font-size: 12rem;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_faq .faq-title-bg {
    font-size: 14rem;
  }
}
@media (min-width: 1200px) {
  #block_faq .faq-title-bg {
    font-size: 15rem;
  }
}
@media (min-width: 1441px) {
  #block_faq .faq-title-bg {
    font-size: 16rem;
  }
}
#block_faq .faq-title-bg {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#block_faq .faq-main-title {
  font-size: 2.6rem !important;
  line-height: 1.1 !important;
  font-weight: bold !important;
  font-family: "Inter", sans-serif !important;
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_faq .faq-main-title {
    font-size: 2.6rem !important;
  }
}
@media (min-width: 1560px) {
  #block_faq .faq-main-title {
    font-size: 2.8rem !important;
  }
}
#block_faq .faq-main-title {
  position: relative;
  z-index: 1;
  color: #1e1e1e;
  margin: 0;
  text-align: left;
}
#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: 768px) and (orientation: portrait) {
  #block_faq .faq-grid {
    grid-template-columns: 70% 1fr;
    gap: 50px;
  }
}
@media (min-width: 1200px) {
  #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: 3px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
#block_faq .faq-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-color: #0D7368;
}
#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: #0D7368;
  background: #fff;
  border: 1px solid #092730;
  border-radius: 10px;
  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-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: 768px) and (orientation: portrait) {
  #block_faq .faq-right {
    position: sticky;
    top: 20px;
  }
}
@media (min-width: 1200px) {
  #block_faq .faq-right {
    position: sticky;
    top: 20px;
  }
}
#block_faq .faq-cta-box {
  background: #ffffff;
  border: 3px solid #EB811A;
  border-radius: 30px;
  padding: 20px;
  text-align: center;
  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: 1.7rem !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_faq .faq-cta-title {
    font-size: 1.7rem !important;
  }
}
@media (min-width: 1560px) {
  #block_faq .faq-cta-title {
    font-size: 1.8rem !important;
  }
}
#block_faq .faq-cta-title {
  color: #333;
  margin: 0 0 24px 0;
}
@media (max-width: 767px) {
  #block_faq .faq-cta-title {
    margin-bottom: 20px;
  }
}
#block_faq .faq-cta-separator {
  text-align: center;
  margin: 16px 0;
  font-size: 1.6rem;
  font-weight: 400;
  color: #1e1e1e;
  opacity: 0.7;
}
#block_faq .faq-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
  min-width: 200px;
  font-size: 1.6rem;
  font-family: inherit;
  font-weight: 500;
  color: #fff !important;
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #EB811A, #EB811A);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  text-decoration: none !important;
  border-radius: 50px;
  border: 1px solid #EB811A;
  padding: 14px 24px;
  cursor: pointer;
  outline: none;
  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: 1560px) {
  #block_faq .faq-cta-button {
    font-size: 1.6rem;
    padding: 16px 32px;
  }
}
#block_faq .faq-cta-button svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: fill 0.3s ease;
}
#block_faq .faq-cta-button:hover {
  background-size: 100% 100%, 100% 100%;
  color: #EB811A !important;
  border-color: #EB811A;
  transform: translateY(-1px);
}
#block_faq .faq-cta-button:hover svg {
  fill: #EB811A;
}
#block_faq .faq-cta-button:active {
  transform: translateY(0);
}
#block_faq .faq-cta-button:focus {
  outline: 2px solid #092730;
  outline-offset: 3px;
}

.hero {
  padding: 20px 0 40px 0;
  background-color: #fff;
}
@media (max-width: 767px) {
  .hero {
    padding: 10px 0 30px 0;
  }
}
@media (min-width: 576px) and (orientation: landscape) {
  .hero {
    padding: 10px 0 30px 0;
  }
}
@media (min-width: 1200px) {
  .hero {
    padding: 60px 0 80px 0;
  }
}
@media (min-width: 1560px) {
  .hero {
    padding: 80px 0 100px 0;
  }
}
.hero__wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 767px) {
  .hero__wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (min-width: 576px) and (orientation: landscape) {
  .hero__wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  .hero__wrapper {
    gap: 40px;
    grid-template-columns: 1fr 1.3fr;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  .hero__wrapper {
    grid-template-columns: 1fr 1.5fr;
  }
}
@media (min-width: 1200px) {
  .hero__wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
.hero__image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero__image-wrapper {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
  }
}
@media (min-width: 576px) and (orientation: landscape) {
  .hero__image-wrapper {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-height: 250px;
  }
}
@media (min-width: 1200px) {
  .hero__image-wrapper {
    min-height: 500px;
  }
}
@media (min-width: 1560px) {
  .hero__image-wrapper {
    min-height: 600px;
  }
}
.hero__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 15px;
}
@media (min-width: 576px) and (orientation: landscape) {
  .hero__image {
    height: 100%;
    max-height: 250px;
    object-position: center -40px;
  }
}
@media (min-width: 1200px) {
  .hero__image {
    height: 100%;
    min-height: 500px;
  }
}
@media (min-width: 1560px) {
  .hero__image {
    height: 100%;
    min-height: 600px;
  }
}
.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 767px) {
  .hero__content {
    gap: 16px;
    align-items: flex-start;
  }
}
.hero__content::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -60px;
  width: 250px;
  height: 250px;
  background-color: #EB811A;
  z-index: -1;
}
@media (max-width: 767px) {
  .hero__content::after {
    display: none;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  .hero__content::after {
    width: 180px;
    height: 180px;
    right: -80px;
    bottom: -40px;
  }
}
.hero__title {
  font-size: 3.5rem !important;
  line-height: 1.2 !important;
  font-weight: bold !important;
  font-family: "Inter", sans-serif !important;
}
@media (min-width: 768px) and (orientation: portrait) {
  .hero__title {
    font-size: 3.5rem !important;
  }
}
@media (min-width: 1560px) {
  .hero__title {
    font-size: 3.5rem !important;
  }
}
.hero__title {
  font-size: 2.5rem !important;
  font-weight: 400 !important;
  color: #EB811A;
  margin: 0;
  padding-bottom: 6px;
  border-bottom: 2px solid #EB811A;
  width: fit-content;
}
@media (max-width: 767px) {
  .hero__title {
    font-size: 2rem !important;
    padding-bottom: 5px;
    border-bottom-width: 2px;
  }
}
@media (min-width: 576px) and (orientation: landscape) {
  .hero__title {
    font-size: 2rem !important;
    padding-bottom: 5px;
    border-bottom-width: 2px;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  .hero__title {
    font-size: 2.8rem !important;
  }
}
@media (min-width: 1200px) {
  .hero__title {
    max-width: 85%;
    font-size: 3rem !important;
  }
}
@media (min-width: 1560px) {
  .hero__title {
    font-size: 3.5rem !important;
  }
}
.hero__text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #1e1e1e;
  margin: 0;
  max-width: 90%;
}
@media (max-width: 767px) {
  .hero__text {
    font-size: 14px;
    max-width: 100%;
  }
}
@media (min-width: 576px) and (orientation: landscape) {
  .hero__text {
    font-size: 13px;
    max-width: 100%;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  .hero__text {
    font-size: 15px;
    max-width: 85%;
  }
}
@media (min-width: 1200px) {
  .hero__text {
    font-size: 16px;
    max-width: 90%;
  }
}
.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 32px;
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #EB811A, #EB811A);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  color: #fff !important;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  text-decoration: none;
  border-radius: 30px;
  border: 1px solid #EB811A;
  cursor: pointer;
  transition: background-size 0.45s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  width: fit-content;
}
.hero__button:hover {
  background-size: 100% 100%, 100% 100%;
  color: #EB811A !important;
  border-color: #EB811A;
  transform: translateY(-1px);
}
.hero__button:active {
  transform: translateY(0);
}
@media (max-width: 767px) {
  .hero__button {
    font-size: 1.5rem;
    padding: 8px 30px;
    width: auto;
  }
}
@media (min-width: 576px) and (orientation: landscape) {
  .hero__button {
    font-size: 1.5rem;
    padding: 6px 30px;
    width: auto;
    max-width: 30%;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  .hero__button {
    padding: 9px 32px;
  }
}

#block_lastentries {
  background-color: #ffffff;
  padding-bottom: 50px;
  padding-top: 50px;
  text-align: left;
  overflow: hidden;
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #block_lastentries {
    padding-bottom: 50px;
    padding-top: 50px;
  }
}
@media (min-width: 1441px) {
  #block_lastentries {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
#block_lastentries .container {
  overflow: visible;
}
#block_lastentries .lastentries__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}
@media (min-width: 576px) and (orientation: landscape) {
  #block_lastentries .lastentries__header {
    margin-bottom: 50px;
  }
}
#block_lastentries .lastentries__title-wrapper {
  position: relative;
}
#block_lastentries .lastentries__top {
  position: relative;
  z-index: 1;
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #092730;
  margin-bottom: 1rem;
}
#block_lastentries .lastentries__title-bg {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 900;
  color: #F7F7F7;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  position: absolute;
  z-index: 0;
  font-size: 8rem;
}
@media (min-width: 576px) and (orientation: landscape) {
  #block_lastentries .lastentries__title-bg {
    font-size: 10rem;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #block_lastentries .lastentries__title-bg {
    font-size: 12rem;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_lastentries .lastentries__title-bg {
    font-size: 14rem;
  }
}
@media (min-width: 1200px) {
  #block_lastentries .lastentries__title-bg {
    font-size: 15rem;
  }
}
@media (min-width: 1441px) {
  #block_lastentries .lastentries__title-bg {
    font-size: 16rem;
  }
}
#block_lastentries .lastentries__title-bg {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#block_lastentries .lastentries__title {
  position: relative;
  z-index: 1;
  font-size: 2.8rem;
  font-weight: 600;
  color: #1e1e1e;
  margin: 0;
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #block_lastentries .lastentries__title {
    font-size: 4rem;
  }
}
@media (min-width: 1200px) {
  #block_lastentries .lastentries__title {
    font-size: 4.5rem;
  }
}
#block_lastentries .lastentries__slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}
@media (min-width: 1200px) {
  #block_lastentries .lastentries__slider-wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    max-width: 1400px;
    align-items: center;
  }
}
@media (min-width: 1441px) {
  #block_lastentries .lastentries__slider-wrapper {
    max-width: 1600px;
  }
}
#block_lastentries .lastentries__slider {
  position: relative;
  width: 100%;
  overflow: visible;
  cursor: grab;
  user-select: none;
}
#block_lastentries .lastentries__slider:active {
  cursor: grabbing;
}
#block_lastentries .lastentries__slide {
  display: none;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
#block_lastentries .lastentries__slide.active {
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 1;
}
#block_lastentries .lastentries__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
@media (min-width: 1200px) {
  #block_lastentries .lastentries__content {
    display: grid;
    grid-template-columns: 3fr 6fr;
    grid-template-rows: auto;
    gap: 60px;
    align-items: center;
  }
}
#block_lastentries .lastentries__text {
  order: 3;
  width: 100%;
}
@media (min-width: 1200px) {
  #block_lastentries .lastentries__text {
    order: 0;
    grid-column: 1;
    grid-row: 1;
    width: auto;
  }
}
#block_lastentries .lastentries__images-wrapper {
  order: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}
@media (min-width: 1200px) {
  #block_lastentries .lastentries__images-wrapper {
    order: 0;
    grid-column: 2;
    grid-row: 1;
    display: block;
    position: relative;
    width: auto;
  }
}
#block_lastentries .lastentries__images {
  width: 100%;
  order: 1;
}
@media (min-width: 1200px) {
  #block_lastentries .lastentries__images {
    max-width: 650px;
    order: 0;
  }
}
@media (min-width: 1441px) {
  #block_lastentries .lastentries__images {
    max-width: 800px;
  }
}
#block_lastentries .lastentries__image-link {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}
#block_lastentries .lastentries__image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.3s ease;
  display: block;
  border-radius: 10px;
}
@media (min-width: 1200px) {
  #block_lastentries .lastentries__image {
    height: 400px;
    object-position: center;
  }
}
@media (min-width: 1441px) {
  #block_lastentries .lastentries__image {
    height: 550px;
  }
}
#block_lastentries .lastentries__image:hover {
  transform: scale(1.05);
}
#block_lastentries .lastentries__thumbnails {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-shrink: 0;
  justify-content: center;
  order: 2;
}
@media (min-width: 1200px) {
  #block_lastentries .lastentries__thumbnails {
    position: absolute;
    right: -300px;
    top: 50%;
    transform: translateY(-50%);
    justify-content: flex-start;
    order: 0;
  }
}
#block_lastentries .lastentries__thumbnail {
  width: 150px;
  height: 110px;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
  flex-shrink: 0;
}
@media (min-width: 1200px) {
  #block_lastentries .lastentries__thumbnail {
    width: 240px;
    height: 180px;
  }
}
@media (min-width: 1441px) {
  #block_lastentries .lastentries__thumbnail {
    width: 320px;
    height: 250px;
  }
}
#block_lastentries .lastentries__thumbnail--visible {
  opacity: 1;
  transform: translateX(0);
}
#block_lastentries .lastentries__thumbnail--peek {
  opacity: 0.5;
}
#block_lastentries .lastentries__thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
#block_lastentries .lastentries__post-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1e1e1e;
  line-height: 1.3;
  margin: 0 0 15px 0;
  transition: color 0.3s ease;
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #block_lastentries .lastentries__post-title {
    font-size: 2.8rem;
  }
}
@media (min-width: 1200px) {
  #block_lastentries .lastentries__post-title {
    font-size: 3.2rem;
    margin-bottom: 20px;
  }
}
#block_lastentries .lastentries__post-title:hover {
  color: #092730;
}
#block_lastentries .lastentries__excerpt {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #block_lastentries .lastentries__excerpt {
    font-size: 1.5rem;
  }
}
@media (min-width: 1200px) {
  #block_lastentries .lastentries__excerpt {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }
}
#block_lastentries .read-more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  text-decoration: none !important;
  cursor: pointer;
}
@media (min-width: 1200px) {
  #block_lastentries .read-more-button {
    font-size: 1.5rem;
    padding: 14px 32px;
  }
}
#block_lastentries .read-more-button {
  color: #fff !important;
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #092730, #092730);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  border: 1px solid #092730;
  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: #092730;
  transform: translateY(-2px);
}
#block_lastentries .read-more-button:active {
  transform: translateY(0);
}
#block_lastentries .read-more-button:focus {
  outline: 2px solid #092730;
  outline-offset: 3px;
}
#block_lastentries .lastentries__navigation {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-shrink: 0;
  align-self: flex-start;
  order: -1;
  width: 100%;
  justify-content: flex-start;
  margin-bottom: 10px;
}
@media (min-width: 1200px) {
  #block_lastentries .lastentries__navigation {
    flex-direction: column;
    margin-top: 60px;
    margin-bottom: 0;
    width: auto;
    order: 0;
  }
}
#block_lastentries .lastentries__nav-btn {
  width: 35px;
  height: 35px;
  border-radius: 10px;
  border: 2px solid #092730;
  background-color: transparent;
  color: #092730;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
@media (min-width: 1200px) {
  #block_lastentries .lastentries__nav-btn {
    width: 55px;
    height: 55px;
  }
}
#block_lastentries .lastentries__nav-btn svg {
  width: 18px;
  height: 18px;
}
@media (min-width: 1200px) {
  #block_lastentries .lastentries__nav-btn svg {
    width: 24px;
    height: 24px;
  }
}
#block_lastentries .lastentries__nav-btn:hover {
  background-color: #092730;
  color: #fff;
  transform: scale(1.1);
}
#block_lastentries .lastentries__nav-btn:active {
  transform: scale(0.95);
}

#block_moreicons {
  padding: 50px 0 20px;
  position: relative;
}
@media (min-width: 1200px) {
  #block_moreicons {
    width: 95%;
    margin: 50px auto;
    border-radius: 50px;
    padding: 20px 0;
  }
}
#block_moreicons .moreicons {
  position: relative;
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_moreicons .moreicons {
    display: flex;
    justify-content: space-between;
    gap: 30px;
  }
}
@media (min-width: 1200px) {
  #block_moreicons .moreicons {
    display: flex;
    justify-content: space-between;
    gap: 40px;
  }
}
#block_moreicons .moreicons__decorative-box {
  display: none;
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #block_moreicons .moreicons__decorative-box {
    display: block;
    position: absolute;
    top: -50px;
    right: 0;
    width: 120px;
    height: 120px;
    background-color: #EB811A;
    border-radius: 15px;
    z-index: 1;
  }
}
@media (min-width: 1200px) {
  #block_moreicons .moreicons__decorative-box {
    display: block;
    position: absolute;
    top: 10px;
    right: -80px;
    width: 200px;
    height: 200px;
    background-color: #EB811A;
    border-radius: 15px;
    z-index: 1;
  }
}
@media (min-width: 1560px) {
  #block_moreicons .moreicons__decorative-box {
    width: 200px;
    height: 350px;
  }
}
#block_moreicons .moreicons__header-section {
  margin-bottom: 20px;
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #block_moreicons .moreicons__header-section {
    margin-bottom: 25px;
  }
}
@media (min-width: 1200px) {
  #block_moreicons .moreicons__header-section {
    margin-bottom: 30px;
  }
}
#block_moreicons .moreicons__toptext {
  color: #1e1e1e;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 10px 0;
  font-family: "Inter", sans-serif;
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #block_moreicons .moreicons__toptext {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
}
@media (min-width: 1200px) {
  #block_moreicons .moreicons__toptext {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
}
#block_moreicons .moreicons__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  #block_moreicons .moreicons__left {
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_moreicons .moreicons__left {
    width: 60%;
  }
}
@media (min-width: 1200px) {
  #block_moreicons .moreicons__left {
    width: 60%;
  }
}
#block_moreicons .moreicons__right {
  position: relative;
  overflow: visible;
  border-radius: 20px;
}
@media (max-width: 767px) {
  #block_moreicons .moreicons__right {
    margin-top: 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #block_moreicons .moreicons__right {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    border-radius: 0;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_moreicons .moreicons__right {
    width: 35%;
    margin-left: 0;
    border-radius: 20px;
    height: 100%;
  }
}
@media (min-width: 1200px) {
  #block_moreicons .moreicons__right {
    width: 35%;
    height: 100%;
  }
}
#block_moreicons .moreicons__right::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #092730;
  border-radius: 20px;
  z-index: -1;
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_moreicons .moreicons__right::before {
    top: 20px;
    left: -20px;
  }
}
@media (min-width: 1200px) {
  #block_moreicons .moreicons__right::before {
    top: 25px;
    left: -25px;
  }
}
@media (min-width: 1441px) {
  #block_moreicons .moreicons__right::before {
    top: 30px;
    left: -30px;
  }
}
#block_moreicons .moreicons__background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}
@media (min-width: 576px) and (orientation: landscape) {
  #block_moreicons .moreicons__background-image {
    height: 250px;
    min-height: 250px;
    object-position: top;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #block_moreicons .moreicons__background-image {
    height: 350px;
    object-position: center;
    border-radius: 0;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_moreicons .moreicons__background-image {
    height: 100%;
    min-height: unset;
    border-radius: 20px;
  }
}
@media (min-width: 1200px) {
  #block_moreicons .moreicons__background-image {
    height: 100%;
    min-height: unset;
  }
}
#block_moreicons .moreicons__subtitle {
  color: #fff;
}
#block_moreicons .moreicons__header {
  font-size: 2.6rem !important;
  line-height: 1.1 !important;
  font-weight: bold !important;
  font-family: "Inter", sans-serif !important;
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_moreicons .moreicons__header {
    font-size: 2.6rem !important;
  }
}
@media (min-width: 1560px) {
  #block_moreicons .moreicons__header {
    font-size: 2.8rem !important;
  }
}
#block_moreicons .moreicons__header {
  color: #EB811A !important;
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  #block_moreicons .moreicons__header {
    padding-top: 30px;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #block_moreicons .moreicons__header {
    padding-bottom: 2.5rem;
    padding-top: 20px;
  }
}
@media (min-width: 1200px) {
  #block_moreicons .moreicons__header {
    padding-bottom: 1.5rem;
  }
}
#block_moreicons .moreicons__text {
  color: #1e1e1e;
  font-size: 1.7rem;
  line-height: 1.25;
  padding-top: 10px;
  font-family: "Inter", sans-serif;
}
#block_moreicons .moreicons__framed-content {
  background-color: #fff;
  border-radius: 16px;
}
#block_moreicons .moreicons__icons-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #block_moreicons .moreicons__icons-wrapper {
    gap: 25px;
  }
}
@media (min-width: 1200px) {
  #block_moreicons .moreicons__icons-wrapper {
    gap: 20px;
  }
}
#block_moreicons .moreicons__box {
  width: 100%;
  contain: content;
  min-height: 80px;
  display: flex;
}
@media (min-width: 576px) and (orientation: landscape) {
  #block_moreicons .moreicons__box {
    width: calc(50% - 10px);
  }
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #block_moreicons .moreicons__box {
    width: calc(25% - 20px);
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_moreicons .moreicons__box {
    width: calc(50% - 10px);
  }
}
@media (min-width: 1200px) {
  #block_moreicons .moreicons__box {
    width: calc(50% - 10px);
  }
}
#block_moreicons .moreicons__box a {
  display: flex;
  width: 100%;
  text-decoration: none;
}
#block_moreicons .moreicons__box:hover .info__littleheader::after {
  width: 70%;
}
#block_moreicons .moreicons__box-inner {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #block_moreicons .moreicons__box-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_moreicons .moreicons__box-inner {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }
}
#block_moreicons .moreicons__icon-container {
  flex-shrink: 0;
  position: relative;
  width: 80px;
  height: 80px;
  min-height: 80px;
  max-height: 80px;
  line-height: 0;
  overflow: hidden;
}
#block_moreicons .moreicons__lottie-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  line-height: 0;
}
#block_moreicons .moreicons__lottie-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  display: none;
  z-index: 1;
}
#block_moreicons .moreicons__icon {
  width: 80px;
  height: 80px;
  display: block;
  line-height: 0;
}
#block_moreicons .moreicons__icon img,
#block_moreicons .moreicons__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
#block_moreicons .moreicons__lottie-wrapper #block_moreicons .moreicons__icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px !important;
  height: 80px !important;
  z-index: 2;
}
#block_moreicons .moreicons__lottie-wrapper #block_moreicons .moreicons__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
#block_moreicons .moreicons__text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#block_moreicons .moreicons__littleheader {
  font-size: 1.7rem !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_moreicons .moreicons__littleheader {
    font-size: 1.7rem !important;
  }
}
@media (min-width: 1560px) {
  #block_moreicons .moreicons__littleheader {
    font-size: 1.8rem !important;
  }
}
#block_moreicons .moreicons__littleheader {
  position: relative;
  color: #1e1e1e;
  margin: 0;
}
#block_moreicons .moreicons__littleheader::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 2px;
  width: 0;
  background-color: #ffce00;
  transition: width 0.4s ease;
}
#block_moreicons .moreicons__desc {
  color: #1e1e1e;
  font-size: 1.4rem;
  line-height: 1.4;
  margin: 0;
  opacity: 0.9;
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_moreicons .moreicons__desc {
    font-size: 1.3rem;
  }
}
@media (min-width: 1200px) {
  #block_moreicons .moreicons__desc {
    font-size: 1.4rem;
  }
}
#block_moreicons .moreicons__short {
  font-size: 2rem !important;
  line-height: 1.3 !important;
  font-weight: bold !important;
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_moreicons .moreicons__short {
    font-size: 2rem !important;
  }
}
@media (min-width: 1560px) {
  #block_moreicons .moreicons__short {
    font-size: 2.2rem !important;
  }
}
#block_moreicons .moreicons__short {
  color: #1e1e1e;
  margin: 0;
}
#block_moreicons .moreicons__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: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #block_moreicons .moreicons__button {
    font-size: 1.35rem;
    padding: 9px 18px;
  }
}
@media (min-width: 1560px) {
  #block_moreicons .moreicons__button {
    font-size: 1.4rem;
    padding: 7px 40px;
  }
}
#block_moreicons .moreicons__button:hover {
  background-size: 100% 100%, 100% 100%;
  color: #1e1e1e !important;
  border-color: #ffce00;
  transform: translateY(-1px);
}
#block_moreicons .moreicons__button:active {
  transform: translateY(0);
}
#block_moreicons .moreicons__button:focus {
  outline: 2px solid #092730;
  outline-offset: 3px;
}
#block_moreicons .moreicons__button-wrapper {
  margin-top: 30px;
  display: flex;
  justify-content: flex-start;
}
@supports (content-visibility: auto) {
  #block_moreicons .info__box {
    content-visibility: auto;
    contain-intrinsic-size: 200px;
  }
}
#block_moreicons .container {
  position: relative;
}

.newsletter {
  padding: 60px 0;
  background-color: #fff;
}
@media (max-width: 767px) {
  .newsletter {
    padding: 40px 0;
  }
}
.newsletter__title-wrapper {
  position: relative;
  margin-bottom: 40px;
  text-align: center;
}
@media (min-width: 768px) and (orientation: portrait) {
  .newsletter__title-wrapper {
    margin-bottom: 50px;
  }
}
@media (min-width: 1200px) {
  .newsletter__title-wrapper {
    margin-bottom: 50px;
  }
}
.newsletter__title-bg {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 900;
  color: #F7F7F7;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  position: absolute;
  z-index: 0;
  font-size: 8rem;
}
@media (min-width: 576px) and (orientation: landscape) {
  .newsletter__title-bg {
    font-size: 10rem;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  .newsletter__title-bg {
    font-size: 12rem;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  .newsletter__title-bg {
    font-size: 14rem;
  }
}
@media (min-width: 1200px) {
  .newsletter__title-bg {
    font-size: 15rem;
  }
}
@media (min-width: 1441px) {
  .newsletter__title-bg {
    font-size: 16rem;
  }
}
.newsletter__title-bg {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.newsletter__title {
  font-size: 2.6rem !important;
  line-height: 1.1 !important;
  font-weight: bold !important;
  font-family: "Inter", sans-serif !important;
}
@media (min-width: 768px) and (orientation: portrait) {
  .newsletter__title {
    font-size: 2.6rem !important;
  }
}
@media (min-width: 1560px) {
  .newsletter__title {
    font-size: 2.8rem !important;
  }
}
.newsletter__title {
  position: relative;
  z-index: 1;
  color: #1e1e1e;
  margin: 0;
  text-align: center;
}
.newsletter__form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .newsletter__form {
    flex-direction: column;
    gap: 15px;
  }
}
.newsletter__input {
  padding: 12px 20px;
  min-width: 280px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  border: 2px solid #E5E5E5;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 767px) {
  .newsletter__input {
    width: 100%;
    min-width: auto;
  }
}
.newsletter__input:focus {
  border-color: #EB811A;
  box-shadow: 0 2px 8px rgba(235, 129, 26, 0.2);
}
.newsletter__input::placeholder {
  color: #999;
}
.newsletter__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background-image: linear-gradient(90deg, #fff, #fff), linear-gradient(90deg, #EB811A, #EB811A);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  color: #fff !important;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 25px;
  border: 1px solid #EB811A;
  cursor: pointer;
  transition: background-size 0.45s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .newsletter__button {
    width: 100%;
    font-size: 15px;
    padding: 12px 24px;
  }
}
.newsletter__button:hover {
  background-size: 100% 100%, 100% 100%;
  color: #EB811A !important;
  border-color: #EB811A;
  transform: translateY(-1px);
}
.newsletter__button:active {
  transform: translateY(0);
}
.newsletter__button:focus {
  outline: 2px solid #092730;
  outline-offset: 3px;
}
.newsletter__disclaimer {
  text-align: center;
  font-size: 12px;
  color: #666;
  margin-top: 10px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .newsletter__disclaimer {
    font-size: 11px;
  }
}
.newsletter__disclaimer a {
  color: #EB811A;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.newsletter__disclaimer a:hover {
  color: rgb(193.1325301205, 103.734939759, 16.8674698795);
}

#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: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #block_reviews .reviews__item {
    flex: 0 0 50%;
  }
}
@media (min-width: 576px) and (orientation: landscape) {
  #block_reviews .reviews__item {
    flex: 0 0 60%;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  #block_reviews .reviews__item {
    flex: 0 0 calc(33.333% - 14px);
  }
}
@media (min-width: 1200px) {
  #block_reviews .reviews__item {
    flex: 0 0 calc(33.333% - 20px);
  }
}
@media (min-width: 1441px) {
  #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: "Inter", 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: "Inter", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  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: "Inter", sans-serif;
  font-size: 1.5rem;
  color: rgba(30, 30, 30, 0.7);
}
#block_reviews .reviews__info .reviewsinfo__btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 10px;
  font-family: "Inter", 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, #092730, #092730);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  border: 1px solid #092730;
  transition: background-size 0.45s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #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: #092730;
  transform: translateY(-1px);
}
#block_reviews .reviews__info .reviewsinfo__btn:active {
  transform: translateY(0);
}
#block_reviews .reviews__info .reviewsinfo__btn:focus {
  outline: 2px solid #092730;
  outline-offset: 3px;
}
@media (min-width: 1200px) {
  #block_reviews .reviews__info .reviewsinfo__btn {
    margin-top: 0;
  }
}
@media (min-width: 576px) 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: 576px) and (orientation: landscape) {
  #block_reviews {
    padding: 40px 0;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #block_reviews {
    padding: 50px 0;
  }
}
@media (min-width: 1560px) {
  #block_reviews {
    padding: 80px 0;
  }
}

#block_stages {
  padding: 40px 0 0 0;
  position: relative;
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  #block_stages {
    padding: 70px 0 0 0;
  }
}
@media (min-width: 1200px) {
  #block_stages {
    padding: 80px 0 0 0;
  }
}

.stages__header {
  font-size: 2.6rem !important;
  line-height: 1.1 !important;
  font-weight: bold !important;
  font-family: "Inter", sans-serif !important;
}
@media (min-width: 768px) and (orientation: portrait) {
  .stages__header {
    font-size: 2.6rem !important;
  }
}
@media (min-width: 1560px) {
  .stages__header {
    font-size: 2.8rem !important;
  }
}
.stages__header {
  color: #1e1e1e;
  text-align: center;
  margin: 0 0 35px 0;
  z-index: 99;
  position: relative;
}
@media (min-width: 576px) and (orientation: landscape) {
  .stages__header {
    margin-bottom: 40px;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  .stages__header {
    margin-bottom: 55px;
  }
}
@media (min-width: 1200px) {
  .stages__header {
    margin-bottom: 5px;
  }
}
.stages__back {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 900;
  color: #F7F7F7;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  position: absolute;
  z-index: 0;
  font-size: 8rem;
}
@media (min-width: 576px) and (orientation: landscape) {
  .stages__back {
    font-size: 10rem;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  .stages__back {
    font-size: 12rem;
  }
}
@media (min-width: 768px) and (orientation: portrait) {
  .stages__back {
    font-size: 14rem;
  }
}
@media (min-width: 1200px) {
  .stages__back {
    font-size: 15rem;
  }
}
@media (min-width: 1441px) {
  .stages__back {
    font-size: 16rem;
  }
}
.stages__back {
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
.stages__background {
  background-color: #092730;
  padding: 40px 0;
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  .stages__background {
    padding: 70px 0;
  }
}
@media (min-width: 1200px) {
  .stages__background {
    padding: 80px 0;
  }
}
.stages__wrapper {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 30px;
}
@media (min-width: 480px) {
  .stages__wrapper {
    padding: 35px 25px;
  }
}
@media (min-width: 768px) {
  .stages__wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 1200px) {
  .stages__wrapper {
    padding: 50px 40px;
  }
}
.stages__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 480px) {
  .stages__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
@media (min-width: 768px) {
  .stages__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
@media (min-width: 1200px) {
  .stages__grid {
    gap: 35px;
  }
}
.stages__item {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px 20px 25px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: visible;
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  .stages__item {
    padding: 50px 28px 35px 28px;
    gap: 14px;
  }
}
@media (min-width: 1200px) {
  .stages__item {
    padding: 55px 30px 40px 30px;
    gap: 15px;
  }
}
.stages__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.stages__item-number {
  position: absolute;
  top: -10px;
  left: -10px;
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: #0D7368;
  margin: 0;
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  .stages__item-number {
    font-size: 52px;
    top: -15px;
    left: -15px;
  }
}
@media (min-width: 1200px) {
  .stages__item-number {
    font-size: 56px;
    top: -18px;
    left: -18px;
  }
}
.stages__item-title {
  font-size: 1.7rem !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
}
@media (min-width: 768px) and (orientation: portrait) {
  .stages__item-title {
    font-size: 1.7rem !important;
  }
}
@media (min-width: 1560px) {
  .stages__item-title {
    font-size: 1.8rem !important;
  }
}
.stages__item-title {
  color: #1e1e1e;
  margin: 0;
}
.stages__item-desc {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #1e1e1e;
  margin: 0;
  opacity: 0.85;
}
@media (min-width: 1024px) and (max-width: 1280px) and (orientation: landscape) {
  .stages__item-desc {
    font-size: 14.5px;
  }
}
@media (min-width: 1200px) {
  .stages__item-desc {
    font-size: 15px;
  }
}