/*--------------------------------------------------------------
	Common
--------------------------------------------------------------*/
:root {
  --accent: var(--accent);
  --accent-dark: var(--accent-dark);
  --text-body: #666;
  --text-head: #111;
  --hairline: #eaeaea;
  --band-gray: #f5f5f5;
}

html {
  overflow-y: scroll;
  overflow-x: hidden;
  -ms-overflow-style: scrollbar;
}

body {
  background: #fff;
  font: 400 13px/1.8 "Roboto", "Helvetica Neue", sans-serif;
  color: #666;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

iframe {
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4, p, ul, ol {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

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

.align-left {
  text-align: left !important;
}

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

.position-relative {
  position: relative;
}

.leftauto {
  right: 0 !important;
  left: auto !important;
}

.pr-remove {
  /*vertical-align: middle !important;*/
  text-align: center;
}

/* Grid */
.container {
  width: 100%;
  max-width: 1170px;
  padding: 0 15px;
  margin: 0 auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.row > [class*="col-"] {
  padding: 0 15px;
  width: 100%;
}

.col-sm-2 { width: 16.6666%; }
.col-sm-4 { width: 33.3333%; }
.col-sm-5 { width: 41.6666%; }
.col-sm-6 { width: 50%; }
.col-sm-7 { width: 58.3333%; }
.col-sm-8 { width: 66.6666%; }
.col-sm-10 { width: 83.3333%; }
.col-md-4 { width: 33.3333%; }
.col-md-6 { width: 50%; }
.col-md-7 { width: 58.3333%; }
.col-md-8 { width: 66.6666%; }
.col-sm-offset-1 { margin-left: 8.3333%; }
.col-sm-offset-2 { margin-left: 16.6666%; }
.col-sm-offset-3 { margin-left: 25%; }
.col-sm-offset-5 { margin-left: 41.6666%; }
.col-sm-push-5 { order: 2; }
.col-sm-pull-7 { order: 1; }

.bg-white {
  background: #fff;
}

.bg-gray {
  background: #f5f5f5;
}

/* Sections */
.navbar-custom + .main {
  margin-top: 50px;
}

.main {
  position: relative;
  background-color: #fff;
  z-index: 1;
}

.module,
.module-small {
  position: relative;
  padding: 140px 0;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

/* Module header */
.module-small {
  padding: 70px 0;
}

.module-extra-small {
  padding: 60px 0;
}

/* Sections dividers */
.divider-w {
  border-top: 1px solid #eaeaea;
  margin: 0;
}

.divider-d {
  border-top: 1px solid #202020;
  margin: 0;
}

/* Dark background */
.bg-dark,
.bg-dark-30,
.bg-dark-60,
.bg-dark-90 {
  color: #fff;
}

.bg-dark {
  background: #111;
}

.bg-dark-30:before {
  position: absolute;
  background: rgba(2, 2, 2, 0.4);
  content: " ";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

.bg-dark-60:before {
  position: absolute;
  background: rgba(34, 34, 34, 0.8);
  content: " ";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

/* Scroll to top */
.scroll-up {
  position: fixed;
  bottom: 7px;
  right: 7px;
  z-index: 999;
}

.scroll-up a {
  background: #fff;
  display: block;
  height: 28px;
  width: 28px;
  text-align: center;
  line-height: 28px;
  font-size: 14px;
  color: #000;
  opacity: 0.6;
  border-radius: 2px;
  border: 1px solid #eaeaea;
}

.scroll-up a:before {
  content: "\2191";
}

.scroll-up a:hover,
.scroll-up a:active {
  opacity: 1;
  color: #000;
}

/*--------------------------------------------------------------
	Buttons
--------------------------------------------------------------*/
.btn {
  display: inline-block;
  padding: 9px 30px;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  line-height: 1.8;
  border: 0;
  cursor: pointer;
  background: none;
  transition: background 0.2s ease-in-out 0s, color 0.2s ease-in-out 0s;
}

.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
  outline: 0;
}

.btn.btn-round {
  border-radius: 2px;
}

.btn.btn-w {
  background: rgba(255, 255, 255, 0.8);
  color: #111;
}

.btn.btn-w:hover,
.btn.btn-w:focus {
  background: white;
  color: #111;
}

.btn.btn-g {
  background: #e5e5e5;
  color: #111;
}

.btn.btn-g:hover,
.btn.btn-g:focus {
  background: #d8d8d8;
  color: #111;
}

.btn.btn-border-w {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #fff;
}

.btn.btn-border-w:hover,
.btn.btn-border-w:focus {
  background: #fff;
  border-color: transparent;
  color: #111;
}

.btn.btn-b {
  background: #111111;
  color: #fff;
}

.btn.btn-b:hover,
.btn.btn-b:focus {
  background: rgba(17, 17, 17, 0.8);
}

.btn-border-d {
  background: transparent;
  border: 1px solid #111111;
  color: #111;
}

.btn.btn-border-d:hover,
.btn.btn-border-d:focus {
  background: #111111;
  color: #fff;
}

/* Buttons size */
.btn.btn-lg {
  padding: 12px 45px;
  font-size: 13px;
}

.btn.btn-sm {
  padding: 6px 25px;
  font-size: 10px;
}

.large-text {
  font-size: 24px !important;
}

.rotate {
  text-shadow: none !important;
}

/*--------------------------------------------------------------
	Titles
--------------------------------------------------------------*/
.module-title {
  position: relative;
  letter-spacing: 4px;
  text-align: center;
  font-weight: 400;
  font-size: 30px;
  color: #111;
  margin: 0 0 70px;
}

.module-title span {
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 4px;
  font-size: 11px;
  color: #999;
  margin-bottom: 14px;
}

.module-subtitle {
  text-align: center;
  font-size: 16px;
  color: #111;
  margin-bottom: 70px;
}

.module-title + .module-subtitle {
  margin-top: -35px;
}

.font-alt {
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.font-serif {
  font-family: Volkhov, "Times New Roman", sans-serif;
  font-style: italic;
}

.chevron-down {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: rotate(45deg);
  opacity: 0.6;
}

.chevron-down:hover {
  opacity: 1;
}

/* -------------------------------------------------------------------
Hero Slider
------------------------------------------------------------------- */
.home-full-height {
  height: 100vh;
  min-height: 560px;
}

.hero-slider {
  margin: 0 !important;
  height: 100% !important;
  width: 100%;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.hero-slider .slides {
  height: 100% !important;
  margin: 0;
  padding: 0;
}

.hero-slider .slides li {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100% !important;
  width: 100%;
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out 0s;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
}

#hs-1:checked ~ .slides .is-1,
#hs-2:checked ~ .slides .is-2,
#hs-3:checked ~ .slides .is-3,
#hs-4:checked ~ .slides .is-4,
#hs-5:checked ~ .slides .is-5 {
  opacity: 1;
  visibility: visible;
}

/* Caption */
.titan-caption {
  position: relative;
  display: table;
  height: 100%;
  width: 70%;
  margin: 0 auto;
}

.titan-caption {
  position: relative;
  display: table;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  z-index: 2;
}

.caption-content {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding: 0 20px;
}

.titan-title-size-1 {
  letter-spacing: 4px;
  font-size: 15px;
  color: #fff;
}

.titan-title-size-2 {
  line-height: 1.3;
  letter-spacing: 3px;
  font-size: 18px;
  opacity: .8;
}

.titan-title-size-3 {
  letter-spacing: 16px;
  line-height: 1.25;
  font-size: 46px;
  color: #fff;
}

.titan-title-size-4 {
  letter-spacing: 24px;
  font-weight: 400;
  font-size: 48px;
}

.hero-pager {
  position: absolute;
  bottom: 26px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 3;
}

.hero-pager label {
  display: inline-block;
  height: 8px;
  width: 8px;
  margin: 0 5px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 30px;
  cursor: pointer;
}

#hs-1:checked ~ .hero-pager label:nth-child(1),
#hs-2:checked ~ .hero-pager label:nth-child(2),
#hs-3:checked ~ .hero-pager label:nth-child(3),
#hs-4:checked ~ .hero-pager label:nth-child(4),
#hs-5:checked ~ .hero-pager label:nth-child(5) {
  background: #fff;
}

/*--------------------------------------------------------------
	Navbar
--------------------------------------------------------------*/
.navbar-custom {
  background-color: rgba(10, 10, 10, 0.9);
  border: 0;
  border-radius: 0;
  z-index: 1000;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 11px;
  transition: background, padding 0.4s ease-in-out 0s;
}

.navbar-fixed-top {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
}

.navbar-transparent {
  background-color: transparent;
}

.nav-row {
  align-items: center;
  min-height: 74px;
}

.navbar a {
  transition: color 0.125s ease-in-out 0s;
}

.navbar-header {
  display: inline-block;
  vertical-align: middle;
}

.navbar-brand img {
  width: 130px;
  filter: brightness(0) invert(1);
}

.navbar-collapse {
  display: inline-block;
  vertical-align: middle;
  margin-left: 34px;
}

.navbar-nav {
  display: flex;
  align-items: center;
}

.navbar-custom .nav li {
  position: relative;
}

.navbar-custom .nav li > a {
  position: relative;
  display: block;
  padding: 26px 13px;
  color: rgba(255, 255, 255, 0.7);
}

.navbar-custom .nav li > a:hover {
  color: #fff;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 5px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.navbar-custom .dropdown-menu {
  background: rgba(26, 26, 26, 0.9);
  border-radius: 0;
  border: 0;
  padding: 0;
  box-shadow: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out 0s;
  z-index: 1001;
}

.navbar-custom .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.navbar-custom .dropdown-menu > li > a {
  border-bottom: 1px solid rgba(73, 71, 71, 0.15) !important;
  padding: 11px 15px;
  letter-spacing: 2px;
  color: #999;
}

.navbar-custom .dropdown-menu > li > a:hover {
  color: #fff;
}

.top-shop-btn {
  background: var(--accent);
  display: inline-block;
  padding: 5px 14px;
  margin-left: 5px;
  font-size: 11px;
  letter-spacing: 2px;
  color: #fff;
  border-radius: 2px;
}

.top-shop-btn:hover {
  background: #35812d;
}

.navbar-toggle-input,
.tab-radio,
.qa-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.navbar-toggle {
  display: none;
  float: right;
  padding: 9px 10px;
  cursor: pointer;
}

.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: #fff;
  border-radius: 1px;
}

/*--------------------------------------------------------------
	Top menu rows
--------------------------------------------------------------*/
.top-menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 60px 50px;
}

.top-menu-title-e {
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-align: center;
  font-size: 11px;
  color: #999;
}

.top-menu-title {
  letter-spacing: 4px;
  text-align: center;
  font-size: 26px;
  color: #111;
  margin: 12px 0 0;
}

.top-menu-inner hr {
  border: 0;
  border-top: 1px solid #e5e5e5;
  width: 60px;
  margin: 26px auto;
}

.top-menu-inner p {
  text-align: center;
  margin-bottom: 26px;
}

.top-menu-inner a {
  display: block;
  text-align: center;
}

#services .row {
  margin: 0;
}

#services .row > [class*="col-"] {
  padding: 0;
}

#services img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*--------------------------------------------------------------
	Info boxes
--------------------------------------------------------------*/
.info-box {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 26px 24px 20px;
  height: 100%;
}

.info-box h3 {
  text-align: center;
  font-size: 22px;
  color: #111;
  padding-bottom: 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid #f1f1f1;
}

.feed-list li {
  border-bottom: 1px dotted #eaeaea;
  padding: 11px 0;
}

.feed-list li:last-child {
  border-bottom: 0;
}

.info-box-date {
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 1px;
  display: block;
  font-size: 11px;
  color: #999;
}

.info-box-title {
  display: block;
  font-size: 13px;
  color: #333;
  line-height: 1.6;
}

.feed-list a:hover .info-box-title {
  color: var(--accent);
}

.arrow-more {
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: right;
  font-size: 11px;
  color: #111;
  margin-top: 14px;
}

.ico-circle-right {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 6px;
  border: 1px solid #111;
  border-radius: 30px;
  position: relative;
  top: 2px;
}

.ico-circle-right:before {
  position: absolute;
  content: "";
  height: 4px;
  width: 4px;
  left: 2px;
  top: 3px;
  border-right: 1px solid #111;
  border-top: 1px solid #111;
  transform: rotate(45deg);
}

.nav-tabs,
.tab-content,
.visible-xs-block {
  display: none;
}

/*--------------------------------------------------------------
	Scroll strips
--------------------------------------------------------------*/
/*CSSだけでスマホの横スクロールを実現する方法
   https://delaymania.com/201807/web/css-overflow-x-scroll/*/
.slide-wrap {
  display: flex;
  overflow-x: auto;
  padding-bottom: 14px;
  margin-bottom: 30px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.slide-wrap::-webkit-scrollbar {
  display: none;
}

.slide-box {
  flex: 0 0 auto;
  width: 232px;
  border: 1px solid #e5e5e5;
  padding: 10px;
  margin-right: 10px;
}

.slide-box .img-responsive {
  height: 140px;
  overflow: hidden;
  background: #f5f5f5;
}

.slide-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-box p {
  font-size: 12px;
  color: #333;
  line-height: 1.5;
  padding: 10px 2px 2px;
}

.slide-box a:hover p {
  color: var(--accent);
}

/*--------------------------------------------------------------
	Process steps
--------------------------------------------------------------*/
.step-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.step-item {
  width: 20%;
  padding: 0 10px;
}

.step-item h3 {
  letter-spacing: 1px;
  font-size: 15px;
  color: #111;
  margin: 10px 0 8px;
  min-height: 40px;
}

.step-item p {
  font-size: 12.5px;
  line-height: 1.75;
}

.step-num {
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 3px;
  border-top: 2px solid var(--accent);
  padding-top: 12px;
  font-size: 24px;
  color: var(--accent);
}

/*--------------------------------------------------------------
	Shop cards
--------------------------------------------------------------*/
.white-shop-box {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 24px 22px 26px;
  height: 100%;
  text-align: center;
}

.white-shop-box h3 {
  letter-spacing: 3px;
  font-size: 21px;
  color: #111;
  margin-bottom: 18px;
}

.white-shop-box h3 span {
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  font-size: 10px;
  color: #999;
  margin-top: 6px;
}

.white-shop-box img {
  width: 100%;
  margin-bottom: 18px;
}

.white-shop-box p {
  text-align: left;
  font-size: 13px;
  margin-bottom: 22px;
}

.label {
  display: inline-block;
  padding: 3px 9px;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 10px;
  color: #fff;
  border-radius: 2px;
  margin-bottom: 10px;
}

.label-danger {
  background: #c9302c;
}

/*--------------------------------------------------------------
	Q&A
--------------------------------------------------------------*/
.qa-list {
  border-top: 1px solid #eaeaea;
}

.qa-item {
  border-bottom: 1px solid #eaeaea;
}

.qa-q {
  display: block;
  position: relative;
  padding: 20px 44px 20px 4px;
  font-size: 15px;
  color: #111;
  cursor: pointer;
}

.qa-q:after {
  position: absolute;
  content: "";
  height: 9px;
  width: 9px;
  right: 8px;
  top: 24px;
  border-right: 1px solid #111;
  border-bottom: 1px solid #111;
  transform: rotate(45deg);
  transition: transform 0.3s ease-in-out 0s;
}

.qa-checkbox:checked ~ .qa-q:after {
  transform: rotate(-135deg);
}

.qa-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease-in-out 0s;
}

.qa-checkbox:checked ~ .qa-a {
  grid-template-rows: 1fr;
}

.qa-a-inner {
  overflow: hidden;
}

.qa-a-inner p {
  padding: 0 4px 22px;
  font-size: 13px;
}

/*--------------------------------------------------------------
	Footer
--------------------------------------------------------------*/
#footer-menu {
  position: relative;
  padding: 80px 0 90px;
  background: #1a1a1a;
  overflow: hidden;
  color: #fff;
}

.footer-menu-bg {
  position: absolute;
  background-image: url(../../resources/footer-hala-papiernia.webp);
  background-size: cover;
  background-position: 50% 50%;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0.22;
}

.footer-menu-box {
  position: relative;
  background: rgba(24, 24, 24, 0.86);
  padding: 34px 36px 30px;
  z-index: 2;
}

.footer-menu-box ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 2.1;
}

.footer-menu-box ul li a:hover {
  color: var(--accent);
}

.footer-menu-box ul ul {
  padding-left: 16px;
}

.footer-menu-box ul ul li a:before {
  content: "\203A";
  margin-right: 7px;
  color: #666;
}

.footer-menu-box ul ul ul li a:before {
  content: "\00B7";
}

.footer-contact {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 22px;
  padding-top: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact p {
  margin-bottom: 10px;
}

.footer-watermark {
  position: absolute;
  right: -20px;
  bottom: 10px;
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 6px;
  font-size: 96px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.13);
  z-index: 1;
}

.footer-watermark span {
  letter-spacing: 3px;
  display: block;
  text-align: right;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.2);
}

.footer {
  padding: 22px 0;
}

.copyright {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}

/*--------------------------------------------------------------
	Cookie bar
--------------------------------------------------------------*/
#cookie-bar {
  position: fixed;
  background: #fff;
  border-top: 2px solid #3f9c35;
  display: none;
  padding: 16px 20px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.08);
}

#cookie-bar.is-visible {
  display: block;
}

.cookie-bar-inner {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-bar-text {
  font-size: 12px;
  max-width: 730px;
  line-height: 1.7;
}

.cookie-bar-text a {
  color: #3f9c35;
  text-decoration: underline;
}

.cookie-bar-actions {
  flex: 0 0 auto;
  padding-left: 24px;
}

.cookie-bar-actions .btn {
  margin-left: 8px;
}

/*--------------------------------------------------------------
	Subpages
--------------------------------------------------------------*/
.page-header-block {
  background: #f5f5f5;
  border-bottom: 1px solid #eaeaea;
  padding: 150px 0 56px;
  text-align: center;
}

.page-header-block .page-title-e {
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 11px;
  color: #999;
  margin-bottom: 12px;
}

.page-header-block h1 {
  letter-spacing: 4px;
  font-size: 30px;
  color: #111;
}

.page-header-block .page-lead {
  max-width: 760px;
  margin: 18px auto 0;
  font-size: 14px;
}

.entry-body {
  max-width: 100%;
}

.entry-body h2 {
  letter-spacing: 2px;
  font-size: 22px;
  color: #111;
  margin: 54px 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eaeaea;
}

.entry-body h2:first-child {
  margin-top: 0;
}

.entry-body h3 {
  letter-spacing: 1px;
  font-size: 16px;
  color: #111;
  margin: 30px 0 10px;
}

.entry-body p {
  margin-bottom: 15px;
}

.entry-body a.link-line {
  color: #3f9c35;
  text-decoration: underline !important;
}

.list-dash li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 7px;
}

.list-dash li:before {
  position: absolute;
  content: "—";
  left: 0;
  color: #3f9c35;
}

.table-wrap {
  overflow-x: auto;
  margin: 22px 0 26px;
}

.data-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 560px;
  font-size: 13px;
}

.data-table th {
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
  text-align: left;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 14px 9px;
  font-size: 11px;
  color: #111;
}

.data-table td {
  border: 1px solid #e5e5e5;
  padding: 11px 14px 10px;
}

.data-table tr:nth-child(even) td {
  background: #fcfcfc;
}

.note-box {
  background: #f5f5f5;
  border-left: 3px solid #3f9c35;
  padding: 20px 24px;
  margin: 26px 0;
}

.note-box p {
  margin-bottom: 0;
}

.spec-card {
  border: 1px solid #e5e5e5;
  padding: 20px 22px 18px;
  margin-bottom: 16px;
}

.spec-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
}

.spec-card-price {
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 1px;
  color: #3f9c35;
  font-size: 15px;
  white-space: nowrap;
}

.spec-card-meta {
  display: flex;
  flex-wrap: wrap;
  font-size: 11px;
  color: #999;
  margin-top: 8px;
}

.spec-card-meta span {
  margin-right: 18px;
}

.figure-pair {
  display: flex;
  margin: 26px 0 30px;
}

.figure-pair figure {
  width: 50%;
  margin: 0;
  padding-right: 10px;
}

.figure-pair figure + figure {
  padding-right: 0;
  padding-left: 10px;
}

.figure-pair figcaption,
.figure-solo figcaption {
  font-size: 11.5px;
  color: #999;
  line-height: 1.6;
  margin-top: 8px;
}

.figure-solo {
  margin: 28px 0;
}

.split-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.split-row.is-mirrored {
  flex-direction: row-reverse;
}

.split-row .split-img {
  width: 42%;
}

.split-row .split-copy {
  width: 58%;
  padding-left: 32px;
}

.split-row.is-mirrored .split-copy {
  padding-left: 0;
  padding-right: 32px;
}

.job-block {
  border-top: 1px solid #eaeaea;
  padding: 26px 0 22px;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  margin: 8px 0 12px;
}

.job-tags span {
  background: #f5f5f5;
  padding: 3px 10px;
  margin-right: 7px;
  font-size: 11px;
  color: #666;
}

.job-cols {
  display: flex;
  flex-wrap: wrap;
  margin-top: 14px;
}

.job-cols > div {
  width: 50%;
  padding-right: 22px;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  margin: 26px 0 8px;
}

.stat-row > div {
  width: 25%;
  border-top: 2px solid #3f9c35;
  padding: 12px 14px 0 0;
}

.stat-value {
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 1px;
  font-size: 26px;
  color: #111;
  line-height: 1.2;
}

.stat-label {
  font-size: 11px;
  color: #999;
  line-height: 1.5;
}

.cta-band {
  background: #f5f5f5;
  padding: 30px 30px 28px;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cta-band h2 {
  border: 0;
  padding: 0;
  margin: 0 0 4px;
  font-size: 19px;
}

.cta-band p {
  margin-bottom: 0;
  font-size: 13px;
}

/*--------------------------------------------------------------
	Margins & paddings
--------------------------------------------------------------*/
.mt-5 { margin-top: 5px !important; }
.mt-20 { margin-top: 20px !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-40 { margin-bottom: 40px !important; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }

/*--------------------------------------------------------------
	Leady sekcji
--------------------------------------------------------------*/
.module-lead {
  max-width: 780px;
  text-align: center;
  font-size: 14px;
  line-height: 1.95;
  margin: 0 auto 56px;
}

.module-title + .module-lead {
  margin-top: -46px;
}

.module-subtitle + .module-lead {
  margin-top: -46px;
}

/* Rowne kolumny w kartach i feedach */
#kierunki .row,
#feeds .row {
  align-items: stretch;
}

.white-shop-box {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.white-shop-box h3 {
  margin-bottom: 16px;
}

.white-shop-box h3 em.label {
  position: absolute;
  right: 10px;
  top: 10px;
  font-style: normal;
  margin: 0;
}

.white-shop-box img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
}

.white-shop-box p {
  flex: 1 1 auto;
}

.white-shop-box > a {
  margin-top: auto;
}

.info-box {
  display: flex;
  flex-direction: column;
}

.feed-list {
  flex: 1 1 auto;
}

.step-item {
  display: flex;
  flex-direction: column;
}

/*--------------------------------------------------------------
	Stopka
--------------------------------------------------------------*/
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 44px;
  z-index: 2;
}

.footer-logo {
  width: 130px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer-about {
  font-size: 12.5px;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
}

.footer-addr {
  font-size: 12.5px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.55);
}

.footer-col-title {
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding-bottom: 12px;
  margin-bottom: 16px;
  font-size: 11px;
  color: #fff;
}

.footer-col ul li {
  margin-bottom: 9px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-phone {
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 2px;
  display: block;
  font-size: 20px;
  color: #fff;
}

.footer-mail {
  display: block;
  font-size: 13px;
  color: var(--accent);
  margin: 6px 0 14px;
}

.footer-note {
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
}

.footer-legal {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 46px;
  padding-top: 18px;
  z-index: 2;
}

.footer-legal-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-right: 20px;
}

.footer-legal-links a:hover {
  color: #fff;
}

.footer-legal-note {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.4);
}

/*--------------------------------------------------------------
	Kroki produkcji (siatka ze zlaczonymi ramkami)
--------------------------------------------------------------*/
.et-icons {
  overflow: hidden;
  margin-top: 4px;
}

.et-icons .box1 {
  border: 1px solid #e5e5e5;
  display: block;
  width: 20%;
  float: left;
  padding: 0;
  font-size: 13px;
  margin: -1px 0 0 -1px;
}

.et-icons .box1 {
  padding: 26px 22px 28px;
  min-height: 220px;
}

.box1-num {
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 3px;
  display: block;
  font-size: 12px;
  color: #999;
  margin-bottom: 12px;
}

.et-icons .box1 h3 {
  letter-spacing: 1px;
  font-size: 15px;
  color: #111;
  margin-bottom: 10px;
}

.et-icons .box1 p {
  font-size: 12.5px;
  line-height: 1.8;
}

.strip-note {
  max-width: 720px;
  margin: 14px auto 0;
  font-size: 12.5px;
  color: #999;
  line-height: 1.8;
}

/* Porownanie surowcow */
.compare-list {
  margin-top: 4px;
}

.compare-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dotted #eaeaea;
  padding: 10px 0;
  font-size: 13px;
}

.compare-key {
  color: #999;
}

.compare-val {
  color: #111;
  text-align: right;
}

.compare-note {
  border-top: 1px solid #f1f1f1;
  margin-top: 16px;
  padding-top: 14px;
  font-size: 12.5px;
  line-height: 1.8;
}

#porownanie .info-box {
  height: 100%;
}

@media only screen and (max-width: 991px) {
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-10 {
    margin-top: 10px !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-80 {
    margin-bottom: 80px !important;
  }
}

@media (max-width: 1200px) {
  /* Navbar */
  .navbar-custom .nav li > a {
    padding: 26px 10px;
  }
  .footer-watermark {
    font-size: 74px;
  }
}

@media (max-width: 1050px) {
  /* Navbar */
  .navbar-custom {
    letter-spacing: 1px;
  }
  .navbar-collapse {
    margin-left: 18px;
  }
  .titan-title-size-3 {
    letter-spacing: 12px;
    font-size: 40px;
  }
}

/* pieciu pozycji nie da sie juz zmiescic obok logo, wchodzi hamburger */
@media (max-width: 991px) {
  /* Navbar */
  .navbar-custom {
    background-color: rgba(10, 10, 10, 0.92);
    letter-spacing: 0;
  }
  .nav-row {
    min-height: 0;
  }
  .col-md-4,
  .col-md-6,
  .col-md-7,
  .col-md-8 {
    width: 100%;
  }
  .navbar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 11px 0;
  }
  .navbar-brand img {
    width: 116px;
  }
  .navbar-toggle {
    display: block;
    order: 2;
    padding: 6px 2px;
  }
  .navbar-collapse {
    display: none;
    width: 100%;
    margin: 0;
  }
  .navbar-toggle-input:checked ~ .navbar-collapse {
    display: block;
  }
  .navbar-nav {
    display: block;
    padding-bottom: 14px;
  }
  .navbar-custom .nav li > a {
    padding: 12px 2px;
    border-bottom: 1px solid rgba(73, 71, 71, 0.15) !important;
  }
  .navbar-custom li > a:hover {
    background: rgba(255, 255, 255, 0.1) !important;
  }
  .navbar-custom .dropdown-menu {
    position: static;
    background: transparent;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    padding-left: 14px;
  }
  .caret {
    float: right;
    margin-top: 9px;
  }
  /* Hero */
  .home-full-height {
    height: 78vh;
    min-height: 460px;
  }
  .titan-title-size-3 {
    letter-spacing: 8px;
    font-size: 34px;
  }
  .titan-title-size-1 {
    letter-spacing: 3px;
    font-size: 14px;
  }
  .hero-pager {
    bottom: 20px;
  }
  /* Sections */
  .module {
    padding: 80px 0;
  }
  .module-small {
    padding: 56px 0;
  }
  .module-extra-small {
    padding: 46px 0;
  }
  .module-title {
    font-size: 26px;
    margin-bottom: 50px;
  }
  .module-title + .module-subtitle {
    margin-top: -28px;
  }
  .module-subtitle {
    margin-bottom: 46px;
  }
  .col-sm-4 {
    width: 100%;
    margin-bottom: 20px;
  }
  .top-menu-inner {
    padding: 44px 30px;
  }
  .top-menu-title {
    font-size: 22px;
  }
  .step-item {
    width: 33.3333%;
    margin-bottom: 26px;
  }
  .split-row .split-img,
  .split-row .split-copy {
    width: 100%;
    padding: 0;
  }
  .split-row.is-mirrored .split-copy {
    padding: 0;
  }
  .split-row .split-copy {
    margin-top: 18px;
  }
  .stat-row > div {
    width: 50%;
  }
  .job-cols > div {
    width: 100%;
    padding-right: 0;
  }
  .footer-watermark {
    font-size: 60px;
  }
  .page-header-block {
    padding: 120px 0 44px;
  }
}

/* zakres 768-860: tytul hero lamal sie na trzy linie */
@media (max-width: 860px) {
  .titan-title-size-3 {
    letter-spacing: 6px;
    font-size: 29px;
  }
  .top-menu-inner {
    padding: 36px 24px;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 18px;
  }
  .hidden-xs {
    display: none !important;
  }
  .visible-xs-block {
    display: block;
  }
  /* Hero */
  .home-full-height {
    height: 74vh;
    min-height: 420px;
  }
  .titan-title-size-3 {
    letter-spacing: 3px;
    line-height: 1.3;
    font-size: 24px;
  }
  .titan-title-size-1 {
    letter-spacing: 2px;
    line-height: 1.6;
    font-size: 12.5px;
  }
  .caption-content {
    padding: 0 16px;
  }
  .btn {
    padding: 8px 22px;
    font-size: 10.5px;
  }
  /* Sections */
  .module {
    padding: 56px 0;
  }
  .module-small {
    padding: 44px 0;
  }
  .module-extra-small {
    padding: 36px 0;
  }
  .module-title {
    letter-spacing: 2px;
    font-size: 21px;
    margin-bottom: 34px;
  }
  .module-title span {
    font-size: 10px;
    margin-bottom: 10px;
  }
  .module-subtitle {
    font-size: 14px;
    margin-bottom: 36px;
  }
  .module-title + .module-subtitle {
    margin-top: -20px;
  }
  /* Grid */
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-10 {
    width: 100%;
  }
  .col-sm-offset-1,
  .col-sm-offset-2,
  .col-sm-offset-3,
  .col-sm-offset-5 {
    margin-left: 0;
  }
  .col-sm-push-5,
  .col-sm-pull-7 {
    order: 0;
  }
  #services .row > [class*="col-"] {
    width: 100%;
  }
  #services img {
    height: auto;
  }
  .top-menu-inner {
    padding: 30px 18px 34px;
  }
  .top-menu-title {
    letter-spacing: 2px;
    font-size: 19px;
  }
  .top-menu-inner hr {
    margin: 18px auto;
  }
  .top-menu-inner p {
    margin-bottom: 20px;
  }
  /* Feeds */
  .nav-tabs {
    display: flex;
    border-bottom: 1px solid #e5e5e5;
  }
  .nav-tabs li {
    flex: 1 1 auto;
  }
  .nav-tabs label {
    display: block;
    text-align: center;
    padding: 11px 4px;
    font-size: 12px;
    color: #666;
    cursor: pointer;
  }
  .tab-content {
    display: block;
  }
  .tab-pane {
    display: none;
    padding-top: 14px;
  }
  #tab-1:checked ~ .tab-content .is-1,
  #tab-2:checked ~ .tab-content .is-2,
  #tab-3:checked ~ .tab-content .is-3 {
    display: block;
  }
  #tab-1:checked ~ .nav-tabs li:nth-child(1) label,
  #tab-2:checked ~ .nav-tabs li:nth-child(2) label,
  #tab-3:checked ~ .nav-tabs li:nth-child(3) label {
    background: #fff;
    border-bottom: 2px solid var(--accent);
    color: #111;
  }
  .info-box {
    padding: 18px 16px 16px;
  }
  /* Strips & cards */
  .slide-box {
    width: 210px;
  }
  .step-item {
    width: 50%;
  }
  .step-item h3 {
    min-height: 0;
    font-size: 14px;
  }
  .white-shop-box {
    padding: 20px 18px 22px;
  }
  .white-shop-box h3 {
    letter-spacing: 2px;
    font-size: 19px;
  }
  .qa-q {
    padding: 16px 38px 16px 2px;
    font-size: 14px;
  }
  .qa-q:after {
    top: 21px;
  }
  .figure-pair {
    display: block;
  }
  .figure-pair figure {
    width: 100%;
    padding: 0;
    margin-bottom: 18px;
  }
  .figure-pair figure + figure {
    padding-left: 0;
  }
  /* Tables */
  .data-table {
    min-width: 460px;
    font-size: 12.5px;
  }
  .data-table th,
  .data-table td {
    padding: 9px 10px 8px;
  }
  /* Footer */
  #footer-menu {
    padding: 50px 0 60px;
  }
  .footer-menu-box {
    padding: 22px 18px 20px;
  }
  .footer-watermark {
    letter-spacing: 3px;
    font-size: 40px;
    right: -6px;
    bottom: 6px;
  }
  .footer-watermark span {
    font-size: 12px;
  }
  .page-header-block {
    padding: 104px 0 36px;
  }
  .page-header-block h1 {
    letter-spacing: 2px;
    font-size: 22px;
  }
  .entry-body h2 {
    font-size: 19px;
    margin: 38px 0 16px;
  }
  .cta-band {
    padding: 22px 20px;
    margin-top: 36px;
  }
  .cookie-bar-inner {
    display: block;
  }
  .cookie-bar-actions {
    display: flex;
    padding: 12px 0 0;
  }
  .cookie-bar-actions .btn {
    flex: 1 1 auto;
    margin: 0 6px 0 0;
    padding: 9px 6px;
  }
  .cookie-bar-actions .btn:last-child {
    margin-right: 0;
  }
}

/* stary telefon, 320-480 */
@media only screen and (max-width: 480px) {
  .home-full-height {
    height: 70vh;
    min-height: 380px;
  }
  .titan-title-size-3 {
    letter-spacing: 2px;
    font-size: 20px;
  }
  .module {
    padding: 44px 0;
  }
  .module-small,
  .module-extra-small {
    padding: 36px 0;
  }
  .module-title {
    font-size: 19px;
  }
  .step-item,
  .stat-row > div {
    width: 100%;
  }
  .slide-box {
    width: 176px;
  }
  .slide-box .img-responsive {
    height: 112px;
  }
  .white-shop-box,
  .info-box {
    padding: 16px 14px;
  }
  .footer-menu-box ul ul {
    padding-left: 10px;
  }
  .footer-watermark {
    font-size: 30px;
  }
  .btn {
    padding: 8px 16px;
    letter-spacing: 1px;
  }
}

@media (min-width: 768px) {
  .flex-sp-none {
    display: flex;
  }
}

@media (min-width: 992px) {
  .col-sm-2 {
    width: 16.6666%;
  }
}

@supports (height: 100svh) {
  .home-full-height {
    height: 100svh;
  }
  @media (max-width: 991px) {
    .home-full-height {
      height: 78svh;
    }
  }
  @media (max-width: 767px) {
    .home-full-height {
      height: 74svh;
    }
  }
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }
  .footer-col.is-brand {
    grid-column: 1 / -1;
  }
  .module-lead {
    font-size: 13.5px;
    margin-bottom: 44px;
  }
  .module-title + .module-lead,
  .module-subtitle + .module-lead {
    margin-top: -34px;
  }
  #kierunki .col-md-4 {
    margin-bottom: 24px;
  }
  .white-shop-box img {
    aspect-ratio: 2 / 1;
  }
}

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .footer-col.is-brand {
    grid-column: auto;
  }
  .footer-legal {
    margin-top: 30px;
  }
  .footer-legal-links a {
    display: inline-block;
    margin: 0 16px 6px 0;
  }
  .module-lead {
    font-size: 13px;
    margin-bottom: 30px;
  }
  .module-title + .module-lead,
  .module-subtitle + .module-lead {
    margin-top: -22px;
  }
  .white-shop-box img {
    aspect-ratio: 16 / 9;
  }
  .white-shop-box h3 em.label {
    right: 6px;
    top: 6px;
  }
}

@media (max-width: 991px) {
  .et-icons .box1 {
    width: 33.3333%;
    min-height: 200px;
  }
  .top-menu-inner {
    height: auto;
  }
  #porownanie .col-sm-6 {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .et-icons .box1 {
    width: 50%;
    min-height: 0;
    padding: 20px 16px 22px;
  }
  .et-icons .box1 h3 {
    font-size: 14px;
  }
  .strip-note {
    font-size: 12px;
  }
  .compare-list li {
    font-size: 12.5px;
  }
}

@media only screen and (max-width: 480px) {
  .et-icons .box1 {
    width: 100%;
  }
}

/*--------------------------------------------------------------
	Index — uklad sekcji (wersja z sierpnia)
--------------------------------------------------------------*/
.intro-band {
  border-bottom: 1px solid #eaeaea;
  padding: 86px 0 74px;
  text-align: center;
}

.intro-band-e {
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 11px;
  color: #999;
  margin-bottom: 22px;
}

.intro-band-title {
  letter-spacing: 3px;
  line-height: 1.55;
  font-weight: 400;
  font-size: 30px;
  color: #111;
  margin-bottom: 34px;
}

.stats-strip {
  border-bottom: 1px solid #eaeaea;
}

.stats-strip-inner {
  display: flex;
}

.stat-cell {
  flex: 1 1 25%;
  border-left: 1px solid #eaeaea;
  text-align: center;
  padding: 30px 14px 32px;
}

.stat-cell:first-child {
  border-left: 0;
}

.stat-num {
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 2px;
  display: block;
  font-size: 30px;
  color: #111;
  line-height: 1.2;
}

.stat-cap {
  display: block;
  font-size: 11.5px;
  color: #999;
  margin-top: 6px;
}

/* Kafle produktowe */
.tile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #eaeaea;
}

.tile {
  position: relative;
  display: block;
  overflow: hidden;
  background: #111;
}

.tile img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 0.62;
  transition: transform 0.9s ease-out 0s, opacity 0.4s ease-in-out 0s;
}

.tile:hover img {
  transform: scale(1.06);
  opacity: 0.5;
}

.tile-body {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 34px 38px 32px;
  color: #fff;
}

.tile-e {
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 10px;
}

.tile-title {
  letter-spacing: 3px;
  font-size: 25px;
  margin-bottom: 10px;
}

.tile-body p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 400px;
}

.tile-more {
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  display: inline-block;
  margin-top: 16px;
  padding-bottom: 3px;
  font-size: 10.5px;
}

/* Ciemny pas */
.claim-band {
  position: relative;
  background-image: url(../../resources/footer-hala-papiernia.webp);
  background-size: cover;
  background-position: 50% 40%;
  background-attachment: fixed;
  padding: 100px 0 96px;
  color: #fff;
}

.claim-inner {
  position: relative;
  text-align: center;
  z-index: 2;
}

.claim-title {
  letter-spacing: 3px;
  line-height: 1.5;
  font-weight: 400;
  font-size: 28px;
  margin-bottom: 46px;
}

.claim-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  text-align: left;
  margin-bottom: 44px;
}

.claim-col {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  padding-top: 16px;
}

.claim-col-e {
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 3px;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.claim-col p {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.88);
}

/* Naglowki sekcji */
.sec-head {
  display: flex;
  align-items: baseline;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 16px;
  margin-bottom: 38px;
}

.sec-head-e {
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 10.5px;
  color: var(--accent);
  margin-right: 16px;
}

.sec-head-title {
  letter-spacing: 2px;
  font-weight: 400;
  font-size: 24px;
  color: #111;
}

.sec-head-link {
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-left: auto;
  font-size: 10.5px;
  color: #999;
}

.sec-head-link:hover {
  color: #111;
}

/* Siatka produktow */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.prod-card {
  display: block;
  border: 1px solid #e5e5e5;
  padding: 12px 12px 16px;
}

.prod-card:hover {
  border-color: #111;
}

.prod-img {
  overflow: hidden;
  margin-bottom: 12px;
}

.prod-img img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.6s ease-out 0s;
}

.prod-card:hover .prod-img img {
  transform: scale(1.05);
}

.prod-card h3 {
  font-size: 13.5px;
  color: #111;
  line-height: 1.5;
  margin-bottom: 8px;
}

.prod-meta span {
  display: block;
  font-size: 11px;
  color: #999;
  line-height: 1.7;
}

/* Aktualnosci + kontakt */
.news-split {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 44px;
  align-items: start;
}

.sec-head.is-left {
  margin-bottom: 24px;
}

.news-list li {
  border-bottom: 1px solid #e5e5e5;
}

.news-list li a {
  display: flex;
  align-items: baseline;
  padding: 16px 2px;
}

.news-date {
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 1px;
  flex: 0 0 92px;
  font-size: 11.5px;
  color: #999;
}

.news-title {
  flex: 1 1 auto;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  padding-right: 16px;
}

.news-list li a:hover .news-title {
  color: var(--accent);
}

.news-cat {
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #fff;
  border: 1px solid #e5e5e5;
  flex: 0 0 auto;
  padding: 3px 9px 2px;
  font-size: 10px;
  color: #999;
}

.contact-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 28px 26px 30px;
}

.contact-card-e {
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 10.5px;
  color: var(--accent);
  margin-bottom: 14px;
}

.contact-card-lead {
  font-size: 13px;
  line-height: 1.85;
  margin-bottom: 20px;
}

.contact-phone {
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 2px;
  display: block;
  font-size: 24px;
  color: #111;
}

.contact-mail {
  display: block;
  font-size: 13px;
  color: var(--accent);
  margin: 4px 0 20px;
}

.contact-card .btn {
  display: block;
  text-align: center;
}

.contact-card-note {
  border-top: 1px solid #f1f1f1;
  margin-top: 20px;
  padding-top: 14px;
  font-size: 11.5px;
  color: #999;
  line-height: 1.75;
}

/* Timeline */
.tl-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
}

.tl-step {
  position: relative;
  border-top: 2px solid #111;
  padding-top: 18px;
}

.tl-step:before {
  position: absolute;
  background: var(--accent);
  content: "";
  height: 7px;
  width: 7px;
  left: 0;
  top: -4px;
  border-radius: 30px;
}

.tl-num {
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 3px;
  font-size: 11px;
  color: #999;
  margin-bottom: 8px;
}

.tl-step h3 {
  letter-spacing: 1px;
  font-size: 15px;
  color: #111;
  margin-bottom: 8px;
}

.tl-step p {
  font-size: 12.5px;
  line-height: 1.8;
}

/* Realizacje */
.case-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.case-tile {
  display: block;
  position: relative;
  overflow: hidden;
}

.case-tile img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.7s ease-out 0s;
}

.case-tile:hover img {
  transform: scale(1.07);
}

.case-cap {
  display: block;
  font-size: 12.5px;
  color: #111;
  line-height: 1.5;
  margin-top: 10px;
}

.case-cap em {
  display: block;
  font-style: normal;
  font-size: 11px;
  color: #999;
}

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

.dir-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
}

.dir-card:hover {
  border-color: #111;
}

.dir-img {
  position: relative;
  overflow: hidden;
}

.dir-img img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.7s ease-out 0s;
}

.dir-card:hover .dir-img img {
  transform: scale(1.05);
}

.dir-label {
  position: absolute;
  background: #c9302c;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-style: normal;
  right: 10px;
  top: 10px;
  padding: 3px 9px 2px;
  font-size: 10px;
  color: #fff;
  border-radius: 2px;
}

.dir-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 22px 24px 24px;
}

.dir-e {
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 10px;
  color: #999;
  margin-bottom: 8px;
}

.dir-body h3 {
  letter-spacing: 2px;
  font-size: 19px;
  color: #111;
  margin-bottom: 12px;
}

.dir-body p {
  flex: 1 1 auto;
  font-size: 13px;
  line-height: 1.85;
  margin-bottom: 18px;
}

.dir-more {
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  border-bottom: 1px solid #111;
  align-self: flex-start;
  padding-bottom: 3px;
  font-size: 10.5px;
  color: #111;
}

/* FAQ */
.faq-split {
  display: grid;
  grid-template-columns: 1fr 1.9fr;
  gap: 48px;
  align-items: start;
}

.faq-aside .sec-head-title {
  line-height: 1.5;
  margin: 12px 0 16px;
}

.faq-aside-note {
  font-size: 12.5px;
  color: #999;
  line-height: 1.85;
}

@media (max-width: 991px) {
  .intro-band {
    padding: 60px 0 52px;
  }
  .intro-band-title {
    letter-spacing: 2px;
    font-size: 24px;
  }
  .tile-grid {
    grid-template-columns: 1fr;
  }
  .tile-title {
    font-size: 22px;
  }
  .claim-band {
    background-attachment: scroll;
    padding: 70px 0 66px;
  }
  .claim-title {
    font-size: 23px;
  }
  .claim-cols {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .prod-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .news-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .tl-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px 20px;
  }
  .case-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .dir-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .faq-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .stats-strip-inner {
    flex-wrap: wrap;
  }
  .stat-cell {
    flex: 0 0 50%;
    border-top: 1px solid #eaeaea;
    padding: 20px 10px 22px;
  }
  .stat-cell:nth-child(-n+2) {
    border-top: 0;
  }
  .stat-cell:nth-child(odd) {
    border-left: 0;
  }
  .stat-num {
    font-size: 24px;
  }
  .intro-band-title {
    letter-spacing: 1px;
    font-size: 19px;
  }
  .tile-body {
    padding: 20px 20px 22px;
  }
  .tile-title {
    letter-spacing: 2px;
    font-size: 18px;
  }
  .tile-body p {
    font-size: 12px;
  }
  .claim-title {
    letter-spacing: 1px;
    font-size: 19px;
  }
  .sec-head {
    flex-wrap: wrap;
    margin-bottom: 26px;
  }
  .sec-head-title {
    font-size: 19px;
  }
  .sec-head-link {
    flex: 0 0 100%;
    margin: 8px 0 0;
  }
  .prod-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .tl-row {
    grid-template-columns: 1fr 1fr;
  }
  .case-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .news-date {
    flex: 0 0 74px;
    font-size: 11px;
  }
  .news-title {
    font-size: 13px;
  }
  .news-cat {
    display: none;
  }
  .contact-phone {
    font-size: 21px;
  }
}

@media only screen and (max-width: 480px) {
  .tl-row {
    grid-template-columns: 1fr;
  }
  .prod-grid {
    grid-template-columns: 1fr;
  }
  .case-row {
    grid-template-columns: 1fr;
  }
  .stat-cell {
    flex: 0 0 100%;
    border-left: 0;
    border-top: 1px solid #eaeaea;
  }
  .stat-cell:first-child {
    border-top: 0;
  }
}
